/* ==========================================================================
   Anchorwell Partner (Team Engagement & Events), Lehigh County, PA
   Palette from the real logo: deep teal wordmark ink, terracotta / sage /
   dusty blue / sand arcs around three raised-arm figures, a small gold knot.
   Type: Marcellus (a Trajan-like roman that matches the logo lettering) for
   headings, Marcellus SC for eyebrows, Figtree for body.
   Signatures: the RING (four coloured arcs from the logo) as the section mark,
   the DOME seam under the hero, the ORBIT event picker, the two-list "plate"
   ledger that follows the scroll, and the multi-step inquiry form.
   ========================================================================== */

:root {
  --teal: #1f5164;
  --teal-deep: #163e4c;
  --teal-ink: #0f2b35;
  --terra: #cd8b70;
  --terra-deep: #a96146;
  --terra-text: #9d5537;
  --sage: #b5baa0;
  --sage-deep: #6c7458;
  --blue: #9fbcc4;
  --blue-deep: #6d95a1;
  --sand: #d9c3ad;
  --gold: #b9945a;

  --paper: #faf7f2;
  --paper-2: #f3ede4;
  --sage-tint: #edefe6;
  --blue-tint: #e8eff1;
  --white: #ffffff;
  --ink: #1c2f36;
  --muted: #5b6d74;
  --line: #e6ddd0;
  --line-soft: #efe8dd;

  --f-disp: "Marcellus", "Cormorant Garamond", Georgia, serif;
  --f-eye: "Marcellus SC", "Marcellus", Georgia, serif;
  --f-body: "Figtree", "Segoe UI", Roboto, -apple-system, sans-serif;

  --wrap: 76rem;
  --r: 22px;
  --r-sm: 14px;
  --shadow: 0 1px 2px rgba(22, 47, 54, .05), 0 14px 36px -14px rgba(22, 47, 54, .18);
  --shadow-lift: 0 2px 4px rgba(22, 47, 54, .06), 0 26px 54px -18px rgba(22, 47, 54, .28);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --nav-h: 82px;
  --a: 0deg; /* orbit tab angle; each tab overrides inline */
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.reduce { scroll-behavior: auto; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--f-disp);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: .005em;
  color: var(--teal-ink);
  margin: 0 0 .55em;
}
h1, h2 { text-wrap: balance; }
h1 { font-size: clamp(2.35rem, 4.6vw, 3.5rem); }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.55rem); }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1.1rem; }
a { color: var(--teal); }
strong, b { font-weight: 600; }
img { max-width: 100%; display: block; height: auto; }
ul, ol { padding-left: 1.2rem; }

.skip { position: fixed; top: -100px; left: .6rem; z-index: 200; background: var(--teal-ink); color: #fff; padding: .8rem 1.2rem; border-radius: 10px; transition: top .2s var(--ease); }
.skip:focus { top: .6rem; color: #fff; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 1.5rem; }
.wrap--narrow { max-width: 50rem; }
.wrap--mid { max-width: 62rem; }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--terra);
  outline-offset: 3px;
  border-radius: 6px;
}

.progress { position: fixed; left: 0; top: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--sage), var(--blue), var(--sand), var(--terra)); z-index: 120; }

/* --- shared pieces ------------------------------------------------------- */

.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--f-eye);
  font-size: .86rem;
  letter-spacing: .14em;
  text-transform: lowercase;
  color: var(--terra-text);
  margin-bottom: .9rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); flex: none; }
.eyebrow--plain::before { display: none; }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 28px; height: 1px; background: var(--gold); flex: none; }

/* The ring: four arcs from the logo, drawn in on reveal */
.ring { width: 46px; height: 46px; display: block; margin: .35rem 0 1.3rem; }
.ring circle { fill: none; stroke-width: 3.2; stroke-linecap: round; stroke-dasharray: 20 80; transform-origin: 50% 50%; transition: stroke-dasharray .9s var(--ease); }
.ring .a1 { stroke: var(--sage); transform: rotate(-100deg); }
.ring .a2 { stroke: var(--blue); transform: rotate(-10deg); transition-delay: .12s; }
.ring .a3 { stroke: var(--sand); transform: rotate(80deg); transition-delay: .24s; }
.ring .a4 { stroke: var(--teal); transform: rotate(170deg); transition-delay: .36s; }
.has-js:not(.reduce) .reveal:not(.in) .ring circle { stroke-dasharray: 0 100; }
.ring--center { margin-inline: auto; }
.on-dark .ring .a4 { stroke: var(--terra); }

.sh { max-width: 44rem; margin-bottom: 2.6rem; }
.sh p { color: var(--muted); font-size: 1.12rem; }
.sh--center { text-align: center; margin-inline: auto; }
.sh--center .eyebrow { justify-content: center; }
.lede { font-size: 1.18rem; line-height: 1.7; color: var(--muted); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--f-body); font-size: .97rem; font-weight: 600; letter-spacing: .01em;
  padding: .95rem 1.65rem; border-radius: 999px; border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.btn svg { width: 17px; height: 17px; flex: none; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--terra { background: var(--terra-deep); color: #fff; box-shadow: 0 10px 24px -12px rgba(180, 103, 74, .9); }
.btn--terra:hover { background: #a3593d; color: #fff; transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(180, 103, 74, .95); }
.btn--teal { background: var(--teal); color: #fff; box-shadow: 0 10px 24px -12px rgba(31, 81, 100, .9); }
.btn--teal:hover { background: var(--teal-deep); color: #fff; transform: translateY(-2px); }
.btn--ghost { border-color: rgba(31, 81, 100, .35); color: var(--teal-deep); background: transparent; }
.btn--ghost:hover { border-color: var(--teal); background: rgba(31, 81, 100, .06); transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--teal-ink); }
.btn--white:hover { background: var(--paper-2); color: var(--teal-ink); transform: translateY(-2px); }
.btn--outline-white { border-color: rgba(255, 255, 255, .55); color: #fff; background: rgba(255, 255, 255, .06); }
.btn--outline-white:hover { border-color: #fff; background: rgba(255, 255, 255, .14); color: #fff; transform: translateY(-2px); }
.reduce .btn:hover { transform: none; }

.arrow-link { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; color: var(--teal); text-decoration: none; }
.arrow-link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.arrow-link:hover svg { transform: translateX(4px); }
.arrow-link:hover { color: var(--terra-deep); }

.sec { padding-block: clamp(4rem, 8vw, 6.5rem); position: relative; }
.sec--tight { padding-block: clamp(3rem, 5vw, 4.25rem); }
.sec--sand { background: var(--paper-2); }
.sec--sage { background: var(--sage-tint); }
.sec--blue { background: var(--blue-tint); }
.sec--white { background: var(--white); }
.sec--teal { background: var(--teal-deep); color: rgba(255, 255, 255, .86); }
.sec--teal h2, .sec--teal h3 { color: #fff; }
.sec--teal .eyebrow { color: var(--sand); }
.sec--teal .eyebrow::before, .sec--teal .eyebrow::after { background: var(--sand); }
.sec--teal .sh p { color: rgba(255, 255, 255, .78); }

/* Scroll reveal (progressive: fully visible without JS or with reduced motion) */
.has-js:not(.reduce) .reveal { opacity: 0; transform: translateY(20px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.has-js:not(.reduce) .reveal.in { opacity: 1; transform: none; }
.has-js:not(.reduce) .reveal.d1 { transition-delay: .1s; }
.has-js:not(.reduce) .reveal.d2 { transition-delay: .2s; }
.has-js:not(.reduce) .reveal.d3 { transition-delay: .3s; }

/* Clip wipe for figures (style the inner img, never the observed element) */
.rv-clip { overflow: hidden; }
.has-js:not(.reduce) .rv-clip > img { clip-path: inset(0 0 100% 0 round var(--r)); transform: scale(1.06); transition: clip-path 1.1s var(--ease), transform 1.4s var(--ease); }
.has-js:not(.reduce) .rv-clip.in > img { clip-path: inset(0 0 0 0 round var(--r)); transform: none; }

/* Line reveal for plain-text headings */
.rv-lines .ln { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.rv-lines .ln__i { display: block; }
.has-js:not(.reduce) .rv-lines .ln__i { transform: translateY(110%); transition: transform .9s var(--ease); }
.has-js:not(.reduce) .rv-lines.in .ln__i { transform: none; }

/* Faint watermark of the mark on dark bands */
.wm { position: absolute; right: -6%; top: 50%; width: min(52vw, 620px); transform: translateY(-50%); opacity: .07; pointer-events: none; }
.wm img { width: 100%; }

/* ==========================================================================
   Nav: mark + wordmark left, links centred, phone + CTA right.
   On Home it floats transparent over the hero photo, then solidifies once the
   photo is scrolled past (.is-stuck, set by the shared script).
   ========================================================================== */

.nav { position: sticky; top: 0; z-index: 90; background: rgba(250, 247, 242, .94); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); transition: background-color .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease); }
.nav__in { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: var(--nav-h); gap: 1rem; }
.nav__brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; color: var(--teal); justify-self: start; }
.nav__mark { width: 46px; height: 46px; flex: none; }
.nav__wm { display: flex; flex-direction: column; align-items: flex-start; gap: .18rem; line-height: 1; }
.nav__word { height: 19px; width: auto; transition: filter .35s var(--ease); }
.nav__sub { font-family: var(--f-disp); font-size: .66rem; letter-spacing: .42em; text-transform: uppercase; color: var(--teal); padding-left: .12em; transition: color .35s var(--ease); }
.nav__links { display: flex; align-items: center; gap: .2rem; justify-self: center; }
.nav__link { position: relative; padding: .55rem .85rem; font-size: .95rem; font-weight: 500; color: var(--ink); text-decoration: none; border-radius: 8px; transition: color .2s var(--ease); }
.nav__link::after { content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .25rem; height: 2px; border-radius: 2px; background: var(--terra); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link:hover { color: var(--teal); }
.nav__right { display: flex; align-items: center; gap: 1rem; justify-self: end; }
.nav__tel { display: inline-flex; align-items: center; gap: .45rem; font-size: .93rem; font-weight: 600; color: var(--teal-deep); text-decoration: none; white-space: nowrap; }
.nav__tel svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.nav__cta { padding: .7rem 1.25rem; font-size: .9rem; }
.nav__burger { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; padding: 0; align-items: center; justify-content: center; flex-direction: column; gap: 5px; justify-self: end; }
.nav__burger span { display: block; width: 20px; height: 2px; background: var(--teal-ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Home: transparent over the hero */
.home-hero .nav { position: fixed; left: 0; right: 0; background: transparent; border-bottom-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
.home-hero .nav:not(.is-stuck) .nav__word { filter: brightness(0) invert(1); }
.home-hero .nav:not(.is-stuck) .nav__sub, .home-hero .nav:not(.is-stuck) .nav__link, .home-hero .nav:not(.is-stuck) .nav__tel { color: #fff; }
.home-hero .nav:not(.is-stuck) .nav__link::after { background: var(--sand); }
.home-hero .nav:not(.is-stuck) .nav__cta { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .55); color: #fff; box-shadow: none; }
.home-hero .nav:not(.is-stuck) .nav__cta:hover { background: rgba(255, 255, 255, .22); }
.home-hero .nav:not(.is-stuck) .nav__burger { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .4); }
.home-hero .nav:not(.is-stuck) .nav__burger span { background: #fff; }
.home-hero .nav.is-stuck { background: rgba(250, 247, 242, .94); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom-color: var(--line); box-shadow: 0 10px 30px -18px rgba(15, 43, 53, .3); }

@media (max-width: 1080px) {
  .nav__tel span { display: none; }
  .nav__link { padding: .55rem .6rem; font-size: .9rem; }
}
@media (max-width: 900px) {
  .nav__in { grid-template-columns: 1fr auto; }
  .nav__right { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0; width: 100%; justify-self: stretch;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lift);
    padding: .5rem 0 1rem;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  }
  .nav__links.open { opacity: 1; visibility: visible; transform: none; }
  .nav__link { padding: .95rem 1.5rem; border-top: 1px solid var(--line-soft); border-radius: 0; font-size: 1.05rem; color: var(--ink) !important; }
  .nav__link::after { display: none; }
  .nav__link[aria-current="page"] { box-shadow: inset 4px 0 0 var(--terra); background: var(--paper-2); }
  .nav__links .nav__m { display: flex; flex-direction: column; gap: .7rem; padding: 1.1rem 1.5rem 0; border-top: 1px solid var(--line-soft); margin-top: .4rem; }
  .nav__links .nav__m .btn { align-self: flex-start; }
  .nav__links .nav__m .nav__tel { color: var(--teal-deep) !important; font-size: 1.02rem; }
  .nav__links .nav__m .nav__tel span { display: inline; }
}
@media (min-width: 901px) { .nav__m { display: none; } }

/* ==========================================================================
   Hero (home): full-bleed photo, deep teal scrim, type on the photo.
   The photo overflows 200px below the hero box so the DOME seam can rise into it.
   ========================================================================== */

.hero { position: relative; min-height: min(92vh, 860px); display: grid; align-items: center; color: #fff; padding-top: calc(var(--nav-h) + 2rem); padding-bottom: 5rem; z-index: 0; }
.hero__bg { position: absolute; left: 0; right: 0; top: 0; bottom: -200px; z-index: -1; overflow: hidden; background: var(--teal-ink); }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 40%; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(15, 43, 53, .9) 0%, rgba(15, 43, 53, .74) 42%, rgba(15, 43, 53, .3) 100%), linear-gradient(180deg, rgba(15, 43, 53, .5), transparent 30%); }
.hero__copy { max-width: 42rem; }
.hero .eyebrow { color: var(--sand); }
.hero .eyebrow::before { background: var(--sand); }
.hero h1 { color: #fff; font-size: clamp(2.5rem, 5.2vw, 4rem); margin-bottom: 1.1rem; }
.hero h1 .hl { color: var(--terra); font-style: normal; }
.hero__lead { font-size: 1.18rem; line-height: 1.65; color: rgba(255, 255, 255, .86); max-width: 36rem; margin-bottom: 1.8rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.6rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; font-size: .92rem; color: rgba(255, 255, 255, .78); }
.hero__trust span { display: inline-flex; align-items: center; gap: .5rem; }
.hero__trust svg { width: 16px; height: 16px; stroke: var(--sand); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* Dome seam: paper rises into the photo as a wide arc */
.dome { position: relative; overflow: hidden; background: linear-gradient(to bottom, transparent 200px, var(--paper) 200px); padding-top: 0; z-index: 1; }
.dome::before { content: ""; position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: max(130vw, 900px); height: 400px; border-radius: 50%; background: var(--paper); z-index: 0; }
.dome__in { position: relative; z-index: 1; padding-top: 3.4rem; padding-bottom: clamp(3.5rem, 6vw, 5rem); }

/* Three ringed promises inside the dome */
.promise { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.promise__item { display: grid; grid-template-columns: 64px 1fr; gap: 1.1rem; align-items: start; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r); padding: 1.35rem 1.4rem; box-shadow: var(--shadow); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.promise__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.promise__ico { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; position: relative; }
.promise__ico::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(from -30deg, var(--sage) 0 80deg, transparent 80deg 92deg, var(--blue) 92deg 170deg, transparent 170deg 182deg, var(--sand) 182deg 260deg, transparent 260deg 272deg, var(--teal) 272deg 350deg, transparent 350deg 360deg); -webkit-mask: radial-gradient(circle, transparent 27px, #000 28px); mask: radial-gradient(circle, transparent 27px, #000 28px); transition: transform .8s var(--ease); }
.promise__item:hover .promise__ico::before { transform: rotate(90deg); }
.promise__ico svg { width: 26px; height: 26px; stroke: var(--teal); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.promise__item h2 { font-size: 1.22rem; margin-bottom: .3rem; }
.promise__item p { margin: 0; color: var(--muted); font-size: .98rem; line-height: 1.6; }
@media (max-width: 960px) { .promise { grid-template-columns: 1fr; gap: 1rem; } .promise__item { padding: 1.15rem 1.2rem; } }

/* ==========================================================================
   Mission band (deep teal, centred quote, mark watermark)
   ========================================================================== */

.mission { position: relative; background: var(--teal-deep); color: #fff; overflow: hidden; }
.mission__in { position: relative; text-align: center; padding-block: clamp(4rem, 8vw, 6.5rem); }
.mission .eyebrow { color: var(--sand); }
.mission blockquote { margin: 0 auto; max-width: 52rem; font-family: var(--f-disp); font-size: clamp(1.45rem, 2.6vw, 2.15rem); line-height: 1.4; color: #fff; }
.mission blockquote .hl { color: var(--terra); }
.mission cite { display: block; margin-top: 1.4rem; font-style: normal; font-family: var(--f-eye); letter-spacing: .14em; font-size: .86rem; color: var(--sand); }

/* ==========================================================================
   The ORBIT: seven event types around the logo's ring, one pane in the centre.
   Shared .swap handles the tab/pane switching; layout is all here.
   ========================================================================== */

.orbit-sec { overflow: hidden; }
.orbit-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.orbit-grid .sh { margin-bottom: 1.5rem; }
.orbit-list { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: .35rem; color: var(--muted); font-size: .98rem; }
.orbit-list li { display: flex; gap: .6rem; align-items: baseline; }
.orbit-list li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--terra); flex: none; transform: translateY(-2px); }

.orbit { position: relative; width: min(100%, 640px); aspect-ratio: 1 / 1; margin-inline: auto; container-type: size; }
.orbit__ring { position: absolute; inset: 7%; border-radius: 50%; background: conic-gradient(from -20deg, var(--sage) 0 78deg, transparent 78deg 92deg, var(--blue) 92deg 168deg, transparent 168deg 182deg, var(--sand) 182deg 258deg, transparent 258deg 272deg, var(--teal) 272deg 348deg, transparent 348deg 360deg); -webkit-mask: radial-gradient(circle closest-side, transparent calc(100% - 6px), #000 calc(100% - 5px), #000 calc(100% - 1px), transparent 100%); mask: radial-gradient(circle closest-side, transparent calc(100% - 6px), #000 calc(100% - 5px), #000 calc(100% - 1px), transparent 100%); opacity: .95; }
.has-js:not(.reduce) .orbit__ring { animation: orbit-spin 80s linear infinite; }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
.orbit__tabs { position: absolute; inset: 0; margin: 0; padding: 0; list-style: none; }
.orbit__tab {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%) rotate(var(--a)) translateY(-43cqw) rotate(calc(-1 * var(--a)));
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem .95rem .5rem .6rem; border-radius: 999px;
  background: var(--paper); border: 1.5px solid rgba(31, 81, 100, .3); color: var(--teal-ink);
  font-family: var(--f-body); font-size: .86rem; font-weight: 600; white-space: nowrap; cursor: pointer;
  box-shadow: 0 6px 18px -10px rgba(15, 43, 53, .35);
  transition: border-color .25s var(--ease), background-color .25s var(--ease), box-shadow .25s var(--ease);
}
.orbit__tab svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.orbit__tab:hover { border-color: var(--teal); background: #fff; }
.orbit__tab.is-on { border-color: var(--terra-deep); background: #fff; box-shadow: 0 10px 24px -12px rgba(180, 103, 74, .7); }
.orbit__tab.is-on svg { stroke: var(--terra-deep); }
.orbit__center { position: absolute; inset: 19%; border-radius: 50%; overflow: hidden; background: var(--teal-ink); box-shadow: var(--shadow-lift); }
.orbit__pane { position: absolute; inset: 0; display: block !important; opacity: 0; transition: opacity .5s var(--ease); pointer-events: none; }
.orbit__pane.is-on { opacity: 1; pointer-events: auto; }
.orbit__pane img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 1.4s var(--ease); }
.orbit__pane.is-on img { transform: none; }
.orbit__pane figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 4.2rem 14% 2.4rem; text-align: center; color: #fff; background: linear-gradient(to top, rgba(15, 43, 53, .96) 0%, rgba(15, 43, 53, .82) 55%, transparent 100%); }
.orbit__pane h3 { color: #fff; font-size: 1.35rem; margin-bottom: .3rem; }
.orbit__pane p { margin: 0 0 .6rem; font-size: .92rem; line-height: 1.5; color: rgba(255, 255, 255, .84); }
.orbit__pane .arrow-link { color: var(--sand); font-size: .9rem; }
.orbit__pane .arrow-link:hover { color: #fff; }
.orbit__hint { position: absolute; left: 50%; bottom: -.4rem; transform: translateX(-50%); font-size: .8rem; color: var(--muted); white-space: nowrap; }

@media (max-width: 1000px) {
  .orbit-grid { grid-template-columns: 1fr; }
  .orbit { width: min(100%, 560px); }
}
@media (max-width: 720px) {
  .orbit { aspect-ratio: auto; container-type: normal; width: 100%; }
  .orbit__ring, .orbit__hint { display: none; }
  .orbit__tabs { position: static; display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
  .orbit__tab { position: static; transform: none; font-size: .82rem; padding: .45rem .85rem .45rem .55rem; }
  .orbit__center { position: relative; inset: auto; border-radius: var(--r); aspect-ratio: 4 / 3; }
  .orbit__pane figcaption { padding: 3rem 1.2rem 1.3rem; text-align: left; }
}

/* ==========================================================================
   "On your plate" ledger: steps on the left, a sticky two-list card on the
   right whose contents follow the step you are reading (.pin-seq).
   ========================================================================== */

.plate { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.plate__steps { display: grid; gap: 0; }
.plate__step { padding: clamp(2.4rem, 6vh, 4rem) 0; border-top: 1px solid var(--line); transition: opacity .4s var(--ease); }
.plate__step:first-child { border-top: 0; padding-top: .5rem; }
.plate__step:last-child { padding-bottom: 1rem; }
.has-js .plate__step:not(.is-on) { opacity: .42; }
.plate__num { font-family: var(--f-eye); letter-spacing: .14em; color: var(--terra-text); font-size: .86rem; display: inline-flex; align-items: center; gap: .6rem; margin-bottom: .6rem; }
.plate__num::before { content: ""; width: 22px; height: 1px; background: var(--gold); }
.plate__step h3 { font-size: 1.5rem; margin-bottom: .5rem; }
.plate__step p { color: var(--muted); margin: 0; }
.plate__stage { position: sticky; top: calc(var(--nav-h) + 1.6rem); }
.ledger { position: relative; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r); box-shadow: var(--shadow-lift); overflow: hidden; min-height: 420px; }
.ledger__head { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
.ledger__head span { padding: 1rem 1.3rem; font-family: var(--f-eye); letter-spacing: .12em; font-size: .82rem; color: var(--muted); }
.ledger__head span + span { border-left: 1px solid var(--line); color: var(--terra-text); }
.ledger__pane { position: absolute; left: 0; right: 0; top: 57px; bottom: 0; display: grid; grid-template-columns: 1fr 1fr; opacity: 0; transition: opacity .45s var(--ease); pointer-events: none; }
.ledger__pane.is-on { opacity: 1; pointer-events: auto; }
.ledger__col { padding: 1.3rem 1.3rem 1.5rem; }
.ledger__col + .ledger__col { border-left: 1px solid var(--line); background: var(--paper); }
.ledger__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; font-size: .95rem; line-height: 1.45; }
.ledger__col li { display: flex; gap: .6rem; align-items: flex-start; }
.ledger__col li svg { width: 18px; height: 18px; flex: none; margin-top: .15rem; stroke: var(--sage-deep); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ledger__col + .ledger__col li svg { stroke: var(--terra-deep); }
.ledger__col--you li { font-weight: 600; color: var(--teal-ink); }
.ledger__you-note { margin: 1rem 0 0; font-size: .86rem; color: var(--muted); }
.ledger__pane .ledger__col + .ledger__col li { opacity: 0; transform: translateX(8px); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.ledger__pane.is-on .ledger__col + .ledger__col li { opacity: 1; transform: none; }
.ledger__pane.is-on .ledger__col + .ledger__col li:nth-child(2) { transition-delay: .07s; }
.ledger__pane.is-on .ledger__col + .ledger__col li:nth-child(3) { transition-delay: .14s; }
.ledger__pane.is-on .ledger__col + .ledger__col li:nth-child(4) { transition-delay: .21s; }
.ledger__pane.is-on .ledger__col + .ledger__col li:nth-child(5) { transition-delay: .28s; }
.ledger__pane.is-on .ledger__col + .ledger__col li:nth-child(6) { transition-delay: .35s; }
.ledger__foot { position: absolute; left: 0; right: 0; bottom: 0; padding: .8rem 1.3rem; font-size: .82rem; color: var(--muted); border-top: 1px solid var(--line-soft); background: #fff; display: flex; justify-content: space-between; gap: 1rem; }
.ledger__dots { display: inline-flex; gap: .35rem; align-items: center; }
.ledger__dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--line); transition: background-color .3s, transform .3s; }
.ledger__dots i.is-on { background: var(--terra-deep); transform: scale(1.25); }

@media (max-width: 860px) {
  .plate { grid-template-columns: 1fr; }
  .plate__stage { position: sticky; top: calc(var(--nav-h) + .5rem); order: -1; z-index: 2; }
  .ledger { min-height: 0; box-shadow: var(--shadow); }
  .ledger__pane { position: relative; top: auto; display: none; }
  .ledger__pane.is-on { display: grid; }
  .ledger__foot { position: static; }
  .plate__step { padding: 1.8rem 0; }
  .has-js .plate__step:not(.is-on) { opacity: .6; }
}
@media (max-width: 520px) {
  .ledger__pane, .ledger__head { grid-template-columns: 1fr; }
  .ledger__head span + span, .ledger__col + .ledger__col { border-left: 0; border-top: 1px solid var(--line); }
  .ledger__head span:first-child { display: none; }
  .ledger__col--you { display: flex; align-items: baseline; gap: .6rem; padding-bottom: .9rem; }
  .ledger__col--you::before { content: "You:"; font-family: var(--f-eye); letter-spacing: .12em; font-size: .78rem; color: var(--muted); }
  .ledger__you-note { display: none; }
}

/* ==========================================================================
   Split feature (photo card + copy), generic
   ========================================================================== */

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--r); box-shadow: var(--shadow-lift); aspect-ratio: 4 / 3; object-fit: cover; }
.split__media--tall img { aspect-ratio: 5 / 4; }
.split__badge { position: absolute; left: -1rem; bottom: -1.2rem; background: #fff; border-radius: var(--r-sm); box-shadow: var(--shadow-lift); padding: .9rem 1.1rem; display: flex; align-items: center; gap: .8rem; max-width: 20rem; }
.split__badge img { width: 44px; height: 44px; border-radius: 0; box-shadow: none; aspect-ratio: 1; }
.split__badge span { font-size: .88rem; line-height: 1.4; color: var(--muted); }
.split__badge b { display: block; color: var(--teal-ink); font-family: var(--f-disp); font-weight: 400; font-size: 1.05rem; }
.split__media--ring::before { content: ""; position: absolute; right: -6%; top: -8%; width: 34%; aspect-ratio: 1; border-radius: 50%; background: conic-gradient(from 20deg, var(--sage) 0 78deg, transparent 78deg 92deg, var(--blue) 92deg 168deg, transparent 168deg 182deg, var(--sand) 182deg 258deg, transparent 258deg 272deg, var(--terra) 272deg 348deg, transparent 348deg 360deg); -webkit-mask: radial-gradient(circle closest-side, transparent calc(100% - 8px), #000 calc(100% - 7px), #000 calc(100% - 1px), transparent 100%); mask: radial-gradient(circle closest-side, transparent calc(100% - 8px), #000 calc(100% - 7px), #000 calc(100% - 1px), transparent 100%); z-index: -1; opacity: .9; }
.split__copy .sh { margin-bottom: 1.4rem; }
.quote-card { border-left: 3px solid var(--terra); padding: .2rem 0 .2rem 1.2rem; margin: 1.4rem 0; font-family: var(--f-disp); font-size: 1.25rem; line-height: 1.45; color: var(--teal-ink); }
.quote-card cite { display: block; font-family: var(--f-body); font-style: normal; font-size: .9rem; color: var(--muted); margin-top: .5rem; }
.checks { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: .6rem; }
.checks li { display: flex; gap: .7rem; align-items: flex-start; }
.checks li svg { width: 22px; height: 22px; flex: none; stroke: var(--terra-deep); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; margin-top: .15rem; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .split__badge { left: 1rem; }
}

/* ==========================================================================
   Plans teaser + CTA band
   ========================================================================== */

.teaser { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 2rem; align-items: center; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r); box-shadow: var(--shadow); padding: clamp(1.6rem, 4vw, 3rem); position: relative; overflow: hidden; }
.teaser::after { content: ""; position: absolute; right: -120px; top: -120px; width: 320px; height: 320px; border-radius: 50%; background: conic-gradient(from 0deg, var(--sage) 0 78deg, transparent 78deg 92deg, var(--blue) 92deg 168deg, transparent 168deg 182deg, var(--sand) 182deg 258deg, transparent 258deg 272deg, var(--terra) 272deg 348deg, transparent 348deg 360deg); -webkit-mask: radial-gradient(circle closest-side, transparent calc(100% - 14px), #000 calc(100% - 13px), #000 calc(100% - 1px), transparent 100%); mask: radial-gradient(circle closest-side, transparent calc(100% - 14px), #000 calc(100% - 13px), #000 calc(100% - 1px), transparent 100%); opacity: .55; pointer-events: none; }
.teaser h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.teaser p { color: var(--muted); margin-bottom: 0; }
.teaser__side { display: grid; gap: .8rem; position: relative; z-index: 1; }
.teaser__side .btn { justify-self: start; }
.teaser__note { font-size: .88rem; color: var(--muted); }
@media (max-width: 800px) { .teaser { grid-template-columns: 1fr; } }

.cta { background: var(--teal-deep); color: #fff; position: relative; overflow: hidden; }
.cta__in { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 2rem; align-items: center; padding-block: clamp(4rem, 8vw, 6rem); }
.cta h2 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: .6rem; }
.cta h2 .hl { color: var(--terra); }
.cta p { color: rgba(255, 255, 255, .8); max-width: 34rem; margin-bottom: 0; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: flex-end; }
.cta .wm { right: auto; left: -10%; opacity: .06; }
@media (max-width: 800px) { .cta__in { grid-template-columns: 1fr; } .cta__actions { justify-content: flex-start; } }

/* ==========================================================================
   Page heads (inner pages)
   ========================================================================== */

.phead { position: relative; overflow: hidden; background: var(--paper-2); padding-block: clamp(3.2rem, 7vw, 5.5rem) clamp(2.8rem, 6vw, 4.5rem); }
.phead__in { position: relative; z-index: 1; max-width: 50rem; }
.phead h1 { margin-bottom: .8rem; }
.phead p { font-size: 1.15rem; color: var(--muted); max-width: 40rem; margin-bottom: 0; }
.phead__ring { position: absolute; right: -4%; top: 50%; width: min(38vw, 480px); aspect-ratio: 1; transform: translateY(-50%); border-radius: 50%; background: conic-gradient(from -20deg, var(--sage) 0 78deg, transparent 78deg 92deg, var(--blue) 92deg 168deg, transparent 168deg 182deg, var(--sand) 182deg 258deg, transparent 258deg 272deg, var(--terra) 272deg 348deg, transparent 348deg 360deg); -webkit-mask: radial-gradient(circle closest-side, transparent calc(100% - 22px), #000 calc(100% - 21px), #000 calc(100% - 1px), transparent 100%); mask: radial-gradient(circle closest-side, transparent calc(100% - 22px), #000 calc(100% - 21px), #000 calc(100% - 1px), transparent 100%); opacity: .35; pointer-events: none; }
.has-js:not(.reduce) .phead__ring { animation: orbit-spin 120s linear infinite; }
.phead--photo { background: var(--teal-ink); color: #fff; }
.phead--photo .phead__bg { position: absolute; inset: 0; }
.phead--photo .phead__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.phead--photo .phead__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(15, 43, 53, .9), rgba(15, 43, 53, .35)); }
.phead--photo h1 { color: #fff; }
.phead--photo p { color: rgba(255, 255, 255, .84); }
.phead--photo .eyebrow { color: var(--sand); }
.phead--photo .eyebrow::before { background: var(--sand); }

/* ==========================================================================
   Events page: side rail + seven alternating features
   ========================================================================== */

.ev-layout { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.spy-rail { position: sticky; top: calc(var(--nav-h) + 1.5rem); display: grid; gap: .1rem; padding-left: 0; margin: 0; list-style: none; transition: opacity .4s var(--ease); }
.spy-rail a { display: flex; align-items: center; gap: .7rem; padding: .5rem .2rem; font-size: .9rem; color: var(--muted); text-decoration: none; border-left: 2px solid var(--line); padding-left: .9rem; transition: color .25s, border-color .25s, padding-left .25s var(--ease); }
.spy-rail a i { font-style: normal; font-family: var(--f-eye); font-size: .74rem; letter-spacing: .1em; color: var(--sage-deep); }
.spy-rail a:hover { color: var(--teal-ink); }
.spy-rail a.is-active { color: var(--teal-ink); border-left-color: var(--terra-deep); padding-left: 1.15rem; font-weight: 600; }
.ev { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(1.6rem, 4vw, 3.5rem); align-items: center; padding-block: clamp(2.2rem, 5vw, 4rem); border-top: 1px solid var(--line); scroll-margin-top: calc(var(--nav-h) + 1rem); }
.ev:first-of-type { border-top: 0; padding-top: 0; }
.ev:nth-of-type(even) .ev__media { order: 2; }
.ev__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r); box-shadow: var(--shadow-lift); }
.ev__num { font-family: var(--f-eye); letter-spacing: .14em; font-size: .86rem; color: var(--terra-text); display: inline-flex; align-items: center; gap: .6rem; margin-bottom: .7rem; }
.ev__num::before { content: ""; width: 26px; height: 1px; background: var(--gold); }
.ev h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: .6rem; }
.ev p { color: var(--muted); }
.tags { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1rem 0 0; padding: 0; list-style: none; }
.tags li { font-size: .82rem; font-weight: 600; color: var(--teal-deep); border: 1px solid rgba(31, 81, 100, .3); border-radius: 999px; padding: .3rem .8rem; }
.tags--label { margin-top: 1.2rem; }
.tags__label { font-family: var(--f-eye); letter-spacing: .12em; font-size: .78rem; color: var(--muted); margin: 0 0 .5rem; }
@media (max-width: 960px) {
  .ev-layout { grid-template-columns: 1fr; }
  .spy-rail { display: none; }
}
@media (max-width: 720px) {
  .ev { grid-template-columns: 1fr; }
  .ev:nth-of-type(even) .ev__media { order: 0; }
}

/* A year of connection: a horizontal season rail */
.year { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; position: relative; padding-top: 1.6rem; }
.year::before { content: ""; position: absolute; left: 3%; right: 3%; top: 0; height: 2px; background: linear-gradient(90deg, var(--sage), var(--blue), var(--sand), var(--terra), var(--teal)); border-radius: 2px; }
.year__item { position: relative; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-sm); padding: 1.1rem 1.1rem 1.2rem; box-shadow: var(--shadow); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.year__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.year__item::before { content: ""; position: absolute; top: -1.6rem; left: 1.1rem; width: 12px; height: 12px; border-radius: 50%; background: var(--paper); border: 3px solid var(--terra); transform: translateY(-5px); }
.year__when { font-family: var(--f-eye); letter-spacing: .12em; font-size: .78rem; color: var(--terra-text); margin-bottom: .3rem; }
.year__item h3 { font-size: 1.12rem; margin-bottom: .3rem; }
.year__item p { font-size: .9rem; color: var(--muted); margin: 0; line-height: 1.5; }
@media (max-width: 960px) { .year { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .year { grid-template-columns: 1fr 1fr; } }
@media (max-width: 440px) { .year { grid-template-columns: 1fr; } }

/* ==========================================================================
   How it works: run-of-show sheet + never-think-about grid + FAQ
   ========================================================================== */

.ros { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r); box-shadow: var(--shadow); overflow: hidden; }
.ros__head { display: grid; grid-template-columns: 170px 1fr 1fr; background: var(--teal-deep); color: rgba(255, 255, 255, .85); font-family: var(--f-eye); letter-spacing: .12em; font-size: .8rem; }
.ros__head span { padding: .9rem 1.2rem; }
.ros__row { display: grid; grid-template-columns: 170px 1fr 1fr; border-top: 1px solid var(--line-soft); }
.ros__row > div { padding: 1.2rem; }
.ros__when { font-family: var(--f-disp); color: var(--teal-ink); font-size: 1.1rem; background: var(--paper); border-right: 1px solid var(--line-soft); }
.ros__when small { display: block; font-family: var(--f-body); font-size: .82rem; color: var(--muted); margin-top: .2rem; }
.ros__you { font-weight: 600; color: var(--teal-ink); }
.ros__us { color: var(--muted); border-left: 1px solid var(--line-soft); font-size: .96rem; }
.ros__us ul { margin: 0; padding-left: 1.1rem; }
.ros__us li + li { margin-top: .25rem; }
@media (max-width: 760px) {
  .ros__head { display: none; }
  .ros__row { grid-template-columns: 1fr; }
  .ros__when { border-right: 0; }
  .ros__you::before { content: "You: "; font-family: var(--f-eye); letter-spacing: .12em; font-size: .78rem; color: var(--muted); font-weight: 400; }
  .ros__us { border-left: 0; padding-top: 0; }
  .ros__us::before { content: "Anchorwell:"; display: block; font-family: var(--f-eye); letter-spacing: .12em; font-size: .78rem; color: var(--terra-text); margin-bottom: .3rem; }
}

.never { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.never__item { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-sm); padding: 1.3rem 1.3rem 1.4rem; box-shadow: var(--shadow); position: relative; overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.never__item::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: linear-gradient(90deg, var(--sage), var(--blue), var(--sand), var(--terra)); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.never__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.never__item:hover::after { transform: scaleX(1); }
.never__item svg { width: 30px; height: 30px; stroke: var(--teal); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; margin-bottom: .8rem; }
.never__item h3 { font-size: 1.12rem; margin-bottom: .3rem; }
.never__item p { font-size: .92rem; color: var(--muted); margin: 0; line-height: 1.55; }
@media (max-width: 960px) { .never { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .never { grid-template-columns: 1fr; } }

.faq { display: grid; gap: .6rem; }
.faq details { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-sm); box-shadow: var(--shadow); }
.faq summary { list-style: none; cursor: pointer; padding: 1.1rem 1.3rem; font-family: var(--f-disp); font-size: 1.15rem; color: var(--teal-ink); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; width: 12px; height: 12px; border-right: 1.6px solid var(--terra-deep); border-bottom: 1.6px solid var(--terra-deep); transform: rotate(45deg); transition: transform .3s var(--ease); flex: none; margin-right: .3rem; }
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details > p { padding: 0 1.3rem 1.2rem; margin: 0; color: var(--muted); }

/* ==========================================================================
   About: values + founder
   ========================================================================== */

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.value { position: relative; padding: 1.8rem 1.5rem 1.6rem; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r); box-shadow: var(--shadow); }
.value__n { position: absolute; top: -14px; left: 1.4rem; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--paper); border: 1.5px solid var(--terra); color: var(--terra-text); font-family: var(--f-eye); font-size: .8rem; letter-spacing: .05em; }
.value h3 { font-size: 1.28rem; margin: .3rem 0 .5rem; }
.value p { color: var(--muted); margin: 0; font-size: .98rem; }
@media (max-width: 860px) { .values { grid-template-columns: 1fr; } }

.plan__tag { display: block; font-family: var(--f-eye); font-size: .76rem; letter-spacing: .09em; text-transform: uppercase; color: var(--terra-text); margin-top: .5rem; }
.plan__cta { display: inline-flex; margin-top: 1.1rem; font-size: .92rem; }

.founder { display: grid; grid-template-columns: 340px minmax(0, 1fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.founder__card { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r); box-shadow: var(--shadow-lift); padding: 1.6rem; text-align: center; position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.founder__mark { width: 190px; height: 190px; margin: 0 auto 1rem; border-radius: 50%; display: grid; place-items: center; background: var(--paper); overflow: hidden; }
.founder__mark img { width: 100px; height: 100px; }
.founder__mark--photo img { width: 100%; height: 100%; object-fit: cover; }
.founder__card h3 { margin-bottom: .1rem; }
.founder__card .role { font-family: var(--f-eye); letter-spacing: .12em; font-size: .8rem; color: var(--terra-text); margin-bottom: .9rem; }
.founder__card p { font-size: .9rem; color: var(--muted); margin: 0; }
.founder__card .founder__links { display: grid; gap: .4rem; margin-top: 1rem; }
.founder__card .founder__links a { font-size: .92rem; }
@media (max-width: 800px) { .founder { grid-template-columns: 1fr; } .founder__card { position: static; } }

.area { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 2rem; align-items: center; }
.area__list { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.area__list li { display: flex; gap: .7rem; align-items: center; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-sm); padding: .8rem 1rem; box-shadow: var(--shadow); }
.area__list svg { width: 22px; height: 22px; stroke: var(--teal); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex: none; }
@media (max-width: 800px) { .area { grid-template-columns: 1fr; } }

/* ==========================================================================
   Forms: the multi-step inquiry (shared .stepper) + fields + chips
   ========================================================================== */

.form-card { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r); box-shadow: var(--shadow-lift); padding: clamp(1.4rem, 3vw, 2.2rem); }
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label, .field > span { font-size: .86rem; font-weight: 600; color: var(--teal-ink); }
.field .req { color: var(--terra-deep); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  padding: .8rem .95rem; border: 1.5px solid var(--line); border-radius: 12px; background: var(--paper);
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px rgba(31, 81, 100, .12); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form__note { font-size: .84rem; color: var(--muted); margin: 0; }

.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip { position: relative; display: inline-flex; align-items: center; gap: .45rem; padding: .5rem .95rem; border-radius: 999px; border: 1.5px solid rgba(31, 81, 100, .3); background: var(--paper); font-size: .9rem; font-weight: 600; color: var(--teal-ink); cursor: pointer; transition: border-color .2s, background-color .2s, box-shadow .2s; user-select: none; }
.chip input { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.chip::before { content: ""; width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid var(--sage-deep); transition: background-color .2s, border-color .2s; }
.chip:hover { border-color: var(--teal); background: #fff; }
.chip:has(input:checked) { border-color: var(--terra-deep); background: #fff; box-shadow: 0 8px 20px -12px rgba(180, 103, 74, .6); }
.chip:has(input:checked)::before { background: var(--terra-deep); border-color: var(--terra-deep); }
.chip:has(input:focus-visible) { outline: 3px solid var(--terra); outline-offset: 3px; }

.stepper__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.4rem; }
.stepper__title { font-family: var(--f-disp); font-size: 1.35rem; color: var(--teal-ink); }
.stepper__title small { display: block; font-family: var(--f-eye); letter-spacing: .12em; font-size: .78rem; color: var(--terra-text); margin-bottom: .1rem; }
.stepper__dots { display: inline-flex; gap: .4rem; }
.stepper__dots i { width: 28px; height: 4px; border-radius: 2px; background: var(--line); transition: background-color .3s; }
.stepper__dots i.is-done { background: var(--sage); }
.stepper__dots i.is-on { background: var(--terra-deep); }
.has-js .stepper [data-step]:not(.is-on) { display: none; }
.has-js:not(.reduce) .stepper [data-step].is-on { animation: step-in .45s var(--ease); }
@keyframes step-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.stepper fieldset { border: 0; padding: 0; margin: 0; display: grid; gap: 1.1rem; }
.stepper legend { font-family: var(--f-disp); font-size: 1.25rem; color: var(--teal-ink); padding: 0; margin-bottom: .4rem; }
.has-js .stepper legend { display: none; }
.stepper__nav { display: flex; justify-content: space-between; gap: .8rem; margin-top: .5rem; padding-top: 1.1rem; border-top: 1px solid var(--line-soft); }
.stepper__back { visibility: hidden; }
.stepper__back.is-shown { visibility: visible; }
.has-js .stepper__submit:not(.is-shown) { display: none; }
.has-js .stepper__next.is-hidden { display: none; }
.stepper__done { display: none; text-align: center; padding: 2rem 1rem; }
.stepper.is-done fieldset, .stepper.is-done .stepper__nav, .stepper.is-done .stepper__bar { display: none; }
.stepper.is-done .stepper__done { display: block; }

/* Contact page */
.contact { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.25fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact__side { position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.contact__side .sh { margin-bottom: 1.4rem; }
.clist { list-style: none; padding: 0; margin: 0 0 1.4rem; display: grid; gap: .8rem; }
.clist li { display: flex; gap: .9rem; align-items: flex-start; }
.clist svg { width: 22px; height: 22px; flex: none; stroke: var(--terra-deep); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; margin-top: .2rem; }
.clist b { display: block; font-family: var(--f-eye); letter-spacing: .1em; font-weight: 400; font-size: .78rem; color: var(--muted); }
.clist a { color: var(--teal-ink); text-decoration: none; font-weight: 600; }
.clist a:hover { color: var(--terra-deep); }
.contact__photo img { width: 100%; border-radius: var(--r); aspect-ratio: 16 / 10; object-fit: cover; box-shadow: var(--shadow); }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } .contact__side { position: static; } }

/* ==========================================================================
   Footer (deep teal)
   ========================================================================== */

.ft { background: var(--teal-ink); color: rgba(255, 255, 255, .78); padding-top: clamp(3rem, 6vw, 4.5rem); position: relative; overflow: hidden; }
.ft__in { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.2rem; padding-bottom: 2.5rem; position: relative; z-index: 1; }
.ft__brand { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.ft__brand img.ft__mark { width: 52px; height: 52px; }
.ft__brand .nav__wm .nav__word { filter: brightness(0) invert(1); height: 20px; }
.ft__brand .nav__wm .nav__sub { color: #fff; }
.ft__tag { font-family: var(--f-eye); letter-spacing: .14em; font-size: .8rem; color: var(--sand); margin-bottom: .8rem; }
.ft p { font-size: .95rem; margin: 0 0 1rem; max-width: 26rem; }
.ft h3 { color: #fff; font-family: var(--f-eye); letter-spacing: .12em; font-size: .82rem; margin-bottom: .9rem; }
.ft ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; }
.ft a { color: rgba(255, 255, 255, .8); text-decoration: none; font-size: .95rem; transition: color .2s; }
.ft a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.ft__bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem; padding: 1.4rem 1.5rem 1.8rem; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .85rem; position: relative; z-index: 1; flex-wrap: wrap; }
.ft__by { display: flex; flex-direction: column; align-items: flex-start; gap: .4rem; line-height: 1.2; }
.ft__by-t { font-size: .82rem; color: rgba(255, 255, 255, .72); }
.ft__by img { height: 44px; width: auto; display: block; }
.ft .wm { opacity: .05; right: -12%; }
@media (max-width: 900px) { .ft__in { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .ft__in { grid-template-columns: 1fr; } }
