/* =================================================================
   SECTION STYLES — Infinite Health Strategies
   ================================================================= */

/* =================================================================
   NAV
   ================================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s var(--ease-out), background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(242,237,223,0.78);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  backdrop-filter: blur(20px) saturate(1.1);
  border-bottom-color: var(--line);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 2;
}
.nav-logo-mark {
  width: 48px;
  height: 40px;
  object-fit: contain;
  transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out);
  flex-shrink: 0;
  display: block;
}
.nav.scrolled .nav-logo-mark { width: 38px; height: 32px; }
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-text strong {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav-logo-text strong em { font-style: italic; color: var(--jade); font-weight: 400; }
.nav-logo-text span {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-top: 5px;
  font-weight: 500;
}
@media (max-width: 760px) {
  .nav-logo-text span { display: none; }
  .nav-logo-text strong { font-size: 17px; }
  .nav-logo-mark { width: 34px; height: 28px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 10px 14px;
  font-family: var(--f-body);
  font-size: 13px;
  letter-spacing: -0.005em;
  color: var(--ink-3);
  position: relative;
  transition: color 0.25s;
  font-weight: 500;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  bottom: 6px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 14px; }
@media (max-width: 1080px) { .nav-links { display: none; } }

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px var(--pad-x) 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--bone);
  overflow: hidden;
}

.hero-rules {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-rules .hl {
  position: absolute;
  left: var(--pad-x); right: var(--pad-x);
  height: 1px;
  background: var(--line);
}
.hero-rules .hl.t1 { top: 120px; }
.hero-rules .hl.b1 { bottom: 60px; }

.hero-mark {
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  width: min(78vmin, 820px);
  height: min(78vmin, 820px);
  z-index: 1;
  pointer-events: none;
}
.hero-mark-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.12;
  animation: heartbeat var(--beat) ease-in-out infinite;
  transform-origin: center;
  /* recolor to jade via CSS filter — image is pure black */
  filter: brightness(0) saturate(100%) invert(20%) sepia(35%) saturate(750%) hue-rotate(115deg) brightness(0.7) contrast(1.2);
  pointer-events: none;
  user-select: none;
}
.hero-mark-rings {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  pointer-events: none;
  animation: orbit 80s linear infinite;
}
.hero-mark-rings circle {
  fill: none;
  stroke: var(--ink);
  stroke-width: 0.5;
  opacity: 0.10;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-4);
  position: relative;
  z-index: 3;
  flex-wrap: wrap;
}
.hero-meta > * { display: inline-flex; align-items: center; gap: 10px; }
@media (max-width: 760px) { .hide-narrow { display: none !important; } }
.hero-meta .pulse .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--coral);
  animation: pulseDot 2.4s ease-in-out infinite;
}

.hero-headline {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(60px, 11vw, 188px);
  line-height: 0.86;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.hero-headline .row { display: block; overflow: hidden; }
.hero-headline .row .inner { display: block; }
.hero-headline em {
  font-style: italic;
  color: var(--jade);
  font-weight: 400;
  letter-spacing: -0.03em;
}
.hero-headline .row.right { text-align: right; }

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-top: 20px;
}
@media (max-width: 880px) {
  .hero-bottom { grid-template-columns: 1fr; gap: 30px; }
}

.hero-lede {
  font-family: var(--f-body);
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--ink-3);
  line-height: 1.6;
  max-width: 46ch;
  letter-spacing: -0.003em;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 880px) { .hero-actions { justify-content: flex-start; } }

.hero-corner {
  position: absolute;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-4);
  z-index: 3;
}
.hero-corner.tl { top: 100px; left: var(--pad-x); }
.hero-corner.tr { top: 100px; right: var(--pad-x); text-align: right; }

.hero-scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-4);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll-cue::after {
  content: "";
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, var(--ink-4), transparent);
  animation: scrollCue 2.4s ease-in-out infinite;
}
@keyframes scrollCue {
  0%, 100% { transform: scaleY(0.6); transform-origin: top; }
  50% { transform: scaleY(1); }
}

/* =================================================================
   PILLARS RIBBON
   ================================================================= */
.pillars-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pillar-item {
  padding: 36px clamp(20px, 3vw, 44px);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: background 0.4s;
  cursor: default;
}
.pillar-item:first-child { border-left: 0; }
.pillar-item:hover { background: var(--bone-2); }
.pillar-item .num {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--ink-4);
  font-weight: 500;
}
.pillar-item h4 {
  font-family: var(--f-display);
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1;
  color: var(--ink);
}
.pillar-item h4 em { font-style: italic; color: var(--jade); }
.pillar-item p {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 880px) {
  .pillars-ribbon { grid-template-columns: 1fr 1fr; }
  .pillar-item:nth-child(2) { border-left: 1px solid var(--line); }
  .pillar-item:nth-child(3) { border-top: 1px solid var(--line); border-left: 0; }
  .pillar-item:nth-child(4) { border-top: 1px solid var(--line); }
}

/* =================================================================
   MANIFESTO / SPLIT
   ================================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 30px; } }

.split-head { position: sticky; top: 120px; }
.split-head .row-tag { margin-bottom: 32px; }
.split-head h2 { margin-bottom: 24px; }

.split-body { display: flex; flex-direction: column; gap: 28px; }
.split-body p {
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.32;
  color: var(--ink-2);
  margin: 0;
  letter-spacing: -0.008em;
  text-wrap: pretty;
  font-weight: 400;
}
.split-body p em { font-style: italic; color: var(--jade); font-weight: 400; }
.split-body p strong { color: var(--ink); font-weight: 500; font-style: normal; }
.split-body p:first-of-type::first-letter {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 4.2em;
  float: left;
  line-height: 0.85;
  padding: 6px 16px 0 0;
  color: var(--jade);
}

.split-pillars {
  margin-top: 60px;
  display: grid;
  gap: 36px;
}
.split-pillars .sp {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.split-pillars .sp:first-child { border-top: 0; padding-top: 0; }
.split-pillars .sp .ix {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 38px;
  color: var(--jade);
  line-height: 1;
}
.split-pillars .sp h4 {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.012em;
  margin-bottom: 8px;
}
.split-pillars .sp h4 em { color: var(--jade); }
.split-pillars .sp p {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.55;
  margin: 0;
}

/* =================================================================
   STAT STRIP
   ================================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.stat {
  padding: 56px clamp(20px, 3vw, 44px);
  border-left: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stat:first-child { border-left: 0; }
.stat .num {
  font-family: var(--f-display);
  font-size: clamp(64px, 8vw, 128px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--bone);
  font-feature-settings: "lnum";
}
.stat .num em { font-style: italic; color: var(--coral-2); font-weight: 400; }
.stat .num .small { font-size: 0.5em; vertical-align: super; color: var(--ink-6); }
.stat .lbl {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--ink-6);
  line-height: 1.5;
  max-width: 20ch;
}
.stat .lbl em { font-style: italic; color: var(--bone-3); }
@media (max-width: 880px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-left: 1px solid var(--line-dark); }
  .stat:nth-child(3) { border-top: 1px solid var(--line-dark); border-left: 0; }
  .stat:nth-child(4) { border-top: 1px solid var(--line-dark); }
}

/* =================================================================
   TEAM
   ================================================================= */
.team-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 80px;
}
.team-head h2 { max-width: 12ch; }
@media (max-width: 760px) { .team-head { flex-direction: column; align-items: flex-start; } }

.team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
}
@media (max-width: 880px) { .team { grid-template-columns: 1fr; } }

.team-card {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.team-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bone-3);
}
.team-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.18) contrast(1.02);
  transition: transform 1.4s var(--ease-out), filter 0.6s;
  will-change: transform;
}
.team-card:hover .team-portrait img {
  transform: scale(1.04);
  filter: grayscale(0) contrast(1.05);
}
.team-portrait .tag {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone);
  padding: 8px 14px;
  background: rgba(11,22,20,0.75);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 2;
}
.team-portrait .index {
  position: absolute;
  bottom: 20px; right: 20px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 38px;
  color: var(--bone);
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  z-index: 2;
}

.team-body { display: flex; flex-direction: column; gap: 14px; }
.team-name {
  font-family: var(--f-display);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 1;
  color: var(--ink);
}
.team-name em { font-style: italic; color: var(--jade); }
.team-role {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.team-bio {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.6;
  max-width: 50ch;
  margin: 0;
}
.team-creds {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.team-creds span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 7px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
}

/* =================================================================
   EQUIPMENT
   ================================================================= */
.equipment-head { margin-bottom: 80px; }
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
}
@media (max-width: 880px) { .equipment-grid { grid-template-columns: 1fr; } }

.equip {
  position: relative;
  padding: clamp(40px, 5vw, 64px) clamp(28px, 4vw, 56px);
  border-left: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 32px;
  align-items: start;
  transition: background 0.5s;
  overflow: hidden;
}
.equip:nth-child(odd) { border-left: 0; }
@media (max-width: 880px) {
  .equip { grid-template-columns: 1fr; border-left: 0; }
}
.equip:hover { background: rgba(242,237,223,0.04); }

.equip-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coral-2);
  margin-bottom: 22px;
  display: inline-block;
}
.equip h3 {
  font-family: var(--f-display);
  font-size: clamp(34px, 3.6vw, 54px);
  font-weight: 400;
  letter-spacing: -0.018em;
  margin: 0 0 10px;
  color: var(--bone);
}
.equip h3 em { font-style: italic; color: var(--coral-2); }
.equip .equip-sub {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-6);
  margin-bottom: 18px;
}
.equip p {
  font-family: var(--f-body);
  font-size: 14.5px;
  color: var(--ink-6);
  line-height: 1.6;
  margin: 0;
  max-width: 38ch;
}
.equip-visual {
  width: 180px; height: 180px;
  opacity: 0.85;
  transition: transform 0.6s var(--ease-out), opacity 0.4s;
}
.equip:hover .equip-visual { transform: scale(1.05) rotate(2deg); opacity: 1; }

/* =================================================================
   DO LIST (What we measure)
   ================================================================= */
.do-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 880px) { .do-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .do-grid { grid-template-columns: 1fr; } }

.do-item {
  padding: clamp(36px, 4vw, 56px) clamp(24px, 3vw, 40px);
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 0.4s;
  position: relative;
  overflow: hidden;
}
.do-item:nth-child(3n+1) { border-left: 0; }
@media (max-width: 880px) {
  .do-item:nth-child(3n+1) { border-left: 1px solid var(--line); }
  .do-item:nth-child(2n+1) { border-left: 0; }
}
@media (max-width: 560px) {
  .do-item { border-left: 0 !important; }
}
.do-item:hover { background: var(--bone-2); }
.do-item:hover .do-mark { transform: scale(1.06) rotate(-3deg); }

.do-num {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ink-4);
}
.do-mark {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink);
  color: var(--bone);
  border-radius: 50%;
  margin-bottom: 8px;
  transition: transform 0.5s var(--ease-spring);
}
.do-mark svg { width: 24px; height: 24px; }
.do-item h4 {
  font-family: var(--f-display);
  font-size: clamp(26px, 2.2vw, 32px);
  font-weight: 400;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--ink);
}
.do-item h4 em { font-style: italic; color: var(--jade); }
.do-item p {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.55;
  margin: 0;
  max-width: 32ch;
}

/* =================================================================
   VIZ STRIP (the chart)
   ================================================================= */
.viz {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(80px, 10vw, 140px) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.viz-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 880px) { .viz-inner { grid-template-columns: 1fr; } }
.viz-copy h3 {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 0.98;
  color: var(--bone);
  margin: 24px 0 24px;
}
.viz-copy h3 em { font-style: italic; color: var(--coral-2); }
.viz-copy p {
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--ink-6);
  line-height: 1.6;
  max-width: 42ch;
  margin: 0 0 28px;
}
.viz-legend { display: flex; flex-direction: column; gap: 12px; }
.viz-legend-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-3);
}
.viz-legend-item .swatch {
  width: 22px; height: 2px;
}

.chart {
  background: linear-gradient(180deg, rgba(242,237,223,0.025), transparent);
  border: 1px solid var(--line-dark);
  padding: 24px;
  border-radius: 2px;
  position: relative;
}
.chart svg { width: 100%; height: 100%; display: block; aspect-ratio: 16 / 9; }
.chart-path-vo2 {
  fill: none;
  stroke: var(--coral);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(210,106,79,0.5));
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  transition: stroke-dashoffset 2.4s var(--ease-out);
}
.chart.in .chart-path-vo2 { stroke-dashoffset: 0; }
.chart-path-lactate {
  fill: none;
  stroke: var(--gold-2);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  transition: stroke-dashoffset 2.4s 0.4s var(--ease-out);
}
.chart.in .chart-path-lactate { stroke-dashoffset: 0; }
.chart-fill {
  fill: url(#vo2fill);
  opacity: 0;
  transition: opacity 1.2s 1.2s ease;
}
.chart.in .chart-fill { opacity: 1; }
.chart-grid {
  stroke: var(--line-dark);
  stroke-width: 0.6;
}
.chart-label {
  font-family: var(--f-mono);
  font-size: 9.5px;
  fill: var(--ink-6);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.chart-threshold {
  stroke: var(--bone-3);
  stroke-width: 0.6;
  stroke-dasharray: 4 4;
  opacity: 0;
  transition: opacity 0.6s 1.8s ease;
}
.chart.in .chart-threshold { opacity: 0.5; }
.chart-threshold-text {
  font-family: var(--f-display);
  font-style: italic;
  fill: var(--bone);
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.6s 2s ease;
}
.chart.in .chart-threshold-text { opacity: 1; }

/* =================================================================
   PROCESS
   ================================================================= */
.process-head { margin-bottom: 64px; }
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
@media (max-width: 880px) { .process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process { grid-template-columns: 1fr; } }

.process-step {
  padding: 40px 32px 40px 0;
  border-top: 1px solid var(--line);
  padding-left: 32px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: background 0.4s;
}
.process-step:first-child { border-left: 0; padding-left: 0; }
@media (max-width: 880px) {
  .process-step:nth-child(2n+1) { border-left: 0; padding-left: 0; }
  .process-step:nth-child(2n) { border-left: 1px solid var(--line); padding-left: 32px; }
}
@media (max-width: 560px) {
  .process-step { border-left: 0 !important; padding-left: 0 !important; }
}
.process-step .ix {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(56px, 6vw, 84px);
  color: var(--jade);
  line-height: 1;
  letter-spacing: -0.02em;
}
.process-step h4 {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--ink);
}
.process-step p {
  font-family: var(--f-body);
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.55;
  margin: 0;
  max-width: 28ch;
}

/* =================================================================
   PULL QUOTE
   ================================================================= */
.pull {
  padding: clamp(80px, 10vw, 140px) var(--pad-x);
  position: relative;
  text-align: center;
  background: var(--jade);
  color: var(--bone);
  overflow: hidden;
}
.pull-mark {
  position: absolute;
  left: 50%; top: 50%;
  width: min(80vmin, 900px);
  height: min(80vmin, 900px);
  transform: translate(-50%, -50%);
  opacity: 0.06;
  animation: heartbeat var(--beat) ease-in-out infinite;
  filter: brightness(0) invert(1);
  pointer-events: none;
  object-fit: contain;
}
.pull-inner {
  position: relative;
  z-index: 2;
  max-width: 22ch;
  margin: 0 auto;
}
.pull blockquote {
  font-family: var(--f-display);
  font-size: clamp(40px, 5.6vw, 92px);
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 0.98;
  margin: 0;
  text-wrap: balance;
}
.pull blockquote em { font-style: italic; color: var(--coral-2); }
.pull cite {
  display: block;
  margin-top: 32px;
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone-3);
}

/* =================================================================
   SERVICES / CART
   ================================================================= */
.services-head { margin-bottom: 64px; max-width: 720px; }

.services-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(36px, 4vw, 64px);
  align-items: start;
}
@media (max-width: 980px) { .services-layout { grid-template-columns: 1fr; } }

.service-row {
  display: grid;
  grid-template-columns: 28px 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.3s;
  position: relative;
}
.service-row:first-child { border-top: 1px solid var(--line); }
.service-row:hover { background: var(--bone-2); padding-left: 16px; padding-right: 16px; margin-left: -16px; margin-right: -16px; }
.service-row .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--ink-4);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.service-row .check svg { width: 11px; height: 11px; color: var(--bone); opacity: 0; transition: opacity 0.2s; }
.service-row.selected .check { background: var(--jade); border-color: var(--jade); transform: scale(1.05); }
.service-row.selected .check svg { opacity: 1; }
.service-info h4 {
  font-family: var(--f-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: -0.012em;
  margin: 0 0 4px;
  color: var(--ink);
}
.service-info h4 em { font-style: italic; color: var(--jade); }
.service-info p {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.5;
}
.service-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.service-price {
  font-family: var(--f-display);
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  color: var(--jade);
  line-height: 1;
}
.service-expand {
  grid-column: 1 / -1;
  display: none;
  padding: 18px 0 8px;
  border-top: 1px solid var(--line);
  margin-top: 10px;
}
.service-row.expanded .service-expand {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
}
@media (max-width: 760px) { .service-row.expanded .service-expand { grid-template-columns: 1fr; } }
.service-expand h5 {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin: 0 0 12px;
  font-weight: 500;
}
.service-expand p {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.55;
  margin: 0 0 10px;
}
.service-expand small {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
}
.service-expand ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.service-expand ul li {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--ink-2);
  padding-left: 20px;
  position: relative;
}
.service-expand ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--jade);
}
@media (max-width: 760px) {
  .service-row { grid-template-columns: 22px 1fr; }
  .service-row .service-meta, .service-row .service-price { grid-column: 2; padding-left: 0; }
  .service-row .service-meta { padding-top: 4px; }
}

.cart {
  position: sticky;
  top: 110px;
  background: var(--ink);
  color: var(--bone);
  padding: 36px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cart h5 {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-3);
  margin: 0;
  font-weight: 500;
}
.cart-title {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.018em;
  margin: 4px 0 0;
  color: var(--bone);
}
.cart-title em { font-style: italic; color: var(--coral-2); }
.cart-items { display: flex; flex-direction: column; gap: 14px; }
.cart-empty {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-6);
  line-height: 1.5;
  padding: 28px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line-dark);
  align-items: baseline;
}
.cart-item:last-child { border-bottom: 1px solid var(--line-dark); }
.cart-item-name {
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: -0.008em;
}
.cart-item-dur {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-3);
  display: block;
  margin-top: 4px;
}
.cart-item-price {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 20px;
  color: var(--coral-2);
}
.cart-totals { display: flex; flex-direction: column; gap: 6px; padding-top: 4px; }
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-3);
  padding: 6px 0;
}
.cart-savings { color: var(--coral-2); }
.cart-grand {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 20px;
  margin-top: 12px;
  border-top: 1px solid var(--line-dark-2);
}
.cart-grand-lbl {
  font-family: var(--f-display);
  font-size: 24px;
  letter-spacing: -0.008em;
}
.cart-grand-val {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 48px;
  font-weight: 400;
  color: var(--coral-2);
  letter-spacing: -0.02em;
  line-height: 0.9;
}
.bundles { display: flex; flex-direction: column; gap: 10px; }
.bundles .bundle-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid var(--line-dark-2);
  background: transparent;
  color: var(--bone);
  font-family: var(--f-body);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  border-radius: 999px;
}
.bundles .bundle-btn:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.bundles .bundle-btn.active { background: var(--coral); color: var(--cream); border-color: var(--coral); }
.bundles .bundle-btn .price { font-family: var(--f-display); font-style: italic; }

/* =================================================================
   BUNDLE FEATURE CARDS
   ================================================================= */
.bundle-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
}
@media (max-width: 880px) { .bundle-cards { grid-template-columns: 1fr; } }
.bundle-card {
  position: relative;
  padding: clamp(36px, 4vw, 56px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), border-color 0.4s;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bundle-card.peak { background: var(--ink); color: var(--bone); border-color: transparent; }
.bundle-card:hover { transform: translateY(-4px); border-color: var(--ink-4); }
.bundle-card.peak:hover { border-color: var(--coral); }
.bundle-card .bg-mark {
  position: absolute;
  right: -8%; top: -10%;
  width: 50%;
  aspect-ratio: 1;
  opacity: 0.08;
  filter: brightness(0) saturate(100%) invert(20%) sepia(35%) saturate(750%) hue-rotate(115deg) brightness(0.7) contrast(1.2);
  transition: transform 0.8s var(--ease-out);
  pointer-events: none;
  object-fit: contain;
  user-select: none;
}
.bundle-card.peak .bg-mark { display: none; }
.bundle-card.peak .bg-mark-coral {
  position: absolute;
  right: -8%; top: -10%;
  width: 50%;
  aspect-ratio: 1;
  background: url("assets/logo-mark-coral.png") center / contain no-repeat;
  opacity: 0.55;
  transition: transform 0.8s var(--ease-out);
  pointer-events: none;
  filter: drop-shadow(0 0 30px rgba(210,106,79,0.35));
}
.bundle-card:hover .bg-mark,
.bundle-card:hover .bg-mark-coral { transform: rotate(8deg) scale(1.08); }
.bundle-card .b-eye {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.bundle-card.peak .b-eye { color: var(--bone-3); }
.bundle-card h3 {
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 0.96;
  color: var(--ink);
  margin: 6px 0 0;
}
.bundle-card.peak h3 { color: var(--bone); }
.bundle-card h3 em { font-style: italic; color: var(--jade); }
.bundle-card.peak h3 em { color: var(--coral-2); }
.bundle-card > p {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.55;
  margin: 0;
  max-width: 32ch;
}
.bundle-card.peak > p { color: var(--bone-3); }
.bundle-card .b-includes {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.bundle-card .b-includes span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 6px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
}
.bundle-card.peak .b-includes span { color: var(--bone-3); border-color: var(--line-dark-2); }
.bundle-card .b-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  margin-top: 14px;
}
.bundle-card.peak .b-foot { border-color: var(--line-dark); }
.bundle-card .b-price {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 48px;
  color: var(--jade);
  letter-spacing: -0.02em;
  line-height: 1;
}
.bundle-card.peak .b-price { color: var(--coral-2); }
.bundle-card .b-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.bundle-card.peak .b-meta { color: var(--bone-3); }

/* =================================================================
   CONTACT
   ================================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-of-type { border-bottom: 0; }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bone-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--jade);
}
.contact-row small {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-4);
  display: block;
  margin-bottom: 6px;
}
.contact-row strong {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.012em;
  line-height: 1.25;
  color: var(--ink);
}
.contact-row strong a:hover { color: var(--coral); }

.map {
  margin-top: 20px;
  aspect-ratio: 4 / 3;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.map-grid {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--line-dark) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(to bottom, var(--line-dark) 1px, transparent 1px) 0 0 / 40px 40px;
  opacity: 0.4;
}
.map-roads {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.map-pin {
  position: absolute;
  top: 48%; left: 52%;
  width: 18px; height: 18px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(210,106,79,0.25), 0 0 0 12px rgba(210,106,79,0.12), 0 8px 20px rgba(0,0,0,0.4);
  animation: pulseDot 2.4s ease-in-out infinite;
  z-index: 3;
}
.map-label {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-3);
  z-index: 3;
}

.form { display: flex; flex-direction: column; gap: 20px; padding-top: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-4);
  font-weight: 500;
}
.field input, .field select, .field textarea {
  font-family: var(--f-body);
  font-size: 15px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  padding: 12px 0;
  color: var(--ink);
  letter-spacing: -0.005em;
  transition: border-color 0.3s;
}
.field textarea { min-height: 100px; resize: vertical; font-family: var(--f-body); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-5); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--coral);
}

/* =================================================================
   FOOTER
   ================================================================= */
.footer {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(60px, 8vw, 100px) var(--pad-x) 32px;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .lockup {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
}
.footer-brand .lockup .mark {
  width: 56px; height: 46px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  display: block;
}
.footer-brand .lockup strong {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.footer-brand .lockup strong em { font-style: italic; color: var(--coral-2); font-weight: 400; }
.footer-brand p {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--bone-3);
  line-height: 1.6;
  max-width: 36ch;
  margin: 0 0 24px;
}

.footer-col h5 {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-3);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.008em;
  color: var(--bone);
  transition: color 0.25s;
}
.footer-col li a:hover { color: var(--coral-2); font-style: italic; }

.footer-wordmark {
  font-family: var(--f-display);
  font-size: clamp(48px, 13vw, 220px);
  font-weight: 400;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242,237,223,0.18);
  text-align: center;
  line-height: 0.9;
  margin-top: 60px;
  text-wrap: balance;
  user-select: none;
  white-space: normal;
  overflow: hidden;
  word-spacing: 0.02em;
}
.footer-wordmark em { font-style: italic; -webkit-text-stroke: 1px rgba(210,106,79,0.5); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 28px;
  margin-top: 30px;
  border-top: 1px solid var(--line-dark);
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-3);
  flex-wrap: wrap;
}
.footer-bottom a { color: var(--coral-2); }

/* =================================================================
   MODAL (booking)
   ================================================================= */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(11,22,20,0.6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.modal.show { display: flex; opacity: 1; }
.modal-card {
  background: var(--bone);
  width: 100%;
  max-width: 540px;
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.5s var(--ease-out);
  max-height: 90vh;
  overflow-y: auto;
}
.modal.show .modal-card { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bone-2);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  color: var(--ink);
}
.modal-close:hover { background: var(--ink); color: var(--bone); transform: rotate(90deg); }
.modal-title {
  font-family: var(--f-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 0.98;
  margin: 14px 0 10px;
}
.modal-title em { font-style: italic; color: var(--jade); }
.modal-card .form { gap: 16px; }
.modal-card .success { display: none; text-align: center; padding: 20px 0; }
.modal-card .success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--jade);
  color: var(--bone);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.modal-card .success-icon svg { width: 28px; height: 28px; }
.modal-card.done .form { display: none; }
.modal-card.done .success { display: block; }
.modal-card.done .modal-title-row { display: none; }

/* =================================================================
   TWEAKS PANEL OVERRIDES (when on)
   ================================================================= */
.tweaks-toggle-fab { display: none; }
