/* ============================================================
   ANS STRUCTURAL LTD — styles.css
   Rebuld-style single page · cool steel palette from the logo
   ------------------------------------------------------------
   Brand tokens live in :root — swap them here, nowhere else.
   ============================================================ */

/* ---------- Self-hosted fonts (no third-party requests) ---------- */
@font-face {
  font-family: 'Cabinet Grotesk';
  src: url('assets/fonts/cabinet-grotesk-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cabinet Grotesk';
  src: url('assets/fonts/cabinet-grotesk-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cabinet Grotesk';
  src: url('assets/fonts/cabinet-grotesk-800.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/inter-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/inter-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/inter-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/inter-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

:root {
  /* Palette (derived from the ANS brushed-metal logo) */
  --bg:    #EEF2F7;   /* cool light steel mist — page background */
  --ink:   #1C2A47;   /* deep steel navy — primary text + primary button fill */
  --steel: #40567A;   /* mid slate blue — secondary text, borders, dividers */
  --pop:   #1A90AB;   /* structural teal — links & accents */
  --cyan:  #45C0D8;   /* bright chrome cyan — text on navy buttons, highlights */
  --mist:  #D6E1EC;   /* pale steel blue — soft badge / highlight blocks */
  --white: #FFFFFF;

  /* Cool pastel tints — card plates, number tiles, marker highlights */
  --tint-cyan:  #C7EAF4;  /* pale chrome cyan — the signature marker */
  --tint-blue:  #D7E4F6;  /* pale steel blue */
  --tint-slate: #DFE0F2;  /* pale slate lavender */
  --tint-teal:  #CDEAE4;  /* pale cool teal */
  --footer-bg:  #101B31;  /* deepest navy — footer */
  --card-shadow: 0 32px 56px -40px rgba(28, 42, 71, 0.4);

  /* Derived tints */
  --ink-90: rgba(28, 42, 71, 0.9);
  --steel-30: rgba(64, 86, 122, 0.3);
  --steel-15: rgba(64, 86, 122, 0.15);
  --hairline: 1px solid rgba(64, 86, 122, 0.28);

  /* Type */
  --font-display: 'Cabinet Grotesk', 'Geist', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --fs-display: clamp(3.5rem, 12vw, 160px);
  --fs-h2: clamp(2.25rem, 6vw, 88px);
  --fs-h3: clamp(1.5rem, 2.6vw, 2.25rem);
  --fs-body: clamp(1rem, 0.4vw + 0.9rem, 1.125rem);

  /* Rhythm (base unit 4px) */
  --gutter: clamp(20px, 4vw, 56px);
  --section-pad: clamp(64px, 10vw, 140px);
  --nav-h: 76px;

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

  /* Metallic sweep for display type */
  --metal-dark: linear-gradient(100deg, var(--ink) 0%, var(--steel) 55%, var(--pop) 100%);
  --metal-light: linear-gradient(100deg, #ffffff 0%, var(--mist) 48%, var(--cyan) 100%);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--pop); text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
ul, ol { list-style: none; }
:focus-visible { outline: 3px solid var(--pop); outline-offset: 3px; }
::selection { background: var(--cyan); color: var(--ink); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--cyan); padding: 12px 24px; border-radius: 100px;
}
.skip-link:focus { left: 16px; top: 12px; }

/* ---------- Shared layout ---------- */
.container { padding-inline: var(--gutter); margin-inline: auto; max-width: 1680px; }
section { padding-block: var(--section-pad); }

/* Marker chip — the Rebuld-style highlighter, in chrome cyan */
.eyebrow {
  display: inline-block;
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink);
  background: var(--tint-cyan);
  padding: 6px 14px;
  margin-bottom: 22px;
}

.section-head { max-width: 1180px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.section-head p.intro { max-width: 68ch; color: var(--steel); font-size: 1.0625rem; }

/* Two-tone heading accent */
.h2-accent { color: var(--pop); }
.stats .h2-accent, .contact .h2-accent { color: var(--cyan); }

/* Inline marker highlight for key phrases */
mark, .hl {
  background: var(--tint-cyan);
  color: var(--ink);
  padding: 2px 8px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.hl-cyan { color: var(--cyan); font-weight: 600; }

/* Section rhythm — alternate white / mist / navy bands */
#about, #portfolio, #team, #faqs { background: var(--white); }
#pricing { background: var(--mist); }
.process { background: var(--bg); }

.grad-text {
  background: var(--metal-dark);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons (pills — the only rounded thing on the site) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 100px;
  padding: 16px 34px;
  font-weight: 600; font-size: 1rem; line-height: 1;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), background-color 0.25s var(--ease-out), color 0.25s var(--ease-out);
  will-change: transform;
  min-height: 52px;
}
.btn:hover { transform: scale(1.03); }
.btn:active { transform: scale(0.98); }
.btn--primary { background: var(--ink); color: var(--cyan); }
.btn--primary:hover { background: var(--steel); color: var(--white); }
.btn--ghost { background: var(--white); color: var(--pop); border: 1px solid var(--steel-30); }
.btn--ghost:hover { border-color: var(--pop); }
.btn--lg { padding: 20px 42px; font-size: 1.0625rem; }

/* Hero CTA — bright accent fill so it reads against the dark hero footage, not the muted navy fill */
.btn--hero {
  background: var(--cyan); color: var(--ink);
  padding: 20px 40px; font-size: 1.0625rem;
  gap: 10px;
  box-shadow: 0 22px 44px -16px rgba(69, 192, 216, 0.5);
  transition: transform 0.25s var(--ease-out), background-color 0.25s var(--ease-out), color 0.25s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.btn--hero:hover { background: var(--white); color: var(--ink); box-shadow: 0 26px 52px -14px rgba(69, 192, 216, 0.65); }
.btn--hero .btn-arrow { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.3s var(--ease-out); }
.btn--hero:hover .btn-arrow { transform: translateX(4px); }

/* hover-swap doubled label */
.btn .btn-text { display: block; overflow: hidden; height: 1em; }
.btn .btn-text > span {
  display: block; height: 1em; line-height: 1;
  transition: transform 0.35s var(--ease-out);
}
.btn:hover .btn-text > span { transform: translateY(-100%); }

/* ---------- Image frames: sharp corners, hover zoom ---------- */
.frame { overflow: hidden; position: relative; background: var(--mist); }
.frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.frame:hover img, a:focus-visible .frame img { transform: scale(1.05); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}
.site-header .nav-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 42px; width: auto; transition: filter 0.35s ease; }
/* over the dark hero the wordmark runs as a white silhouette */
.site-header:not(.is-solid) .logo img { filter: brightness(0) invert(1); }
.site-header.is-solid {
  background: var(--bg);
  box-shadow: 0 1px 0 rgba(64, 86, 122, 0.25), 0 12px 32px -24px rgba(28, 42, 71, 0.35);
}
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); }
.nav-links a {
  color: var(--white); font-weight: 500; font-size: 0.9375rem;
  position: relative; padding: 6px 0;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--cyan); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover::after { transform: scaleX(1); }
/* Scrollspy: link of the section currently in view keeps its underline */
.nav-links a.is-current { color: var(--cyan); }
.nav-links a.is-current::after { transform: scaleX(1); }
.site-header.is-solid .nav-links a { color: var(--ink); }
.site-header.is-solid .nav-links a::after { background: var(--pop); }
.site-header.is-solid .nav-links a.is-current { color: var(--pop); }
.nav-cta { flex-shrink: 0; }
.site-header:not(.is-solid) .btn--nav { background: var(--white); color: var(--ink); }
.site-header:not(.is-solid) .btn--nav:hover { background: var(--cyan); }
.btn--nav { padding: 13px 26px; min-height: 44px; }

/* Hamburger */
.nav-burger {
  display: none;
  width: 48px; height: 48px;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.nav-burger span {
  display: block; width: 26px; height: 2px; background: var(--white);
  transition: transform 0.3s var(--ease-out), opacity 0.3s ease, background-color 0.3s ease;
}
.site-header.is-solid .nav-burger span { background: var(--ink); }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile overlay menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu a.mobile-link {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 9vw, 3.6rem);
  font-weight: 800; text-transform: uppercase; letter-spacing: -0.02em;
  color: var(--mist); padding: 6px 0;
  transform: translateY(24px); opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.5s ease, color 0.2s ease;
}
.mobile-menu.is-open a.mobile-link { transform: translateY(0); opacity: 1; }
.mobile-menu a.mobile-link:hover { color: var(--cyan); }
.mobile-menu .mobile-contact { margin-top: 40px; color: var(--steel); display: grid; gap: 6px; }
.mobile-menu .mobile-contact a { color: var(--cyan); font-weight: 600; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 0; color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img,
.hero-bg video { width: 100%; height: 100%; object-fit: cover; transform: translateZ(0); }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    rgba(16, 24, 42, 0.78) 0%,
    rgba(16, 24, 42, 0.42) 38%,
    rgba(16, 24, 42, 0.38) 60%,
    rgba(16, 24, 42, 0.82) 100%);
}
.hero-top {
  padding-top: calc(var(--nav-h) + clamp(24px, 4vh, 48px));
  position: relative; z-index: 2;
}
.hero-words { position: relative; z-index: 2; }
.hero-top .hero-rule { border-top: 1px solid rgba(238, 242, 247, 0.35); padding-top: clamp(20px, 3vh, 36px); }
.hero-meta {
  display: grid; grid-template-columns: 1fr auto; gap: clamp(20px, 4vw, 64px);
  align-items: start;
}
.hero-sub { max-width: 52ch; color: rgba(238, 242, 247, 0.92); font-size: 1.0625rem; }
.hero-words {
  padding-bottom: clamp(28px, 5vh, 64px);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-display);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  display: flex; flex-direction: column;
}
.hero-line { overflow: hidden; }
.hero-line > span {
  display: block;
  background: var(--metal-light);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-line--right { text-align: right; }

/* Desktop-only: more breathing room + a touch more weight on the hero copy */
@media (min-width: 1081px) {
  .hero-meta { gap: clamp(48px, 6vw, 88px); }
  .hero-sub { font-size: 1.1875rem; line-height: 1.6; }
}

/* ============================================================
   TRUST BAR (marquee strip)
   ============================================================ */
.trustbar {
  padding: 0; border-block: var(--hairline);
  overflow: hidden; background: var(--bg);
}
.trustbar .tb-track {
  display: flex; width: max-content; align-items: center;
  padding-block: 18px;
}
.trustbar .tb-item {
  display: inline-flex; align-items: center; gap: 14px;
  padding-inline: 28px;
  font-size: 0.9375rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--steel); white-space: nowrap;
}
.trustbar .tb-item svg { width: 14px; height: 14px; color: var(--pop); flex-shrink: 0; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 96px);
  align-items: start;
  margin-top: clamp(32px, 4vw, 56px);
}
.about-copy p.lead { color: var(--steel); max-width: 62ch; }
.statement {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 4rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.02em;
  margin: clamp(36px, 5vw, 64px) 0;
  max-width: 24ch;
}
.statement .word { opacity: 0.16; display: inline-block; }
.values { display: grid; gap: 0; border-top: var(--hairline); }
.value {
  display: grid; grid-template-columns: 56px 1fr; gap: 20px;
  padding: 26px 0; border-bottom: var(--hairline);
}
.value .v-icon {
  width: 48px; height: 48px; display: grid; place-items: center;
  background: var(--mist); color: var(--ink);
}
.value .v-icon svg { width: 24px; height: 24px; }
.value h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 6px; }
.value p { color: var(--steel); font-size: 0.9875rem; max-width: 52ch; }
.about-media { position: sticky; top: calc(var(--nav-h) + 24px); }
.about-media .frame { aspect-ratio: 4 / 5; }
.about-media figcaption { margin-top: 12px; font-size: 0.8125rem; color: var(--steel); }

/* ============================================================
   STATS / CREDENTIALS BAND
   ============================================================ */
.stats { background: var(--ink); color: var(--bg); }
.stats .eyebrow { color: var(--cyan); }
.stats .eyebrow::before { background: var(--cyan); }
.stats .section-head p.intro { color: var(--mist); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
  margin-top: clamp(40px, 6vw, 80px);
}
/* White stat cards, stair-stepped, with a pastel edge stripe + corner bracket */
.stat {
  position: relative;
  background: var(--white);
  padding: 30px 26px 26px;
  border-left: 6px solid var(--tint-cyan);
  box-shadow: var(--card-shadow);
}
.stat:nth-child(2) { border-left-color: var(--tint-blue); margin-top: 40px; }
.stat:nth-child(3) { border-left-color: var(--tint-slate); margin-top: 80px; }
.stat:nth-child(4) { border-left-color: var(--tint-teal); margin-top: 120px; }
.stat::after {
  content: ''; position: absolute; top: 18px; right: 18px;
  width: 14px; height: 14px;
  border-top: 2px solid var(--pop); border-right: 2px solid var(--pop);
}
.stat .stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 800; line-height: 1; letter-spacing: -0.02em; text-transform: uppercase;
  background: var(--metal-dark);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  display: block; margin-bottom: 40px;
  min-height: 1em;
}
.stat h3 { font-size: 1.0625rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.stat p { color: var(--steel); font-size: 0.9375rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.service-list { margin-top: clamp(40px, 6vw, 88px); display: grid; gap: clamp(56px, 8vw, 120px); }
.service {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4.5vw, 88px);
  align-items: center;
  background: var(--white);
  box-shadow: var(--card-shadow);
  padding: clamp(24px, 3.5vw, 56px);
}
.service:nth-child(even) .service-media { order: 2; }
.service-media .frame { aspect-ratio: 4 / 3; }
.service-index {
  font-family: var(--font-display); font-weight: 800; font-size: 0.9375rem;
  letter-spacing: 0.1em; color: var(--pop); display: block; margin-bottom: 14px;
}
.service h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3); font-weight: 800; letter-spacing: -0.015em; line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.service .s-desc { color: var(--steel); max-width: 56ch; margin-bottom: 22px; }
.service ul { display: grid; gap: 10px; margin-bottom: 26px; }
.service ul li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.9875rem; }
.service ul li svg { width: 18px; height: 18px; color: var(--pop); flex-shrink: 0; margin-top: 3px; }
.service-meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--steel-30); border: var(--hairline);
  max-width: 520px;
}
.service-meta > div { background: var(--bg); padding: 14px 18px; }
.service-meta dt {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--steel); margin-bottom: 4px;
}
.service-meta dd { font-weight: 700; font-size: 0.9875rem; }
.contract-note {
  margin-top: clamp(48px, 6vw, 80px);
  background: var(--white);
  border-left: 6px solid var(--tint-cyan);
  box-shadow: var(--card-shadow);
  padding: clamp(22px, 3vw, 36px);
  display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start;
  max-width: 1100px;
}
.contract-note svg { width: 28px; height: 28px; color: var(--pop); margin-top: 2px; }
.contract-note h3 { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; margin-bottom: 6px; }
.contract-note p { color: var(--steel); font-size: 0.9875rem; max-width: 90ch; }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.tabs {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin: clamp(32px, 4vw, 56px) 0 clamp(28px, 3.5vw, 48px);
}
.tab {
  flex: 1 1 180px;
  padding: 16px 20px;
  background: var(--bg);
  border: 1px solid var(--steel-15);
  font-weight: 700; font-size: 0.8125rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--steel);
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  min-height: 48px;
}
.tab:hover { color: var(--pop); border-color: var(--pop); background: var(--white); }
.tab[aria-selected="true"] {
  background: var(--ink); color: var(--cyan); border-color: var(--ink);
  box-shadow: var(--card-shadow);
}
.tab-panels { position: relative; }
.tab-panel[hidden] { display: none; }
.case-grid {
  display: grid; grid-template-columns: 1.6fr 1fr;
  align-items: center;
}
.case-feature .frame { aspect-ratio: 16 / 10; }
.case-body {
  display: flex; flex-direction: column; justify-content: space-between; gap: 24px;
  padding: clamp(22px, 3vw, 44px);
  background: var(--white);
  box-shadow: var(--card-shadow);
  position: relative; z-index: 2;
  margin-left: clamp(-120px, -6vw, -32px);
}
.case-body .case-tag {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pop);
  margin-bottom: 14px; display: block;
}
.case-body h3 {
  font-family: var(--font-display); font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 800; text-transform: uppercase; letter-spacing: -0.015em; line-height: 1.05;
  margin-bottom: 12px;
}
.case-body p.scope { color: var(--steel); font-size: 0.9875rem; }
.case-quote {
  border-top: var(--hairline); padding-top: 20px;
  font-size: 0.9375rem; color: var(--steel); font-style: italic;
}
.case-thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 2.5vw, 40px); margin-top: clamp(20px, 2.5vw, 40px); }
.case-thumbs .frame { aspect-ratio: 4 / 3; }
/* a lone remaining thumb stretches full-width as a wide banner */
.case-thumbs .frame:only-child { grid-column: 1 / -1; aspect-ratio: 21 / 9; }

/* Sections parked for launch */
[hidden] { display: none !important; }

/* ============================================================
   TESTIMONIALS (honest placeholder band)
   ============================================================ */
/* Masonry of review cards — light cards, slight tilts, star rows */
.reviews-masonry {
  columns: 3 300px;
  column-gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(32px, 4vw, 56px);
}
.review-card {
  break-inside: avoid;
  background: var(--white);
  box-shadow: var(--card-shadow);
  padding: clamp(22px, 2.5vw, 34px);
  margin-bottom: clamp(16px, 2vw, 28px);
  transition: transform 0.4s var(--ease-out);
}
.review-card:nth-child(3n+1) { transform: rotate(-0.8deg); }
.review-card:nth-child(3n+2) { transform: rotate(0.6deg); background: var(--tint-blue); }
.review-card:nth-child(3n)   { transform: rotate(-0.4deg); background: var(--tint-cyan); }
.review-card:hover { transform: rotate(0) translateY(-4px); }
.review-stars {
  color: var(--pop);
  font-size: 1.05rem;
  letter-spacing: 5px;
  display: block;
}
.review-card .rv-text { margin: 14px 0 22px; color: var(--ink); font-size: 0.9605rem; }
.review-card .rv-foot { border-top: var(--hairline); padding-top: 14px; }
.review-card .rv-name {
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.9375rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink);
}
.review-card .rv-meta { display: block; color: var(--steel); font-size: 0.78125rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }
.testimonial-band blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.8rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.015em;
  max-width: 26ch; margin: 0 auto 28px;
}
.testimonial-band p { color: var(--steel); max-width: 60ch; margin: 0 auto 32px; }

/* ============================================================
   TEAM (marquee carousel)
   ============================================================ */
.team { overflow: hidden; }
.team-controls { display: flex; gap: 10px; margin-top: 24px; }
.team-arrow {
  width: 52px; height: 52px; border-radius: 100px;
  border: 1px solid var(--steel-30); display: grid; place-items: center;
  color: var(--ink); transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.team-arrow:hover { background: var(--ink); color: var(--cyan); border-color: var(--ink); }
.team-arrow svg { width: 20px; height: 20px; }
.team-viewport { margin-top: clamp(32px, 4vw, 56px); overflow: hidden; }
.team-track { display: flex; gap: clamp(16px, 2vw, 28px); width: max-content; will-change: transform; }
.team-card { width: clamp(240px, 24vw, 330px); flex-shrink: 0; }
.team-card .frame {
  aspect-ratio: 3 / 4;
  display: grid; place-items: end center;
  background: linear-gradient(160deg, var(--mist) 0%, #c3d2e2 100%);
}
.team-card .frame svg { width: 72%; height: auto; color: #9FB3C8; display: block; }
/* Pastel name plates — rotate through the tint family; 5n keeps the duplicate loop seamless */
.team-card .tc-meta { background: var(--tint-cyan); padding: 16px 18px; }
.team-card:nth-child(5n+2) .tc-meta { background: var(--tint-blue); }
.team-card:nth-child(5n+3) .tc-meta { background: var(--tint-slate); }
.team-card:nth-child(5n+4) .tc-meta { background: var(--tint-teal); }
.team-card:nth-child(5n+5) .tc-meta { background: var(--mist); }
.team-card h3 { font-family: var(--font-display); font-size: 1.0625rem; font-weight: 700; color: var(--ink); }
.team-card p { font-size: 0.8125rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel); font-weight: 600; margin-top: 2px; }
.team-card .tc-note { display: block; font-size: 0.75rem; color: var(--steel); text-transform: none; letter-spacing: 0; font-weight: 400; margin-top: 6px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.process-grid {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 5vw, 96px);
  align-items: start;
}
.process-head { position: sticky; top: calc(var(--nav-h) + 40px); }
/* Stacked deck: each card sticks, the next one slides up and over it */
.steps { display: block; }
.step {
  position: sticky;
  top: calc(var(--nav-h) + 28px);
  background: var(--white);
  box-shadow: var(--card-shadow);
  padding: clamp(26px, 3vw, 44px);
  min-height: min(56vh, 470px);
  display: flex; flex-direction: column;
  margin-bottom: clamp(20px, 3vh, 32px);
}
.step:nth-child(2) { top: calc(var(--nav-h) + 46px); }
.step:nth-child(3) { top: calc(var(--nav-h) + 64px); }
.step:nth-child(4) { top: calc(var(--nav-h) + 82px); }
.step:last-child { margin-bottom: 0; }
.step .step-tile {
  width: 72px; height: 72px;
  flex-shrink: 0;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 800; line-height: 1;
  color: var(--ink);
  background: var(--tint-cyan);
  margin-bottom: auto;
}
.step h3 { margin-top: clamp(40px, 6vw, 80px); }
.step .step-tile.t-blue { background: var(--tint-blue); }
.step .step-tile.t-slate { background: var(--tint-slate); }
.step .step-tile.t-teal { background: var(--tint-teal); }
.step h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; }
.step p { color: var(--steel); font-size: 0.9875rem; max-width: 46ch; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
  margin-top: clamp(40px, 5vw, 72px);
  align-items: stretch;
}
.price-card {
  border: var(--hairline); background: var(--white);
  padding: clamp(26px, 3vw, 44px);
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.price-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px -24px rgba(28, 42, 71, 0.35); }
.price-card h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 10px;
}
.price-card .price-line {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.25rem, 1.8vw, 1.625rem); line-height: 1.2;
  margin-bottom: 8px; color: var(--pop);
}
.price-card .price-note { color: var(--steel); font-size: 0.9375rem; margin-bottom: 26px; }
.price-card ul { display: grid; gap: 12px; margin-bottom: 32px; }
.price-card ul li { display: flex; gap: 12px; font-size: 0.9605rem; align-items: flex-start; }
.price-card ul li svg { width: 18px; height: 18px; color: var(--pop); flex-shrink: 0; margin-top: 3px; }
.price-card .btn { margin-top: auto; }
.price-card--featured { background: var(--ink); color: var(--bg); border-color: var(--ink); position: relative; }
.price-card--featured .flag {
  position: absolute; top: 0; right: 0;
  background: var(--cyan); color: var(--ink);
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 8px 14px;
}
.price-card--featured h3 { color: var(--white); }
.price-card--featured .price-line { color: var(--cyan); }
.price-card--featured .price-note { color: var(--mist); }
.price-card--featured ul li { color: var(--mist); }
.price-card--featured ul li svg { color: var(--cyan); }
.price-card--featured .btn--primary { background: var(--cyan); color: var(--ink); }
.price-card--featured .btn--primary:hover { background: var(--white); }
.pricing-sub { margin-top: clamp(28px, 3vw, 44px); color: var(--steel); max-width: 70ch; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { margin-top: clamp(36px, 4vw, 56px); border-top: var(--hairline); max-width: 1100px; }
.faq-item { border-bottom: var(--hairline); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 4px; text-align: left;
  font-family: var(--font-display); font-size: clamp(1.0625rem, 1.6vw, 1.375rem); font-weight: 700;
  transition: color 0.25s ease;
}
.faq-q:hover { color: var(--pop); }
.faq-q .chev {
  width: 22px; height: 22px; flex-shrink: 0; color: var(--pop);
  transition: transform 0.35s var(--ease-out);
}
.faq-q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.45s var(--ease-out); }
.faq-a p { padding: 0 4px 26px; color: var(--steel); max-width: 78ch; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--ink); color: var(--bg); }
.contact .eyebrow { color: var(--cyan); }
.contact .eyebrow::before { background: var(--cyan); }
.contact .section-head h2 { color: var(--white); }
.contact .section-head p.intro { color: var(--mist); }
.contact .section-head p.intro a { color: var(--cyan); font-weight: 600; }
.contact-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 5vw, 96px);
  margin-top: clamp(36px, 5vw, 64px);
  align-items: start;
}
.contact-ctas { display: grid; gap: 14px; justify-items: start; }
.contact-ctas .btn { width: 100%; max-width: 380px; justify-content: center; }
.btn--whatsapp { background: transparent; color: var(--cyan); border: 1px solid rgba(69, 192, 216, 0.5); }
.btn--whatsapp:hover { background: rgba(69, 192, 216, 0.12); border-color: var(--cyan); }
.btn--whatsapp svg { width: 20px; height: 20px; margin-right: 10px; }
.contact-side-note { color: var(--mist); font-size: 0.9375rem; max-width: 40ch; margin-top: 18px; }
.contact-side-note strong { color: var(--white); }

.form-panel {
  background: rgba(238, 242, 247, 0.05);
  border: 1px solid rgba(214, 225, 236, 0.16);
  padding: clamp(22px, 3vw, 44px);
}
.contact-form { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
/* align-content:start stops a field whose neighbour has grown from stretching
   its own input to match — the two columns of .form-row must stay identical */
.field { display: grid; gap: 8px; align-content: start; }
.field label { font-size: 0.875rem; font-weight: 600; color: var(--mist); }
.field label .req { color: var(--cyan); }
.field input, .field textarea {
  background: rgba(238, 242, 247, 0.06);
  border: 1px solid rgba(214, 225, 236, 0.28);
  border-radius: 0;
  color: var(--white);
  padding: 15px 16px;
  font: inherit; font-size: 1rem;
  min-height: 52px;
  transition: border-color 0.25s ease, background-color 0.25s ease;
  width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(214, 225, 236, 0.45); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--cyan); background: rgba(238, 242, 247, 0.1);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #ff7d7d; }
/* The slot is always in the layout and only its contents toggle, so validating
   a field never reflows the form or nudges the page below it */
.field .field-error {
  color: #ffb3b3; font-size: 0.8125rem; line-height: 1.25;
  min-height: 1.25em;
  visibility: hidden;
  transition: opacity 0.2s ease;
  opacity: 0;
}
.field.has-error .field-error { visibility: visible; opacity: 1; }
fieldset.field { border: 0; }
fieldset.field legend { font-size: 0.875rem; font-weight: 600; color: var(--mist); margin-bottom: 10px; padding: 0; }
.pill-group { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-toggle { position: relative; }
.pill-toggle input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.pill-toggle span {
  display: inline-flex; align-items: center;
  padding: 11px 20px; border-radius: 100px;
  border: 1px solid rgba(214, 225, 236, 0.32); color: var(--mist);
  font-size: 0.9375rem; font-weight: 500;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  min-height: 44px;
}
.pill-toggle:hover span { border-color: var(--cyan); }
.pill-toggle input:checked + span { background: var(--cyan); color: var(--ink); border-color: var(--cyan); font-weight: 600; }
.pill-toggle input:focus-visible + span { outline: 3px solid var(--cyan); outline-offset: 3px; }
.contact-form textarea { resize: vertical; min-height: 130px; }
.form-footer { display: grid; gap: 16px; }
.form-status { display: none; font-size: 0.9375rem; }
.form-status.is-error { display: block; color: #ffb3b3; }
.form-success {
  display: none;
  border: 1px solid rgba(69, 192, 216, 0.5);
  background: rgba(69, 192, 216, 0.1);
  padding: clamp(28px, 4vw, 48px);
  text-align: center;
}
.form-success.is-visible { display: block; }
.form-success h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--cyan); margin-bottom: 10px; text-transform: uppercase; }
.form-success p { color: var(--mist); max-width: 46ch; margin: 0 auto; }
.service-area-line { margin-top: clamp(28px, 3vw, 44px); color: var(--mist); font-size: 0.9375rem; border-top: 1px solid rgba(214, 225, 236, 0.2); padding-top: 22px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--footer-bg); color: var(--mist); padding: clamp(56px, 7vw, 96px) 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid rgba(214, 225, 236, 0.18);
}
.footer-brand img { height: 52px; width: auto; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer-brand p { font-size: 0.9605rem; max-width: 34ch; color: rgba(214, 225, 236, 0.8); }
.site-footer h3 { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan); margin-bottom: 18px; }
.site-footer ul { display: grid; gap: 10px; }
.site-footer a { color: var(--mist); font-size: 0.9605rem; transition: color 0.2s ease; }
.site-footer a:hover { color: var(--cyan); }
.footer-legal {
  padding-top: 28px;
  display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between;
  font-size: 0.8125rem; color: rgba(214, 225, 236, 0.6);
}

/* ============================================================
   404 PAGE
   ============================================================ */
.page-404 {
  min-height: 100svh; display: grid; place-items: center; text-align: center;
  padding: var(--gutter); background: var(--bg);
}
.page-404 .code {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(6rem, 24vw, 18rem); line-height: 0.9; letter-spacing: -0.03em;
  background: var(--metal-dark);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.page-404 h1 { font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 800; text-transform: uppercase; margin: 18px 0 10px; }
.page-404 p { color: var(--steel); margin-bottom: 32px; max-width: 44ch; margin-inline: auto; }
.page-404 .logo-404 { height: 44px; width: auto; margin: 0 auto 40px; }

/* ============================================================
   FORM ACTIONS — enquiry composes into WhatsApp / email
   ============================================================ */
.form-hint { color: rgba(214, 225, 236, 0.75); font-size: 0.875rem; }
.form-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn--send-wa { background: var(--cyan); color: var(--ink); }
.btn--send-wa:hover { background: var(--white); color: var(--ink); }
.btn--outline { background: transparent; color: var(--cyan); border: 1px solid rgba(69, 192, 216, 0.5); }
.btn--outline:hover { background: rgba(69, 192, 216, 0.12); border-color: var(--cyan); }
.btn-ico { width: 20px; height: 20px; margin-right: 10px; flex-shrink: 0; }

/* ============================================================
   FOOTER LEGAL
   ============================================================ */
.footer-registered {
  padding-top: 28px;
  font-size: 0.8125rem; color: rgba(214, 225, 236, 0.6);
  max-width: 90ch;
}
.footer-legal-row {
  padding-top: 14px;
  display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between;
  font-size: 0.8125rem; color: rgba(214, 225, 236, 0.6);
}
.legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.legal-links a { font-size: 0.8125rem; }

/* ============================================================
   LEGAL PAGES (/privacy-policy/ etc.)
   ============================================================ */
.legal-main { padding-top: calc(var(--nav-h) + clamp(40px, 7vw, 88px)); padding-bottom: clamp(64px, 9vw, 120px); }
.legal-head { max-width: 880px; margin-bottom: clamp(32px, 5vw, 56px); }
.legal-head h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.02; letter-spacing: -0.02em; text-transform: uppercase;
  background: var(--metal-dark);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  margin-bottom: 14px;
}
.legal-updated { color: var(--steel); font-size: 0.9375rem; }
.legal-body { max-width: 76ch; }
.legal-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 800; letter-spacing: -0.01em; text-transform: uppercase;
  background: var(--metal-dark);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  margin: clamp(36px, 5vw, 56px) 0 14px;
}
.legal-body p, .legal-body li { color: var(--steel); font-size: 1rem; }
.legal-body p { margin-bottom: 14px; }
.legal-body strong { color: var(--ink); }
.legal-body ul { list-style: none; display: grid; gap: 10px; margin: 4px 0 18px; }
.legal-body ul li { display: flex; gap: 12px; align-items: flex-start; }
.legal-body ul li svg { width: 18px; height: 18px; color: var(--pop); flex-shrink: 0; margin-top: 4px; }
.legal-body a { font-weight: 600; }
.legal-card {
  background: var(--white); box-shadow: var(--card-shadow);
  border-left: 6px solid var(--tint-cyan);
  padding: clamp(20px, 3vw, 32px);
  margin: 22px 0;
}
.legal-card p { margin-bottom: 6px; }
.legal-card p:last-child { margin-bottom: 0; }

/* Cookie table. Wrapped in its own scroller so a narrow phone scrolls the
   table rather than the whole page sideways. */
.legal-table {
  width: 100%; border-collapse: collapse;
  margin: 18px 0 22px;
  background: var(--white); box-shadow: var(--card-shadow);
  font-size: 0.9375rem;
  display: block; overflow-x: auto; white-space: normal;
}
.legal-table thead th {
  text-align: left; background: var(--mist); color: var(--ink);
  font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 12px 16px; white-space: nowrap;
}
.legal-table td { padding: 14px 16px; border-top: 1px solid var(--mist); vertical-align: top; }
.legal-table td:first-child { white-space: nowrap; }
.legal-table code {
  background: var(--tint-cyan); color: var(--ink);
  padding: 2px 7px; font-size: 0.875em;
}
.legal-body code {
  background: var(--mist); color: var(--ink);
  padding: 2px 7px; font-size: 0.875em;
}
.legal-note {
  background: var(--tint-cyan); color: var(--ink);
  padding: clamp(18px, 2.5vw, 26px);
  margin: 22px 0;
  font-size: 0.9605rem;
}
.legal-note p { color: var(--ink); margin: 0; }

/* ============================================================
   CONSENT MANAGER — dormant until analytics is introduced.
   Enable via CONSENT_ENABLED in main.js; markup is built by JS.
   ============================================================ */
.consent-banner {
  position: fixed; z-index: 300;
  inset: auto clamp(16px, 3vw, 40px) clamp(16px, 3vw, 40px) auto;
  max-width: 460px;
  background: var(--white); box-shadow: var(--card-shadow);
  border-left: 6px solid var(--tint-cyan);
  padding: clamp(22px, 3vw, 32px);
}
.consent-banner h2 {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 8px;
}
.consent-banner p { color: var(--steel); font-size: 0.9375rem; margin-bottom: 18px; }
.consent-actions { display: flex; gap: 10px; flex-wrap: wrap; }
/* ICO: reject must be exactly as prominent as accept — identical buttons */
.consent-actions .btn { padding: 13px 24px; min-height: 46px; font-size: 0.9375rem; }
.consent-toggle-row {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  border-top: var(--hairline); padding: 12px 0;
}
.consent-toggle-row label { font-weight: 600; font-size: 0.9375rem; color: var(--ink); }

/* ============================================================
   METALLIC HEADINGS — every heading carries the logo's
   navy -> steel -> teal sweep (light variant on dark bands)
   ============================================================ */
.section-head h2,
.service h3,
.case-body h3,
.price-card h3,
.step h3,
.value h3,
.contract-note h3,
.team-card h3,
.stat h3,
.page-404 h1 {
  background: var(--metal-dark);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.stats .section-head h2,
.contact .section-head h2,
.price-card--featured h3 {
  background: var(--metal-light);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
/* Accent spans dissolve into the sweep */
.h2-accent, .stats .h2-accent, .contact .h2-accent { color: inherit; }

/* ============================================================
   REVEAL PRE-STATES (JS removes; without JS everything is visible)
   ============================================================ */
html.has-js [data-reveal]:not(.section-head) { opacity: 0; transform: translateY(50px); }
html.has-js [data-reveal-group] > * { opacity: 0; transform: translateY(50px); }
html.has-js .hero-line > span { transform: translateY(110%); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { position: static; max-width: 560px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(n) { margin-top: 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-head { position: static; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 640px; }
  .case-grid { grid-template-columns: 1fr; }
  .case-body { margin-left: 0; margin-top: clamp(-64px, -8vw, -32px); width: calc(100% - var(--gutter)); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .hero-meta { grid-template-columns: 1fr; gap: 18px; }
  .service { grid-template-columns: 1fr; }
  .service:nth-child(even) .service-media { order: 0; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .case-thumbs { grid-template-columns: 1fr; }
  .case-body { margin-top: 0; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .service-meta { grid-template-columns: 1fr; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html.has-js [data-reveal],
  html.has-js [data-reveal-group] > *,
  html.has-js .hero-line > span {
    opacity: 1 !important; transform: none !important;
  }
}
