/* =========================================================
   TurfFix Pro — Editorial design system
   Inspired by industrial sports/contractor publications
   ========================================================= */

:root {
  /* Palette — light editorial */
  --bg: #FAFAF7;
  --bg-2: #F1EFE7;
  --surface: #FFFFFF;
  --surface-alt: #F4F2EA;
  --ink: #0E1410;
  --ink-2: #1F2620;
  --text: #4A5048;
  --text-2: #6B716A;
  --muted: #8A8F86;
  --line: #E5E3DA;
  --line-strong: #C9C6BA;

  /* Brand */
  --green-900: #06210B;
  --green-800: #0D3A14;
  --green-700: #1B5E20;
  --green-600: #2D7D31;
  --green-500: #3F9C45;
  --lime: #C7F542;
  --lime-bright: #D9FF52;
  --lime-deep: #9BC322;

  /* Accent */
  --clay: #C75A2C;
  --wa: #25D366;

  /* Type */
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Space Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;

  /* Layout */
  --container: 1280px;
  --container-narrow: 820px;
  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Header height */
  --header-h: 80px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-h);
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-width: 320px;
}
/* Kill default blue/grey tap flash on mobile */
a, button, summary, [role="button"] { -webkit-tap-highlight-color: transparent; }
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4, h5 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--green-700);
  outline-offset: 3px;
  border-radius: 2px;
}


::selection { background: var(--lime); color: var(--ink); }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--lime);
  padding: 12px 18px; z-index: 1000;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: var(--container-narrow); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: transform .2s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  min-height: 48px;
  cursor: pointer;
}
.btn .ico { width: 18px; height: 18px; flex-shrink: 0; }
.btn-sm { padding: 10px 18px; font-size: 12px; min-height: 40px; gap: 8px; }
.btn-lg { padding: 18px 32px; font-size: 15px; min-height: 56px; }
.btn-xl { padding: 22px 38px; font-size: 16px; min-height: 64px; }

.btn-primary {
  background: var(--ink);
  color: var(--lime);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--lime);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-lime {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}
.btn-lime:hover {
  background: var(--ink);
  color: var(--lime);
  border-color: var(--ink);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--lime); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-light:hover { background: #fff; color: var(--ink); }

.btn-wa {
  background: var(--wa);
  color: #fff;
  border-color: var(--wa);
}
.btn-wa:hover {
  background: #1DB955;
  border-color: #1DB955;
  transform: translateY(-1px);
}

/* Arrow inside button */
.btn .arrow {
  width: 14px; height: 14px;
  transition: transform .25s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  /* Height grows by the iOS safe-area so the inner content sits below
     the status bar (notch / Dynamic Island). */
  height: calc(var(--header-h) + env(safe-area-inset-top));
  padding-top: env(safe-area-inset-top);
  background: rgba(250, 250, 247, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s;
}
.site-header.scrolled,
.site-header.menu-open {
  background: rgba(250, 250, 247, 0.98);
  border-bottom-color: var(--line);
}
/* When the drawer is open we drop backdrop-filter so the header doesn't
   create a containing block that would clip the (now-sibling) drawer on
   older WebKit. Solid background covers the loss of blur cleanly. */
.site-header.menu-open {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
/* Dark hero variant — header is transparent over hero, but only while menu is closed and not scrolled */
.site-header.over-hero {
  background: transparent;
  border-bottom-color: transparent;
}
/* Higher-specificity overrides so .scrolled / .menu-open ALWAYS beat
   `.site-header.over-hero` regardless of source order */
.site-header.over-hero.scrolled,
.site-header.over-hero.menu-open {
  background: rgba(250, 250, 247, 0.98);
  border-bottom-color: var(--line);
}
.site-header.over-hero.menu-open {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.site-header.over-hero:not(.scrolled):not(.menu-open) .nav-desktop a,
.site-header.over-hero:not(.scrolled):not(.menu-open) .lang-toggle,
.site-header.over-hero:not(.scrolled):not(.menu-open) .menu-btn span { color: #fff; }
.site-header.over-hero:not(.scrolled):not(.menu-open) .menu-btn span { background: #fff; }
.site-header.over-hero:not(.scrolled):not(.menu-open) .lang-toggle { border-color: rgba(255,255,255,0.4); color: #fff; }
.site-header.over-hero:not(.scrolled):not(.menu-open) .lang-toggle .lang-current { color: var(--lime); }
.site-header.over-hero:not(.scrolled):not(.menu-open) .menu-btn { border-color: rgba(255,255,255,0.4); }
.site-header.over-hero:not(.scrolled):not(.menu-open) .brand-text { color: #fff; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.brand img {
  height: 56px;
  width: auto;
  display: block;
  transition: filter .25s;
}
/* The wordmark is dark, so over a dark hero photo it gets a white backing
   that follows the logo's shape. On the scrolled (cream) header the glow
   drops away so the logo sits clean on the light bar. */
.site-header.over-hero:not(.scrolled):not(.menu-open) .brand img {
  filter:
    drop-shadow(0 0 2px #fff)
    drop-shadow(0 0 3px #fff)
    drop-shadow(0 0 5px #fff)
    drop-shadow(0 0 10px rgba(255,255,255,0.5));
}
.brand:hover img { transform: translateY(-1px); }
.brand-text { display: none; }

.nav-desktop {
  display: none;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav-desktop a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-2);
  padding: 8px 0;
  position: relative;
  transition: color .2s;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--lime-deep);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s var(--ease);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after,
.nav-desktop a.active::after { transform: scaleX(1); }
.nav-desktop a.active { color: var(--ink); font-weight: 700; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  border: 1.5px solid var(--line-strong);
  border-radius: 999px;
  transition: border-color .2s, color .2s;
}
.lang-toggle:hover { border-color: var(--ink); color: var(--ink); }
.lang-toggle .lang-current { color: var(--green-700); }
.lang-toggle .lang-sep { opacity: 0.4; }

.menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  transition: border-color .2s;
}
.menu-btn:hover { border-color: var(--ink); }
.menu-btn span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  transition: transform .25s, opacity .2s;
}
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.header-cta { display: none; }

/* Mobile nav drawer — now a sibling of .site-header so its
   position:fixed always resolves against the viewport */
.nav-mobile {
  position: fixed;
  /* Start below the full header including iOS safe-area */
  inset: calc(var(--header-h) + env(safe-area-inset-top)) 0 0 0;
  background: var(--bg);
  z-index: 99;
  padding: 24px;
  padding-bottom: max(24px, env(safe-area-inset-bottom));
  display: none;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: manipulation;
}
.nav-mobile a { touch-action: manipulation; }
.nav-mobile.open { display: flex; }
.nav-mobile a:not(.btn) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 8px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.nav-mobile a.active { color: var(--green-700); }
.nav-mobile a:not(.btn)::after {
  content: "→";
  color: var(--muted);
  font-weight: 400;
}
.nav-mobile .nav-mobile-cta {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}
.nav-mobile .btn { justify-content: center; }

/* ---------- Page Hero (Karatzis-inspired full-bleed) ---------- */
.page-hero {
  position: relative;
  min-height: 88vh;            /* fallback */
  min-height: 88svh;           /* iOS Safari: ignores collapsing chrome */
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  margin-top: 0;
  background: var(--ink);
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    /* Side gradient — darker where the text lives */
    linear-gradient(90deg, rgba(7,16,10,0.85) 0%, rgba(7,16,10,0.62) 40%, rgba(7,16,10,0.35) 70%, rgba(7,16,10,0.2) 100%),
    /* Top + bottom shading */
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.85) 100%);
  z-index: 2;
}
.page-hero .hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transform: scale(1.05);
  animation: heroZoom 14s var(--ease-out) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}
.page-hero .container {
  position: relative;
  z-index: 3;
  padding-top: calc(var(--header-h) + env(safe-area-inset-top) + 60px);
  padding-bottom: 70px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--lime);
}

.hero-title {
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  max-width: 18ch;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45), 0 1px 2px rgba(0,0,0,0.5);
}
.hero-title .accent {
  color: var(--lime);
  font-style: italic;
}
.hero-title-display {
  display: block;
  font-family: var(--font-display);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
  max-width: 56ch;
  color: #fff;
  margin-bottom: 36px;
  font-weight: 400;
  text-shadow: 0 1px 12px rgba(0,0,0,0.55), 0 1px 2px rgba(0,0,0,0.6);
}


.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta-label {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero-meta-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  letter-spacing: -0.01em;
}
.hero-meta-value a { color: var(--lime); transition: color .2s; }
.hero-meta-value a:hover { color: #fff; }

/* Scroll indicator */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 4;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, var(--lime), transparent);
  animation: scrollLine 2s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Smaller hero variant for inner pages */
.page-hero.compact { min-height: 60vh; min-height: 60svh; }
.page-hero.compact .hero-title { font-size: clamp(36px, 5.5vw, 72px); max-width: 22ch; }

/* ---------- Section base ---------- */
.section {
  padding: clamp(70px, 9vw, 130px) 0;
  position: relative;
}
.section-alt { background: var(--bg-2); }
.section-dark {
  background: var(--ink);
  color: #fff;
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-green {
  background: var(--green-800);
  color: #fff;
  background-image:
    radial-gradient(circle at 15% 15%, rgba(199,245,66,0.15), transparent 50%),
    radial-gradient(circle at 85% 85%, rgba(155,195,34,0.18), transparent 50%);
}
.section-green h1, .section-green h2, .section-green h3, .section-green h4 { color: #fff; }

.section-head {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-head.left {
  text-align: left;
  margin-left: 0;
}
.section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 18px;
}
.section-head .eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--green-700);
}
.section-dark .section-head .eyebrow,
.section-green .section-head .eyebrow { color: var(--lime); }
.section-dark .section-head .eyebrow::before,
.section-green .section-head .eyebrow::before { background: var(--lime); }

.section-head h2 {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.section-head h2 .italic { font-style: italic; color: var(--green-700); }
.section-dark .section-head h2 .italic,
.section-green .section-head h2 .italic { color: var(--lime); }
.section-head p {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.55;
  color: var(--text);
}
.section-dark .section-head p,
.section-green .section-head p { color: rgba(255,255,255,0.85); }

/* ---------- Intro band (home) ---------- */
.intro-band {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--line);
}
.intro-band-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}
.intro-band-tag {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-700);
}
.intro-band-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 28ch;
}
.intro-band-text em {
  color: var(--green-700);
  font-style: italic;
}
.intro-band-side p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
  max-width: 50ch;
}
.intro-band-side .link-arrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 6px;
  transition: gap .25s var(--ease);
}
.intro-band-side .link-arrow:hover { gap: 14px; }

/* ---------- Editorial split (image + text) ---------- */
.editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.editorial.reverse > .editorial-text { order: 2; }
.editorial-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
}
.editorial-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.editorial-image:hover img { transform: scale(1.04); }
.editorial-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0,0,0,0.06);
  pointer-events: none;
}
.editorial-text .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 18px;
}
.editorial-text .eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--green-700);
}
.editorial-text h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.editorial-text h2 .italic { font-style: italic; color: var(--green-700); }
.editorial-text p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
  max-width: 52ch;
}
.editorial-text .editorial-cta { margin-top: 18px; }

/* ---------- Services cards (editorial grid) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  position: relative;
  background: var(--surface);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .3s, transform .35s var(--ease);
  overflow: hidden;
}
.service-card:hover {
  background: var(--surface-alt);
}
.service-card-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--green-700);
}
.service-card-ico {
  width: 48px; height: 48px;
  color: var(--ink);
  margin-bottom: 8px;
}
.service-card-ico svg { width: 100%; height: 100%; }
.service-card h3 {
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.service-card p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  flex: 1;
}
.service-card-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  align-self: flex-start;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  transition: gap .25s var(--ease), border-color .2s;
}
.service-card-link:hover { gap: 14px; border-color: var(--ink); }

.service-card.featured {
  background: var(--ink);
  color: #fff;
}
.service-card.featured h3 { color: #fff; }
.service-card.featured p { color: rgba(255,255,255,0.8); }
.service-card.featured .service-card-num { color: var(--lime); }
.service-card.featured .service-card-ico { color: var(--lime); }
.service-card.featured .service-card-link { color: #fff; border-bottom-color: transparent; }
.service-card.featured .service-card-link:hover { border-bottom-color: var(--lime); color: var(--lime); }
.service-card.featured:hover { background: #050908; }

/* Service detail (long card with image) */
.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  margin-bottom: 24px;
}
.service-detail-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.service-detail-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.service-detail:hover .service-detail-image img { transform: scale(1.04); }
.service-detail-image::after {
  content: "";
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 12px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.service-detail:nth-child(1) .service-detail-image::after { content: "01 — Install"; }
.service-detail:nth-child(2) .service-detail-image::after { content: "02 — Maintain"; }
.service-detail:nth-child(3) .service-detail-image::after { content: "03 — Nets"; }
.service-detail:nth-child(4) .service-detail-image::after { content: "04 — Repair"; }
.service-detail:nth-child(5) .service-detail-image::after { content: "05 — Renovate"; }
.service-detail-body {
  padding: 36px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-detail-body h3 {
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.service-detail-body p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
}
.service-detail-features {
  list-style: none;
  padding: 0;
  margin-top: 8px;
  display: grid;
  gap: 10px;
}
.service-detail-features li {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-2);
  padding-left: 4px;
}
.service-detail-features li::before {
  content: "→";
  color: var(--green-700);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- Sports grid (Karatzis-style product cards) ---------- */
.sports-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.sport-card {
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .3s, transform .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.sport-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}
.sport-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-2);
}
.sport-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.sport-card:hover .sport-card-image img { transform: scale(1.05); }
.sport-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.sport-card-tag {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.94);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}
.sport-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.sport-card-body h3 {
  font-size: 19px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.sport-card-body p {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.6;
}

/* ---------- Why grid (stat-style cards) ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
}
.why-card {
  background: var(--bg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.section-alt .why-card { background: var(--bg-2); }
.why-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--green-700);
  margin-bottom: 4px;
}
.why-card h3 {
  font-size: 19px;
  letter-spacing: -0.015em;
}
.why-card p {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.6;
}

/* ---------- Process steps ---------- */
.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  counter-reset: step;
}
.process-step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 36px 30px 32px;
  counter-increment: step;
  transition: border-color .3s, transform .35s var(--ease);
}
.process-step:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--green-700);
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.process-step h3 {
  font-size: 22px;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.process-step p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}
.section-dark .process-step,
.section-green .process-step {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
}
.section-dark .process-step h3,
.section-green .process-step h3 { color: #fff; }
.section-dark .process-step p,
.section-green .process-step p { color: rgba(255,255,255,0.78); }
.section-dark .process-step::before,
.section-green .process-step::before { color: var(--lime); }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-2);
  border-radius: 2px;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px 22px 18px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.78) 100%);
  color: #fff;
  z-index: 2;
}
.gallery-item-tag {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 4px;
}
.gallery-item-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.gallery-item.tall { aspect-ratio: 3 / 4; }
.gallery-item.wide { aspect-ratio: 16 / 9; }

/* ---------- Areas ---------- */
.areas-band {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--line);
}
.areas-band li {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  padding: 22px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: -1px;
  background: var(--surface);
  color: var(--ink-2);
  transition: background .25s, color .25s;
  letter-spacing: -0.005em;
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  white-space: nowrap;
}
.areas-band li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--green-700);
  border-radius: 50%;
}
.areas-band li:hover {
  background: var(--ink);
  color: #fff;
}
.areas-band li:hover::before { background: var(--lime); }
.areas-band li.primary {
  background: var(--lime);
  color: var(--ink);
}
.areas-band li.primary::before { background: var(--ink); }

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  -webkit-tap-highlight-color: transparent;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--green-700); }
.faq-icon {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  font-size: 22px;
  color: var(--green-700);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform .3s var(--ease);
  font-family: var(--font-sans);
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-item p {
  padding: 0 0 28px;
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  max-width: 70ch;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}
.trust-strip-label {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.trust-strip-items {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
}
.trust-strip-items li {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.005em;
}
.trust-strip-items li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--green-700);
  border-radius: 50%;
}

/* ---------- CTA block (repeated section before footer) ---------- */
.cta-block {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--green-800);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 400px at 10% 10%, rgba(199,245,66,0.14), transparent 60%),
    radial-gradient(700px 400px at 90% 90%, rgba(155,195,34,0.18), transparent 60%);
}
.cta-block .container { position: relative; }
.cta-block-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: end;
}
.cta-block-heading h2 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 16px;
  max-width: 14ch;
}
.cta-block-heading h2 .italic { font-style: italic; color: var(--lime); }
.cta-block-heading p {
  font-size: clamp(16px, 1.8vw, 18px);
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  max-width: 48ch;
}
.cta-block-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-block .btn { width: 100%; justify-content: space-between; }
.cta-block-tel {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.18);
  margin-top: 4px;
  transition: color .2s;
}
.cta-block-tel:hover { color: var(--lime); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  padding: 70px 0 24px;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-700), var(--lime), var(--green-700));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img {
  height: auto;
  width: 210px;
  max-width: 100%;
  margin-bottom: 18px;
  display: block;
  /* White backing that follows the logo's shape (not a rectangle) so the
     dark wordmark reads on the dark footer. */
  filter:
    drop-shadow(0 0 2px #fff)
    drop-shadow(0 0 3px #fff)
    drop-shadow(0 0 5px #fff)
    drop-shadow(0 0 11px rgba(255,255,255,0.55));
}
.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.footer-brand-tag {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  max-width: 36ch;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 18px;
}
.footer-col ul li, .footer-col address {
  margin-bottom: 10px;
  font-size: 14.5px;
  line-height: 1.6;
}
.footer-col address { font-style: normal; color: rgba(255,255,255,0.78); }
.footer-col a {
  color: rgba(255,255,255,0.78);
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-col a:hover { color: var(--lime); }
.footer-col svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.footer-bottom strong { color: var(--lime); font-weight: 600; }
.footer-credit {
  flex-basis: 100%;
  text-align: right;
  margin-top: 4px;
  font-size: 11.5px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.3);
}
.footer-credit a,
.footer-credit span { color: rgba(255,255,255,0.5); }
.footer-credit a { transition: color .2s; }
.footer-credit a:hover { color: var(--lime); }

/* ---------- Sticky WhatsApp (icon-only circular bubble) ---------- */
.sticky-wa {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 0;
  background: var(--wa);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45),
              0 2px 6px rgba(0, 0, 0, 0.18);
  transition: transform .2s var(--ease), box-shadow .2s, background .2s;
}
.sticky-wa svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.sticky-wa:hover, .sticky-wa:active {
  transform: translateY(-3px) scale(1.04);
  background: #1DB955;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.6),
              0 4px 10px rgba(0, 0, 0, 0.22);
}
/* Subtle attention-pulse ring (paused for reduced motion) */
.sticky-wa::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--wa);
  opacity: 0.6;
  animation: stickyWaPulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes stickyWaPulse {
  0%   { transform: scale(0.92); opacity: 0.55; }
  70%  { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-wa::before { animation: none; opacity: 0; }
}

/* ---------- Reveal animation ----------
   PURE CSS, no JS dependency. The animation runs once on page load.
   Final state is `opacity: 1; transform: none;` — content is ALWAYS
   visible after the animation completes, regardless of what JS does.
   This is the bulletproof version: no observer, no class toggles,
   no way for elements to get stuck invisible. */
[data-reveal] {
  animation: tfRevealIn 0.7s var(--ease-out) both;
}
@keyframes tfRevealIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .page-hero .hero-img { animation: none; transform: none; }
}

/* ---------- Responsive breakpoints ---------- */
@media (min-width: 560px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .sports-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .intro-band-grid { grid-template-columns: 1.2fr 1fr; gap: 60px; }
}

@media (min-width: 860px) {
  :root { --header-h: 88px; }
  .nav-desktop { display: flex; }
  .menu-btn { display: none; }
  .header-cta { display: inline-flex; }
  .brand-text { display: inline; }

  .page-hero .container { padding-bottom: 90px; }
  .scroll-cue { display: flex; }
  .hero-meta { gap: 36px 60px; }

  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .sports-grid { grid-template-columns: repeat(3, 1fr); }

  .service-detail { grid-template-columns: 1.1fr 1fr; }
  .service-detail.reverse { grid-template-columns: 1fr 1.1fr; }
  .service-detail.reverse .service-detail-image { order: 2; }
  .service-detail-body { padding: 50px 50px; justify-content: center; }

  .editorial { grid-template-columns: 1fr 1fr; gap: 70px; }
  .editorial.reverse > .editorial-text { order: 1; }
  .editorial.reverse > .editorial-image { order: 2; }
  .editorial.wide-image { grid-template-columns: 1.3fr 1fr; }

  .process { grid-template-columns: repeat(3, 1fr); }

  .gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .trust-strip-inner { grid-template-columns: auto 1fr; gap: 36px; }

  .cta-block-grid { grid-template-columns: 1.4fr 1fr; gap: 60px; }
  .cta-block-actions .btn { width: auto; }
  .cta-block-actions { align-items: flex-end; }

  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }

  /* Sticky WA only on mobile (desktop has header CTA) */
  .sticky-wa { display: none; }
}

@media (min-width: 1100px) {
  .hero-title { font-size: clamp(56px, 6.4vw, 104px); }
}

/* =========================================================
   Mobile refinements (≤859px) and small-phone tweaks (≤479px)
   ========================================================= */
@media (max-width: 859px) {
  :root { --header-h: 76px; }

  /* Container: trim padding for breathing room */
  .container { padding: 0 20px; }

  /* Header — substantial but compact logo */
  .brand img { height: 50px; }
  .header-inner { gap: 10px; }
  .lang-toggle {
    padding: 10px 12px;
    font-size: 12.5px;
    min-height: 40px;
  }
  .menu-btn { width: 44px; height: 44px; }

  /* Hero — full-bleed CTAs stack cleanly */
  .page-hero .container {
    padding-top: calc(var(--header-h) + 48px);
    padding-bottom: 56px;
  }
  .hero-title { max-width: 100%; }
  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.16em;
    margin-bottom: 18px;
  }
  .hero-eyebrow::before { width: 20px; }
  .hero-sub { font-size: 16px; line-height: 1.55; margin-bottom: 28px; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* Hero meta — clean 2-column grid instead of uneven wrap */
  .hero-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 16px;
    padding-top: 22px;
  }
  .hero-meta-label { font-size: 10px; letter-spacing: 0.16em; }
  .hero-meta-value { font-size: 15px; }
  .hero-meta-value a { word-break: break-all; }

  /* Section heads: slightly tighter on phones */
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: clamp(28px, 7vw, 40px); }
  .section-head .eyebrow { font-size: 11px; letter-spacing: 0.16em; margin-bottom: 14px; }

  /* Intro band */
  .intro-band { padding: 56px 0 48px; }
  .intro-band-text { font-size: clamp(22px, 5.4vw, 28px); max-width: 100%; }

  /* Service / sport / why / process cards: looser inner padding on small screens */
  .service-card { padding: 28px 22px; gap: 14px; }
  .service-card h3 { font-size: 20px; }
  .why-card { padding: 28px 22px; }
  .why-num { font-size: 48px; }
  .process-step { padding: 28px 22px; }
  .process-step h3 { font-size: 20px; }
  .sport-card-body { padding: 20px 18px 22px; }

  /* Service detail cards: photo + body comfortable on mobile */
  .service-detail-body { padding: 28px 22px 32px; }
  .service-detail-image::after {
    top: 12px; left: 12px;
    padding: 5px 10px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  /* Areas band: allow wrap, prevent overflow on long names */
  .areas-band li {
    white-space: normal;
    padding: 16px 18px;
    font-size: 14px;
    flex: 1 1 calc(50% - 1px);
    min-width: 0;
  }

  /* FAQ: comfortable padding and font on mobile */
  .faq-item summary { padding: 22px 0; font-size: 16.5px; gap: 14px; }
  .faq-item p { font-size: 15.5px; padding-bottom: 22px; }
  .faq-icon { width: 28px; height: 28px; font-size: 20px; }

  /* CTA block buttons — centered, not space-between */
  .cta-block { padding: 64px 0 72px; }
  .cta-block .btn {
    width: 100%;
    justify-content: center;
  }
  .cta-block-tel { font-size: 19px; }
  .cta-block-heading h2 { max-width: 100%; }

  /* Editorial split — image not full-screen-tall on mobile */
  .editorial { gap: 28px; }
  .editorial-image { aspect-ratio: 4 / 3; }
  .editorial-text h2 { font-size: clamp(24px, 6.4vw, 36px); }
  .editorial-text p { font-size: 16px; }

  /* Trust strip — tidy on mobile */
  .trust-strip { padding: 28px 0; }
  .trust-strip-items { gap: 10px 16px; }
  .trust-strip-items li { font-size: 13.5px; }
  .trust-strip-label { font-size: 11px; letter-spacing: 0.16em; }

  /* Footer — slightly tighter. Extra bottom space so the credit line
     clears the floating WhatsApp button on phones. */
  .site-footer { padding: 52px 0 88px; }
  .footer-brand img { width: 200px; }
  .footer-bottom { font-size: 12.5px; }

  /* Sticky WhatsApp — slightly smaller circle on phones to free corner space */
  .sticky-wa {
    width: 56px;
    height: 56px;
  }
  .sticky-wa svg { width: 28px; height: 28px; }

  /* Mobile nav: ensure scrollable when content tall on short phones */
  .nav-mobile { padding: 20px 20px max(24px, env(safe-area-inset-bottom)); }
}

/* Small phones (iPhone SE, 320–479px) */
@media (max-width: 479px) {
  .container { padding: 0 18px; }
  .brand img { height: 46px; }
  .lang-toggle { padding: 9px 11px; font-size: 11.5px; }
  .header-inner { gap: 8px; }

  .hero-title { font-size: clamp(36px, 11vw, 56px); }
  .hero-sub { font-size: 15.5px; }
  .hero-meta { grid-template-columns: 1fr; gap: 14px; }

  .section { padding: 56px 0; }
  .section-head h2 { font-size: clamp(26px, 8vw, 36px); }

  .btn-lg, .btn-xl { padding: 14px 22px; font-size: 14px; min-height: 52px; }

  .areas-band li { flex: 1 1 100%; }

  /* Footer brand block centered for balance on tiny screens */
  .footer-brand img { width: 180px; }
}

/* Print friendly */
@media print {
  .site-header, .sticky-wa, .scroll-cue, .cta-block { display: none; }
  .page-hero { min-height: auto; color: var(--ink); }
  .page-hero::before, .page-hero .hero-img { display: none; }
}
