/* Fonts are loaded from the HTML <head> with preconnect + display=swap
   (no CSS @import — it blocks rendering). */

/* ─── CSS VARIABLES ─────────────────────────────────── */
:root {
  --red:        #e52222;
  --red-dark:   #9b1508;
  --red-mid:    #c01a10;
  --black:      #111111;
  --dark:       #1a1a1a;
  --dark-2:     #222222;
  --mid:        #444444;
  --muted:      #888888;
  --light:      #f2f2f2;
  --white:      #ffffff;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Montserrat', sans-serif;
  --ease:       cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition: 0.35s var(--ease);
}

/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── ACCESSIBILITY ─────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -60px; left: 8px;
  z-index: 2000;
  background: var(--red);
  color: var(--white) !important;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 8px;
}
a:focus-visible,
button:focus-visible,
.nav-hamburger:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}
body.nav-open { overflow: hidden; }

/* Temporary Coming Soon holding page */
body.coming-soon-active {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--white);
}
.coming-soon-page,
.coming-soon-picture {
  display: block;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: var(--white);
}
.coming-soon-image {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
}
.site-content--hidden-temporary {
  display: none !important;
}

/* Development-only placeholders — never rendered publicly */
.development-placeholder,
.is-development-hidden {
  display: none !important;
}

/* ─── WHATSAPP WIDGET ──────────────────────────────── */
.whatsapp-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  max-width: calc(100vw - 32px);
}
.whatsapp-widget__panel {
  position: relative;
  width: min(320px, calc(100vw - 32px));
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 14px 36px rgba(10,10,15,0.22);
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}
.whatsapp-widget.is-open .whatsapp-widget__panel {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.whatsapp-widget__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
}
.whatsapp-widget__label {
  padding-right: 24px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}
.whatsapp-widget__text {
  margin-top: 8px;
  color: rgba(255,255,255,0.68);
  font-size: 13px;
  line-height: 1.55;
}
.whatsapp-widget__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 18px;
  padding: 0 20px;
  border-radius: 2px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.whatsapp-widget__button:hover { background: var(--red-dark); }
.whatsapp-widget__toggle {
  min-width: 58px;
  height: 58px;
  padding: 0 17px;
  border-radius: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(10,10,15,0.2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.whatsapp-widget__toggle:hover {
  background: var(--red-dark);
  transform: scale(1.03);
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-enhanced .whatsapp-widget__panel,
  .whatsapp-widget__button,
  .whatsapp-widget__toggle { transition: none; }
  .whatsapp-widget__toggle:hover { transform: none; }
}

/* Scroll-reveal is opt-in: content stays visible unless JS adds .js to <html> */
html.js .animate-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
html.js .animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  html.js .animate-in { opacity: 1; transform: none; }
  .ticker-track { animation: none; }
}

/* ─── NAVBAR ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--black);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.navbar.dark-bg {
  background: var(--black);
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
}
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  background: var(--red);
  color: var(--white) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  padding: 0 30px;
  line-height: 1;
  white-space: nowrap;
  border-radius: 2px;
  transition: background var(--transition) !important;
}
.nav-cta--desktop { margin-left: auto; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-dark) !important; color: var(--white) !important; }
.nav-emergency {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}
.nav-emergency::after { display: none !important; }
.nav-emergency svg { flex-shrink: 0; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  background: var(--black);
  padding: 24px 48px 32px;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 999;
  -webkit-overflow-scrolling: touch;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--white); }
.nav-mobile .nav-cta {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
}

/* ─── TICKER ─────────────────────────────────────────── */
.ticker {
  background: var(--red);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}
.ticker-track {
  display: inline-flex;
  animation: ticker-scroll 30s linear infinite;
}
.ticker-track span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 40px;
}
.ticker-track span::before {
  content: '◆';
  margin-right: 20px;
  opacity: 0.6;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer;
}
.btn-red {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}

/* ─── SECTION LABEL ─────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.section-label--center { justify-content: center; text-align: center; }
.section-label--on-dark { color: rgba(229,34,34,0.95); }

/* ─── HEADINGS ───────────────────────────────────────── */
.display-heading {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  overflow-wrap: break-word;
}
.display-heading.white { color: var(--white); }
.display-heading.dark  { color: var(--dark); }

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  min-height: 88svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}
/* ASSET: assets/images/hero/hero-bg.jpg — full-screen hero background */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(17,17,17,0.92) 40%, rgba(17,17,17,0.5) 100%),
    url('../assets/images/hero/hero-bg.jpg') center/cover no-repeat;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 128px 48px 64px;
  max-width: 900px;
}
.hero-title {
  font-size: clamp(60px, 7.5vw, 108px);
  color: var(--white);
  margin-bottom: 28px;
}
.hero-title .accent { color: var(--red); }
.hero-sub {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: 44px;
}
.hero-actions {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
/* ─── TRUST BAR ─────────────────────────────────────── */
.trust-bar {
  background: var(--dark-2);
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.trust-item svg { color: var(--red); flex-shrink: 0; }
.trust-bar--dark { background: var(--dark); }

/* ─── HOMEPAGE METRICS ─────────────────────────────── */
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0 48px;
  background: var(--white);
  border-bottom: 1px solid var(--light);
}
.hero-metric {
  position: relative;
  min-width: 0;
  padding: 36px 24px;
  text-align: center;
}
.hero-metric:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 56px;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.2);
}
.hero-metric__number {
  display: block;
  color: var(--dark);
  font-family: var(--font-display);
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 900;
  line-height: 1;
}
.counting-number { font-variant-numeric: tabular-nums; }
.hero-metric__label {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

/* ─── SERVICES PREVIEW ──────────────────────────────── */
.services-preview {
  padding: 100px 48px;
  background: var(--white);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 44px;
  gap: 40px;
  flex-wrap: wrap;
}
.services-title {
  font-size: clamp(40px, 5vw, 72px);
}
.services-header-cta:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}
.service-card {
  display: block;
  min-width: 0;
  height: 360px;
  background: var(--dark);
  border: 1px solid rgba(10, 10, 15, 0.08);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(10, 10, 15, 0.09);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.service-card:nth-child(-n+3) {
  grid-column: span 2;
  height: 390px;
}
.service-card:nth-child(n+4) { grid-column: span 3; }
a.service-card:focus-visible { outline-offset: -2px; }
.service-card-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.service-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,15,0.97) 0%, rgba(10,10,15,0.82) 34%, rgba(10,10,15,0.3) 70%, rgba(10,10,15,0.12) 100%);
  transition: opacity 0.35s var(--ease);
}
.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.service-card:nth-child(2) .service-card-media img { object-position: 48% center; }
.service-card:nth-child(3) .service-card-media img { object-position: 58% center; }
.service-card-content {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  padding: 28px 72px 28px 28px;
}
.service-card-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
}
.service-card-kicker::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--red);
  opacity: 0.75;
}
.service-card-title {
  font-family: var(--font-display);
  font-size: clamp(21px, 1.7vw, 26px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}
.service-card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.76);
  max-width: 440px;
}
.service-card-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 22px;
  bottom: 24px;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(229,34,34,0.5);
  box-shadow: 0 16px 34px rgba(10, 10, 15, 0.13);
}
.service-card:hover .service-card-media img { transform: scale(1.04); }
.service-card:hover .service-card-media::after { opacity: 0.92; }
.service-card:hover .service-card-arrow { background: var(--red); }
@media (prefers-reduced-motion: reduce) {
  .service-card,
  .service-card-media img,
  .service-card-arrow { transition: none; }
  .service-card:hover { transform: none; }
  .service-card:hover .service-card-media img { transform: none; }
}

/* ─── WHY US ─────────────────────────────────────────── */
.why-us {
  padding: 40px 48px;
  background: var(--dark);
  display: grid;
  grid-template-columns: minmax(0, 47fr) minmax(0, 53fr);
  gap: clamp(48px, 5vw, 72px);
  align-items: center;
}
.why-us-image {
  position: relative;
  height: clamp(380px, 30vw, 420px);
  background: var(--dark-2);
  overflow: visible;
}
.why-us-image img {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 18%;
}
.why-us-badge {
  position: absolute;
  bottom: 24px; right: -24px;
  width: 180px;
  background: var(--red);
  color: var(--white);
  padding: 16px 20px;
  z-index: 2;
}
.why-us-badge-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}
.why-us-badge-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}
.why-us-content { padding-right: 20px; }
.why-us-title {
  font-size: clamp(36px, 3.8vw, 56px);
  color: var(--white);
  margin-bottom: 16px;
}
.why-us-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.why-item-icon {
  width: 36px; height: 36px;
  border-radius: 2px;
  background: rgba(229,34,34,0.15);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}
.why-item-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}
.why-us-badge-num {
  text-transform: uppercase;
}

/* ─── TESTIMONIALS ──────────────────────────────────── */
.testimonials {
  padding: 100px 48px;
  background: var(--light);
}
.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}
.testimonials-title {
  font-size: clamp(36px, 4vw, 60px);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  padding: 40px 36px;
  border-top: 3px solid var(--red);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--red);
}
.testimonial-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--mid);
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}
.testimonial-location {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--black);
  padding: 80px 48px 0;
  position: relative;
  overflow: hidden;
}
.footer-content {
  position: relative;
  z-index: 2;
  padding-bottom: 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 40px;
}
.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.62);
  margin-bottom: 28px;
  max-width: 280px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  line-height: 1.5;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--red); }
.footer-trust-badge {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding: 8px 11px;
  border-radius: 4px;
  background: rgba(255,255,255,0.055);
  color: rgba(255,255,255,0.86);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.footer-trust-badge__dot {
  width: 5px;
  height: 5px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--red);
}
.irish-flag {
  display: inline-flex;
  width: 21px;
  height: 13px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 1px;
}
.irish-flag > span { flex: 1; }
.irish-flag__green { background: #169b62; }
.irish-flag__white { background: #fff; }
.irish-flag__orange { background: #ff883e; }
.footer-social {
  align-items: center;
  gap: 9px;
  margin-top: 14px;
}
.footer-social:not([hidden]) { display: flex; }
.footer-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  color: var(--white);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
a.footer-social__link:hover,
a.footer-social__link:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  padding: 2px 0;
}
.footer-links a:hover { color: var(--white); }
/* Service areas are plain text (no location pages exist) */
.footer-areas { margin: 0; padding: 0; }
.footer-areas li {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.footer-credit {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.footer-credit a {
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.footer-credit a:hover { color: var(--white); }

/* ─── PAGE HERO (inner pages) ───────────────────────── */
.page-hero {
  background: var(--black);
  padding: 160px 48px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(135deg, transparent, rgba(229,34,34,0.06));
  pointer-events: none;
}
/* ASSET: one background per inner page */
.page-hero--about {
  background-image:
    linear-gradient(to right, rgba(17,17,17,0.88) 35%, rgba(17,17,17,0.45) 100%),
    url('../assets/images/hero/hero-about.jpg');
  background-size: cover;
  background-position: center;
}
.page-hero--services {
  background-image:
    linear-gradient(to right, rgba(17,17,17,0.88) 35%, rgba(17,17,17,0.45) 100%),
    url('../assets/images/hero/hero-services.svg');
  background-size: cover;
  background-position: center;
}
.page-hero--contact {
  background-image:
    linear-gradient(to right, rgba(17,17,17,0.88) 35%, rgba(17,17,17,0.45) 100%),
    url('../assets/images/hero/hero-contact.svg');
  background-size: cover;
  background-position: center;
}
.page-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-hero-eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--red);
}
.page-hero-title {
  font-size: clamp(56px, 8vw, 110px);
  color: var(--white);
  margin-bottom: 20px;
}
.page-hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
}

/* ─── BREADCRUMB (inner pages) ──────────────────────── */
.breadcrumb {
  background: var(--white);
  padding: 18px 48px 0;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li + li::before {
  content: '/';
  color: var(--red);
}
.breadcrumb a {
  color: var(--mid);
  padding: 4px 0;
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--red); }
.breadcrumb [aria-current="page"] { color: var(--muted); }

/* ─── ABOUT PAGE ─────────────────────────────────────── */
.about-page .page-hero--about {
  padding: 132px 48px 64px;
}
.about-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}
.about-page .page-hero-title {
  max-width: 760px;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.92;
}
.about-page .page-hero-sub {
  width: 100%;
  max-width: 520px;
  overflow-wrap: anywhere;
}
.about-page .breadcrumb ol {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}
.about-story {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 72px 48px;
  display: grid;
  grid-template-columns: minmax(0, 48fr) minmax(0, 52fr);
  gap: clamp(48px, 5vw, 72px);
  align-items: center;
}
.about-story > * { min-width: 0; }
.about-story-text h2 {
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 28px;
}
.about-story-text p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 20px;
  overflow-wrap: anywhere;
}
.about-values {
  padding: 72px 48px;
  background: var(--light);
}
.about-values-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}
.about-values-title {
  font-size: clamp(36px, 4vw, 60px);
  margin-bottom: 40px;
}
.about-work-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
}
.about-work-item {
  padding-top: 18px;
  border-top: 2px solid var(--dark);
}
.about-work-number {
  display: block;
  margin-bottom: 22px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.about-work-title {
  margin-bottom: 10px;
  color: var(--dark);
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}
.about-work-item p {
  max-width: 360px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(0,0,0,0.06);
}
.value-card {
  background: var(--white);
  padding: 48px 36px;
  text-align: center;
}
.value-icon {
  width: 60px; height: 60px;
  background: var(--red);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin: 0 auto 24px;
}
.value-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 12px;
}
.value-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}
.about-team {
  padding: 100px 48px;
  background: var(--dark);
}
.about-team-title {
  font-size: clamp(36px, 4vw, 60px);
  color: var(--white);
  margin-bottom: 8px;
}
.about-team-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 60px;
}
/* About story media + stat tiles (moved from inline styles) */
.about-story-media {
  aspect-ratio: 8 / 5;
  background: var(--light);
  overflow: hidden;
  margin-bottom: 0;
}
.about-story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-story-cta { margin-top: 16px; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #e0e0e0;
}
.about-page .about-stats[hidden] { display: none !important; }
.about-stat {
  background: var(--white);
  padding: 32px 28px;
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.about-stat-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
.about-values-header {
  margin-bottom: 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--dark-2);
  overflow: hidden;
}
.team-card-image {
  aspect-ratio: 3/4;
  background: #2a2a2a;
  position: relative;
  overflow: hidden;
}
.team-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}
.team-card:hover .team-card-image img {
  transform: scale(1.04);
  filter: grayscale(0%);
}
.team-card-info {
  padding: 20px 24px;
  border-top: 3px solid var(--red);
}
.team-card-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.team-card-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

/* ─── SERVICES PAGE ─────────────────────────────────── */
.services-full {
  padding: 80px 48px;
}
.services-full-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--light);
}
.service-row:last-child { border-bottom: none; }
.service-row-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--light);
}
.service-row-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-row:hover .service-row-image img { transform: scale(1.04); }
.service-row-content {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-row-num {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 900;
  color: var(--light);
  line-height: 1;
  margin-bottom: -10px;
}
.service-row-title {
  font-size: clamp(28px, 3vw, 44px);
  margin-bottom: 20px;
}
.service-row-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 32px;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--mid);
  font-weight: 500;
}
.service-feature::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.service-row.reversed .service-row-image { order: 2; }
.service-row.reversed .service-row-content { order: 1; }

/* ─── CONTACT PAGE ───────────────────────────────────── */
.contact-section {
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.contact-info-title {
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 24px;
}
.contact-info-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 48px;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 48px;
}
.contact-item {
  display: flex;
  gap: 18px;
}
.contact-item-icon {
  width: 48px; height: 48px;
  background: var(--red);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.contact-item-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-item-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
}
.contact-emergency-box {
  background: var(--dark);
  padding: 32px;
  border-left: 4px solid var(--red);
}
.contact-emergency-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.contact-emergency-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}
.contact-emergency-cta { width: fit-content; }

/* ─── CONTACT FORM ───────────────────────────────────── */
.contact-form-wrapper {
  background: var(--light);
  padding: 56px 48px;
}
.contact-form-title {
  font-size: 28px;
  margin-bottom: 36px;
}
.form-group {
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 8px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 2px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--red);
}
textarea { resize: vertical; min-height: 140px; }
.form-submit {
  margin-top: 8px;
}
.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
}
.form-submit-btn {
  width: 100%;
  justify-content: center;
}
.form-error {
  font-size: 12px;
  font-weight: 600;
  color: var(--red-dark);
  margin-top: 6px;
}
input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--red-dark);
}
/* Honeypot field — visually removed, still present for bots */
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
.form-status {
  display: none;
  border-radius: 2px;
  padding: 20px 24px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}
.form-status.is-visible { display: block; }
.form-status--success {
  background: rgba(34,140,60,0.08);
  border: 1.5px solid #1e7a34;
  color: #1e7a34;
}
.form-status--error {
  background: rgba(229,34,34,0.08);
  border: 1.5px solid var(--red);
  color: var(--red-dark);
}

/* ─── GOOGLE REVIEWS ──────────────────────────────────── */
.google-reviews-section[hidden] { display: none !important; }
.google-reviews-section {
  padding: 96px 48px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}
.google-reviews-section__inner { max-width: 1320px; margin: 0 auto; }
.google-reviews-section__top {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(240px, 0.5fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 48px;
}
.google-reviews-section .section-kicker {
  margin-bottom: 14px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.google-reviews-section__header h2 {
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}
.google-reviews-section__intro {
  margin-top: 18px;
  color: rgba(255,255,255,0.64);
  font-size: 14px;
}
.google-reviews-summary { min-width: 0; text-align: right; }
.google-reviews-summary__rating {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
}
.google-reviews-summary__stars,
.google-review-card__stars {
  color: var(--red);
  letter-spacing: 0.12em;
}
.google-reviews-summary__count {
  margin-top: 8px;
  color: rgba(255,255,255,0.62);
  font-size: 12px;
}
.google-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  min-width: 0;
}
.google-reviews-empty {
  padding: 24px 28px;
  border-left: 4px solid var(--red);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.7;
}
.google-reviews-empty[hidden] { display: none; }
.google-review-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  background: rgba(255,255,255,0.035);
}
.google-review-card__author {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}
a.google-review-card__author:hover { color: var(--red); }
.google-review-card__stars { margin-top: 12px; font-size: 14px; }
.google-review-card__text {
  margin-top: 18px;
  color: rgba(255,255,255,0.76);
  font-size: 14px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}
.google-review-card__time {
  margin-top: 20px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  text-transform: uppercase;
}
.google-reviews-section__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.google-reviews-attribution {
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.google-reviews-link {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.google-reviews-link:hover { color: var(--red); }

/* ─── MAP EMBED ──────────────────────────────────────── */
.map-section-wrapper {
  padding: 80px 48px;
  background: var(--light);
}
.service-area-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  max-width: 1320px;
  min-height: 460px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: var(--dark);
  box-shadow: 0 18px 44px rgba(10,10,15,0.12);
}
.service-area-content {
  padding: 64px 56px;
  color: var(--white);
}
.service-area-title {
  margin-top: 16px;
  font-size: clamp(42px, 5vw, 68px);
}
.service-area-text {
  max-width: 490px;
  margin-top: 22px;
  color: rgba(255,255,255,0.68);
  font-size: 15px;
  line-height: 1.7;
}
.service-area-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}
.service-area-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  line-height: 1.5;
}
.service-area-list li::before {
  content: '';
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 2px;
  background: var(--red);
}
.service-area-map {
  min-width: 0;
  margin: 16px 16px 16px 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--dark-2);
}
.service-area-map iframe {
  width: 100%;
  height: 100%;
  min-height: 428px;
  border: 0;
  filter: grayscale(25%) contrast(1.05);
}
.map-caption {
  max-width: 1320px;
  margin: 12px auto 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
}

/* ─── ANIMATE IN ─────────────────────────────────────── */
/* Base rules live under `html.js` (see ACCESSIBILITY section) so content
   is never hidden when JavaScript is unavailable. */
html.js .animate-in.delay-1 { transition-delay: 0.1s; }
html.js .animate-in.delay-2 { transition-delay: 0.2s; }
html.js .animate-in.delay-3 { transition-delay: 0.3s; }
html.js .animate-in.delay-4 { transition-delay: 0.4s; }

/* ─── PRINT ──────────────────────────────────────────── */
@media print {
  .navbar, .nav-mobile, .ticker, .skip-link,
  .map-section { display: none !important; }
  body { background: #fff; color: #000; }
  html.js .animate-in { opacity: 1 !important; transform: none !important; }
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .google-reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .navbar { padding-left: 24px; padding-right: 24px; }
  .nav-links { gap: 24px; }
  .nav-cta { padding-inline: 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(n) {
    grid-column: auto;
    height: 360px;
  }
  .service-card:nth-child(5) {
    grid-column: 1 / -1;
    width: 100%;
  }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .why-us { grid-template-columns: 1fr; gap: 48px; }
  .why-us-image { width: 100%; max-width: 500px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story { grid-template-columns: 1fr; gap: 48px; }
  .about-story-media { aspect-ratio: 8 / 5; }
  .service-row { grid-template-columns: 1fr; }
  .service-row.reversed .service-row-image { order: 0; }
  .service-row.reversed .service-row-content { order: 0; }
  .contact-section { grid-template-columns: 1fr; }
  .service-area-card { grid-template-columns: 1fr; }
  .service-area-map { margin: 0 16px 16px; }
  .service-area-map iframe { min-height: 380px; }
}
@media (max-width: 768px) {
  .google-reviews-section { padding: 72px 24px; }
  .google-reviews-section__top { grid-template-columns: 1fr; gap: 28px; }
  .google-reviews-summary { text-align: left; }
  .google-reviews-grid { grid-template-columns: 1fr; }
  .navbar { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-cta--desktop { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { padding: 108px 24px 52px; }
  .services-preview, .why-us, .testimonials,
  .services-full, .contact-section, .about-story, .about-values,
  .about-team, .page-hero { padding-left: 24px; padding-right: 24px; }
  .about-page .page-hero--about { padding-top: 112px; padding-bottom: 56px; }
  .about-page .breadcrumb { padding-top: 12px; }
  .about-story { padding-top: 60px; padding-bottom: 60px; }
  .about-values { padding-top: 60px; padding-bottom: 60px; }
  .about-work-list { grid-template-columns: 1fr; gap: 34px; }
  .about-work-item p { max-width: 560px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card:nth-child(5) {
    grid-column: auto;
    width: 100%;
  }
  .service-card:nth-child(n) { height: 340px; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; padding: 0 0 40px; }
  footer { padding: 60px 24px 0; }
  .hero-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0 24px; }
  .trust-bar { padding: 16px 24px; gap: 20px; }
  .hero-metric { padding: 28px 16px; border-bottom: 1px solid var(--light); }
  .hero-metric::after { display: none; }
  .hero-metric:nth-last-child(-n + 2) { border-bottom: none; }
  .breadcrumb { padding: 16px 24px 0; }
  .map-section-wrapper { padding: 64px 24px; }
  .service-area-content { padding: 48px 40px; }
  .contact-form-wrapper { padding: 40px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .service-row-content { padding: 40px 24px; }
  .nav-mobile { padding: 24px; }
}
@media (max-width: 480px) {
  .google-reviews-section { padding: 56px 16px; }
  .google-review-card { padding: 24px; }
  .google-reviews-section__footer { align-items: flex-start; flex-direction: column; }
  .navbar { padding: 0 16px; height: 64px; }
  .nav-logo-img { height: 30px; }
  .nav-mobile { top: 64px; max-height: calc(100vh - 64px); padding: 20px 16px 28px; }
  .hero { min-height: 82svh; }
  .hero-content { padding: 88px 16px 44px; }
  .hero-title { font-size: clamp(40px, 12.5vw, 60px); }
  .hero-sub { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  .trust-bar { padding: 16px; gap: 14px; justify-content: flex-start; }
  .trust-item { font-size: 11px; }
  .hero-metrics { padding: 0 16px; }
  .hero-metric { padding: 24px 8px; }
  .hero-metric__number { font-size: clamp(38px, 12vw, 52px); }
  .hero-metric__label { font-size: 10px; letter-spacing: 0.1em; }
  .services-preview, .why-us, .testimonials,
  .services-full, .contact-section, .about-story, .about-values,
  .about-team, .page-hero { padding-left: 16px; padding-right: 16px; }
  .about-page .page-hero--about { padding-top: 96px; padding-bottom: 48px; }
  .about-page .page-hero-title {
    max-width: 100%;
    font-size: clamp(46px, 14vw, 60px);
  }
  .about-page .page-hero-sub {
    max-width: 340px;
    font-size: 15px;
  }
  .about-story { padding-top: 52px; padding-bottom: 52px; gap: 36px; }
  .about-story-media { aspect-ratio: 3 / 2; }
  .about-story-text h2 { font-size: clamp(34px, 10vw, 44px); }
  .about-values { padding-top: 52px; padding-bottom: 52px; }
  .about-values-title { margin-bottom: 32px; }
  .service-card:nth-child(n) { height: 320px; }
  .service-card-content { padding: 24px 64px 24px 22px; }
  .why-us { padding-top: 36px; padding-bottom: 36px; gap: 42px; }
  .why-us-image { height: clamp(280px, 92vw, 360px); }
  .why-us-badge {
    right: 0;
    bottom: -22px;
    width: 172px;
    padding: 14px 18px;
  }
  .why-us-badge-num { font-size: 34px; }
  .why-us-content { padding-right: 0; }
  .why-us-title { font-size: clamp(34px, 10.5vw, 46px); }
  .team-grid { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 32px 16px; }
  .service-row-content { padding: 32px 16px; }
  footer { padding: 48px 16px 0; }
  .map-section-wrapper { padding: 48px 16px; }
  .service-area-card { border-radius: 20px; }
  .service-area-content { padding: 38px 24px; }
  .service-area-map {
    margin: 0 10px 10px;
    border-radius: 14px;
  }
  .service-area-map iframe { min-height: 310px; }
  .whatsapp-widget {
    right: 16px;
    bottom: 16px;
  }
  .whatsapp-widget__panel { padding: 22px; }
  .whatsapp-widget__toggle {
    width: 54px;
    min-width: 54px;
    height: 54px;
    padding: 0;
  }
  .whatsapp-widget__toggle span { display: none; }
}
