/* ===== ALULA — EDITORIAL ===== */

:root {
  --bone: #F2EDE3;
  --bone-deep: #E8DFCE;
  --paper: #FAF6EE;
  --cream: #F6EFE0;
  --ink: #1A3A3A;
  --ink-soft: #2D4A47;
  --ink-muted: #5A726F;
  --ink-faint: #9C8A7B;
  --terracotta: #A8584A;
  --terracotta-deep: #8A4438;
  --sand: #C9B79C;
  --rule: rgba(26, 58, 58, 0.14);
  --rule-soft: rgba(26, 58, 58, 0.07);

  --font-display: 'Newsreader', Georgia, serif;
  --font-body: 'Inter Tight', -apple-system, sans-serif;

  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --pad-lg: clamp(2rem, 8vw, 6rem);
  --max: 1440px;
  --col: 1180px;
  --col-narrow: 760px;
  --col-text: 620px;

  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bone);
  color: var(--ink);
  font-weight: 380;
  line-height: 1.5;
  letter-spacing: -0.003em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Paper grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.118 0 0 0 0 0.078 0 0 0 0 0.063 0 0 0 0.09 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ===== TYPE ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 320;
  line-height: 0.95;
  letter-spacing: -0.028em;
  color: var(--ink);
}
h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 260;
  color: var(--terracotta);
}

.label {
  display: inline-flex;
  align-items: baseline;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.label-rule::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: currentColor;
  transform: translateY(-3px);
  opacity: 0.5;
}
.label-light { color: rgba(242, 237, 227, 0.62); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
  z-index: 2;
}
.container-narrow { max-width: calc(var(--col) + var(--pad) * 2); }
.container-text { max-width: calc(var(--col-text) + var(--pad) * 2); }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease), padding 0.4s var(--ease);
}
.nav.over-light {
  background: rgba(242, 237, 227, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--rule-soft);
  padding: 1rem var(--pad);
}
.nav.over-dark { color: var(--bone); }
.nav.over-dark .logo-text { color: var(--bone); }
.nav.over-dark .nav-links a { color: rgba(242, 237, 227, 0.85); }
.nav.over-dark .nav-cta { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 380;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: color 0.4s var(--ease);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.3s var(--ease);
  position: relative;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a[aria-current="page"] { color: var(--terracotta); }
.nav-cta {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.7rem 1.25rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  transition: all 0.4s var(--ease);
}
.nav-cta:hover { background: var(--ink); color: var(--bone); }
.nav-toggle { display: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.1rem 1.85rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid currentColor;
  transition: all 0.5s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}
.btn-primary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-primary:hover { background: var(--ink); color: var(--bone); }
.btn-light { background: transparent; color: var(--bone); border-color: var(--bone); }
.btn-light:hover { background: var(--bone); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bone); }
.btn-ghost-light { background: transparent; color: var(--bone); border-color: var(--bone); }
.btn-ghost-light:hover { background: var(--bone); color: var(--ink); }
.btn-terracotta { background: transparent; color: var(--terracotta); border-color: var(--terracotta); }
.btn-terracotta:hover { background: var(--terracotta); color: var(--bone); }
.btn-link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--ink);
  display: inline-flex;
  gap: 0.5rem;
  transition: all 0.3s var(--ease);
}
.btn-link:hover { color: var(--terracotta); border-color: var(--terracotta); }
.arrow { transition: transform 0.4s var(--ease); display: inline-block; }
.btn:hover .arrow, .btn-link:hover .arrow { transform: translateX(5px); }

/* ============================================ */
/* HERO — FULL-BLEED VIDEO */
/* ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  width: 100%;
  overflow: hidden;
  background: #1a1410;
  margin-bottom: 0;
}
.hero-video, .hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-fallback { z-index: 0; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 58, 58, 0.45) 0%,
    rgba(26, 58, 58, 0.55) 50%,
    rgba(26, 58, 58, 0.75) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 8rem var(--pad) 4rem;
  color: var(--bone);
  max-width: var(--max);
  margin: 0 auto;
}
.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242, 237, 227, 0.72);
}
.hero-top strong {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: 1rem;
  color: var(--bone);
}
.hero-center {
  display: flex;
  align-items: center;
  padding: 4rem 0;
}
.hero-title {
  font-size: clamp(3rem, 9.4vw, 9.35rem);
  line-height: 0.86;
  font-weight: 280;
  letter-spacing: -0.045em;
  color: var(--bone);
  max-width: 14ch;
}
.hero-title-bold { font-weight: 480; font-style: normal; color: var(--bone); display: inline; }
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 5rem;
}
.hero-lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  line-height: 1.4;
  max-width: 32ch;
  color: rgba(242, 237, 227, 0.92);
  font-weight: 360;
  margin-bottom: 2.5rem;
}
.hero-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.hero-cta-stack .btn { min-width: 220px; }
.hero-scroll {
  position: absolute;
  bottom: 8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--bone);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.85;
  animation: scrollHint 2.4s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 36px;
  background: var(--bone);
  display: block;
  opacity: 0.7;
}
@keyframes scrollHint {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.85; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.5; }
}

/* ============================================ */
/* OPENER — editorial pull-quote spread */
/* ============================================ */
.opener {
  padding: var(--pad-lg) var(--pad);
  background: var(--bone);
}
.opener-inner {
  max-width: var(--col);
  margin: 0 auto;
  padding: 4rem 0;
  display: grid;
  grid-template-columns: 0.85fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.opener-meta {
  position: sticky;
  top: 8rem;
}
.opener-meta-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}
.opener-meta-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--terracotta);
  font-weight: 360;
  border-top: 1px solid var(--rule);
  padding-top: 1.5rem;
}
.opener-quote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.12;
  font-weight: 320;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.opener-quote em { font-style: italic; color: var(--terracotta); font-weight: 280; }
.opener-attribution {
  margin-top: 2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-muted);
  font-weight: 400;
}

/* ============================================ */
/* HANA STORY — long-form column break */
/* ============================================ */
.hana-story {
  padding: var(--pad-lg) var(--pad);
  background: var(--bone);
  border-top: 1px solid var(--rule);
}
.hana-grid {
  max-width: var(--col);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.hana-text {
  position: sticky;
  top: 8rem;
}
.hana-text h2 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 0.96;
  font-weight: 320;
  margin: 2rem 0 2rem;
  letter-spacing: -0.03em;
}
.hana-text p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  font-weight: 400;
  max-width: 36ch;
}
.hana-text p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 0.85;
  float: left;
  margin: 0.45rem 0.65rem 0 -0.15rem;
  font-weight: 320;
  color: var(--terracotta);
  font-style: italic;
}
.hana-images {
  display: grid;
  gap: 2rem;
}
.hana-image {
  position: relative;
  overflow: hidden;
}
.hana-image img {
  width: 100%;
  height: auto;
  filter: contrast(1.04) saturate(0.92);
}
.hana-image-1 { aspect-ratio: 3/4; }
.hana-image-2 { aspect-ratio: 4/3; margin-left: -3rem; }
.hana-caption {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ink-muted);
  letter-spacing: 0;
}
.hana-caption strong {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  margin-right: 0.75rem;
  display: inline-block;
}

/* ============================================ */
/* BOOKING — editorial spread */
/* ============================================ */
.booking {
  padding: var(--pad-lg) var(--pad);
  background: var(--bone-deep);
  border-top: 1px solid var(--rule);
}
.booking-head {
  max-width: var(--col);
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: end;
}
.booking-head h2 {
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  line-height: 0.94;
  font-weight: 320;
  letter-spacing: -0.03em;
}
.booking-head p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 42ch;
  font-weight: 400;
}
.booking-spread {
  max-width: var(--col);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--ink);
}
.booking-page {
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
}
.booking-page:first-child {
  padding-right: 4rem;
  border-right: 1px solid var(--rule);
}
.booking-page:last-child {
  padding-left: 4rem;
}
.booking-page-num {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
}
.booking-page-num span:first-child {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--terracotta);
  font-weight: 360;
}
.booking-page-num span:last-child {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.booking-page h3 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 0.95;
  font-weight: 280;
  margin-bottom: 1.5rem;
}
.booking-page h3 em { display: block; font-style: italic; color: var(--terracotta); font-weight: 240; }
.booking-page-lead {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 2.5rem;
  max-width: 36ch;
  font-weight: 400;
}
.booking-list {
  flex-grow: 1;
  margin-bottom: 2.5rem;
}
.booking-list li {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule-soft);
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1rem;
}
.booking-list li:last-child { border-bottom: none; }
.booking-list li::before {
  content: '—';
  color: var(--terracotta);
  font-family: var(--font-display);
}
.booking-list li > div { display: flex; flex-direction: column; gap: 0.4rem; }
.booking-list strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.booking-list span {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.booking-foot {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.booking-note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ink-muted);
  font-weight: 400;
}

/* ============================================ */
/* MATH — full-bleed numbers moment */
/* ============================================ */
.math-section {
  padding: var(--pad-lg) var(--pad);
  background: var(--ink);
  color: var(--bone);
  text-align: center;
}
.math-section .label {
  color: rgba(242, 237, 227, 0.5);
  margin-bottom: 3rem;
}
.math-section .label::before { background: rgba(242, 237, 227, 0.4); }
.math-headline { font-size: clamp(1.85rem, 3.5vw, 2.85rem); font-weight: 280; line-height: 1.15; max-width: 24ch; margin: 0 auto 4rem; color: var(--bone); letter-spacing: -0.02em; text-align: center; }
.math-headline em { color: var(--sand); font-style: italic; font-weight: 500; }
.math-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto 4rem;
}
.math-cell {
  text-align: center;
}
.math-cell-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(242, 237, 227, 0.5);
  margin-bottom: 1.25rem;
  display: block;
}
.math-cell-num {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.9;
  font-weight: 260;
  letter-spacing: -0.04em;
  color: var(--bone);
  display: block;
  margin-bottom: 1rem;
}
.math-cell-highlight .math-cell-num { color: var(--sand); font-style: italic; font-weight: 240; }
.math-cell-hi .math-cell-num { color: var(--sand); font-style: italic; font-weight: 240; }
.math-cell-caption {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(242, 237, 227, 0.6);
  font-weight: 400;
}
.math-cell-cap {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(242, 237, 227, 0.6);
  font-weight: 400;
}
.math-divider {
  width: 1px;
  height: 80px;
  background: rgba(242, 237, 227, 0.18);
}
.math-attribution {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(242, 237, 227, 0.55);
  font-weight: 400;
  max-width: 48ch;
  margin: 0 auto;
  line-height: 1.5;
}
.math-attr {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(242, 237, 227, 0.55);
  font-weight: 400;
  max-width: 48ch;
  margin: 0 auto;
  line-height: 1.5;
}

/* ============================================ */
.math-sec {
  padding: var(--pad-lg) var(--pad);
  background: var(--ink);
  color: var(--bone);
  text-align: center;
}
.math-sec .label {
  color: rgba(242, 237, 227, 0.5);
  margin-bottom: 3rem;
}
.math-sec .label::before { background: rgba(242, 237, 227, 0.4); }
.math-headline { font-size: clamp(1.85rem, 3.5vw, 2.85rem); font-weight: 280; line-height: 1.15; max-width: 24ch; margin: 0 auto 4rem; color: var(--bone); letter-spacing: -0.02em; text-align: center; }
.math-headline em { color: var(--sand); font-style: italic; font-weight: 500; }
.math-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto 4rem;
}
.math-cell {
  text-align: center;
}
.math-cell-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(242, 237, 227, 0.5);
  margin-bottom: 1.25rem;
  display: block;
}
.math-cell-num {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.9;
  font-weight: 260;
  letter-spacing: -0.04em;
  color: var(--bone);
  display: block;
  margin-bottom: 1rem;
}
.math-cell-highlight .math-cell-num { color: var(--sand); font-style: italic; font-weight: 240; }
.math-cell-hi .math-cell-num { color: var(--sand); font-style: italic; font-weight: 240; }
.math-cell-caption {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(242, 237, 227, 0.6);
  font-weight: 400;
}
.math-cell-cap {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(242, 237, 227, 0.6);
  font-weight: 400;
}
.math-divider {
  width: 1px;
  height: 80px;
  background: rgba(242, 237, 227, 0.18);
}
.math-attribution {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(242, 237, 227, 0.55);
  font-weight: 400;
  max-width: 48ch;
  margin: 0 auto;
  line-height: 1.5;
}
.math-attr {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(242, 237, 227, 0.55);
  font-weight: 400;
  max-width: 48ch;
  margin: 0 auto;
  line-height: 1.5;
}

/* ============================================ */

/* PERKS — typographic list */
/* ============================================ */
.perks-section {
  padding: var(--pad-lg) var(--pad);
  background: var(--bone);
  border-top: 1px solid var(--rule);
}
.perks-head {
  max-width: var(--col);
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 4rem;
  align-items: start;
}
.perks-head-meta { position: sticky; top: 8rem; }
.perks-head h2 {
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  line-height: 0.95;
  font-weight: 320;
}
.perks-head h2 em { font-style: italic; color: var(--terracotta); font-weight: 280; }
.perks-list {
  max-width: var(--col);
  margin: 0 auto;
  border-top: 1px solid var(--ink);
}
.perks-item { display: grid; grid-template-columns: 60px 1fr 280px;
  align-items: center;
  padding: 2.25rem 2.5rem 2.25rem 1.75rem;
  border-bottom: 1px solid var(--rule);
  gap: 2rem;
}
.perks-icon { display: flex; align-items: center; justify-content: flex-start; color: var(--ink); }
.perks-icon svg { width: 28px; height: 28px; flex-shrink: 0; }
.perks-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--terracotta);
  font-weight: 360;
}
.perks-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  line-height: 1.15;
  font-weight: 320;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.perks-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-muted);
}
.perks-note {
  text-align: center;
  margin-top: 3rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-muted);
}

/* ============================================ */
/* BREAKOUT IMAGE — full-bleed atmosphere */
/* ============================================ */
.breakout {
  position: relative;
  height: 80vh;
  min-height: 540px;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.breakout img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.92);
}
.breakout-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.2) 100%);
}
.breakout-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.breakout-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.8rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.3;
  color: #000;
  max-width: 38ch;
  letter-spacing: -0.018em;
}
.breakout-quote em { font-style: italic; color: #000; font-weight: 500; }
.breakout-caption {
  position: absolute;
  bottom: 2rem;
  right: var(--pad);
  z-index: 2;
  color: var(--bone);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ============================================ */
/* TESTIMONIALS — magazine spread */
/* ============================================ */
.testimonials {
  padding: var(--pad-lg) var(--pad);
  background: var(--cream);
}
.testimonials-head {
  max-width: var(--col);
  margin: 0 auto 5rem;
  text-align: center;
}
.testimonials-head h2 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 320;
  line-height: 0.95;
}
.testimonials-head h2 em { font-style: italic; color: var(--terracotta); font-weight: 280; }
.testimonials-spread {
  max-width: var(--col);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}
.testimonial {
  position: relative;
}
.testimonial:first-child {
  padding-right: 2rem;
}
.testimonial:last-child {
  padding-left: 2rem;
  padding-top: 4rem;
  border-left: 1px solid var(--rule);
}
.testimonial-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 4rem;
  line-height: 0.5;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
  opacity: 0.7;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.5;
  font-weight: 380;
  color: var(--ink);
  font-style: italic;
  letter-spacing: -0.012em;
  margin-bottom: 2.5rem;
}
.testimonial-attribution {
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}
.testimonial-name {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  display: block;
  margin-bottom: 0.4rem;
}
.testimonial-meta {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-muted);
  font-weight: 400;
}

/* ============================================ */
/* FOUNDER SPREAD */
/* ============================================ */
.founder {
  padding: var(--pad-lg) var(--pad);
  background: var(--bone);
  border-top: 1px solid var(--rule);
}
.founder-grid-text-only { grid-template-columns: 1fr; max-width: 760px; }
.founder-grid-text-only .founder-text { padding-top: 0; }
.founder-grid {
  max-width: var(--col);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: start;
}
.founder-portrait {
  position: relative;
}
.founder-portrait img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.88);
}
.founder-portrait-caption {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ink-muted);
  display: flex;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--rule);
}
.founder-portrait-caption strong {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}
.founder-text { padding-top: 4rem; }
.founder-text h2 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 0.95;
  font-weight: 320;
  margin: 1.5rem 0 2.5rem;
  letter-spacing: -0.03em;
}
.founder-text h2 em { font-style: italic; color: var(--terracotta); font-weight: 280; }
.founder-text p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  font-weight: 400;
  max-width: 44ch;
}
.founder-text p em { color: var(--ink); font-style: italic; }
.founder-sig {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.founder-sig-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink);
  font-weight: 400;
}
.founder-sig-role {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}

/* ============================================ */
/* THRIVER SECTION — quiet, dignified */
/* ============================================ */
.thriver {
  padding: var(--pad-lg) var(--pad);
  background: var(--ink);
  color: var(--bone);
}
.thriver-inner {
  max-width: var(--col-narrow);
  margin: 0 auto;
  text-align: center;
}
.thriver .label { color: rgba(242, 237, 227, 0.5); margin-bottom: 2.5rem; justify-content: center; }
.thriver .label::before { background: rgba(242, 237, 227, 0.4); }
.thriver h2 {
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  line-height: 0.95;
  font-weight: 280;
  color: var(--bone);
  margin-bottom: 2.5rem;
  letter-spacing: -0.03em;
}
.thriver h2 em { color: var(--sand); font-style: italic; font-weight: 240; }
.thriver-lead {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.55;
  color: rgba(242, 237, 227, 0.85);
  font-style: italic;
  margin-bottom: 2rem;
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}
.thriver-honest {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: rgba(242, 237, 227, 0.55);
  padding: 1rem 2rem;
  border-top: 1px solid rgba(242, 237, 227, 0.15);
  border-bottom: 1px solid rgba(242, 237, 227, 0.15);
  display: inline-block;
  margin-bottom: 3rem;
}
.thriver-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================ */
/* FINAL CTA — minimal */
/* ============================================ */
.final {
  padding: var(--pad-lg) var(--pad);
  background: var(--bone);
  border-top: 1px solid var(--rule);
  text-align: center;
}
.final-inner {
  max-width: var(--col-narrow);
  margin: 0 auto;
}
.final-line {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1;
  font-weight: 280;
  color: var(--ink);
  margin-bottom: 3rem;
  letter-spacing: -0.035em;
}
.final-line em { font-style: italic; color: var(--terracotta); font-weight: 240; }
.final-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 0.5rem 0;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.final-link:hover { color: var(--terracotta); border-color: var(--terracotta); }
.final-or {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-muted);
  margin: 2rem 0 1rem;
  font-weight: 400;
}

/* ============================================ */
/* FOOTER */
/* ============================================ */
.footer {
  padding: 5rem var(--pad) 2rem;
  background: var(--ink);
  color: var(--bone);
}
.footer-grid {
  max-width: var(--col);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(242, 237, 227, 0.1);
}
.footer-brand .logo-text { color: var(--bone); font-size: 1.85rem; }
.footer-brand p {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  max-width: 26ch;
  color: rgba(242, 237, 227, 0.6);
  line-height: 1.45;
  font-weight: 400;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.5rem;
}
.footer-col a {
  display: block;
  padding: 0.4rem 0;
  font-size: 0.92rem;
  color: rgba(242, 237, 227, 0.78);
  font-weight: 380;
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--terracotta); }
.footer-bottom {
  max-width: var(--col);
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(242, 237, 227, 0.4);
  letter-spacing: 0.04em;
}

/* ===== ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
  .hero-top, .hero-title, .hero-bottom {
    animation: hero-in 1.2s var(--ease-out) backwards;
  }
  .hero-title { animation-delay: 0.15s; }
  .hero-bottom { animation-delay: 0.3s; }
  @keyframes hero-in {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
  }
  .reveal.in-view { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  /* MOBILE NAV — hamburger menu overlay */
  .nav {
    position: fixed;
    z-index: 1000;
  }
  .nav-toggle {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    padding: 0.6rem;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    position: relative;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
    border-radius: 1px;
  }
  .nav.over-dark .nav-toggle span { background: var(--bone); }

  .nav-cta {
    display: none !important;
  }

  /* Nav links: hidden by default on mobile, shown as fullscreen overlay when .nav-open */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: var(--ink);
    z-index: 1001;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    margin: 0;
    padding: 0;
  }
  .nav-links a {
    color: var(--bone) !important;
    font-family: var(--font-display) !important;
    font-size: 1.75rem !important;
    font-style: italic !important;
    font-weight: 320 !important;
    letter-spacing: -0.02em !important;
    text-transform: none !important;
    padding: 0.5rem 1rem;
  }
  .nav-links a:hover {
    color: var(--terracotta) !important;
  }

  /* OPEN STATE */
  .nav.nav-open .nav-links {
    visibility: visible;
    opacity: 1;
  }
  .nav.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--bone) !important;
  }
  .nav.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--bone) !important;
  }

  .opener-inner, .hana-grid, .booking-head, .booking-spread, .perks-head, .testimonials-spread, .founder-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .opener-meta, .hana-text, .perks-head-meta { position: static; }
  .booking-page:first-child { padding-right: 0; padding-bottom: 3rem; border-right: none; border-bottom: 1px solid var(--rule); }
  .booking-page:last-child { padding-left: 0; padding-top: 3rem; }
  .testimonial:first-child { padding-right: 0; }
  .testimonial:last-child { padding-left: 0; padding-top: 0; border-left: none; padding-top: 3rem; border-top: 1px solid var(--rule); }
  .hana-image-2 { margin-left: 0; }
  .math-row { grid-template-columns: 1fr; gap: 3rem; }
  .math-divider { display: none; }
  .perks-item { grid-template-columns: 36px 1fr; gap: 1rem; }
  .perks-desc { grid-column: 1 / -1; padding-left: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .founder-text { padding-top: 0; }
}

@media (max-width: 720px) {
    .hero { min-height: 600px; }
  .hero-content { padding: 6rem var(--pad) 3rem; justify-content: space-between; }
  .hero-note { display: none; }
  .hero-scroll { bottom: 1rem; }
  .hero-title { font-size: 3.4rem; line-height: 0.9; }
  .hero-cta-stack .btn { min-width: 0; }
  .opener-inner, .hana-grid { padding: 2rem 0; gap: 3rem; }
  .booking-list li { grid-template-columns: 1.5rem 1fr; }
  .breakout { height: 70vh; min-height: 420px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================ */
/* ABOUT PAGE                                   */
/* ============================================ */

.about-hero { padding: 7rem var(--pad) var(--pad-lg); background: var(--bone); border-bottom: 1px solid var(--rule); }
.about-hero-inner {
  max-width: var(--col);
  margin: 0 auto;
}
.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.94;
  font-weight: 300;
  letter-spacing: -0.035em;
  margin: 2rem 0 3rem;
  color: var(--ink);
}
.about-hero-title em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 260;
}
.about-hero-lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 56ch;
  font-weight: 380;
}
.about-hero-lead em {
  color: var(--ink);
  font-style: italic;
}

.about-section {
  padding: var(--pad-lg) var(--pad);
  background: var(--bone);
  border-top: 1px solid var(--rule);
}
.about-grid {
  max-width: var(--col);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.7fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.about-meta {
  position: sticky;
  top: 8rem;
}
.about-meta-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.about-meta-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--terracotta);
  font-weight: 360;
  border-top: 1px solid var(--rule);
  padding-top: 1.5rem;
}
.about-prose h2 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 0.96;
  font-weight: 320;
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
}
.about-prose p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  font-weight: 400;
  max-width: 44ch;
}
.about-prose p em {
  color: var(--ink);
  font-style: italic;
}
.about-prose p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 0.85;
  float: left;
  margin: 0.45rem 0.65rem 0 -0.1rem;
  font-weight: 320;
  color: var(--terracotta);
  font-style: italic;
}

/* PULL QUOTE — between sections */
.about-pullquote {
  padding: var(--pad-lg) var(--pad);
  background: var(--cream);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.about-pullquote-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.about-pullquote-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 320;
  letter-spacing: -0.018em;
  margin-bottom: 0.6rem;
}
.about-pullquote-text:last-child { margin-bottom: 0; }
.about-pullquote-text em {
  color: var(--terracotta);
  font-style: italic;
}

/* IMAGE BREAKOUT */
.about-image-breakout {
  background: var(--bone);
}
.about-image-breakout figure {
  margin: 0;
  position: relative;
}
.about-image-breakout img {
  width: 100%;
  max-height: 85vh;
  object-fit: cover;
  display: block;
  filter: contrast(1.03) saturate(0.95);
}
.about-image-cap {
  max-width: var(--col);
  margin: 0.85rem auto 0;
  padding: 0 var(--pad);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ink-muted);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.about-image-cap strong {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}

/* PILLARS — four-up editorial */
.about-pillars {
  max-width: var(--col);
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
  padding: 0;
}
.about-pillar {
  padding: 2.5rem 1.75rem 2.5rem 0;
  border-right: 1px solid var(--rule);
}
.about-pillar:last-child {
  border-right: none;
  padding-right: 0;
}
.about-pillar:not(:first-child) {
  padding-left: 1.75rem;
}
.about-pillar-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--terracotta);
  font-weight: 360;
  display: block;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.about-pillar h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  line-height: 1;
  font-weight: 320;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.about-pillar p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
}

/* PHILOSOPHY — dark moment */
.about-philosophy {
  padding: var(--pad-lg) var(--pad);
  background: var(--ink);
  color: var(--bone);
  text-align: center;
  border-top: 1px solid var(--rule);
}
.about-philosophy-inner {
  max-width: 820px;
  margin: 0 auto;
}
.about-philosophy .label {
  color: rgba(242, 237, 227, 0.5);
  margin-bottom: 3rem;
  justify-content: center;
}
.about-philosophy .label::before {
  background: rgba(242, 237, 227, 0.4);
}
.about-philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-style: italic;
  font-weight: 260;
  line-height: 1.05;
  color: var(--bone);
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
}
.about-philosophy-quote em {
  color: var(--sand);
  font-style: italic;
}
.about-philosophy-cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242, 237, 227, 0.5);
  display: block;
  margin-bottom: 3rem;
  font-weight: 500;
}
.about-philosophy-body {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(242, 237, 227, 0.82);
  margin-bottom: 1.25rem;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

/* METAPHOR — alula feather, on cream */
.about-metaphor {
  padding: var(--pad-lg) var(--pad);
  background: var(--cream);
  border-top: 1px solid var(--rule);
  text-align: center;
}
.about-metaphor-inner {
  max-width: 820px;
  margin: 0 auto;
}
.about-metaphor .label {
  justify-content: center;
  margin-bottom: 3rem;
}
.about-metaphor-quote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.85rem);
  font-style: italic;
  font-weight: 320;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}
.about-metaphor-quote em {
  color: var(--terracotta);
}
.about-metaphor-body {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  font-weight: 400;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-meta { position: static; }
  .about-pillars { grid-template-columns: 1fr 1fr; }
  .about-pillar:nth-child(odd) { border-right: 1px solid var(--rule); padding-right: 1.5rem; }
  .about-pillar:nth-child(even) { padding-left: 1.5rem; border-right: none; }
  .about-pillar:nth-child(1), .about-pillar:nth-child(2) { border-bottom: 1px solid var(--rule); padding-bottom: 2rem; }
  .about-pillar:nth-child(3), .about-pillar:nth-child(4) { padding-top: 2rem; }
}
@media (max-width: 720px) {
  .about-hero { padding: 7rem var(--pad) var(--pad-lg); background: var(--bone); border-bottom: 1px solid var(--rule); }
  .about-pillars { grid-template-columns: 1fr; }
  .about-pillar { border-right: none !important; border-bottom: 1px solid var(--rule); padding: 2rem 0 !important; }
  .about-pillar:last-child { border-bottom: none; }
}

/* ============================================ */
/* PAGE COMPONENTS — FAQ, DUAL LIST, NOTIFY     */
/* ============================================ */

/* FAQ */
.faq-sec {
  padding: var(--pad-lg) var(--pad);
  background: var(--bone);
  border-top: 1px solid var(--rule);
}
.faq-head {
  max-width: var(--col);
  margin: 0 auto 3rem;
  text-align: center;
}
.faq-head .label {
  justify-content: center;
  margin-bottom: 1.5rem;
}
.faq-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 0.96;
  font-weight: 320;
  letter-spacing: -0.03em;
}
.faq-head h2 em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 280;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--ink);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-item summary {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
  font-weight: 400;
  line-height: 1.35;
  padding: 1.75rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  color: var(--ink);
  letter-spacing: -0.015em;
  transition: color 0.3s var(--ease);
}
.faq-item summary:hover { color: var(--terracotta); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--terracotta);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
  line-height: 1;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-body {
  padding: 0 3rem 2rem 0;
}
.faq-body p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  font-weight: 400;
  max-width: 60ch;
}
.faq-body p em {
  font-style: italic;
  color: var(--ink);
}
.faq-body p strong {
  font-weight: 500;
  color: var(--ink);
}
.faq-body a {
  color: var(--terracotta);
  border-bottom: 1px solid currentColor;
}

/* DUAL LIST — "what it is / what it isn't" */
.dual-list-sec {
  padding: var(--pad-lg) var(--pad);
  background: var(--cream);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.dual-list-inner {
  max-width: var(--col);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.dual-list-head {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 320;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--ink);
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.dual-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.85rem;
  font-weight: 360;
  line-height: 1;
}
.dual-list-yes .dual-mark {
  color: var(--terracotta);
}
.dual-list-no .dual-mark {
  color: var(--ink-muted);
}
.dual-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dual-list li {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.5;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--rule-soft);
  color: var(--ink-soft);
  font-weight: 400;
}
.dual-list li:last-child {
  border-bottom: none;
}

/* THRIVERS HERO TINT — slightly more contemplative */
.thrivers-hero {
  background: var(--bone-deep);
}

/* NOTIFY SECTION */
.notify-sec {
  padding: var(--pad-lg) var(--pad);
  background: var(--ink);
  color: var(--bone);
  text-align: center;
  border-top: 1px solid var(--rule);
}
.notify-inner {
  max-width: 660px;
  margin: 0 auto;
}
.notify-sec .label {
  color: rgba(242, 237, 227, 0.5);
  justify-content: center;
  margin-bottom: 2rem;
}
.notify-sec .label::before {
  background: rgba(242, 237, 227, 0.4);
}
.notify-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 280;
  color: var(--bone);
  margin-bottom: 2rem;
  letter-spacing: -0.035em;
}
.notify-headline em {
  font-style: italic;
  color: var(--sand);
  font-weight: 240;
}
.notify-honest {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.55;
  color: rgba(242, 237, 227, 0.7);
  margin-bottom: 2.5rem;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

/* OUTLINE BUTTON (for dark backgrounds) */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid var(--bone);
  color: var(--bone);
  background: transparent;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--bone);
  color: var(--ink);
}

/* PULL QUOTE ATTRIBUTION */
.pullquote-attribution {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin-top: 2rem;
  display: block;
}

/* PAGE-LEVEL CTAs CONSISTENCY */
.final-sec {
  padding: var(--pad-lg) var(--pad);
  background: var(--bone);
  border-top: 1px solid var(--rule);
  text-align: center;
}
.final-line {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 4.75rem);
  line-height: 1;
  font-weight: 280;
  color: var(--ink);
  margin-bottom: 2.5rem;
  letter-spacing: -0.035em;
}
.final-line em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 240;
}
.final-link {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 0.5rem 0;
  transition: all 0.3s var(--ease);
}
.final-link:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
}
.final-or {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-muted);
  margin: 1.5rem 0 0.85rem;
  font-weight: 400;
}

@media (max-width: 760px) {
  .dual-list-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-item summary { font-size: 1.1rem; }
}


/* ============================================ */
/* SIGNUP FORMS — Beehiiv-ready                 */
/* ============================================ */

.notify-form {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: 540px;
  margin: 0 auto;
}
.notify-input {
  flex: 1 1 240px;
  min-width: 240px;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  background: transparent;
  color: var(--bone);
  border: 1.5px solid rgba(242, 237, 227, 0.4);
  transition: border-color 0.3s var(--ease);
}
.notify-input::placeholder {
  color: rgba(242, 237, 227, 0.5);
  font-style: italic;
  font-family: var(--font-display);
}
.notify-input:focus {
  outline: none;
  border-color: var(--bone);
}
.notify-form .btn-outline {
  padding: 1rem 1.5rem;
  white-space: nowrap;
}
.notify-fine {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(242, 237, 227, 0.5);
}

/* GENERAL UPDATES FOOTER STRIP — every page */
.updates-strip {
  padding: 3.5rem var(--pad);
  background: var(--ink);
  color: var(--bone);
  border-top: 1px solid rgba(242, 237, 227, 0.1);
}
.updates-strip-inner {
  max-width: var(--col);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: center;
}
.updates-strip-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 320;
  color: var(--bone);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.updates-strip-text h3 em {
  font-style: italic;
  color: var(--sand);
  font-weight: 280;
}
.updates-strip-text p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(242, 237, 227, 0.65);
  line-height: 1.45;
  max-width: 38ch;
  font-weight: 400;
}
.updates-form {
  display: flex;
  gap: 0.7rem;
  align-items: stretch;
  flex-wrap: wrap;
}
.updates-input {
  flex: 1 1 220px;
  min-width: 200px;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: transparent;
  color: var(--bone);
  border: 1.5px solid rgba(242, 237, 227, 0.4);
  transition: border-color 0.3s var(--ease);
}
.updates-input::placeholder {
  color: rgba(242, 237, 227, 0.5);
  font-style: italic;
  font-family: var(--font-display);
}
.updates-input:focus {
  outline: none;
  border-color: var(--bone);
}
.updates-submit {
  padding: 0.85rem 1.4rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid var(--bone);
  color: var(--bone);
  background: transparent;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.updates-submit:hover {
  background: var(--bone);
  color: var(--ink);
}

@media (max-width: 720px) {
  .updates-strip-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .notify-form { flex-direction: column; }
  .notify-form .btn-outline { width: 100%; justify-content: center; }
}


/* ============================================ */
/* NAV LOGO with 501(c)(3) subtitle              */
/* ============================================ */
.logo-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 0.15rem;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.65;
  line-height: 1;
  margin-top: 0.1rem;
}
/* When nav is over-dark (white nav on dark hero), keep the subtitle visible */
.nav.over-dark .logo-sub { color: rgba(242, 237, 227, 0.7); }
.nav.over-light .logo-sub { color: var(--ink-muted); }

@media (max-width: 720px) {
  .logo-sub { display: none; }
}


/* ============================================ */
/* BEEHIIV EMBED — fits inside updates-strip     */
/* ============================================ */
.updates-beehiiv {
  width: 100%;
  max-width: 540px;
}
.updates-beehiiv iframe,
.updates-beehiiv form,
.updates-beehiiv > div {
  width: 100% !important;
  max-width: 100% !important;
  background: transparent !important;
}


/* ============================================ */
/* BEEHIIV — Thriver Notify form, notify-sec     */
/* ============================================ */
.notify-beehiiv {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}
.notify-beehiiv iframe,
.notify-beehiiv form,
.notify-beehiiv > div {
  width: 100% !important;
  max-width: 100% !important;
  background: transparent !important;
}


/* ============================================ */
/* NAV BUTTON GROUP — Quick Book + Plan a Trip   */
/* ============================================ */
.nav-cta-group {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.nav-cta-secondary {
  background: transparent !important;
  color: var(--ink) !important;
}
.nav.over-dark .nav-cta-secondary {
  color: var(--bone) !important;
  border-color: rgba(242, 237, 227, 0.5) !important;
}
.nav-cta-secondary:hover {
  background: var(--ink) !important;
  color: var(--bone) !important;
}
.nav.over-dark .nav-cta-secondary:hover {
  background: var(--bone) !important;
  color: var(--ink) !important;
}

/* On mobile, hide the whole nav-cta-group — buttons live in the hamburger menu */
@media (max-width: 1024px) {
  .nav-cta-group { display: none !important; }
}
