/* ============================================================
   HAWTHORNE — Design System
   Apple-inspired typography & space, Stripe-inspired color & motion
   ============================================================ */

:root {
  /* Color — Hawthorne brand */
  --ink: #07111a;          /* brand navy  */
  --ink-2: #0d1c2b;
  --text: #46505a;
  --text-soft: #7d838c;    /* derived from brand grey #bdbab1 */
  --surface: #ffffff;
  --surface-2: #faf8f1;    /* cream-tinted, from #f8f2e3 */
  --surface-3: #f4efe0;
  --cream: #f8f2e3;
  --line: #e9e4d6;
  --accent: #008c95;       /* brand teal accent */
  --gold: #daa32d;         /* brand gold */
  --gold-2: #eebe2f;       /* brand bright gold */
  --grey: #bdbab1;         /* brand warm grey */
  --amber: #daa32d;
  --rose: #c4534f;
  --green: #1d9d63;
  --grad: linear-gradient(100deg, #c9941f 0%, #daa32d 45%, #eebe2f 100%);
  --grad-warm: linear-gradient(100deg, #b66f1e 0%, #daa32d 100%);

  /* Type — Gordita-style geometric (Poppins) + Be Vietnam Pro labels */
  --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-label: "Be Vietnam Pro", var(--font);

  /* Shape & shadow */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --shadow-sm: 0 2px 5px -1px rgba(50,50,93,.12), 0 1px 3px -1px rgba(0,0,0,.08);
  --shadow-md: 0 13px 27px -5px rgba(50,50,93,.18), 0 8px 16px -8px rgba(0,0,0,.20);
  --shadow-lg: 0 30px 60px -12px rgba(50,50,93,.25), 0 18px 36px -18px rgba(0,0,0,.30);

  /* Motion */
  --ease: cubic-bezier(.22,1,.36,1);
  --dur: .7s;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

::selection { background: rgba(0,140,149,.16); }

/* ---------- Layout ---------- */
.container { width: min(1140px, calc(100% - 48px)); margin-inline: auto; }
.container--narrow { width: min(820px, calc(100% - 48px)); margin-inline: auto; }

section { position: relative; }
.section { padding: clamp(72px, 10vw, 128px) 0; }
.section--tight { padding: clamp(48px, 7vw, 88px) 0; }
.section--alt { background: var(--surface-2); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { color: var(--ink); margin: 0; font-weight: 650; }

.display {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 700;
}

.h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 680;
}

.h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); letter-spacing: -0.015em; line-height: 1.25; }

.lead { font-size: clamp(1.08rem, 1.6vw, 1.3rem); line-height: 1.55; color: var(--text); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-label);
  font-size: .8rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 20px; height: 2px; border-radius: 2px;
  background: var(--grad);
}

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

.center { text-align: center; }
.center .eyebrow::before { display: none; }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head.center { margin-inline: auto; }
.section-head p { margin: 18px 0 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px;
  font-family: var(--font);
  font-size: .98rem; font-weight: 600; line-height: 1;
  border: 0; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s, color .25s, opacity .25s;
  white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary { background: var(--ink); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: #122738; }

.btn--grad { background: var(--grad); color: var(--ink); box-shadow: 0 8px 24px -8px rgba(218,163,45,.55); }
.btn--grad:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -8px rgba(218,163,45,.65); }

.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); transform: translateY(-2px); }

.btn--light { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--lg { padding: 16px 32px; font-size: 1.05rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; color: var(--accent); font-size: .98rem;
}
.link-arrow svg { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  transition: background-color .35s, box-shadow .35s, backdrop-filter .35s;
}
.header.is-scrolled {
  background: rgba(255,255,255,.82);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 rgba(7,17,26,.08);
}
.header--dark:not(.is-scrolled) .nav-link,
.header--dark:not(.is-scrolled) .nav-phone { color: #fff; }
.header--dark:not(.is-scrolled) .logo-word b { color: var(--cream); }

.nav {
  display: flex; align-items: center; gap: 32px;
  height: 72px;
}
.logo {
  display: inline-flex; align-items: center; gap: 11px;
  margin-right: 8px;
}
.logo-img { height: 38px; width: auto; flex: none; }
.logo-word { display: flex; flex-direction: column; line-height: 1; }
.logo-word b {
  font-weight: 700; font-size: 1.04rem; letter-spacing: .15em; color: var(--ink);
  transition: color .35s;
}
.logo-word small {
  font-family: var(--font-label);
  font-size: .47rem; font-weight: 600; letter-spacing: .192em;
  color: var(--gold); margin-top: 4px; white-space: nowrap;
}

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0 auto 0 0; padding: 0; }
.nav-link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 9px 14px; border-radius: 999px;
  font-size: .95rem; font-weight: 550; color: var(--ink);
  transition: background-color .2s, color .2s;
  cursor: pointer; background: none; border: 0; font-family: var(--font);
}
.nav-link:hover { background: rgba(7,17,26,.06); }
.header--dark:not(.is-scrolled) .nav-link:hover { background: rgba(255,255,255,.12); }
.nav-link svg { width: 10px; height: 10px; opacity: .6; transition: transform .25s var(--ease); }
.nav-item.is-open .nav-link svg { transform: rotate(180deg); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: .95rem; color: var(--ink); }
.nav-phone svg { width: 15px; height: 15px; }

/* Mega dropdown */
.nav-item { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(8px) scale(.98);
  width: 560px; padding: 10px;
  background: #fff; border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  opacity: 0; pointer-events: none; visibility: hidden;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.nav-item.is-open .dropdown,
.nav-item:hover .dropdown {
  opacity: 1; pointer-events: auto; visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}
.dropdown a {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px; border-radius: var(--r-sm);
  transition: background-color .15s;
}
.dropdown a:hover { background: var(--surface-2); }
.dropdown .dd-icon {
  width: 34px; height: 34px; flex: none; border-radius: 9px;
  display: grid; place-items: center;
  background: var(--surface-3); color: var(--accent);
}
.dropdown .dd-icon svg { width: 18px; height: 18px; }
.dropdown b { display: block; color: var(--ink); font-size: .92rem; font-weight: 640; }
.dropdown span { display: block; font-size: .8rem; color: var(--text-soft); line-height: 1.4; margin-top: 1px; }

/* Mobile nav */
.nav-burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.header--dark:not(.is-scrolled) .nav-burger span { background: #fff; }

@media (max-width: 920px) {
  .nav-links, .nav-cta .btn, .nav-phone { display: none; }
  .nav-burger { display: block; }
  .nav { height: 64px; }
  body.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  body.nav-open .nav-burger span { background: var(--ink) !important; }
  .mobile-menu {
    position: fixed; inset: 0; z-index: 99;
    background: rgba(255,255,255,.96);
    -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px);
    padding: 96px 28px 40px;
    display: flex; flex-direction: column; gap: 4px;
    opacity: 0; pointer-events: none; transition: opacity .3s var(--ease);
    overflow-y: auto;
  }
  body.nav-open .mobile-menu { opacity: 1; pointer-events: auto; }
  .mobile-menu a {
    font-size: 1.5rem; font-weight: 650; color: var(--ink);
    padding: 12px 0; border-bottom: 1px solid var(--line);
    letter-spacing: -0.02em;
    transform: translateY(12px); opacity: 0;
    transition: transform .45s var(--ease), opacity .45s var(--ease);
  }
  .mobile-menu a.mm-sub { font-size: 1.05rem; font-weight: 550; color: var(--text); padding: 9px 0 9px 16px; }
  body.nav-open .mobile-menu a { transform: none; opacity: 1; }
  .mobile-menu .btn { margin-top: 24px; justify-content: center; }
}
@media (min-width: 921px) { .mobile-menu { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: clamp(150px, 19vw, 220px) 0 0;
}
.hero-canvas { position: absolute; inset: 0; overflow: hidden; }
.hero-canvas::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 25%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 25%, #000 30%, transparent 75%);
}
.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; will-change: transform; }
.blob--1 { width: 560px; height: 560px; background: #008c95; top: -180px; left: -120px; animation: drift1 16s ease-in-out infinite alternate; }
.blob--2 { width: 480px; height: 480px; background: #b8860f; top: -60px; right: -140px; animation: drift2 19s ease-in-out infinite alternate; }
.blob--3 { width: 420px; height: 420px; background: #00b0bb; bottom: -220px; left: 32%; opacity: .35; animation: drift3 22s ease-in-out infinite alternate; }

@keyframes drift1 { to { transform: translate(70px, 50px) scale(1.12); } }
@keyframes drift2 { to { transform: translate(-60px, 70px) scale(1.08); } }
@keyframes drift3 { to { transform: translate(50px, -60px) scale(1.15); } }

.hero .container { position: relative; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-label);
  padding: 7px 16px; border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  margin-bottom: 28px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #2bc5ce; box-shadow: 0 0 0 0 rgba(43,197,206,.6); animation: pulse 2.2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(43,197,206,.55); }
  70% { box-shadow: 0 0 0 9px rgba(43,197,206,0); }
  100% { box-shadow: 0 0 0 0 rgba(43,197,206,0); }
}

.hero h1 { color: #fff; max-width: 880px; }
.hero h1 .grad-text { background: linear-gradient(100deg, #eebe2f 0%, #daa32d 55%, #c9941f 100%); -webkit-background-clip: text; background-clip: text; }
.hero .lead { color: rgba(255,255,255,.78); max-width: 620px; margin: 26px 0 38px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  overflow: hidden;
  margin: clamp(56px, 8vw, 88px) 0 0;
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
.hero-stat { background: rgba(7,17,26,.55); padding: 26px 28px; }
.hero-stat b { display: block; font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 720; letter-spacing: -0.03em; color: #fff; }
.hero-stat b .unit { font-size: .6em; font-weight: 650; color: var(--gold-2); }
.hero-stat span { font-size: .88rem; color: rgba(255,255,255,.6); }

.hero-footer {
  position: relative;
  margin-top: clamp(48px, 7vw, 72px);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}

@media (max-width: 720px) {
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat { display: flex; align-items: baseline; gap: 12px; padding: 18px 22px; }
}

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; position: relative; }
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.marquee--dark::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.marquee--dark::after { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.marquee--light::before { left: 0; background: linear-gradient(90deg, var(--surface-2), transparent); }
.marquee--light::after { right: 0; background: linear-gradient(-90deg, var(--surface-2), transparent); }
.marquee-track {
  display: flex; gap: 56px; width: max-content;
  animation: marquee 36s linear infinite;
  align-items: center;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-item {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 650; font-size: .95rem; letter-spacing: .02em;
  color: rgba(255,255,255,.55); white-space: nowrap;
}
.marquee-item svg { width: 16px; height: 16px; color: var(--gold-2); }
.marquee--light .marquee-item { color: var(--text-soft); }
.marquee--light .marquee-item svg { color: var(--accent); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 3px;
  background: var(--grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }

.card h3 { margin: 22px 0 10px; }
.card p { margin: 0 0 18px; font-size: .97rem; color: var(--text); }
.card .link-arrow { font-size: .93rem; }

.icon-tile {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--surface-3);
  color: var(--accent);
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.icon-tile svg { width: 26px; height: 26px; }
.card:hover .icon-tile { background: var(--grad); color: var(--ink); transform: scale(1.06) rotate(-3deg); }

.icon-tile--amber { color: var(--amber); }
.card:hover .icon-tile--amber { background: var(--grad-warm); }

/* ---------- Feature rows ---------- */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 96px);
  align-items: center;
  padding: clamp(40px, 6vw, 72px) 0;
}
.feature-row + .feature-row { border-top: 1px solid var(--line); }
.feature-row:nth-child(even) .feature-visual { order: -1; }
@media (max-width: 880px) {
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row:nth-child(even) .feature-visual { order: 0; }
}
.feature-copy h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); letter-spacing: -0.02em; margin-bottom: 14px; }
.feature-copy p { margin: 0 0 22px; }
.feature-list { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 11px; }
.feature-list li { display: flex; gap: 11px; align-items: flex-start; font-size: .98rem; }
.feature-list svg { width: 19px; height: 19px; flex: none; color: var(--green); margin-top: 2px; }

.feature-visual {
  position: relative; border-radius: var(--r-lg);
  background: var(--ink);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
}
.feature-visual .fv-grid {
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.feature-visual .fv-glow { position: absolute; width: 70%; height: 70%; border-radius: 50%; filter: blur(70px); opacity: .5; }
.feature-visual svg.fv-icon { width: 30%; height: auto; color: #fff; position: relative; opacity: .92; }

/* ---------- Stats band ---------- */
.stats-band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  text-align: center;
}
@media (max-width: 880px) { .stats-band { grid-template-columns: repeat(2, 1fr); gap: 40px 16px; } }
.stat b {
  display: block;
  font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 730; letter-spacing: -0.04em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat span { font-size: .95rem; color: var(--text-soft); font-weight: 550; }

/* ---------- Quote / testimonial ---------- */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(36px, 5vw, 56px);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.quote-mark { font-size: 5rem; line-height: 0; font-weight: 800; height: 34px; display: block; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.quote-card blockquote { margin: 18px 0 26px; font-size: clamp(1.12rem, 1.9vw, 1.4rem); line-height: 1.55; color: var(--ink); font-weight: 480; letter-spacing: -0.01em; }
.quote-attrib { display: flex; align-items: center; gap: 14px; }
.quote-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad); color: var(--ink);
  display: grid; place-items: center; font-weight: 700; font-size: 1rem;
}
.quote-attrib b { color: var(--ink); display: block; font-size: .98rem; }
.quote-attrib span { font-size: .86rem; color: var(--text-soft); }
.stars { display: inline-flex; gap: 2px; color: var(--gold); margin-bottom: 10px; }
.stars svg { width: 17px; height: 17px; }

/* ---------- Dark CTA ---------- */
.cta {
  position: relative; overflow: hidden;
  background: var(--ink); color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(48px, 7vw, 88px) clamp(28px, 6vw, 80px);
  text-align: center;
}
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,.72); max-width: 540px; margin: 18px auto 34px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.66); font-size: .92rem; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px;
  padding: clamp(56px, 8vw, 88px) 0 48px;
}
@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer .logo { margin-bottom: 16px; }
.footer .logo-word b { color: var(--cream); }
.footer p { line-height: 1.65; margin: 0 0 20px; }
.footer h4 { font-family: var(--font-label); color: #fff; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; font-weight: 650; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer a { transition: color .2s; }
.footer a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; flex: none; margin-top: 4px; color: var(--gold-2); }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.footer-badge {
  font-size: .72rem; font-weight: 650; letter-spacing: .04em;
  padding: 5px 11px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.75);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .84rem; color: rgba(255,255,255,.45);
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--ink); color: #fff;
  padding: clamp(140px, 17vw, 190px) 0 clamp(64px, 9vw, 110px);
}
.page-hero h1 { color: #fff; max-width: 800px; }
.page-hero .lead { color: rgba(255,255,255,.75); max-width: 640px; margin-top: 22px; }
.page-hero .hero-actions { margin-top: 36px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: rgba(255,255,255,.55); margin-bottom: 22px; font-weight: 550; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 11px; height: 11px; opacity: .5; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  transition-delay: var(--delay, 0s);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--left { transform: translateX(-36px); }
.reveal--right { transform: translateX(36px); }
.reveal--scale { transform: scale(.94); }
.reveal--left.is-visible, .reveal--right.is-visible, .reveal--scale.is-visible { transform: none; }

/* ---------- Calculator ---------- */
.calc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.calc-progress { height: 4px; background: var(--surface-3); }
.calc-progress-bar { height: 100%; background: var(--grad); width: 20%; transition: width .5s var(--ease); border-radius: 0 4px 4px 0; }
.calc-body { padding: clamp(28px, 4.5vw, 52px); }
.calc-step-label { font-family: var(--font-label); font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.calc h3 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); letter-spacing: -0.02em; margin-bottom: 28px; }

.calc-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (max-width: 640px) { .calc-options { grid-template-columns: 1fr; } }
.calc-option {
  display: flex; gap: 14px; align-items: flex-start; text-align: left;
  padding: 18px; border-radius: var(--r-md);
  border: 1.5px solid var(--line); background: var(--surface);
  cursor: pointer; font-family: var(--font);
  transition: border-color .2s, box-shadow .2s, transform .2s var(--ease), background-color .2s;
}
.calc-option:hover { border-color: #b9c3d4; transform: translateY(-2px); }
.calc-option.is-selected {
  border-color: var(--accent);
  background: #f2f9f9;
  box-shadow: 0 0 0 3px rgba(0,140,149,.14);
}
.calc-option .icon-tile { width: 44px; height: 44px; border-radius: 11px; flex: none; }
.calc-option .icon-tile svg { width: 22px; height: 22px; }
.calc-option.is-selected .icon-tile { background: var(--grad); color: var(--ink); }
.calc-option b { display: block; color: var(--ink); font-size: 1rem; font-weight: 650; }
.calc-option span { display: block; font-size: .84rem; color: var(--text-soft); margin-top: 2px; line-height: 1.45; }

.calc-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 36px; gap: 12px; }
.calc-back { visibility: hidden; }
.calc-back.is-active { visibility: visible; }

.calc-step { display: none; animation: stepIn .5s var(--ease); }
.calc-step.is-active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateX(26px); } to { opacity: 1; transform: none; } }

.calc-result { text-align: center; padding: 12px 0; }
.calc-result .calc-price {
  font-size: clamp(2.6rem, 6vw, 4rem); font-weight: 730; letter-spacing: -0.04em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin: 12px 0 4px;
}
.calc-result .calc-price-note { color: var(--text-soft); font-size: .92rem; margin-bottom: 30px; }
.calc-summary {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 0 0 32px;
}
.calc-chip {
  font-size: .82rem; font-weight: 600; color: var(--ink);
  background: var(--surface-3); border-radius: 999px; padding: 7px 15px;
}
.calc-disclaimer { font-size: .8rem; color: var(--text-soft); max-width: 480px; margin: 26px auto 0; line-height: 1.5; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: .86rem; font-weight: 640; color: var(--ink); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font); font-size: .97rem; color: var(--ink);
  padding: 13px 16px; border-radius: var(--r-sm);
  border: 1.5px solid var(--line); background: var(--surface);
  transition: border-color .2s, box-shadow .2s;
  appearance: none; -webkit-appearance: none;
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,140,149,.16);
}
.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success.is-visible { display: block; animation: stepIn .5s var(--ease); }
.form-success .success-icon {
  width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%;
  background: var(--grad); color: var(--ink); display: grid; place-items: center;
}
.form-success .success-icon svg { width: 30px; height: 30px; }

/* ---------- FAQ accordion ---------- */
.faq { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--surface); overflow: hidden;
  transition: box-shadow .3s var(--ease), border-color .3s;
}
.faq-item.is-open { box-shadow: var(--shadow-sm); border-color: #d4ddea; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font); font-size: 1.02rem; font-weight: 640; color: var(--ink);
}
.faq-q svg { width: 18px; height: 18px; flex: none; color: var(--accent); transition: transform .35s var(--ease); }
.faq-item.is-open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a p { margin: 0; padding: 0 24px 22px; font-size: .96rem; }

/* ---------- Checklist table (pricing page) ---------- */
.included-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.included-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 20px; border-radius: var(--r-md);
  background: var(--surface); border: 1px solid var(--line);
}
.included-list svg { width: 20px; height: 20px; flex: none; color: var(--green); margin-top: 2px; }
.included-list b { color: var(--ink); }

/* ---------- Misc ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line);
  font-size: .86rem; font-weight: 600; color: var(--ink);
}
.pill svg { width: 14px; height: 14px; color: var(--accent); }

.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; flex-wrap: wrap; }
}

/* ---------- Hero media (team photo) ---------- */
.hero-grid {
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: clamp(40px, 5vw, 64px); align-items: stretch;
}
@media (max-width: 920px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-media {
  position: relative; margin: 0;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 40px 80px -24px rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.16);
}
.hero-media::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(7,17,26,0) 55%, rgba(7,17,26,.55) 100%);
}
.hero-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
@media (max-width: 920px) { .hero-media { aspect-ratio: 4 / 3; } }
.hero-media figcaption {
  position: absolute; inset: auto 0 0; z-index: 2;
  padding: 14px 18px;
  font-size: .82rem; font-weight: 550; color: rgba(255,255,255,.9);
  display: flex; align-items: center; gap: 8px;
}
.hero-media figcaption svg { width: 14px; height: 14px; color: var(--gold-2); flex: none; }

/* ---------- Video facade ---------- */
.video-facade {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  cursor: pointer; border: 0; padding: 0; width: 100%;
  background: var(--ink); display: block;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 10;
}
.video-facade img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s var(--ease), opacity .4s;
  opacity: .92;
}
.video-facade:hover img { transform: scale(1.03); }
.video-facade::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,17,26,.05) 40%, rgba(7,17,26,.72) 100%);
  pointer-events: none;
}
.video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--grad); color: var(--ink);
  display: grid; place-items: center; z-index: 2;
  box-shadow: 0 12px 36px -8px rgba(218,163,45,.7), 0 0 0 0 rgba(238,190,47,.45);
  transition: transform .3s var(--ease);
  animation: playPulse 2.6s infinite;
}
.video-facade:hover .video-play { transform: translate(-50%,-50%) scale(1.08); }
.video-play svg { width: 26px; height: 26px; margin-left: 3px; }
@keyframes playPulse {
  0% { box-shadow: 0 12px 36px -8px rgba(218,163,45,.7), 0 0 0 0 rgba(238,190,47,.45); }
  70% { box-shadow: 0 12px 36px -8px rgba(218,163,45,.7), 0 0 0 18px rgba(238,190,47,0); }
  100% { box-shadow: 0 12px 36px -8px rgba(218,163,45,.7), 0 0 0 0 rgba(238,190,47,0); }
}
.video-caption {
  position: absolute; inset: auto 0 0; z-index: 2;
  padding: 16px 20px; text-align: left;
  font-family: var(--font);
  font-size: .85rem; font-weight: 550; color: rgba(255,255,255,.92);
  display: flex; align-items: center; gap: 9px;
}
.video-caption svg { width: 15px; height: 15px; color: var(--gold-2); flex: none; }
.video-facade iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 3;
}

/* ---------- Client logo marquee ---------- */
.marquee-logo {
  display: inline-flex; align-items: center;
  height: 56px; padding: 0 8px;
}
.marquee-logo img {
  max-height: 44px; width: auto; max-width: 150px; object-fit: contain;
  filter: grayscale(1); opacity: .62;
  transition: filter .35s, opacity .35s;
}
.marquee-logo:hover img { filter: none; opacity: 1; }

/* ---------- Photo feature visuals ---------- */
.feature-visual--photo { background: var(--ink); }
.feature-visual--photo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .96;
}
.feature-visual--photo::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(7,17,26,.08);
  border-radius: inherit; pointer-events: none;
}

/* ---------- Card media (photo headers) ---------- */
.card--media { padding: 0; display: flex; flex-direction: column; }
.card--media .card-media {
  aspect-ratio: 16 / 9; overflow: hidden; flex: none;
  border-radius: calc(var(--r-lg) - 1px) calc(var(--r-lg) - 1px) 0 0;
}
.card--media .card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.card--media:hover .card-media img { transform: scale(1.05); }
.card--media .card-body { padding: 26px 28px 30px; display: flex; flex-direction: column; align-items: flex-start; gap: 0; }

/* ---------- Accreditation logo tiles ---------- */
.accred-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
@media (max-width: 920px) { .accred-grid { grid-template-columns: repeat(2, 1fr); } }
.accred-tile {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 22px 18px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.accred-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.accred-tile img { height: 56px; width: auto; max-width: 100%; object-fit: contain; }
.accred-tile span { font-size: .8rem; font-weight: 600; color: var(--text-soft); line-height: 1.35; }

/* ---------- Wide photo banner ---------- */
.photo-banner {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-md); aspect-ratio: 21 / 9;
}
@media (max-width: 720px) { .photo-banner { aspect-ratio: 4 / 3; } }
.photo-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,17,26,0) 50%, rgba(7,17,26,.6) 100%);
}
.photo-banner figcaption {
  position: absolute; inset: auto 0 0; z-index: 2; padding: 18px 24px;
  color: rgba(255,255,255,.92); font-size: .88rem; font-weight: 550;
}

/* ---------- Signature draw-on animation ---------- */
.sig-draw {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  clip-path: inset(-8% 102% -8% -2%);
  -webkit-clip-path: inset(-8% 102% -8% -2%);
}
.sig-draw.is-visible {
  animation: sigDraw 1.7s cubic-bezier(.45,.05,.25,1) .35s forwards;
}
@keyframes sigDraw {
  /* fast scrawl of the name, a beat, then the underline flourish */
  0%   { clip-path: inset(-8% 102% -8% -2%); -webkit-clip-path: inset(-8% 102% -8% -2%); }
  55%  { clip-path: inset(-8% 38% -8% -2%);  -webkit-clip-path: inset(-8% 38% -8% -2%); }
  68%  { clip-path: inset(-8% 30% -8% -2%);  -webkit-clip-path: inset(-8% 30% -8% -2%); }
  100% { clip-path: inset(-8% -2% -8% -2%);  -webkit-clip-path: inset(-8% -2% -8% -2%); }
}
@media (prefers-reduced-motion: reduce) {
  .sig-draw { clip-path: none; -webkit-clip-path: none; }
  .sig-draw.is-visible { animation: none; }
}

/* ---------- Article prose ---------- */
.article-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.page-hero .article-meta span:not(.pill) { color: rgba(255,255,255,.65); font-size: .88rem; font-weight: 550; }
.prose { font-size: 1.02rem; line-height: 1.75; }
.prose p { margin: 0 0 1.35em; }
.prose h2 {
  font-size: clamp(1.45rem, 2.4vw, 1.9rem); letter-spacing: -0.02em; line-height: 1.25;
  margin: 1.9em 0 .7em; scroll-margin-top: 96px;
}
.prose h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem); letter-spacing: -0.01em;
  margin: 1.6em 0 .6em; scroll-margin-top: 96px;
}
.prose h2:first-child { margin-top: 0; }
.prose > p:first-child {
  font-size: 1.13rem; line-height: 1.65; color: var(--ink);
  padding: 22px 26px; background: var(--surface-2);
  border-left: 3px solid var(--gold); border-radius: 0 var(--r-md) var(--r-md) 0;
}
.prose ul { margin: 0 0 1.35em; padding-left: 1.3em; display: grid; gap: .45em; }
.prose ul.toc {
  list-style: none; padding: 18px 22px; background: var(--surface-2);
  border: 1px solid var(--line); border-radius: var(--r-md); gap: .55em;
}
.prose ul.toc li a { color: var(--accent); font-weight: 600; font-size: .95rem; }
.prose ul.toc li a:hover { text-decoration: underline; }
.prose blockquote {
  margin: 1.5em 0; padding: 18px 24px; border-left: 3px solid var(--accent);
  background: var(--surface-2); border-radius: 0 var(--r-md) var(--r-md) 0;
  font-style: italic; color: var(--ink);
}
.prose a { color: var(--accent); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
