/* =========================================================================
   ANODOS AI Solutions — editorial authority design system
   Navy + cream. Cormorant (display) / DM Sans (text).
   ========================================================================= */

:root {
  /* Ink & ground */
  --navy:      #1a2745;
  --navy-700:  #111c34;
  --navy-600:  #26365c;
  --navy-500:  #33456e;
  --paper:     #f4edda;
  --paper-2:   #ece2c9;
  --white:     #ffffff;

  /* Cream (logo + light surfaces) */
  --cream:     #f6efdd;
  --cream-soft: rgba(246, 239, 221, 0.12);
  /* Gold accent (pops on navy AND on the cream page) */
  --gold:      #c9a24a;
  --gold-700:  color-mix(in srgb, var(--gold) 78%, #10192e);
  --gold-soft: color-mix(in srgb, var(--gold) 14%, transparent);

  /* Text */
  --ink:       #001935;
  --ink-70:    rgba(0, 25, 53, 0.70);
  --ink-55:    rgba(0, 25, 53, 0.55);
  --ink-35:    rgba(0, 25, 53, 0.32);
  --on-navy:   rgba(255, 255, 255, 0.92);
  --on-navy-60:rgba(255, 255, 255, 0.58);
  --on-navy-30:rgba(255, 255, 255, 0.26);

  /* Type */
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "DM Sans", system-ui, -apple-system, sans-serif;

  /* Layout */
  --maxw: 1240px;
  --gut: clamp(22px, 5vw, 84px);
  --hairline: rgba(0, 25, 53, 0.14);
  --hairline-navy: rgba(255, 255, 255, 0.16);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--navy); }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ------------------------------- Typography ----------------------------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-700);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.on-navy { color: var(--gold); }
.eyebrow.on-navy::before { background: var(--gold); }

.display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.012em;
  font-size: clamp(42px, 7.6vw, 116px);
}
.h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.01em;
  font-size: clamp(34px, 5vw, 66px);
}
.h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(23px, 2.4vw, 31px);
  line-height: 1.1;
}
.lede {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--ink-70);
  font-weight: 400;
  max-width: 42ch;
}
.text-italic { font-style: italic; }

section { position: relative; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gut);
  padding-right: var(--gut);
  width: 100%;
}

/* ------------------------------- Buttons -------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 15px 26px;
  border: 1px solid transparent;
  background: var(--navy);
  color: #fff;
  transition: background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease);
  position: relative;
}
.btn:hover { background: var(--navy-600); transform: translateY(-1px); }
.btn .arrow { transition: transform .4s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }
/* Primary CTA: solid gold */
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-700); color: #fff; }
/* Cream fill (kept for optional use on navy surfaces) */
.btn-cream { background: var(--cream); color: var(--navy); }
.btn-cream:hover { background: #fff; color: var(--navy); }
.btn-ghost {
  background: transparent;
  border-color: var(--hairline);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-ghost-navy {
  background: transparent;
  border-color: var(--hairline-navy);
  color: #fff;
}
.btn-ghost-navy:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* --------------------------- Reveal animation --------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }

body[data-motion="off"] .reveal { opacity: 1; transform: none; transition: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ================================ NAV =================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  transition: background .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gut);
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height .5s var(--ease);
}
.nav[data-scrolled="true"] {
  background: rgba(250, 248, 243, 0.86);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--hairline);
}
.nav[data-scrolled="true"] .nav-inner { height: 70px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--on-navy);
  position: relative;
  padding: 6px 0;
  transition: color .35s var(--ease);
}
.nav[data-scrolled="true"] .nav-link { color: var(--ink-70); }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .4s var(--ease);
}
.nav-link:hover { color: var(--gold-700); }
.nav[data-scrolled="false"] .nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }
.nav-cta { margin-left: 8px; }
.nav-burger { display: none; }

/* When hero is dark, top-of-page nav text is light; flips on scroll handled above */

/* ================================ LOGO ================================== */
.logo { display: inline-flex; align-items: center; gap: 15px; line-height: 1; }
.logo-column-img {
  flex: none;
  width: auto; height: 58px;
  display: block;
}
.logo-word { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.10em;
  font-size: 25px;
  line-height: 0.92;
  color: var(--navy);
  transition: color .5s var(--ease);
}
.logo-sub {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  margin-top: 5px;
  color: var(--navy);
  opacity: .68;
  transition: color .5s var(--ease);
}
.logo[data-on="navy"] .logo-column { background-color: var(--cream); }
.logo[data-on="navy"] .logo-name { color: var(--cream); }
.logo[data-on="navy"] .logo-sub { color: var(--cream); opacity: .8; }

/* variant: rule — sub sits to the right behind a vertical rule */
.logo[data-variant="rule"] .logo-word { flex-direction: row; align-items: center; gap: 13px; }
.logo[data-variant="rule"] .logo-sub { margin-top: 0; padding-left: 13px; border-left: 1px solid currentColor; }
/* variant: mono — wordmark only, no column */

/* ================================ HERO ================================== */
.hero {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: 120px;
  padding-bottom: clamp(40px, 7vh, 92px);
}
/* faint gridlines / texture */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--hairline-navy) 1px, transparent 1px),
    linear-gradient(90deg, var(--hairline-navy) 1px, transparent 1px);
  background-size: 100% 25%, calc(100%/6) 100%;
  opacity: .35;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
}
.hero-orb {
  position: absolute;
  width: 60vw; height: 60vw;
  max-width: 760px; max-height: 760px;
  right: -12vw; top: -10vw;
  background: radial-gradient(circle at 50% 50%, rgba(201,162,74,.16), transparent 62%);
  pointer-events: none;
  will-change: transform;
}
.hero .wrap { position: relative; z-index: 2; width: 100%; }

.hero-eyebrow { margin-bottom: 30px; }

/* Variant A — centered statement */
.hero[data-layout="centered"] { align-items: center; text-align: center; }
.hero[data-layout="centered"] .hero-inner { max-width: min(100%, 900px); margin: 0 auto; }
.hero[data-layout="centered"] .hero-eyebrow { justify-content: center; }
.hero[data-layout="centered"] .hero-sub { margin: 30px auto 38px; }
.hero[data-layout="centered"] .hero-actions { justify-content: center; }
.hero[data-layout="centered"] .hero-meta { display: none; }

/* Variant B — left editorial (default) */
.hero[data-layout="left"] .hero-inner { max-width: min(100%, 920px); }

/* Variant C — split index */
.hero[data-layout="split"] .hero-split {
  display: grid;
  grid-template-columns: 1.55fr 0.9fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
.hero[data-layout="split"] .hero-inner { max-width: 100%; }
.hero-index { display: none; }
.hero[data-layout="split"] .hero-index {
  display: block;
  border-top: 1px solid var(--hairline-navy);
  padding-top: 22px;
}
.hero-index-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline-navy);
  font-size: 14px;
  color: var(--on-navy-60);
}
.hero-index-row b { color: #fff; font-weight: 500; }
.hero-index-row .n { font-family: var(--serif); color: var(--gold); font-size: 16px; }

/* Headline & intro: visible by default; animate IN as a one-shot (fill: both
   guarantees the end state, so it can never get stuck hidden). */
.hero-display .line { display: block; }
.hero-display .line > span { display: inline-block; }
.hero-display .em { font-style: italic; color: var(--gold); }

.hero-sub {
  margin: 34px 0 40px;
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.5;
  color: var(--on-navy);
  max-width: 52ch;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  left: var(--gut); bottom: 26px;
  z-index: 3;
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--on-navy-60);
}
.hero-scroll .bar { width: 1px; height: 40px; background: var(--on-navy-30); position: relative; overflow: hidden; }
.hero-scroll .bar::after {
  content: ""; position: absolute; top: -40px; left: 0; width: 100%; height: 40px;
  background: var(--gold); animation: scrolldrop 2.4s var(--ease) infinite;
}
@keyframes scrolldrop { 0% { top: -40px; } 60%,100% { top: 40px; } }
.hero[data-layout="centered"] .hero-scroll { left: 50%; transform: translateX(-50%); }

/* ============================== SECTIONS ================================ */
.section-pad { padding: clamp(86px, 12vh, 168px) 0; }
.section-head { display: flex; flex-direction: column; gap: 22px; max-width: 60ch; }
.section-head .h2 { max-width: 18ch; }

.label-num {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--gold-700);
  font-weight: 600;
}

/* WHAT WE DO */
.services {
  margin-top: clamp(48px, 7vh, 90px);
  border-top: 1px solid var(--hairline);
}
.service {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: clamp(20px, 4vw, 64px);
  align-items: baseline;
  padding: clamp(28px, 4vh, 46px) 0;
  border-bottom: 1px solid var(--hairline);
  position: relative;
  transition: background .5s var(--ease);
}
.service::before {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 0;
  background: var(--navy); z-index: -1;
  transition: width .55s var(--ease);
}
.service .s-num { font-family: var(--serif); font-size: 30px; color: var(--gold-700); font-weight: 500; }
.service .s-body { max-width: 60ch; }
.service .s-title { font-family: var(--serif); font-weight: 600; font-size: clamp(26px, 3vw, 40px); line-height: 1.04; letter-spacing: -.01em; transition: color .45s var(--ease); }
.service .s-desc { margin-top: 12px; color: var(--ink-70); font-size: 16.5px; line-height: 1.5; max-width: 46ch; transition: color .45s var(--ease); }
.service .s-go {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--hairline);
  display: grid; place-items: center;
  align-self: center;
  transition: all .45s var(--ease);
  color: var(--ink);
}
.service:hover { padding-left: 34px; padding-right: 34px; }
.service:hover::before { width: 100%; }
.service:hover .s-title { color: #fff; }
.service:hover .s-desc { color: var(--on-navy-60); }
.service:hover .s-num { color: var(--gold); }
.service:hover .s-go { border-color: var(--gold); background: var(--gold); color: var(--navy); transform: rotate(-45deg); }

/* ============================== CLIENTS ================================= */
.clients { background: var(--paper-2); }
.logo-wall {
  margin-top: clamp(44px, 6vh, 76px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--hairline);
  border-top: 1px solid var(--hairline);
}
.client-cell {
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  aspect-ratio: 16 / 9;
  position: relative;
  background: var(--paper);
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: background .5s var(--ease);
}
.client-cell button {
  position: absolute; inset: 0;
  background: none; border: none;
  display: grid; place-items: center;
  width: 100%; height: 100%;
  padding: 18px;
}
.client-logo-box {
  display: flex; align-items: center; justify-content: center;
  width: 100%;
  opacity: .62;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.client-logo-img { max-height: clamp(40px, 5vw, 56px); max-width: min(74%, 200px); width: auto; height: auto; object-fit: contain; display: block; }
.client-name-s {
  position: absolute; left: 0; right: 0; bottom: 16px; text-align: center;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-55);
  opacity: 0; transform: translateY(8px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.client-plus {
  position: absolute; top: 18px; right: 18px;
  width: 20px; height: 20px; color: var(--ink-35);
  transition: color .5s var(--ease), transform .5s var(--ease);
}
.client-cell:hover { background: var(--paper-2); }
.client-cell:hover .client-logo-box { opacity: 1; transform: translateY(-7px); }
.client-cell:hover .client-name-s { opacity: 1; transform: none; }
.client-cell:hover .client-plus { color: var(--gold); transform: rotate(90deg); }

/* TBK Athletics — recreated wordmark */
.tbk-logo { display: inline-flex; flex-direction: column; align-items: center; line-height: 1; color: var(--navy); }
.tbk-main { font-family: "Oswald", sans-serif; font-weight: 700; font-size: clamp(30px, 4vw, 42px); letter-spacing: .02em; transform: skewX(-7deg); }
.tbk-sub { font-family: "Oswald", sans-serif; font-weight: 600; font-size: clamp(10px, 1.1vw, 11px); letter-spacing: .28em; padding: 3px 7px 2px 11px; margin-top: 6px; background: var(--navy); color: var(--paper); transform: skewX(-7deg); }

/* Accordion variant */
.client-acc-panel {
  grid-column: 1 / -1;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.client-acc-inner { padding: clamp(34px, 5vw, 64px); display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px, 5vw, 70px); }

/* Modal */
.modal-scrim {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(0, 12, 26, 0.6);
  backdrop-filter: blur(6px);
  display: grid; place-items: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease);
}
.modal-scrim.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--navy);
  color: #fff;
  width: min(880px, 100%);
  max-height: 88vh; overflow: auto;
  position: relative;
  transform: translateY(24px) scale(.985);
  transition: transform .5s var(--ease);
  border-top: 3px solid var(--gold);
}
.modal-scrim.open .modal { transform: none; }
.modal-inner { padding: clamp(34px, 5vw, 64px); }
.modal-close {
  position: absolute; top: 22px; right: 22px;
  width: 42px; height: 42px; border-radius: 50%;
  background: transparent; border: 1px solid var(--hairline-navy);
  color: #fff; font-size: 18px; display: grid; place-items: center;
  transition: all .35s var(--ease); z-index: 2;
}
.modal-close:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: rotate(90deg); }

.case-head { display: flex; align-items: center; gap: 20px; margin-bottom: 8px; }
.case-logo-tile {
  flex: none;
  background: var(--paper);
  height: 76px; min-width: 104px;
  padding: 14px 20px;
  display: grid; place-items: center;
}
.case-logo-tile .client-logo-img { max-height: 100%; max-width: 180px; }
.case-logo-tile .tbk-main { font-size: 30px; }
.case-logo-tile .tbk-sub { font-size: 10px; }
.case-sector { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.case-name { font-family: var(--serif); font-size: clamp(28px, 3.4vw, 42px); font-weight: 500; line-height: 1; }
.case-summary { color: var(--on-navy); font-size: 18px; line-height: 1.55; margin: 22px 0 30px; max-width: 52ch; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--hairline-navy); border: 1px solid var(--hairline-navy); }
.stat {
  background: var(--navy); padding: 26px clamp(20px,3vw,30px);
}
.stat .stat-num { font-family: var(--serif); font-size: clamp(36px, 4.6vw, 58px); font-weight: 500; color: var(--gold); line-height: 1; letter-spacing: -.01em; }
.stat .stat-num .suffix { font-size: .5em; }
.stat .stat-label { margin-top: 10px; font-size: 14px; line-height: 1.45; color: var(--on-navy-60); }
.case-quote { margin-top: 28px; padding-top: 26px; border-top: 1px solid var(--hairline-navy); font-family: var(--serif); font-style: italic; font-size: 20px; line-height: 1.4; color: var(--on-navy); }
.case-quote .who { display:block; font-family: var(--sans); font-style: normal; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-top: 14px; }

/* ============================ TESTIMONIALS ============================= */
.tcards { margin-top: clamp(46px, 6vh, 78px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--hairline); }
.tcard { padding: clamp(34px, 3.4vw, 52px) clamp(26px, 2.6vw, 40px); border-bottom: 1px solid var(--hairline); border-right: 1px solid var(--hairline); position: relative; }
.tcard:first-child { border-left: 1px solid var(--hairline); }
.tcard .mark { font-family: var(--serif); font-size: 76px; line-height: .6; color: var(--gold); height: 38px; display: block; }
.tcard .quote { font-family: var(--serif); font-size: clamp(21px, 1.7vw, 25px); line-height: 1.32; margin: 14px 0 30px; letter-spacing: -.005em; }
.tcard .by { display: flex; align-items: center; gap: 14px; }
.tcard .who-name { font-weight: 600; font-size: 14.5px; }
.tcard .who-role { font-size: 13px; color: var(--ink-55); margin-top: 2px; }
.tcard .who-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: var(--gold); display: grid; place-items: center; font-family: var(--serif); font-weight: 600; font-size: 16px; flex: none; }

/* ============================== BOOKING ================================ */
.booking { background: var(--navy); color: #fff; overflow: hidden; }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 92px); align-items: start; }
.booking .h2 { color: #fff; max-width: 14ch; }
.booking .lede { color: var(--on-navy-60); }
.book-points { margin-top: 38px; display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--hairline-navy); }
.book-point { padding: 18px 0; border-bottom: 1px solid var(--hairline-navy); display: flex; gap: 16px; align-items: baseline; }
.book-point .n { font-family: var(--serif); color: var(--gold); font-size: 15px; }
.book-point span.t { color: var(--on-navy); font-size: 16px; }

.form { display: grid; gap: 0; border: 1px solid var(--hairline-navy); background: rgba(255,255,255,.02); }
.field { border-bottom: 1px solid var(--hairline-navy); position: relative; }
.field:last-of-type { border-bottom: none; }
.field.row2 { display: grid; grid-template-columns: 1fr 1fr; }
.field.row2 > .sub { border-right: 1px solid var(--hairline-navy); }
.field.row2 > .sub:last-child { border-right: none; }
.field label {
  position: absolute; top: 16px; left: 22px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--on-navy-30); pointer-events: none; transition: color .3s;
}
.field input, .field textarea {
  width: 100%; background: transparent; border: none; outline: none;
  color: #fff; font-family: var(--sans); font-size: 16px;
  padding: 38px 22px 18px;
  resize: none;
}
.field textarea { min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: transparent; }
.field:focus-within label { color: var(--gold); }
.field input:focus, .field textarea:focus { background: rgba(201,162,74,.06); }
.form-foot { padding: 22px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.form-note { font-size: 13px; color: var(--on-navy-30); max-width: 30ch; line-height: 1.5; }
.form-foot .btn[disabled] { opacity: .55; cursor: progress; pointer-events: none; }

/* Submission failure — kept quiet in tone, but unmissable. */
.form-error {
  margin: 0; padding: 18px 22px;
  border-top: 1px solid var(--hairline-navy);
  border-left: 2px solid #d98b6a;
  background: rgba(217,139,106,.07);
  color: #f0c9b8; font-size: 14px; line-height: 1.55;
}

/* Honeypot: off-screen for people, still in the DOM for bots. Never use
   display:none here — the better crawlers skip hidden fields. */
.hp-field {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

.form-success {
  border: 1px solid var(--hairline-navy);
  background: rgba(201,162,74,.06);
  padding: clamp(40px, 5vw, 64px);
  text-align: left;
  min-height: 360px;
  display: flex; flex-direction: column; justify-content: center;
  animation: fadeUp .7s var(--ease) both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.form-success .tick { width: 56px; height: 56px; border-radius: 50%; border: 1.5px solid var(--gold); color: var(--gold); display: grid; place-items: center; margin-bottom: 26px; }
.form-success .h3 { color: #fff; }

/* =============================== ABOUT ================================= */
.founders-grid {
  margin-top: clamp(44px, 6vh, 80px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 68px);
}
.founder-card { display: flex; flex-direction: column; align-items: center; text-align: center; }
.founder-placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center; position: relative;
  background: var(--navy);
}
.founder-placeholder .founder-silhouette { width: 52%; color: rgba(246,239,221,.22); }
.founder-initials {
  position: absolute; bottom: 16px; left: 0; right: 0; text-align: center;
  font-family: var(--serif); font-size: 20px; letter-spacing: .1em; color: var(--gold);
}
.founder-photo {
  position: relative; aspect-ratio: 4/5; width: 100%; max-width: 360px;
  background: var(--navy);
  overflow: hidden;
}
.founder-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.founder-ring { position: absolute; inset: 14px; border: 1px solid var(--gold); opacity: .6; pointer-events: none; z-index: 2; }
.founder-copy { padding-top: 22px; }
.founder-copy .name { font-family: var(--serif); font-size: clamp(23px, 2vw, 28px); font-weight: 600; line-height: 1; }
.founder-copy .role { font-size: 13px; color: var(--gold-700); letter-spacing: .06em; text-transform: uppercase; margin-top: 9px; }
.founder-bio { font-size: 15.5px; line-height: 1.6; color: var(--ink-70); margin: 16px auto 0; max-width: 42ch; }
.founder-certs { margin-top: 18px; font-size: 12.5px; color: var(--ink-70); line-height: 1.6; }
.founder-certs-label { display: block; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-700); margin-bottom: 6px; }
.founders-note { font-family: var(--serif); font-size: clamp(21px, 2.1vw, 30px); line-height: 1.4; text-align: center; max-width: 62ch; margin: clamp(48px, 7vh, 80px) auto 0; letter-spacing: -.005em; }
.founders-note .em { font-style: italic; color: var(--gold-700); }
.about-bio { font-family: var(--serif); font-size: clamp(20px, 1.55vw, 25px); line-height: 1.42; color: var(--ink); font-weight: 400; letter-spacing: -.005em; margin-top: 20px; }
.about-bio .em { font-style: italic; color: var(--gold-700); font-weight: 500; }
.about-sig { display: flex; align-items: center; gap: 18px; }
.about-sig .name { font-family: var(--serif); font-size: 26px; font-weight: 600; }
.about-sig .role { font-size: 13px; color: var(--ink-55); letter-spacing: .04em; }
.about-credentials { margin-top: 40px; display: flex; justify-content: center; text-align: center; gap: clamp(28px,4vw,56px); flex-wrap: wrap; border-top: 1px solid var(--hairline); padding-top: 30px; }
.cred .cn { font-family: var(--serif); font-size: 38px; color: var(--navy); font-weight: 500; line-height: 1; }
.cred .cl { font-size: 13px; color: var(--ink-55); margin-top: 8px; letter-spacing: .02em; }

/* =============================== FOOTER ================================ */
.footer { background: var(--navy); color: #fff; padding: clamp(64px, 9vh, 120px) 0 40px; border-top: 1px solid var(--hairline-navy); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid var(--hairline-navy); }
.footer-blurb { color: var(--on-navy-60); margin-top: 24px; max-width: 34ch; line-height: 1.6; font-size: 15px; }
.footer-col h4 { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 500; }
.footer-col a { display: block; color: var(--on-navy); padding: 7px 0; font-size: 15px; transition: color .3s, padding .3s; }
.footer-col a:hover { color: var(--gold); padding-left: 6px; }
.footer-bot { padding-top: 30px; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: 13px; color: var(--on-navy-30); }

/* ============================ RESPONSIVE =============================== */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-burger { display: grid; place-items: center; width: 44px; height: 44px; background: none; border: 1px solid var(--hairline-navy); color: #fff; gap: 5px; }
  .nav[data-scrolled="true"] .nav-burger { color: var(--navy); border-color: var(--hairline); }
  .nav-burger span { width: 18px; height: 1.5px; background: currentColor; display: block; }
  .hero[data-layout="split"] .hero-split { grid-template-columns: 1fr; }
  .hero-index { display: none !important; }
  .booking-grid { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: 1fr; }
  .tcards { grid-template-columns: 1fr; }
  .tcard, .tcard:first-child { border-left: 1px solid var(--hairline); }
  .logo-wall { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .client-acc-inner { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .service { grid-template-columns: 1fr; gap: 8px; }
  .founder-card { grid-template-columns: 1fr; gap: 18px; }
  .founder-photo { max-width: 260px; }
  .service .s-go { display: none; }
  .service:hover { padding-left: 18px; padding-right: 18px; }
  .field.row2 { grid-template-columns: 1fr; }
  .field.row2 > .sub { border-right: none; border-bottom: 1px solid var(--hairline-navy); }
  .field.row2 > .sub:last-child { border-bottom: none; }
  .logo-wall { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
}
