/* ================================
   FOUNDATION
   ================================ */
:root {
  --ink: #0f0e0c;
  --ink-soft: #2a2722;
  --charcoal: #3a3631;
  --mute: #6b655d;
  --line: #e6e1d8;
  --paper: #faf7f1;
  --cream: #f3ede2;
  --bone: #ece6d9;
  --sage: #7d9082;
  --sage-deep: #4a5a4f;
  --tide: #5a7a85;
  --rust: #b56a3a;
  --gold: #c8a878;
  --white: #ffffff;

  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter Tight', 'Söhne', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --container: 1280px;
  --gutter: clamp(20px, 5vw, 56px);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-snap: cubic-bezier(.5, 0, 0, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

input, textarea, select {
  font: inherit; color: inherit; background: transparent;
  border: none; outline: none; width: 100%;
}

/* ================================
   TYPOGRAPHY
   ================================ */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}

.display {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 400;
}

.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--sage-deep);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.section-title em { font-style: italic; color: var(--sage-deep); font-weight: 300; }

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--charcoal);
  font-weight: 400;
  max-width: 56ch;
}

/* ================================
   LAYOUT
   ================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { position: relative; }

.section-pad { padding: clamp(72px, 10vw, 140px) 0; }
.section-pad-sm { padding: clamp(56px, 8vw, 96px) 0; }

/* ================================
   NAV
   ================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 247, 241, 0.78);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), background .4s var(--ease);
}

.nav.scrolled { border-bottom-color: var(--line); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ink) 0%, var(--sage-deep) 100%);
  display: grid; place-items: center;
  color: var(--paper);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1;
}

.logo-text { font-weight: 400; }
.logo-text em { font-style: italic; color: var(--sage-deep); font-weight: 300; }

.nav-links {
  display: none;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: color .25s var(--ease);
  position: relative;
}

.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 14px; height: 1px;
  background: var(--sage-deep);
}

/* Nav dropdown */
.nav-item-dropdown { position: relative; }
.nav-item-dropdown > a { font-weight: 600; color: var(--ink); }

.nav-caret {
  display: inline-block;
  font-size: 9px;
  margin-left: 3px;
  vertical-align: middle;
  color: var(--mute);
  transition: transform .25s var(--ease), color .25s var(--ease);
}
.nav-item-dropdown:hover .nav-caret { transform: rotate(180deg); color: var(--ink); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 234px;
  padding: 8px;
  list-style: none;
  background: rgba(250, 247, 241, 0.97);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 44px -20px rgba(15, 14, 12, 0.32);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .26s var(--ease), transform .26s var(--ease);
}

/* transparent bridge so hover doesn't drop in the gap */
.nav-dropdown::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0; right: 0;
  height: 24px;
}

.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown li { width: 100%; list-style: none; }

.nav-dropdown a {
  display: block;
  padding: 9px 14px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
  color: var(--mute);
  transition: background .2s var(--ease), color .2s var(--ease);
}

.nav-dropdown a::after { display: none; }
.nav-dropdown a:hover { background: var(--cream); color: var(--ink); }
.nav-dropdown a.active { background: var(--cream); color: var(--ink); }

.nav-cta {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition: all .3s var(--ease);
}

.nav-cta:hover { background: var(--ink); color: var(--paper); }

.nav-burger {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: all .3s var(--ease);
}

.nav-burger:hover { border-color: var(--ink); }

.nav-burger span {
  display: block;
  width: 16px; height: 1.5px;
  background: var(--ink);
  position: relative;
  transition: all .3s var(--ease);
}
.nav-burger span::before, .nav-burger span::after {
  content: ''; position: absolute; left: 0;
  width: 16px; height: 1.5px; background: var(--ink);
  transition: all .3s var(--ease);
}
.nav-burger span::before { top: -5px; }
.nav-burger span::after { top: 5px; }

.nav-burger.open span { background: transparent; }
.nav-burger.open span::before { top: 0; transform: rotate(45deg); }
.nav-burger.open span::after { top: 0; transform: rotate(-45deg); }

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 99;
  transform: translateY(-100%);
  transition: transform .55s var(--ease);
  padding-top: 80px;
  overflow-y: auto;
}

.mobile-menu.open { transform: translateY(0); }

.mobile-menu-inner {
  padding: 40px var(--gutter) 60px;
}

.mobile-menu ul { list-style: none; }
.mobile-menu li { border-bottom: 1px solid var(--line); }
.mobile-menu a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: color .25s var(--ease);
}

.mobile-menu a:hover { color: var(--sage-deep); }
.mobile-menu a .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.1em;
}

.mobile-contact {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-contact small {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mute);
}

.mobile-contact a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-burger { display: none; }
  .mobile-menu { display: none; }
}

/* ================================
   BUTTONS
   ================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all .35s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover {
  background: var(--sage-deep);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
}
.btn-ghost:hover { color: var(--sage-deep); border-color: var(--sage-deep); }

.btn-light {
  background: var(--paper);
  color: var(--ink);
}
.btn-light:hover { background: var(--white); transform: translateY(-1px); }

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 14, 12, 0.55);
}
.modal-overlay[hidden] { display: none; }
.modal-box {
  max-width: 560px;
  width: 100%;
  background: var(--paper);
  border: 1px solid rgba(15, 14, 12, 0.08);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 24px 60px rgba(15, 14, 12, 0.35);
}
.modal-actions {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal-actions .btn { justify-content: center; text-align: center; }

.btn-outline-light {
  border-color: rgba(250, 247, 241, 0.4);
  color: var(--paper);
}
.btn-outline-light:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.btn .arrow {
  display: inline-block;
  transition: transform .35s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ================================
   HERO
   ================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 120px var(--gutter) 80px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--paper);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
  will-change: opacity;
}

.hero-bg img.is-active {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg img { transition: none; }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,14,12,0.25) 0%, rgba(15,14,12,0.55) 60%, rgba(15,14,12,0.85) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.hero-top {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: auto;
  padding-bottom: 72px;
}

.hero-top .eyebrow { color: rgba(250, 247, 241, 0.7); }
.hero-top .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); }

.hero h1 {
  color: var(--paper);
  margin-bottom: 44px;
  max-width: 16ch;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--bone);
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(222, 231, 223, 0.88);
  max-width: 56ch;
  margin-bottom: 40px;
  line-height: 1.65;
}

.hero-intro {
  margin-bottom: 72px;
  max-width: 60ch;
}
.hero-intro .hero-sub {
  margin-bottom: 18px;
}
.hero-intro .hero-sub:last-child {
  margin-bottom: 0;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(250, 247, 241, 0.15);
}

.hero-meta-item .eyebrow { color: rgba(250, 247, 241, 0.5); margin-bottom: 8px; }
.hero-meta-item p {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  color: var(--paper);
  line-height: 1.3;
}

@media (min-width: 720px) {
  .hero-meta { grid-template-columns: repeat(4, 1fr); gap: 40px; }
}

/* Page hero (smaller, for inner pages) */
.page-hero {
  position: relative;
  padding: 160px var(--gutter) 80px;
  overflow: hidden;
  color: var(--paper);
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
}

.page-hero .hero-bg::after {
  background: linear-gradient(180deg, rgba(15,14,12,0.3) 0%, rgba(15,14,12,0.75) 100%);
}

.page-hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--container);
  margin: 0 auto;
}

.crumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 247, 241, 0.6);
}
.crumbs a { color: rgba(250, 247, 241, 0.6); transition: color .25s; }
.crumbs a:hover { color: var(--paper); }
.crumbs .sep { opacity: 0.4; }

.page-hero h1 {
  color: var(--paper);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  margin-bottom: 24px;
  max-width: 18ch;
}

.page-hero .lead {
  color: rgba(250, 247, 241, 0.85);
  max-width: 60ch;
}

/* Compact page hero (~25% shorter, used on wellness.html) */
.page-hero.page-hero-compact {
  min-height: 52vh;
  padding: 104px var(--gutter) 56px;
}
.page-hero-compact .crumbs { margin-bottom: 20px; }
.page-hero-compact h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.3rem);
  margin-bottom: 18px;
}
.page-hero-compact .lead { max-width: 64ch; }

.hero-corner-logo {
  position: absolute;
  top: 96px;
  right: 24px;
  z-index: 3;
  width: clamp(49px, 6.1vw, 74px);
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(15, 14, 12, 0.35));
}

.hero-logo { display: none; }
@media (min-width: 1024px) {
  .page-hero-inner.has-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
  }
  .page-hero-inner.has-logo .hero-copy { flex: 1 1 auto; min-width: 0; }
  .hero-logo {
    display: block;
    position: relative;
    flex: 0 0 172px;
    width: 172px;
  }
  .hero-logo img { width: 100%; height: auto; display: block; }
}

/* Coming-soon badge (nav sub-links) */
.soon-badge {
  display: inline-block;
  margin-left: 7px;
  padding: 2px 7px 1px;
  font-family: var(--font-mono);
  font-size: 9px;
  line-height: 1.45;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-deep);
  background: rgba(125, 144, 130, 0.16);
  border: 1px solid rgba(125, 144, 130, 0.4);
  border-radius: 999px;
  vertical-align: middle;
  white-space: nowrap;
}

/* ================================
   VENTURE GRID (home)
   ================================ */
.section-head {
  display: grid;
  gap: 24px;
  margin-bottom: 56px;
  align-items: end;
}

@media (min-width: 880px) {
  .section-head {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.section-head .lead { margin-top: 16px; }

.lead-plate {
  position: relative;
  padding: 26px 30px;
  background: #fff;
  border: 1px solid rgba(15, 14, 12, 0.06);
  box-shadow: 16px 16px 0 rgba(125, 144, 130, 0.22);
}

.venture-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) { .venture-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .venture-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.flip-card {
  perspective: 1400px;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  transform-style: preserve-3d;
  transition: transform 0.7s var(--ease);
}
.flip-card.is-flipped .flip-card-inner { transform: rotateY(180deg); }
.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 16px;
}
button.flip-card-front {
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  width: 100%;
}
.flip-card .flip-card-back { pointer-events: none; }
.flip-card.is-flipped .flip-card-back { pointer-events: auto; }
.flip-card.is-flipped .flip-card-front { pointer-events: none; }
.flip-card-back {
  transform: rotateY(180deg);
  background: #fff;
  border: 1px solid rgba(15, 14, 12, 0.08);
  box-shadow: 0 10px 30px rgba(15, 14, 12, 0.08);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: auto;
}
.flip-card-back-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.flip-back-btn {
  border: 1px solid rgba(15, 14, 12, 0.2);
  background: transparent;
  color: var(--ink);
  width: 30px; height: 30px;
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  flex: 0 0 auto;
}
.flip-back-btn:hover { background: var(--ink); color: var(--paper); }
.flip-property {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(15, 14, 12, 0.08);
  color: var(--ink);
  text-decoration: none;
}
.flip-property img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.flip-property-info {
  display: block;
  padding: 12px 14px;
}
.flip-property-info strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
  line-height: 1.25;
}
.flip-property-info > span {
  display: block;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
}
.flip-property:hover { border-color: var(--sage-deep); }
.property-slider { overflow: hidden; }
.property-track {
  display: flex;
  transition: transform 0.45s var(--ease);
}
.property-track .flip-property { flex: 0 0 100%; }
.property-track .flip-property + .flip-property { margin-left: 14px; }
.property-slider-nav {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.slider-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(15, 14, 12, 0.2);
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  cursor: pointer;
}
.slider-btn:hover { background: var(--ink); color: var(--paper); }
.slider-count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--mute);
}

.venture-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: var(--ink);
  color: var(--paper);
  aspect-ratio: 4 / 5;
  transition: transform .5s var(--ease);
}

@media (min-width: 980px) {
  .venture-card,
  .venture-card.feature,
  .venture-card.tall,
  .venture-card.wide {
    aspect-ratio: 4 / 5;
    grid-column: auto;
  }
}

.venture-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.venture-card:hover img { transform: scale(1.06); }

.venture-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,14,12,0.05) 0%, rgba(15,14,12,0.55) 60%, rgba(15,14,12,0.85) 100%);
  transition: background .4s var(--ease);
}

.venture-card:hover::after {
  background: linear-gradient(180deg, rgba(15,14,12,0.1) 0%, rgba(15,14,12,0.65) 60%, rgba(15,14,12,0.92) 100%);
}

.venture-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 26px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.venture-card-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 247, 241, 0.7);
  margin-bottom: 4px;
}

.venture-card h3 {
  color: var(--paper);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.venture-card h3 em { font-style: italic; color: var(--bone); font-weight: 300; }

.venture-card p {
  font-size: 14px;
  color: rgba(250, 247, 241, 0.78);
  max-width: 38ch;
  line-height: 1.5;
}

.venture-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 13px;
  color: var(--paper);
  font-weight: 500;
}

.venture-card-arrow svg { transition: transform .4s var(--ease); }
.venture-card:hover .venture-card-arrow svg { transform: translateX(4px); }

.venture-card.coming-soon { cursor: default; }
.venture-card.coming-soon img { filter: grayscale(1) brightness(0.5); }
.venture-card.coming-soon:hover img { transform: none; }

.venture-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.venture-card-overlay span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--paper);
  max-width: 240px;
  padding: 14px 22px;
  border: 1px solid rgba(250, 247, 241, 0.55);
  border-radius: 999px;
  background: rgba(15, 14, 12, 0.35);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* ================================
   PHILOSOPHY / SPLIT
   ================================ */
.split {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 880px) {
  .split { grid-template-columns: 1fr 1fr; gap: 80px; }
  .split.wide-left { grid-template-columns: 1.2fr 1fr; }
  .split.wide-right { grid-template-columns: 1fr 1.2fr; }
}

.split-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.split-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.split-tagline {
  margin-top: 18px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--sage-deep);
  text-align: center;
}

.split-image-collage {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}
.split-image-collage img:first-child { grid-row: 1 / span 2; }

.split-content .eyebrow { margin-bottom: 20px; display: block; }
.split-content h2 { margin-bottom: 24px; }
.split-content .lead { margin-bottom: 32px; }

.split-values {
  list-style: none;
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.split-values li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.split-values li:last-child { border-bottom: none; }

.split-values .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.1em;
  padding-top: 4px;
}

.split-values strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.split-values p { font-size: 14.5px; color: var(--mute); line-height: 1.55; }

/* ================================
   FOUNDERS STRIP
   ================================ */
.founders {
  background: var(--ink);
  color: var(--paper);
}

.founders .eyebrow { color: rgba(250, 247, 241, 0.6); }
.founders h2 { color: var(--paper); }
.founders h2 em { color: var(--bone); }
.founders .lead { color: rgba(250, 247, 241, 0.78); }

.founder-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 32px;
  color: var(--paper);
}

.founder-quote::before { content: '"'; color: var(--sage); margin-right: 4px; }
.founder-quote::after { content: '"'; color: var(--sage); margin-left: 2px; }

.founder-attribution {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 247, 241, 0.6);
}

/* ================================
   CARD GRID (generic)
   ================================ */
.card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) { .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 700px) { .card-grid.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 700px) { .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  transition: all .4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: 0 20px 40px -20px rgba(15,14,12,0.15);
}

.card-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--cream);
  display: grid; place-items: center;
  color: var(--sage-deep);
  margin-bottom: 4px;
}

.card-icon svg { width: 20px; height: 20px; }

.card h3 {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.card .card-cta {
  margin-top: 14px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--sage-deep);
}

.card p {
  font-size: 14.5px;
  color: var(--mute);
  line-height: 1.55;
}

.card.dark {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink-soft);
}
.card.dark h3 { color: var(--paper); }
.card.dark p { color: rgba(250, 247, 241, 0.7); }
.card.dark .card-icon { background: rgba(250, 247, 241, 0.08); color: var(--sage); }

a.card { text-decoration: none; color: inherit; }
.card-link {
  margin-top: auto;
  padding-top: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--sage-deep);
  transition: color .3s var(--ease);
}
a.card:hover .card-link { color: var(--ink); }

/* ================================
   PRODUCT CARDS
   ================================ */
.product-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all .4s var(--ease);
}
a.product-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: 0 20px 40px -20px rgba(15,14,12,0.15);
}

.product-image-placeholder {
  aspect-ratio: 4 / 3;
  background: var(--cream);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 20px;
}
.product-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .5s var(--ease);
}
a.product-card:hover .product-image-placeholder img { transform: scale(1.05); }
.product-placeholder-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  flex: 1;
}
.product-category {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
}
.product-card h4 {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.product-description {
  font-size: 14.5px;
  color: var(--mute);
  line-height: 1.55;
}
.product-link {
  margin-top: auto;
  padding-top: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--sage-deep);
  transition: color .3s var(--ease);
}
.product-link.muted { color: var(--mute); }
a.product-card:hover .product-link { color: var(--ink); }

/* ================================
   IMAGE GRID (renderings)
   ================================ */
.image-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .image-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 200px;
  }
  .image-grid .ig-1, .image-grid .ig-7,
  .image-grid .ig-11, .image-grid .ig-12 { grid-column: span 4; grid-row: span 2; }
  .image-grid .ig-2, .image-grid .ig-3,
  .image-grid .ig-8, .image-grid .ig-9 { grid-column: span 2; grid-row: span 1; }
  .image-grid .ig-4, .image-grid .ig-5, .image-grid .ig-6,
  .image-grid .ig-10, .image-grid .ig-13 { grid-column: span 2; grid-row: span 2; }
}

.image-grid > div {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 4/3;
}

@media (min-width: 720px) { .image-grid > div { aspect-ratio: auto; } }

.image-grid img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.image-grid > div:hover img { transform: scale(1.04); }

.image-grid .caption {
  position: absolute;
  bottom: 16px; left: 16px;
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}

/* ================================
   FORMS
   ================================ */
.form-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(28px, 5vw, 56px);
}

.form-block.dark {
  background: var(--ink);
  border-color: var(--ink-soft);
  color: var(--paper);
}

.form-block.dark h2 { color: var(--paper); }
.form-block.dark .lead { color: rgba(250, 247, 241, 0.75); }
.form-block.dark .field label { color: rgba(250, 247, 241, 0.7); }
.form-block.dark .field input,
.form-block.dark .field textarea,
.form-block.dark .field select { color: var(--paper); border-bottom-color: rgba(250,247,241,0.2); }
.form-block.dark .field input:focus,
.form-block.dark .field textarea:focus,
.form-block.dark .field select:focus { border-bottom-color: var(--sage); }
.form-block.dark select { background: var(--ink); }

.form-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  margin-top: 36px;
}

@media (min-width: 700px) { .form-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }

.field { display: flex; flex-direction: column; gap: 8px; }

.field.full { grid-column: 1 / -1; }

.field label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

.field input,
.field textarea,
.field select {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  font-family: var(--font-body);
  background: transparent;
  border-radius: 0;
  transition: border-color .3s var(--ease);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-bottom-color: var(--ink);
}

.field textarea { min-height: 96px; resize: vertical; }

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%236b655d' stroke-width='1.2' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.form-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-note {
  font-size: 12.5px;
  color: var(--mute);
  margin-left: auto;
}

.field input.invalid,
.field textarea.invalid,
.field select.invalid {
  border-bottom-color: #c0392b;
}

.form-error {
  width: 100%;
  margin: 12px 0 0;
  color: #c0392b;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
}

.form-success {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(28px, 5vw, 48px);
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin: 0 0 10px;
  color: var(--ink);
}
.form-success p {
  margin: 0;
  color: var(--mute);
  font-size: 15px;
  line-height: 1.6;
}

/* ================================
   CTA BAND
   ================================ */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  border-radius: 24px;
  padding: clamp(40px, 7vw, 84px);
  display: grid;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 880px) {
  .cta-band { grid-template-columns: 1.4fr 1fr; gap: 60px; }
}

/* Warm closing statement above the CTA buttons */
.cta-band .closing-note {
  width: 100%;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 1.9vw, 1.4rem);
  line-height: 1.5;
  color: rgba(250, 247, 241, 0.92);
  margin-bottom: 18px;
  position: relative;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(125, 144, 130, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.cta-band h2 {
  color: var(--paper);
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  position: relative;
}
.cta-band h2 em { color: var(--bone); font-style: italic; font-weight: 300; }

.cta-band p {
  color: rgba(250, 247, 241, 0.78);
  font-size: 1.05rem;
  max-width: 50ch;
  margin-top: 16px;
  position: relative;
}

.cta-band-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.cta-band-actions .btn { justify-content: space-between; }

/* ================================
   FASTING PAGE
   ================================ */
/* Fasting journey winding path */
.journey-map { display: none; margin-top: 64px; }
.journey-map svg { width: 100%; height: auto; display: block; }
.journey-map .jm-title {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  fill: var(--sage-deep);
}
.journey-map .jm-desc {
  font-size: 14px;
  fill: var(--mute);
}
.journey-steps {
  list-style: none;
  margin-top: 48px;
  border-left: 2px dashed var(--sage);
  padding-left: 24px;
  display: grid;
  gap: 28px;
}
.journey-steps li { position: relative; }
.journey-steps li::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sage-deep);
  border: 3px solid var(--paper);
}
.journey-steps h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-deep);
}
.journey-steps p { color: var(--mute); font-size: 14.5px; margin-top: 4px; }
@media (min-width: 760px) {
  .journey-map { display: block; }
  .journey-steps { display: none; }
}

/* Fasting book list */
.faq-list { display: grid; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary { cursor: pointer; list-style: none; padding: 22px 40px 22px 0; position: relative; font-family: "Fraunces", serif; font-size: 1.25rem; font-weight: 600; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-family: "JetBrains Mono", monospace; font-size: 1.2rem; color: var(--sage-deep); transition: transform 0.2s ease; }
.faq-item[open] summary::after { content: "–"; }
.faq-item summary:hover { color: var(--sage-deep); }
.faq-item p { color: var(--mute); font-size: 15.5px; line-height: 1.7; padding: 0 40px 24px 0; margin: 0; }
.faq-outro { margin-top: 40px; text-align: center; }
.faq-outro p { color: var(--mute); font-size: 16px; line-height: 1.7; max-width: 640px; margin: 0 auto; }
.faq-outro strong { color: var(--ink); }

/* Fasting journey signature */
.journey-signature {
  margin-top: 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--sage-deep);
}
.hero-signature {
  color: rgba(250, 247, 241, 0.92);
  max-width: 60ch;
  text-align: right;
  margin-top: -14px;
  font-size: 1.25rem;
}

/* Section head variant: top-aligned columns */
.section-head-top { align-items: start; }

/* Floating Skool button (fasting page) */
.skool-fab {
  position: fixed;
  right: 24px;
  top: 96px;
  z-index: 900;
  opacity: 0;
  transform: translateY(-16px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.skool-fab.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.skool-fab .btn {
  padding: 10px 18px;
  font-size: 13.5px;
  box-shadow: 0 8px 22px rgba(15, 14, 12, 0.24);
}
@media (max-width: 640px) {
  .skool-fab {
    right: 12px;
    top: 84px;
  }
  .skool-fab .btn {
    padding: 9px 14px;
    font-size: 12.5px;
  }
}

/* Fasting community note */
.community-note {
  margin-top: 22px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(250, 247, 241, 0.7);
}

.disclaimer {
  border: 1px solid var(--line);
  border-left: 3px solid var(--sage);
  background: rgba(125, 144, 130, 0.06);
  border-radius: 14px;
  padding: clamp(22px, 3vw, 34px);
}
.disclaimer .eyebrow { color: var(--sage-deep); display: block; margin-bottom: 12px; }
.disclaimer p { color: var(--charcoal); font-size: 15px; line-height: 1.65; max-width: 72ch; }
.disclaimer p + p { margin-top: 10px; }
.disclaimer strong { color: var(--ink); font-weight: 600; }

.timeline { margin-top: 8px; }
.timeline-item {
  position: relative;
  padding: 0 0 44px 32px;
  border-left: 1px solid var(--line);
}
.timeline-item:last-child { padding-bottom: 0; border-left-color: transparent; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -7px; top: 3px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--sage);
}
.timeline-item.current::before { background: var(--sage); box-shadow: 0 0 0 4px rgba(125, 144, 130, 0.18); }
.timeline-phase {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sage-deep); margin-bottom: 10px;
}
.timeline-item h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  letter-spacing: -0.01em; margin-bottom: 14px;
}
.timeline-item h3 em { font-style: italic; font-weight: 300; color: var(--sage-deep); }
.timeline-item p { color: var(--charcoal); line-height: 1.65; max-width: 62ch; }
.timeline-item p + p { margin-top: 12px; }
@media (min-width: 760px) { .timeline-item { padding-left: 44px; padding-bottom: 52px; } }

.myth-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 800px) { .myth-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
.myth-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(24px, 3vw, 32px);
}
.myth-card.full { grid-column: 1 / -1; }
.myth-label {
  display: block;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mute); margin-bottom: 10px;
}
.myth-card h3 { font-size: 1.15rem; line-height: 1.3; color: var(--ink); margin-bottom: 16px; }
.myth-card .reality { display: flex; gap: 12px; }
.myth-card .reality .reality-tag {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sage-deep); white-space: nowrap; padding-top: 3px;
}
.myth-card .reality p { color: var(--charcoal); line-height: 1.6; font-size: 15px; }
.myth-note { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--mute); font-style: italic; line-height: 1.6; }

.check-list { display: grid; gap: 18px; }
.check-item { display: flex; gap: 14px; align-items: flex-start; }
.check-item .check {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(125, 144, 130, 0.15); color: var(--sage-deep);
  display: grid; place-items: center; font-size: 12px; margin-top: 2px;
}
.check-item h4 { font-size: 1.02rem; margin-bottom: 4px; }
.check-item p { color: var(--charcoal); font-size: 14.5px; line-height: 1.6; }

.reading-list { margin-top: 8px; }
.reading-item { padding: 22px 0; border-top: 1px solid var(--line); }
.reading-item:last-child { border-bottom: 1px solid var(--line); }
.reading-item h4 { font-family: var(--font-display); font-weight: 400; font-size: 1.25rem; }
.reading-item h4 em { font-style: italic; color: var(--sage-deep); }
.reading-item .byline { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); margin: 6px 0 8px; }
.reading-item p { color: var(--charcoal); font-size: 14.5px; line-height: 1.6; max-width: 72ch; }

.log-meta {
  display: flex; flex-wrap: wrap; gap: 10px 14px; margin-bottom: 18px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sage-deep);
}
.log-meta span { color: var(--mute); }
.log-entry h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); letter-spacing: -0.015em; margin-bottom: 18px; }
.log-entry h3 em { font-style: italic; font-weight: 300; color: var(--sage-deep); }
.log-entry .split-content p { color: var(--charcoal); line-height: 1.7; }
.log-entry .split-content p + p { margin-top: 14px; }

/* ================================
   ABOUT & CONTACT PAGE
   ================================ */
.mission-statement {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.55;
  color: var(--sage-deep);
  text-align: center;
  max-width: 36ch;
  margin: clamp(40px, 6vw, 72px) auto;
}

.bio-grid {
  display: grid;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
@media (min-width: 760px) {
  .bio-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

.bio-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
}

.bio-photo-placeholder {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  background: linear-gradient(160deg, var(--bone) 0%, rgba(125, 144, 130, 0.28) 100%);
  margin-bottom: 22px;
}

.bio-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.bio-text {
  color: var(--charcoal);
  font-size: 15.5px;
  line-height: 1.7;
}

.bio-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 22px;
  display: block;
}

.bio-role {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 12px;
}

.bio-contacts {
  list-style: none;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 6px;
}
.bio-contacts a {
  font-size: 14px;
  color: var(--sage-deep);
  text-decoration: none;
}
.bio-contacts a:hover { text-decoration: underline; }

/* ================================
   FOOTER
   ================================ */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px var(--gutter) 32px;
}

.footer-inner { max-width: var(--container); margin: 0 auto; }

.footer-top {
  display: grid;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(250, 247, 241, 0.1);
}

@media (min-width: 880px) {
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

.footer-brand h3 {
  color: var(--paper);
  font-size: 1.8rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.footer-brand h3 em { color: var(--bone); font-style: italic; font-weight: 300; }

.footer-brand p {
  color: rgba(250, 247, 241, 0.65);
  max-width: 36ch;
  font-size: 14.5px;
  line-height: 1.6;
}

.footer-col h4 {
  color: rgba(250, 247, 241, 0.5);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.footer-col a {
  font-size: 14.5px;
  color: rgba(250, 247, 241, 0.8);
  transition: color .25s var(--ease);
}

.footer-col a:hover { color: var(--paper); }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(250, 247, 241, 0.5);
  text-transform: uppercase;
}

.social { display: flex; gap: 12px; }
.social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(250, 247, 241, 0.15);
  border-radius: 50%;
  display: grid; place-items: center;
  color: rgba(250, 247, 241, 0.7);
  transition: all .3s var(--ease);
}
.social a:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.social svg { width: 14px; height: 14px; }

/* ================================
   ANIMATIONS
   ================================ */
.fade-up,
.fade-in,
.stagger > * {
  opacity: 1;
  transform: none;
}
.stagger.in > *:nth-child(1) { transition-delay: 0s; }
.stagger.in > *:nth-child(2) { transition-delay: .08s; }
.stagger.in > *:nth-child(3) { transition-delay: .16s; }
.stagger.in > *:nth-child(4) { transition-delay: .24s; }
.stagger.in > *:nth-child(5) { transition-delay: .32s; }
.stagger.in > *:nth-child(6) { transition-delay: .4s; }
.stagger.in > *:nth-child(7) { transition-delay: .48s; }
.stagger.in > *:nth-child(8) { transition-delay: .56s; }

/* ================================
   MARQUEE
   ================================ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  background: var(--cream);
}

.marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee 50s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 64px;
}

.marquee-item::after {
  content: '✦';
  color: var(--sage);
  font-style: normal;
  font-size: 0.8em;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ================================
   STATS / NUMBERS
   ================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}

@media (min-width: 780px) { .stats { grid-template-columns: repeat(4, 1fr); } }

.stat {
  background: var(--paper);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.stat .num em { color: var(--sage-deep); font-style: italic; font-weight: 300; }

.stat .label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 4px;
}

/* ================================
   PROCESS / TIMELINE
   ================================ */
.process {
  display: grid;
  gap: 24px;
  counter-reset: step;
}

@media (min-width: 780px) { .process { grid-template-columns: repeat(4, 1fr); } }

.process-step {
  padding: 28px 0;
  border-top: 1px solid var(--ink);
  counter-increment: step;
}

.process-step::before {
  content: '0' counter(step);
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--mute);
  margin-bottom: 16px;
}

.process-step h4 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}

.process-step p { font-size: 14.5px; color: var(--mute); line-height: 1.55; }

/* ================================
   PAGE INDEX (alt nav)
   ================================ */
.page-index {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 60px;
}

.page-index a {
  color: var(--mute);
  transition: color .25s var(--ease);
}

.page-index a:hover { color: var(--ink); }

/* ================================
   UTILITY
   ================================ */
.bg-cream { background: var(--cream); }
.bg-ink { background: var(--ink); color: var(--paper); }
.bg-ink h2, .bg-ink h3 { color: var(--paper); }
.bg-ink .lead, .bg-ink p { color: rgba(250, 247, 241, 0.78); }
.bg-ink .lead-plate { color: rgba(15, 14, 12, 0.8); }
.bg-ink .eyebrow { color: rgba(250, 247, 241, 0.5); }

.text-center { text-align: center; }
.max-prose { max-width: 60ch; margin-inline: auto; }

.divider {
  height: 1px;
  background: var(--line);
  margin: 0;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  color: var(--charcoal);
  background: var(--paper);
}

/* Phone safe area */
@supports (padding: env(safe-area-inset-bottom)) {
  body { padding-bottom: env(safe-area-inset-bottom); }
}
