/* =========================================================================
   Elements Acupuncture
   ========================================================================= */

:root {
  --ink:          #0A1F23;
  --petrol:       #12363D;
  --petrol-deep:  #0C272C;
  --teal:         #2C6A72;
  --teal-soft:    #7FA9AC;
  --gold:         #BE9440;
  --gold-soft:    #E0C489;
  --gold-wash:    #F4EADA;
  --cream:        #FCF9F4;
  --sand:         #F2EADD;
  --paper:        #FFFFFF;
  --body-text:    #33474A;
  --muted:        #6B8083;
  --line:         rgba(18, 54, 61, 0.14);
  --line-light:   rgba(255, 255, 255, 0.18);

  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shell: 1240px;
  --gutter: clamp(1.25rem, 5vw, 4.5rem);
  --radius: 2px;

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

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--cream);
  color: var(--body-text);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-feature-settings: "kern", "liga";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }

a { color: inherit; }
address { font-style: normal; }

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

/* ---------- Typography ------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 0.6em;
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 40;
}

.display {
  font-size: clamp(1.9rem, 8vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.028em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.3rem, 5vw, 3.9rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); line-height: 1.2; }
h4 { font-size: 1.0625rem; font-family: var(--sans); font-weight: 600; letter-spacing: 0; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1.125rem, 1.7vw, 1.375rem);
  line-height: 1.6;
  color: var(--petrol);
}

.eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.eyebrow::after {
  content: "";
  flex: 0 0 2.5rem;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::before {
  content: "";
  flex: 0 0 2.5rem;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
  order: -1;
}

.serif-quote {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2.15rem);
  line-height: 1.32;
  letter-spacing: -0.015em;
  font-style: italic;
  font-variation-settings: "SOFT" 20, "WONK" 1, "opsz" 40;
}

/* ---------- Layout ----------------------------------------------------- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shell--narrow { max-width: 780px; }
.shell--mid { max-width: 980px; }

.section { padding-block: clamp(4.5rem, 9vw, 8.5rem); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5.5rem); }
.section--sand { background: var(--sand); }
.section--paper { background: var(--paper); }

.section--dark {
  background: var(--petrol-deep);
  color: rgba(255, 255, 255, 0.78);
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .lead { color: rgba(255, 255, 255, 0.86); }
.section--dark .eyebrow { color: var(--gold-soft); }

.split {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-left { grid-template-columns: 1.15fr 0.85fr; }
  .split--wide-right { grid-template-columns: 0.85fr 1.15fr; }
  .split--top { align-items: start; }
  .split__media--first { order: -1; }
}

.stack > * + * { margin-top: 1.15rem; }
.stack-lg > * + * { margin-top: 2.5rem; }

/* ---------- Buttons ---------------------------------------------------- */

.btn {
  --btn-bg: var(--petrol);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.9rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), transform .35s var(--ease);
}
.btn:hover { --btn-bg: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--petrol); border-color: var(--line); }
.btn--ghost:hover { --btn-bg: var(--petrol); --btn-fg: #fff; border-color: var(--petrol); }

.btn--light { --btn-bg: transparent; --btn-fg: #fff; border-color: var(--line-light); }
.btn--light:hover { --btn-bg: var(--gold-soft); --btn-fg: var(--ink); border-color: var(--gold-soft); }

.btn--gold { --btn-bg: var(--gold); --btn-fg: #fff; }
.btn--gold:hover { --btn-bg: var(--petrol); border-color: var(--petrol); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }
@media (max-width: 560px) {
  .btn-row .btn {
    flex: 1 1 auto;
    justify-content: center;
    padding-inline: 1.1rem;
  }
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--petrol);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--gold);
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.link-arrow:hover { gap: 1rem; color: var(--gold); }
.section--dark .link-arrow { color: #fff; border-color: var(--gold-soft); }
.section--dark .link-arrow:hover { color: var(--gold-soft); }

/* ---------- Header ----------------------------------------------------- */

.header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 60;
  padding-block: 1.25rem;
  border-bottom: 1px solid transparent;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
body.has-dark-hero .header { color: #fff; }
body.has-dark-hero .header .brand__word { color: #fff; }
body.has-dark-hero .header .brand__sub { color: rgba(255,255,255,.62); }
body.has-dark-hero .header .nav a { color: rgba(255,255,255,.86); }
body.has-dark-hero .header .burger span { background: #fff; }

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand__mark { width: 44px; height: 44px; border-radius: 50%; background: var(--cream); padding: 3px; }
.brand__word {
  font-family: var(--display);
  font-size: 1.02rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.1;
  transition: color .45s var(--ease);
}
.brand__sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.5625rem;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin-top: 0.28rem;
  transition: color .45s var(--ease);
}

.nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.4vw, 2.3rem); }
.nav a {
  text-decoration: none;
  font-size: 0.8125rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--petrol);
  position: relative;
  padding-block: 0.35rem;
  transition: color .3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right .4s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { right: 0; }
.nav a[aria-current="page"] { color: var(--gold); }
.nav .btn { padding: 0.72rem 1.35rem; font-size: 0.6875rem; }
.nav .btn::after { display: none; }

.burger {
  display: none;
  width: 44px; height: 44px;
  border: 0; background: none; cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: flex-end;
}
.burger span {
  display: block;
  height: 1.5px;
  background: var(--petrol);
  transition: transform .4s var(--ease), width .4s var(--ease), opacity .3s var(--ease);
}
.burger span:nth-child(1) { width: 24px; }
.burger span:nth-child(2) { width: 17px; }
.burger span:nth-child(3) { width: 24px; }
body.menu-open .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 24px; }

@media (max-width: 960px) {
  .burger { display: flex; }
  .nav {
    position: fixed;
    inset: 0;
    background: var(--petrol-deep);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    transform: translateY(-100%);
    transition: transform .55s var(--ease);
    z-index: -1;
  }
  body.menu-open .nav { transform: translateY(0); }
  .nav a { color: #fff; font-size: 1.05rem; letter-spacing: 0.16em; }
  .nav a[aria-current="page"] { color: var(--gold-soft); }
  .nav .btn { margin-top: 0.8rem; }
  body.menu-open { overflow: hidden; }
  body.menu-open .burger span { background: #fff !important; }
}

/* ---------- Hero ------------------------------------------------------- */

.hero {
  position: relative;
  min-height: min(94vh, 900px);
  min-height: min(94dvh, 900px);
  display: flex;
  align-items: flex-end;
  background: var(--petrol-deep);
  overflow: hidden;
  padding-bottom: clamp(3rem, 7vw, 6rem);
  padding-top: 9rem;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 58% 46%; }
/* Narrow screens crop hard, so pull the framing back onto Annie's hands. */
@media (max-width: 780px) { .hero__media img { object-position: 30% 52%; } }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(10,31,35,.95) 0%, rgba(10,31,35,.88) 42%, rgba(10,31,35,.42) 74%, rgba(10,31,35,.52) 100%),
    linear-gradient(to top, rgba(10,31,35,.88) 0%, rgba(10,31,35,.1) 52%);
}
.hero__inner { position: relative; width: 100%; }
.hero__body { max-width: 34rem; color: rgba(255,255,255,.85); }
.hero h1 { color: #fff; }
.hero .lead { color: rgba(255,255,255,.85); }
.hero .eyebrow { color: var(--gold-soft); }

.hero__meta {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  gap: 1.75rem 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  border-top: 1px solid var(--line-light);
  padding-top: 1.9rem;
}
.hero__meta dt {
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.5rem;
}
.hero__meta dd {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: 1.0625rem;
  line-height: 1.45;
}
.hero__meta dd span { display: block; font-family: var(--sans); font-size: .8125rem; color: rgba(255,255,255,.6); }

/* ---------- Portrait hero (home) --------------------------------------- */

.lead-hero {
  background: var(--cream);
  padding-top: clamp(6.75rem, 9vw, 9rem);
  padding-bottom: clamp(3rem, 5vw, 4.25rem);
  position: relative;
  overflow: hidden;
}
.lead-hero::before {
  content: "";
  position: absolute;
  left: -16rem;
  top: -20rem;
  width: 46rem;
  height: 46rem;
  border-radius: 50%;
  border: 1px solid rgba(18, 54, 61, 0.07);
  pointer-events: none;
}

.lead-hero__inner {
  position: relative;
  display: grid;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .lead-hero__inner { grid-template-columns: 1.02fr 0.98fr; }
  /* The photograph shrinks on short screens, so keep it centred in its column. */
  .lead-hero__media { display: flex; justify-content: center; }
}
.lead-hero__text { max-width: 34rem; }
.lead-hero h1 { margin-bottom: 1.2rem; }
.lead-hero .lead { margin-bottom: 1.15em; }
.lead-hero .btn-row { margin-top: clamp(1.9rem, 3vw, 2.4rem); }

/* The portrait sits on a soft sand mat that peeks out at the top and right. */
.portrait {
  position: relative;
  isolation: isolate;
  width: fit-content;
  max-width: 100%;
}
.portrait img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(68vh, 700px);
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
}
.portrait::before {
  content: "";
  position: absolute;
  inset: -1.75rem -1.75rem 1.25rem 3.5rem;
  background: var(--sand);
  border-radius: var(--radius);
  z-index: 0;
}
.portrait figcaption {
  position: relative;
  z-index: 1;
  margin-top: 1.15rem;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 899px) {
  .portrait::before { inset: -1rem -1.25rem 1rem 2.5rem; }
  .lead-hero__media { order: -1; }
}
/* Phone: portrait, headline and both buttons all land on the first screen.
   The supporting sentences move below the buttons rather than pushing them off. */
@media (max-width: 620px) {
  .lead-hero { padding-top: 5.25rem; padding-bottom: 2.75rem; }
  .lead-hero__inner { gap: 1.35rem; }
  .lead-hero__text { display: flex; flex-direction: column; }
  .lead-hero__text .eyebrow { order: 1; margin-bottom: 0.85rem; }
  .lead-hero__text h1 { order: 2; margin-bottom: 0; }
  .lead-hero__text .btn-row { order: 3; margin-top: 1.2rem; }
  .lead-hero__copy { order: 4; margin-top: 1.75rem; }
  .portrait img { max-height: min(50vh, 420px); }
  .portrait figcaption { margin-top: 0.8rem; }
  .btn-row .btn { padding-block: 0.9rem; }
  .factbar { margin-top: 2.5rem; padding-top: 1.75rem; gap: 1.4rem; }
}

.lead-hero + .section { padding-top: clamp(3.5rem, 7vw, 6rem); }

.factbar {
  position: relative;
  margin-top: clamp(3.5rem, 6vw, 5.25rem);
  padding-top: 2.2rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1.75rem 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
}
.factbar dt {
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.factbar dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.0625rem;
  line-height: 1.45;
}
.factbar dd span {
  display: block;
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: var(--muted);
}

/* ---------- Page header (interior) ------------------------------------- */

.pagehead {
  background: var(--petrol-deep);
  color: rgba(255,255,255,.8);
  padding-top: clamp(8.5rem, 14vw, 12rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}
.pagehead::before {
  content: "";
  position: absolute;
  right: -8%; top: -30%;
  width: 46rem; height: 46rem;
  border-radius: 50%;
  border: 1px solid rgba(224,196,137,.16);
}
.pagehead::after {
  content: "";
  position: absolute;
  right: 4%; top: -12%;
  width: 26rem; height: 26rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(190,148,64,.22), transparent 62%);
}
.pagehead__inner { position: relative; max-width: 46ch; }
.pagehead h1 { color: #fff; }
.pagehead .eyebrow { color: var(--gold-soft); }
.pagehead .lead { color: rgba(255,255,255,.82); }

/* ---------- Figures ---------------------------------------------------- */

.figure { position: relative; }
.figure img { width: 100%; height: auto; border-radius: var(--radius); position: relative; z-index: 1; }
.figure--framed { isolation: isolate; }
.figure--framed::before {
  content: "";
  position: absolute;
  inset: -1.5rem -1.5rem 1.5rem 1.5rem;
  border: 1px solid var(--gold);
  opacity: 0.55;
  border-radius: var(--radius);
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 640px) {
  .figure--framed::before { inset: -0.75rem -0.75rem 0.75rem 0.75rem; }
}
.figure--tall img { aspect-ratio: 4 / 5; object-fit: cover; }
.figure--wide img { aspect-ratio: 16 / 10; object-fit: cover; }
.figure--photo img { aspect-ratio: 4 / 3; object-fit: cover; }
.figure--square img { aspect-ratio: 1 / 1; object-fit: cover; }
.figure figcaption {
  margin-top: 0.9rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Cards ------------------------------------------------------ */

.grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.4rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
@media (min-width: 1040px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 620px) and (max-width: 1039px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 2.6vw, 2.3rem);
  display: flex;
  flex-direction: column;
  transition: border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 22px 46px -32px rgba(10,31,35,.5); }
.card .card__num {
  font-family: var(--display);
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.card h3 { margin-bottom: 0.7rem; }
.card p { color: var(--muted); font-size: 0.9375rem; }
.card__media { margin: -1px -1px 1.5rem; }
.card__media img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.card--flush { padding-top: 0; overflow: hidden; }
.card--flush .card__media { margin-inline: calc(-1 * clamp(1.6rem, 2.6vw, 2.3rem)); margin-top: 0; }

/* ---------- Price cards ------------------------------------------------ */

.prices { display: grid; gap: 1.5rem; }
@media (min-width: 900px) { .prices { grid-template-columns: repeat(3, 1fr); } }

.price {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.price:hover { border-color: var(--gold); box-shadow: 0 22px 46px -32px rgba(10,31,35,.45); }
.price .price__tag {
  align-self: flex-start;
  margin-bottom: 1rem;
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid currentColor;
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
}
.price h3 { font-size: 1.32rem; margin-bottom: 0.4rem; text-wrap: balance; }
/* Reserve three lines for the title so the prices line up across the cards. */
@media (min-width: 900px) { .price h3 { min-height: 3.6em; } }
.price .price__meta {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.price .price__amount {
  font-family: var(--display);
  font-size: clamp(2.6rem, 4.5vw, 3.4rem);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 1.3rem;
}
.price p { font-size: 0.9375rem; color: var(--muted); }
.price .price__foot {
  margin-top: auto;
  padding-top: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

/* ---------- Feature rows ----------------------------------------------- */

.feature + .feature { margin-top: clamp(4rem, 8vw, 7rem); }
@media (min-width: 900px) {
  .feature:nth-child(even) .feature__media { order: -1; }
}

/* ---------- Clinic ----------------------------------------------------- */

.clinic {
  display: grid;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}
@media (min-width: 860px) { .clinic { grid-template-columns: 0.85fr 1.15fr; } }
.clinic address { font-style: normal; font-size: 1.0625rem; line-height: 1.75; }

.hours { width: 100%; border-collapse: collapse; margin: 1.4rem 0; }
.hours caption {
  text-align: left;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 0.6rem;
}
.section--dark .hours caption { color: var(--gold-soft); }
.hours th, .hours td { text-align: left; padding: 0.72rem 0; border-bottom: 1px solid var(--line); font-weight: 400; }
.hours th { color: var(--petrol); font-weight: 500; }
.hours td { text-align: right; font-variant-numeric: tabular-nums; color: var(--muted); }
.section--dark .hours th, .section--dark .hours td { border-color: var(--line-light); }
.section--dark .hours th { color: #fff; }
.section--dark .hours td { color: rgba(255,255,255,.7); }

/* ---------- Definition / timeline lists -------------------------------- */

.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li {
  display: grid;
  gap: 0.25rem 2rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 720px) { .timeline li { grid-template-columns: 1fr 12rem; } }
.timeline strong { font-weight: 500; color: var(--ink); font-size: 1.0625rem; }
.timeline span { color: var(--muted); font-size: 0.9375rem; }
.timeline em {
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  align-self: start;
}
.section--dark .timeline li { border-color: var(--line-light); }
.section--dark .timeline strong { color: #fff; }
.section--dark .timeline span { color: rgba(255,255,255,.66); }

/* ---------- FAQ accordion ---------------------------------------------- */

.faq { border-top: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.6rem 3rem 1.6rem 0;
  position: relative;
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.9vw, 1.45rem);
  color: var(--ink);
  line-height: 1.25;
  transition: color .3s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold); }
.faq summary::after {
  content: "";
  position: absolute;
  right: 0.4rem; top: 50%;
  width: 13px; height: 13px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .4s var(--ease);
}
.faq[open] summary::after { transform: translateY(-20%) rotate(-135deg); }
.faq__body { padding: 0 clamp(0, 6vw, 5rem) 1.9rem 0; color: var(--muted); }
.faq + .faq { border-top: 1px solid var(--line); }
.faq:last-of-type { border-bottom: 1px solid var(--line); }

/* ---------- Aside panel ------------------------------------------------ */

.aside {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.7rem, 3vw, 2.4rem);
}
@media (min-width: 960px) { .aside { position: sticky; top: 2.5rem; } }
.aside h3 { font-size: 1.25rem; margin-bottom: 1.4rem; }
.aside dl { margin: 0; }
.aside dt {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.aside dd { margin: 0 0 1.4rem; color: var(--body-text); font-size: 0.9375rem; }
.aside dd strong { font-family: var(--display); font-size: 1.35rem; font-weight: 400; color: var(--ink); }

/* ---------- Quote ------------------------------------------------------ */

.quote { text-align: center; max-width: 46ch; margin-inline: auto; }
.quote__mark {
  font-family: var(--display);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--gold);
  display: block;
  margin-bottom: 1.6rem;
}
.quote cite {
  display: block;
  margin-top: 2rem;
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.quote cite span { display: block; color: rgba(255,255,255,.45); margin-top: 0.4rem; letter-spacing: 0.14em; }

/* ---------- Trust strip ------------------------------------------------ */

.trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.75rem, 6vw, 5rem);
  padding-block: 2.6rem;
}
.trust img {
  height: clamp(34px, 6vw, 46px);
  width: auto;
  opacity: .7;
  filter: grayscale(1);
  mix-blend-mode: multiply;
  transition: opacity .4s var(--ease), filter .4s var(--ease);
}
.trust a:hover img { opacity: 1; filter: grayscale(0); }
.trust__note { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ---------- Logo row --------------------------------------------------- */

.logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, 2.5vw, 1.75rem);
  align-items: center;
  justify-items: center;
}
.logos li { display: grid; place-items: center; }
.logos img {
  height: clamp(30px, 4vw, 46px);
  max-width: 100%;
  width: auto;
  opacity: .85;
  filter: grayscale(1);
  mix-blend-mode: multiply;
}
.logos .logos__square { height: clamp(48px, 6.5vw, 74px); }

/* ---------- CTA band --------------------------------------------------- */

.cta {
  background: var(--petrol);
  color: rgba(255,255,255,.82);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(190,148,64,.22), transparent 62%);
}
.cta .shell { position: relative; }
.cta h2 { color: #fff; }
.cta .lead { color: rgba(255,255,255,.86); }
.cta .eyebrow { color: var(--gold-soft); }
.cta .btn-row { justify-content: center; }

/* ---------- Footer ----------------------------------------------------- */

.footer {
  background: var(--ink);
  color: rgba(255,255,255,.6);
  padding-block: clamp(3.5rem, 7vw, 5.5rem) 2.5rem;
  font-size: 0.9375rem;
}
.footer a { color: rgba(255,255,255,.72); text-decoration: none; transition: color .3s var(--ease); }
.footer a:hover { color: var(--gold-soft); }
.footer__grid {
  display: grid;
  gap: 2.8rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer__grid > div:first-child { grid-column: span 1; }
@media (min-width: 900px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.footer h4 {
  color: rgba(255,255,255,.45);
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
  font-weight: 500;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li + li { margin-top: 0.7rem; }
.footer__brand img { width: 62px; margin-bottom: 1.3rem; border-radius: 50%; background: var(--cream); padding: 4px; }
.footer__bottom {
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(255,255,255,.4);
}
.footer__bottom nav { display: flex; gap: 1.6rem; flex-wrap: wrap; }

/* ---------- Contact form ----------------------------------------------- */

.field { display: block; margin-bottom: 1.4rem; }
.field span {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.field input, .field textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  font: inherit;
  color: var(--ink);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(190,148,64,.14);
}
.field textarea { min-height: 160px; resize: vertical; }

/* ---------- Assistant -------------------------------------------------- */

.ask-launch {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 1.2rem;
  background: rgba(252, 249, 244, 0.94);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  color: var(--petrol);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 0 14px 34px -20px rgba(10, 31, 35, .5);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .55s var(--ease), transform .55s var(--ease),
              background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.ask-launch.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.ask-launch:hover { background: var(--petrol); color: #fff; border-color: var(--petrol); }
.ask-launch:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.ask-launch svg { width: 15px; height: 15px; }
body.ask-open .ask-launch { opacity: 0; pointer-events: none; }

@media (max-width: 620px) {
  .ask-launch { width: 46px; height: 46px; padding: 0; justify-content: center; }
  .ask-launch span { display: none; }
  .ask-launch svg { width: 19px; height: 19px; }
}

/* ---------- Assistant panel -------------------------------------------------- */


.ask {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  width: min(400px, calc(100vw - 2rem));
  height: min(600px, calc(100vh - 2rem));
  height: min(600px, calc(100dvh - 2rem));
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 40px 90px -40px rgba(10,31,35,.6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 80;
  opacity: 0;
  transform: translateY(18px) scale(.98);
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
body.ask-open .ask { opacity: 1; transform: none; pointer-events: auto; }

.ask__head {
  background: var(--petrol-deep);
  color: #fff;
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.ask__head img { width: 34px; height: 34px; border-radius: 50%; background: var(--cream); padding: 2px; }
.ask__head strong { font-family: var(--display); font-size: 0.95rem; font-weight: 400; letter-spacing: 0.04em; display: block; }
.ask__head span { font-size: 0.6875rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.ask__close {
  margin-left: auto;
  background: none; border: 0; color: rgba(255,255,255,.7);
  font-size: 1.5rem; line-height: 1; cursor: pointer; padding: 0.2rem 0.4rem;
  transition: color .3s var(--ease);
}
.ask__close:hover { color: #fff; }

.ask__log {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1.3rem 1.2rem;
  scroll-behavior: smooth;
}
.ask__msg {
  max-width: 88%;
  padding: 0.85rem 1.05rem;
  border-radius: 12px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0.85rem;
  overflow-wrap: anywhere;
  animation: rise .45s var(--ease) both;
}
.ask__msg p { margin: 0; }
.ask__msg p + p, .ask__msg p + ul, .ask__msg ul + p { margin-top: 0.7rem; }
.ask__list { list-style: none; margin: 0; padding: 0; }
.ask__list li { padding-left: 0.95rem; position: relative; }
.ask__list li + li { margin-top: 0.4rem; }
.ask__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.ask__msg--me .ask__list li::before { background: var(--gold-soft); }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } }
.ask__msg--bot { background: var(--paper); border: 1px solid var(--line); color: var(--body-text); border-bottom-left-radius: 3px; }
.ask__msg--me { background: var(--petrol); color: #fff; margin-left: auto; border-bottom-right-radius: 3px; }
.ask__msg--bot a { text-decoration: underline; text-underline-offset: 2px; }
.ask__msg a { color: var(--gold); }
.ask__msg--me a { color: var(--gold-soft); }

.ask__chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.6rem; }
.ask__chip {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font: inherit;
  font-size: 0.8125rem;
  color: var(--petrol);
  cursor: pointer;
  transition: border-color .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.ask__chip:hover { border-color: var(--gold); background: var(--gold-wash); }

.ask__form {
  display: flex;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.ask__form input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  font: inherit;
  font-size: 0.9375rem;
  background: var(--cream);
  color: var(--ink);
}
.ask__form input:focus { outline: none; border-color: var(--gold); }
.ask__send {
  border: 0;
  background: var(--petrol);
  color: #fff;
  width: 42px; height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background .3s var(--ease);
}
.ask__send:hover { background: var(--gold); }
.ask__send svg { width: 17px; height: 17px; }

.ask__note {
  font-size: 0.6875rem;
  color: var(--muted);
  text-align: center;
  padding: 0 1rem 0.85rem;
  background: var(--paper);
  line-height: 1.5;
}

.dots span {
  display: inline-block;
  width: 5px; height: 5px;
  margin-right: 4px;
  border-radius: 50%;
  background: var(--teal-soft);
  animation: blink 1.3s infinite both;
}
.dots span:nth-child(2) { animation-delay: .18s; }
.dots span:nth-child(3) { animation-delay: .36s; }
@keyframes blink { 0%, 80%, 100% { opacity: .25; } 40% { opacity: 1; } }

/* ---------- Reveal animation ------------------------------------------- */

.js .reveal { opacity: 0; transform: translateY(26px); }
.reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-in.d1 { transition-delay: .09s; }
.reveal.is-in.d2 { transition-delay: .18s; }
.reveal.is-in.d3 { transition-delay: .27s; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal, .reveal.is-in { opacity: 1; transform: none; transition: none; }
  .ask-launch__dot, .dots span { animation: none; }
  * { scroll-behavior: auto !important; }
}

/* ---------- Utility ---------------------------------------------------- */

.skip {
  position: absolute;
  left: -9999px;
  top: 1rem;
  background: var(--petrol);
  color: #fff;
  padding: 0.8rem 1.4rem;
  z-index: 100;
  border-radius: var(--radius);
}
.skip:focus { left: 1rem; }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.section--dark .rule { background: var(--line-light); }
.text-center { text-align: center; }
.mt-lg { margin-top: clamp(2.5rem, 5vw, 4rem); }
.mt-md { margin-top: 2rem; }
.muted { color: var(--muted); }
.nowrap { white-space: nowrap; }
.prose p + p { margin-top: 1.15em; }
.prose h3 { margin-top: 2.6rem; }
.prose ul { padding-left: 1.2rem; color: var(--muted); }
.prose li { margin-bottom: 0.6rem; }
