/* =========================================================
   Transforming Healthcare — system tokens
   ========================================================= */
:root {
  /* palette */
  --teal:        #0e3b34;
  --teal-deep:   #062521;
  --teal-bright: #1c6e60;
  --teal-glow:   #2da08c;
  --teal-soft:   #1a544b;
  --teal-tint:   #e5ece9;
  --teal-line:   #c9d6d1;

  --bone:        #f6f3ed;
  --bone-warm:   #efeadc;
  --paper:       #fbf9f4;
  --bone-2:      #ece8de;

  --ink:         #0b0a09;
  --ink-2:       #2a2723;
  --muted:       #5b554d;
  --muted-2:     #7a7468;

  --line:        #d7cfbf;
  --line-2:      #ebe5d6;

  --gold:        #c69b54;
  --gold-deep:   #8b6a2f;

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Manrope", ui-sans-serif, system-ui, sans-serif;

  --space-1: 12px;
  --space-2: 20px;
  --space-3: 32px;
  --space-4: 48px;
  --space-5: 72px;
  --space-6: 104px;
  --space-7: 160px;

  --wrap-max: 1280px;
  --wrap-pad: 56px;
  --radius-card: 4px;
  --radius-pill: 999px;
}
@media (max-width: 760px) {
  :root { --wrap-pad: 22px; --space-6: 80px; --space-7: 108px; }
}

/* =========================================================
   Reset
   ========================================================= */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--teal); color: var(--bone); }

.wrap {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 0 var(--wrap-pad);
  position: relative;
}

/* =========================================================
   Motion — reveal on scroll + hero entry + breathing blooms
   ========================================================= */
@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes breathe {
  0%, 100% { transform: translate(0,0) scale(1); opacity: 0.85; }
  50%      { transform: translate(20px,-14px) scale(1.08); opacity: 1; }
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50%      { transform: translateY(-14px) rotate(var(--rot, 0deg)); }
}
@keyframes draw {
  to { stroke-dashoffset: 0; }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* IntersectionObserver-driven reveals.
   Default: hidden, then .in adds the rise animation. */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.d1.in { transition-delay: 0.10s; }
.reveal.d2.in { transition-delay: 0.20s; }
.reveal.d3.in { transition-delay: 0.30s; }
.reveal.d4.in { transition-delay: 0.40s; }
.reveal.d5.in { transition-delay: 0.50s; }
.reveal.d6.in { transition-delay: 0.60s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in { opacity: 1; transform: none; transition: none; }
  .bloom, .leaf, .grain-rotate { animation: none !important; }
}

/* Animated blooms */
.bloom {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(60px);
  animation: breathe 11s ease-in-out infinite;
  z-index: 0;
}
.bloom.teal     { background: radial-gradient(closest-side, color-mix(in oklab, var(--teal-bright) 70%, transparent), transparent 70%); }
.bloom.glow     { background: radial-gradient(closest-side, color-mix(in oklab, var(--teal-glow) 70%, transparent), transparent 70%); }
.bloom.gold     { background: radial-gradient(closest-side, color-mix(in oklab, var(--gold) 60%, transparent), transparent 70%); }
.bloom.bone     { background: radial-gradient(closest-side, color-mix(in oklab, var(--bone-warm) 90%, transparent), transparent 70%); }

/* Grain overlay — adds texture to dark surfaces */
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.022) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0 1px, transparent 1px 5px);
  z-index: 1;
  opacity: 0.55;
}
.grain.light {
  background:
    repeating-linear-gradient(135deg, rgba(0,0,0,0.015) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(45deg, rgba(0,0,0,0.02) 0 1px, transparent 1px 6px);
}

/* =========================================================
   Type — bolder
   ========================================================= */
.eyebrow {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1.5px;
  background: var(--teal);
  display: inline-block;
}
.eyebrow.light { color: rgba(246,243,237,0.78); }
.eyebrow.light::before { background: rgba(246,243,237,0.55); }

.display {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(56px, 7.8vw, 124px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.display .em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-glow) 60%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
h2.section-title .em {
  font-style: italic;
  font-weight: 500;
  color: var(--teal);
}
h2.section-title.on-dark { color: var(--bone); }
h2.section-title.on-dark .em {
  background: linear-gradient(135deg, var(--teal-glow), color-mix(in oklab, var(--bone) 80%, var(--teal-bright)) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 60ch;
  margin: 0;
}
.lede.on-dark { color: rgba(246,243,237,0.82); }

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

/* =========================================================
   Buttons — bolder
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.16s ease, box-shadow 0.22s ease;
  position: relative;
  overflow: hidden;
}
.btn.primary {
  background: linear-gradient(135deg, var(--teal-bright), var(--teal) 60%, var(--teal-deep));
  color: var(--bone);
  border-color: var(--teal);
  box-shadow: 0 1px 0 rgba(0,0,0,.05), 0 16px 36px -18px rgba(14,59,52,.55);
}
.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(0,0,0,.05), 0 24px 48px -20px rgba(14,59,52,.6);
}
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn.ghost:hover { background: var(--ink); color: var(--bone); }
.btn.ghost.on-dark { color: var(--bone); border-color: rgba(246,243,237,0.55); }
.btn.ghost.on-dark:hover { background: var(--bone); color: var(--teal); border-color: var(--bone); }
.btn .arr {
  font-size: 13px;
  transition: transform 0.2s ease;
}
.btn:hover .arr { transform: translate(3px, -3px); }

/* =========================================================
   Nav
   ========================================================= */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bone) 85%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease, padding 0.2s ease;
}
header.site.scrolled {
  border-bottom-color: var(--line);
  background: color-mix(in oklab, var(--bone) 96%, transparent);
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand .mark {
  width: 65px; height: 56px;
  background: transparent;
  color: var(--bone);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  font-style: italic;
  letter-spacing: -0.02em;
  box-shadow: none;
}
.brand .mark svg { width: 100%; height: 100%; display: block; }
.brand .name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1;
}
.brand .name .light {
  font-style: italic;
  color: var(--teal);
  font-weight: 500;
}
nav.primary { display: flex; align-items: center; gap: 4px; }
nav.primary a.nav {
  padding: 10px 14px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink-2);
  transition: color 0.15s ease;
  position: relative;
}
nav.primary a.nav::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  bottom: 4px;
  height: 1.5px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
nav.primary a.nav:hover { color: var(--teal); }
nav.primary a.nav:hover::after { transform: scaleX(1); }
nav.primary a.cta {
  margin-left: 12px;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--ink), #1d1a16);
  color: var(--bone);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  transition: background 0.2s ease, transform 0.16s ease;
  box-shadow: 0 12px 28px -16px rgba(0,0,0,.5);
}
nav.primary a.cta:hover {
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-deep));
  transform: translateY(-2px);
}
@media (max-width: 960px) {
  nav.primary a.nav { display: none; }
  nav.primary a.cta { padding: 10px 18px; font-size: 12px; }
}

/* =========================================================
   Hero — bolder, dramatic, with image
   ========================================================= */
.hero {
  position: relative;
  padding: var(--space-6) 0 var(--space-7);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(900px 700px at 92% -10%, color-mix(in oklab, var(--teal-glow) 22%, transparent), transparent 60%),
    radial-gradient(700px 500px at -8% 100%, color-mix(in oklab, var(--gold) 16%, transparent), transparent 65%),
    linear-gradient(180deg, var(--bone), var(--bone-warm));
}
.hero .bloom-1 { top: -80px;  right: -60px;  width: 460px; height: 460px; }
.hero .bloom-2 { bottom: -120px; left: -100px; width: 520px; height: 520px; animation-delay: -4s; }

.hero .grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: var(--space-5);
  align-items: end;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .hero .grid { grid-template-columns: 1fr; gap: var(--space-4); align-items: start; }
}

.hero .eyebrow { margin-bottom: var(--space-3); }
.hero .display { margin-bottom: var(--space-4); }
.hero .lede {
  font-size: 21px;
  max-width: 58ch;
  color: var(--ink-2);
  font-weight: 400;
}
@media (max-width: 760px) { .hero .lede { font-size: 18px; } }

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: var(--space-4);
  flex-wrap: wrap;
}

/* Right column — image stack with badges */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 420px;
}
.hero-visual .slot {
  position: absolute;
  inset: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 40px 80px -30px rgba(14,59,52,.45);
}
.hero-visual .slot::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14,59,52,0.3) 100%);
  pointer-events: none;
}
.hero-visual .badge {
  position: absolute;
  z-index: 3;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 14px 18px;
  box-shadow: 0 24px 50px -24px rgba(0,0,0,0.25);
  font-family: var(--sans);
  animation: float-slow 8s ease-in-out infinite;
}
.hero-visual .badge .k {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 6px;
}
.hero-visual .badge .v {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1;
}
.hero-visual .badge .v .em {
  font-style: italic;
  color: var(--teal);
  font-weight: 500;
}
.hero-visual .badge.b1 { top: 6%;  left: -36px; --rot: -3deg; }
.hero-visual .badge.b2 { bottom: 14%; right: -28px; --rot: 2deg; animation-delay: -3s; }
.hero-visual .badge.b3 { bottom: -14px; left: 10%; --rot: -1deg; animation-delay: -1.5s; }
@media (max-width: 760px) {
  .hero-visual .badge.b1 { left: -8px; }
  .hero-visual .badge.b2 { right: -8px; }
}
@media (max-width: 1024px) {
  .hero-visual { max-width: 520px; margin: 0 auto; aspect-ratio: 16/13; min-height: 360px; }
}

/* =========================================================
   Image slot styling
   ========================================================= */
image-slot {
  --slot-bg: linear-gradient(135deg, var(--teal-bright), var(--teal-deep) 60%, var(--ink));
  --slot-fg: rgba(246,243,237,0.8);
  --slot-border: rgba(246,243,237,0.15);
}
/* The hero image slot — fill */
.hero-visual image-slot,
.founder image-slot,
.who image-slot,
.contact image-slot {
  width: 100%;
  height: 100%;
}

/* =========================================================
   Trust strip — bolder dark band
   ========================================================= */
.trust {
  background:
    radial-gradient(700px 400px at 10% 0%, color-mix(in oklab, var(--teal-bright) 35%, transparent), transparent 65%),
    radial-gradient(600px 400px at 100% 100%, color-mix(in oklab, var(--gold) 18%, transparent), transparent 70%),
    linear-gradient(135deg, #100f0d 0%, var(--ink) 60%, #1a1814 100%);
  color: var(--bone);
  padding: var(--space-5) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.trust .bloom-1 { top: -100px; right: -80px; width: 380px; height: 380px; }
.trust .wrap { position: relative; z-index: 2; }
.trust .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}
@media (max-width: 800px) { .trust .grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); } }

.trust .stat .k {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246,243,237,0.55);
  margin-bottom: 16px;
}
.trust .stat .v {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(44px, 5.2vw, 72px);
  color: var(--bone);
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.trust .stat .v .em {
  font-style: italic;
  background: linear-gradient(135deg, var(--teal-glow), color-mix(in oklab, var(--bone) 70%, var(--teal-bright)) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
}
.trust .stat .sub {
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 13.5px;
  color: rgba(246,243,237,0.7);
  line-height: 1.55;
  max-width: 26ch;
}

/* =========================================================
   Section scaffolding
   ========================================================= */
section.s { padding: var(--space-7) 0; position: relative; }
section.s.tight { padding: var(--space-6) 0; }

.s-head {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: var(--space-4);
  align-items: end;
  margin-bottom: var(--space-5);
}
@media (max-width: 960px) {
  .s-head { grid-template-columns: 1fr; gap: var(--space-3); margin-bottom: var(--space-4); }
}
.s-head .left .eyebrow { margin-bottom: 26px; }

/* =========================================================
   Who We Are — copy + image
   ========================================================= */
.who { background: var(--bone); }
.who .grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: var(--space-5);
  align-items: stretch;
}
@media (max-width: 960px) { .who .grid { grid-template-columns: 1fr; gap: var(--space-4); } }

.who .copy p {
  font-size: 17.5px;
  color: var(--ink-2);
  max-width: 58ch;
  line-height: 1.7;
}
.who .copy p .em,
.who .copy p em {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.who .copy p + p { margin-top: 1em; }

.who .visual {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 460px;
  overflow: visible;
}
.who .visual .slot {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 40px 80px -30px rgba(14,59,52,.4);
}
.who .visual .chain-card {
  position: absolute;
  right: -32px;
  bottom: -28px;
  width: 78%;
  background:
    radial-gradient(280px 200px at 100% 0%, color-mix(in oklab, var(--teal-glow) 28%, transparent), transparent 65%),
    linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: var(--bone);
  border-radius: 4px;
  padding: var(--space-3);
  z-index: 2;
  box-shadow: 0 30px 60px -28px rgba(0,0,0,.45);
  animation: float-slow 9s ease-in-out infinite;
  --rot: -1.5deg;
}
@media (max-width: 760px) {
  .who .visual .chain-card { right: 0; bottom: -16px; width: 92%; --rot: 0deg; }
}
.who .visual .chain-card .eyebrow {
  color: rgba(246,243,237,0.78); margin-bottom: 18px;
}
.who .visual .chain-card .eyebrow::before { background: rgba(246,243,237,0.5); }
.who .visual .chain-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0 0 var(--space-3);
  color: var(--bone);
}
.who .visual .chain-card h3 .em {
  font-style: italic; font-weight: 500;
  color: color-mix(in oklab, var(--bone) 60%, var(--teal-glow));
}
.who .visual .chain-card ul {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 18px;
}
.who .visual .chain-card ul li {
  padding: 8px 0;
  border-top: 1px solid rgba(246,243,237,0.18);
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(246,243,237,0.92);
}

/* =========================================================
   Challenge — tint band
   ========================================================= */
.challenge {
  background:
    radial-gradient(800px 400px at 80% 0%, color-mix(in oklab, var(--teal-glow) 14%, transparent), transparent 65%),
    linear-gradient(180deg, var(--teal-tint), color-mix(in oklab, var(--teal-tint) 70%, var(--bone)));
  border-top: 1px solid var(--teal-line);
  border-bottom: 1px solid var(--teal-line);
  position: relative;
  overflow: hidden;
}
.challenge .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
@media (max-width: 960px) { .challenge .grid { grid-template-columns: 1fr; gap: var(--space-3); } }
.challenge .item {
  border-top: 2px solid var(--teal);
  padding-top: var(--space-3);
}
.challenge .item .num {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.challenge .item h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 14px;
}
.challenge .item p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
}

/* =========================================================
   Pillars — horizontal scroll on vertical scroll
   ========================================================= */
.pillars-scroller {
  position: relative;
  /* JS sets the height to allow a full horizontal sweep */
  height: 540vh;
  background: var(--bone);
}
.pillars-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(900px 600px at 100% 0%, color-mix(in oklab, var(--teal-tint) 80%, transparent), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, color-mix(in oklab, var(--bone-warm) 90%, transparent), transparent 65%),
    var(--bone);
}
.pillars-sticky .progress-bar {
  position: absolute;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-glow), var(--teal));
  width: 0%;
  z-index: 5;
  transition: width 0.15s ease;
}
.pillars-sticky .progress-meta {
  position: absolute;
  top: 28px;
  right: var(--wrap-pad);
  z-index: 5;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.pillars-sticky .progress-meta .count {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  color: var(--teal);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pillars-track {
  display: flex;
  gap: 28px;
  padding: 0 var(--wrap-pad);
  will-change: transform;
  align-items: stretch;
}

/* Intro panel — first item in the horizontal track */
.pillar-intro {
  flex: 0 0 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: var(--space-3);
  border-right: 1px dashed var(--line);
}
.pillar-intro .eyebrow { margin-bottom: 26px; }
.pillar-intro h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 var(--space-3);
  text-wrap: balance;
}
.pillar-intro h2 .em {
  font-style: italic;
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-glow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
}
.pillar-intro p {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 var(--space-3);
  max-width: 42ch;
}
.pillar-intro .scroll-hint {
  margin-top: var(--space-2);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
}
.pillar-intro .scroll-hint svg {
  width: 36px; height: 14px;
  animation: hint-slide 1.8s ease-in-out infinite;
}
@keyframes hint-slide {
  0%, 100% { transform: translateX(0); opacity: 0.6; }
  50%      { transform: translateX(6px); opacity: 1; }
}

/* Cards inside the horizontal track */
.pillars-track .pillar {
  flex: 0 0 420px;
  min-height: 560px;
  padding: var(--space-4) var(--space-3) var(--space-3);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.pillars-track .pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, color-mix(in oklab, var(--teal-tint) 70%, transparent), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.pillars-track .pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -28px rgba(14,59,52,.32);
  border-color: var(--teal-line);
}
.pillars-track .pillar:hover::before { opacity: 1; }
.pillars-track .pillar > * { position: relative; z-index: 1; }

.pillars-track .pillar .ico {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-deep));
  color: var(--bone);
  border-radius: 8px;
  display: grid; place-items: center;
  box-shadow: 0 12px 28px -14px rgba(14,59,52,.6);
}
.pillars-track .pillar .ico svg { width: 24px; height: 24px; }
.pillars-track .pillar .num {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
}
.pillars-track .pillar h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0;
}
.pillars-track .pillar p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
  flex-grow: 1;
}
.pillars-track .pillar .tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* Mobile fallback — disable horizontal scroll, stack vertically */
@media (max-width: 900px) {
  .pillars-scroller { height: auto; }
  .pillars-sticky {
    position: static;
    height: auto;
    padding: var(--space-6) 0;
    display: block;
  }
  .pillars-sticky .progress-bar,
  .pillars-sticky .progress-meta { display: none; }
  .pillars-track {
    flex-direction: column;
    transform: none !important;
    padding: 0 var(--wrap-pad);
    gap: 16px;
  }
  .pillar-intro {
    flex: 1 1 auto;
    padding-right: 0;
    padding-bottom: var(--space-3);
    border-right: 0;
    border-bottom: 1px dashed var(--line);
    margin-bottom: var(--space-3);
  }
  .pillars-track .pillar {
    flex: 1 1 auto;
    min-height: auto;
  }
}

/* =========================================================
   Process — bolder dark band w/ gradient
   ========================================================= */
.process {
  background:
    radial-gradient(900px 500px at 100% 0%, color-mix(in oklab, var(--teal-glow) 30%, transparent), transparent 60%),
    radial-gradient(700px 600px at 0% 100%, color-mix(in oklab, var(--teal-bright) 22%, transparent), transparent 65%),
    linear-gradient(135deg, var(--ink) 0%, #16140f 60%, #1e1a15 100%);
  color: var(--bone);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.process .bloom-1 { top: 10%; right: -100px; width: 460px; height: 460px; }
.process .bloom-2 { bottom: -120px; left: 10%; width: 520px; height: 520px; animation-delay: -5s; }
.process .wrap { position: relative; z-index: 2; }

.process .phases {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(246,243,237,0.2);
  margin-top: var(--space-5);
  position: relative;
}
.process .phases::before {
  content: "";
  position: absolute;
  top: -1.5px;
  left: 0;
  height: 2px;
  width: 20%;
  background: linear-gradient(90deg, var(--teal-glow), color-mix(in oklab, var(--bone) 80%, var(--teal-glow)));
}
@media (max-width: 960px) {
  .process .phases { grid-template-columns: 1fr 1fr; }
  .process .phases::before { width: 50%; }
}
@media (max-width: 600px) {
  .process .phases { grid-template-columns: 1fr; }
  .process .phases::before { width: 100%; }
}

.phase {
  padding: var(--space-3) var(--space-2) var(--space-3) 0;
  border-right: 1px solid rgba(246,243,237,0.18);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 320px;
  transition: background 0.3s ease;
}
.phase:last-child { border-right: 0; }
.phase:hover { background: rgba(255,255,255,0.025); }
@media (max-width: 960px) {
  .phase:nth-child(2n) { border-right: 0; }
  .phase { padding-right: 0; padding-left: 0; }
  .phase + .phase { border-top: 1px solid rgba(246,243,237,0.18); padding-top: var(--space-3); }
}
.phase .ix {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 72px;
  background: linear-gradient(135deg, var(--teal-glow), color-mix(in oklab, var(--bone) 80%, var(--teal-bright)) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  letter-spacing: -0.02em;
  padding-bottom: 0.06em;
}
.phase h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0;
}
.phase p {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(246,243,237,0.75);
  margin: 0;
}

/* =========================================================
   Founder — bolder w/ image-slot portrait
   ========================================================= */
.founder {
  background:
    radial-gradient(800px 500px at 0% 0%, color-mix(in oklab, var(--teal-tint) 55%, transparent), transparent 60%),
    var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.founder .bloom-1 {
  bottom: -160px; right: -160px;
  width: 540px; height: 540px;
  animation-delay: -2s;
}
.founder .wrap { position: relative; z-index: 2; }
.founder .grid {
  display: grid;
  grid-template-columns: 0.85fr 1.2fr;
  gap: var(--space-5);
  align-items: start;
}
@media (max-width: 960px) { .founder .grid { grid-template-columns: 1fr; gap: var(--space-4); } }

.founder .portrait-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 480px;
}
.founder .portrait-wrap .slot {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 50px 90px -30px rgba(14,59,52,.5);
}
.founder .portrait-wrap .caption {
  position: absolute;
  left: -22px;
  bottom: 36px;
  background: var(--bone);
  border: 1px solid var(--line);
  padding: 14px 18px;
  z-index: 3;
  box-shadow: 0 22px 50px -22px rgba(0,0,0,0.3);
  border-radius: 4px;
  font-family: var(--sans);
  animation: float-slow 9s ease-in-out infinite;
  --rot: -1.5deg;
}
.founder .portrait-wrap .caption .k {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 4px;
}
.founder .portrait-wrap .caption .v {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.founder .portrait-wrap .caption .v .em {
  font-style: italic; color: var(--teal); font-weight: 500;
}

.founder .copy .eyebrow { margin-bottom: 22px; }
.founder .copy h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 var(--space-3);
}
.founder .copy h2 .em {
  font-style: italic;
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-glow) 60%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
}
.founder .copy .credential {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 var(--space-3);
  padding: 14px 18px;
  background: var(--bone-warm);
  border-left: 3px solid var(--teal);
  border-radius: 0 4px 4px 0;
}
.founder .copy p {
  font-size: 16.5px;
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 60ch;
}

.founder .roles {
  margin-top: var(--space-4);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 36px;
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
}
@media (max-width: 600px) { .founder .roles { grid-template-columns: 1fr; } }
.founder .roles .role .k {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.founder .roles .role .v {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.005em;
}
.founder .roles .role .v .org {
  font-style: italic;
  font-weight: 500;
  color: var(--teal);
}

/* =========================================================
   Clients (logo wall + tiers)
   ========================================================= */
.clients {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 380px at 88% 8%, color-mix(in oklab, var(--gold) 14%, transparent), transparent 65%),
    radial-gradient(600px 360px at 6% 100%, color-mix(in oklab, var(--teal-glow) 12%, transparent), transparent 70%),
    linear-gradient(180deg, var(--bone-warm), color-mix(in oklab, var(--bone-warm) 80%, var(--paper)));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.clients .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
@media (max-width: 960px) { .clients .grid { grid-template-columns: 1fr; } }
.clients .item {
  padding: var(--space-3);
  background:
    linear-gradient(180deg, var(--paper), color-mix(in oklab, var(--paper) 88%, var(--gold)));
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.clients .item:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -28px rgba(14,59,52,.32);
  border-color: var(--teal-line);
}
.clients .item h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 14px;
  letter-spacing: -0.012em;
}
.clients .item p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
}

/* =========================================================
   Who we serve — Sectors card (right of s-head)
   ========================================================= */
.clients .sectors-card {
  background:
    radial-gradient(280px 220px at 100% 0%, color-mix(in oklab, var(--teal-glow) 28%, transparent), transparent 65%),
    linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: var(--bone);
  border-radius: 4px;
  padding: var(--space-3);
  box-shadow: 0 30px 60px -28px rgba(0,0,0,.4);
  position: relative;
  overflow: hidden;
}
.clients .sectors-card .eyebrow {
  margin-bottom: var(--space-2);
}
.clients .sectors-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}
.clients .sectors-card li {
  padding: 12px 0;
  border-top: 1px solid rgba(246,243,237,0.18);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: rgba(246,243,237,0.92);
}
.clients .sectors-card li:nth-child(-n+2) { border-top: 0; }
@media (max-width: 600px) {
  .clients .sectors-card ul { grid-template-columns: 1fr; }
  .clients .sectors-card li:nth-child(2) { border-top: 1px solid rgba(246,243,237,0.18); }
}

/* =========================================================
   Roles row — list + hover-swap image
   ========================================================= */
.clients .roles-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: var(--space-5);
  align-items: stretch;
  margin-top: var(--space-5);
}
@media (max-width: 960px) {
  .clients .roles-row { grid-template-columns: 1fr; gap: var(--space-4); }
}

.roles-list-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* Editorial header */
.roles-head { display: flex; flex-direction: column; gap: 16px; }
.roles-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.roles-label {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--teal);
}
.roles-rule {
  display: inline-block;
  height: 1.5px;
  width: 0;
  background: var(--teal);
}
.roles-count {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.roles-count b {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--teal);
}
.roles-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.roles-title .em {
  font-style: italic;
  font-weight: 500;
  color: var(--teal);
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1.5px;
  padding-bottom: 4px;
}

/* Interactive list */
.roles-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.roles-list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 18px 22px 4px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--muted);
  cursor: pointer;
  overflow: hidden;
  transition: color 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              padding-left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.roles-list li::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 0%;
  background: var(--paper);
  z-index: 0;
  transition: height 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.roles-list li > * { position: relative; z-index: 1; }
.roles-list li:hover,
.roles-list li.active {
  color: var(--ink);
  padding-left: 22px;
}
.roles-list li:hover::before,
.roles-list li.active::before {
  height: 100%;
}
.roles-list li .arr {
  font-family: var(--sans);
  font-size: 18px;
  color: var(--teal);
  opacity: 0;
  transform: translate(-6px, 6px);
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.roles-list li:hover .arr,
.roles-list li.active .arr {
  opacity: 1;
  transform: translate(0, 0);
}
.roles-list li:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: -2px;
}

/* Photo panel */
.roles-image {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 480px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(14,59,52,.45);
  background: var(--ink);
}
@media (max-width: 960px) {
  .roles-image { min-height: 380px; max-width: 520px; margin: 0 auto; }
}
.roles-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11,10,9,0.7) 100%);
  pointer-events: none;
  z-index: 2;
}
.roles-image .r-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.roles-image .r-img.active {
  opacity: 1;
  transform: scale(1);
}
.roles-image .r-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.roles-image .r-caption {
  position: absolute;
  left: var(--space-3);
  bottom: var(--space-3);
  z-index: 3;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.012em;
  line-height: 1.15;
  color: var(--bone);
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
  max-width: 80%;
}

/* Logo strip (marquee) */
.logos {
  margin-top: var(--space-5);
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
}
.logos .label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: var(--space-2);
  text-align: center;
}
.logos .track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.logos .track {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  padding: 10px;
  animation: marquee 38s linear infinite;
}
.logos .track .item {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -0.015em;
  line-height: 1;
  padding: 12px 22px;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: 4px;
  min-height: 71px;
  box-sizing: border-box;
}
.logos .track .item.dot {
  font-size: 44px;
  line-height: 1;
  padding: 0 6px;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--muted-2);
  min-height: 71px;
}
.logos:hover .track { animation-play-state: paused; }

/* =========================================================
   Why partner — three takeaways
   ========================================================= */
.why .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
@media (max-width: 960px) { .why .grid { grid-template-columns: 1fr; gap: var(--space-3); } }
.why .item {
  padding-top: var(--space-3);
  border-top: 2px solid var(--teal);
  position: relative;
}
.why .item .icon-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: var(--space-2);
}
.why .item .num {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
}
.why .item .marker {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.why .item h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 16px;
}
.why .item h3 .em {
  font-style: italic;
  color: var(--teal);
  font-weight: 500;
}
.why .item p {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
}

/* =========================================================
   Contact — form layout (email/phone hidden)
   ========================================================= */
.contact {
  background:
    radial-gradient(900px 600px at 90% 100%, color-mix(in oklab, var(--teal-glow) 36%, transparent), transparent 60%),
    radial-gradient(700px 500px at 0% 0%, color-mix(in oklab, var(--gold) 18%, transparent), transparent 65%),
    linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 50%, var(--teal-soft) 100%);
  color: var(--bone);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.contact .bloom-1 { bottom: -120px; right: -100px; width: 480px; height: 480px; }
.contact .grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--space-5);
  align-items: start;
  position: relative;
  z-index: 2;
}
@media (max-width: 960px) { .contact .grid { grid-template-columns: 1fr; gap: var(--space-4); } }

.contact .copy .eyebrow { color: rgba(246,243,237,0.78); margin-bottom: 22px; }
.contact .copy .eyebrow::before { background: rgba(246,243,237,0.55); }
.contact .copy h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--bone);
  margin: 0 0 var(--space-3);
}
.contact .copy h2 .em {
  font-style: italic;
  background: linear-gradient(135deg, color-mix(in oklab, var(--bone) 90%, var(--teal-glow)), var(--teal-glow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
}
.contact .copy p {
  font-size: 17px;
  color: rgba(246,243,237,0.82);
  line-height: 1.7;
  max-width: 50ch;
  margin: 0 0 var(--space-3);
}
.contact .copy .mini-list {
  list-style: none;
  padding: 0;
  margin: var(--space-3) 0 0;
  display: grid;
  gap: 14px;
}
.contact .copy .mini-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: start;
  gap: 14px;
  font-size: 15px;
  color: rgba(246,243,237,0.85);
  line-height: 1.55;
}
.contact .copy .mini-list .mark {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: rgba(246,243,237,0.12);
  color: var(--bone);
  border: 1px solid rgba(246,243,237,0.25);
  display: grid; place-items: center;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.contact .copy .mini-list strong { color: var(--bone); font-weight: 600; }

/* The form */
.enquiry-form {
  background: rgba(246,243,237,0.06);
  border: 1px solid rgba(246,243,237,0.22);
  backdrop-filter: blur(10px);
  padding: var(--space-3);
  border-radius: 6px;
  display: grid;
  gap: 18px;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.5);
}
.enquiry-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) { .enquiry-form .row { grid-template-columns: 1fr; } }

.enquiry-form .field { display: flex; flex-direction: column; gap: 8px; }
.enquiry-form label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246,243,237,0.65);
}
.enquiry-form .req { color: var(--teal-glow); }

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  background: rgba(246,243,237,0.04);
  border: 1px solid rgba(246,243,237,0.22);
  border-radius: 4px;
  padding: 13px 14px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--bone);
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
  color: rgba(246,243,237,0.4);
}
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: 0;
  border-color: var(--teal-glow);
  background: rgba(246,243,237,0.08);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--teal-glow) 25%, transparent);
}
.enquiry-form textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.55;
}
.enquiry-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23f6f3ed' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  padding-right: 36px;
  cursor: pointer;
}
.enquiry-form select option {
  background: var(--teal-deep);
  color: var(--bone);
}

/* Interest chips — multi-select */
.enquiry-form .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.enquiry-form .chip-input {
  position: relative;
  display: inline-flex;
}
.enquiry-form .chip-input input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  margin: 0; padding: 0;
  width: 100%; height: 100%;
  border: 0;
}
.enquiry-form .chip-input span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(246,243,237,0.06);
  border: 1px solid rgba(246,243,237,0.22);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: rgba(246,243,237,0.85);
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  pointer-events: none;
  line-height: 1;
}
.enquiry-form .chip-input span::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 999px;
  background: rgba(246,243,237,0.3);
  transition: background 0.18s ease, box-shadow 0.18s ease;
}
.enquiry-form .chip-input input:checked + span {
  background: rgba(246,243,237,0.96);
  border-color: var(--bone);
  color: var(--teal-deep);
}
.enquiry-form .chip-input input:checked + span::before {
  background: var(--teal);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--teal) 30%, transparent);
}

.enquiry-form .submit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.enquiry-form .privacy {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(246,243,237,0.6);
  max-width: 32ch;
  line-height: 1.5;
}
.enquiry-form button.submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, #ffffff, #f6f3ed);
  color: var(--teal-deep);
  transition: transform 0.16s ease, box-shadow 0.22s ease;
  box-shadow: 0 18px 36px -18px rgba(0,0,0,0.45);
}
.enquiry-form button.submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 50px -20px rgba(0,0,0,0.55);
}
.enquiry-form button.submit .arr { transition: transform 0.2s ease; }
.enquiry-form button.submit:hover .arr { transform: translate(3px, -3px); }

/* Success state */
.enquiry-form.sent .form-fields { display: none; }
.enquiry-form .sent-state {
  display: none;
  padding: var(--space-2) 0;
  text-align: center;
}
.enquiry-form.sent .sent-state { display: block; animation: rise 0.6s cubic-bezier(.2,.7,.2,1) both; }
.enquiry-form .sent-state .check {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: rgba(246,243,237,0.96);
  color: var(--teal);
  display: grid; place-items: center;
}
.enquiry-form .sent-state h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 32px;
  color: var(--bone);
  margin: 0 0 10px;
  letter-spacing: -0.018em;
}
.enquiry-form .sent-state p {
  font-size: 15px;
  color: rgba(246,243,237,0.82);
  line-height: 1.6;
  max-width: 38ch;
  margin: 0 auto;
}

/* =========================================================
   Footer
   ========================================================= */
footer.site {
  background: #0a0908;
  color: rgba(246,243,237,0.6);
  padding: var(--space-4) 0 var(--space-3);
  font-family: var(--sans);
  font-size: 13px;
}
footer.site .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
footer.site .brand-mini {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(246,243,237,0.9);
}
footer.site .brand-mini .mark {
  width: 50px; height: 42px;
  background: transparent;
  display: block;
}
footer.site .brand-mini .mark svg { width: 100%; height: 100%; display: block; }
footer.site .links { display: flex; gap: 22px; flex-wrap: wrap; }
footer.site .links a { color: rgba(246,243,237,0.6); transition: color 0.15s ease; }
footer.site .links a:hover { color: var(--bone); }
footer.site .copyr { font-size: 12px; color: rgba(246,243,237,0.45); }
