/* ═══════════════════════════════════════════════════════
   LAPTOP & LATTE — Website Styles
   ═══════════════════════════════════════════════════════ */

/* ─── VARIABLES ─────────────────────────────────────── */
:root {
  --brown:        #5C2F0F;
  --brown-light:  #7A4020;
  --brown-pale:   #C4916D;
  --cream:        #F4EFE9;
  --cream-dark:   #E6DDD3;
  --bg:           #FDFAF7;
  --black:        #1C1C1C;
  --gray-dark:    #3A3A3A;
  --gray:         #6B6B6B;
  --gray-light:   #D0C9C1;
  --white:        #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --nav-h: 72px;
  --max-w: 1200px;
}

/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-sans); background: var(--bg); color: var(--black); line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── CONTAINER ─────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 16px;
}
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--black);
}
h1 { font-size: clamp(40px, 5vw, 68px); }
h2 { font-size: clamp(30px, 3.5vw, 52px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); }
h4 { font-size: 21px; }
p {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--gray-dark);
  line-height: 1.8;
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary   { background: var(--brown); color: var(--white); }
.btn-primary:hover { background: var(--brown-light); }
.btn-outline   { border: 1.5px solid var(--brown); color: var(--brown); }
.btn-outline:hover { background: var(--brown); color: var(--white); }
.btn-white     { background: var(--white); color: var(--brown); }
.btn-white:hover { background: var(--cream); }
.btn-outline-white { border: 1.5px solid rgba(255,255,255,0.55); color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ─── NAVIGATION ─────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--bg);
  border-bottom: 1px solid var(--gray-light);
  height: var(--nav-h);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.nav__logo span { color: var(--black); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-dark);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--brown);
  transition: width 0.25s ease;
}
.nav__links a:hover,
.nav__links a.active { color: var(--brown); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__socials {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__socials a {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 5px 11px;
  border: 1px solid var(--gray-light);
  border-radius: 2px;
  transition: all 0.2s;
}
.nav__socials a:hover { color: var(--brown); border-color: var(--brown); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--black);
  transition: all 0.3s;
}
.nav__mobile { display: none; }

/* ─── HERO (HOME) ────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
  overflow: hidden;
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px 80px 48px;
  max-width: 620px;
  margin-left: auto;
}
.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 600;
  line-height: 1.12;
  color: var(--black);
  margin-bottom: 8px;
}
.hero__headline em { font-style: italic; color: var(--brown); }
.hero__period {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
  margin-bottom: 28px;
}
.hero__sub {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 440px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__image { position: relative; overflow: hidden; }
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ─── PAGE HERO ──────────────────────────────────────── */
.page-hero {
  background: var(--cream);
  padding: 80px 40px;
  border-bottom: 1px solid var(--cream-dark);
}
.page-hero__inner { max-width: var(--max-w); margin: 0 auto; }
.page-hero h1 { margin-top: 12px; margin-bottom: 20px; }
.page-hero p { font-size: 19px; max-width: 600px; }

/* ─── SECTION BASE ───────────────────────────────────── */
.section { padding: 96px 40px; }
.section.alt  { background: var(--cream); }
.section.dark { background: var(--black); }
.section.brown-bg { background: var(--brown); }

.section__header { margin-bottom: 56px; }
.section__header h2 { margin-top: 12px; margin-bottom: 20px; }
.section__header p { font-size: 18px; max-width: 560px; }

.section__inner { max-width: var(--max-w); margin: 0 auto; }

/* ─── ABOUT STRIP ────────────────────────────────────── */
.about-strip {
  background: var(--black);
  padding: 72px 40px;
}
.about-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-strip blockquote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 34px);
  font-style: italic;
  line-height: 1.4;
  color: var(--white);
}
.about-strip blockquote em { color: var(--brown-pale); font-style: normal; }
.about-strip__text p {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  margin-bottom: 28px;
}
.about-strip__text a {
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(244,239,233,0.5);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.about-strip__text a:hover { border-color: var(--cream); }

/* ─── PLATFORMS / LISTEN ─────────────────────────────── */
.platforms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.platform-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-top: 3px solid var(--brown);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.platform-card:hover {
  box-shadow: 0 10px 40px rgba(92,47,15,0.09);
  transform: translateY(-2px);
}
.platform-card__label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown);
}
.platform-card h3 { font-size: 26px; margin-top: 4px; }
.platform-card p { font-size: 15px; color: var(--gray); flex-grow: 1; }
.platform-card__link {
  margin-top: 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.platform-card__link:hover { gap: 14px; }
.platform-card__link::after { content: '→'; }

/* ─── PILLARS ────────────────────────────────────────── */
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-light);
  border: 1px solid var(--gray-light);
}
.pillar {
  background: var(--bg);
  padding: 40px 28px;
  position: relative;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brown);
}
.pillar__num {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 14px;
}
.pillar h4 { font-size: 19px; margin-bottom: 10px; }
.pillar p { font-size: 14px; color: var(--gray); line-height: 1.65; }
.pillar__sig {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--brown);
  margin-top: 16px;
  line-height: 1.5;
}

/* ─── GUEST CTA STRIP ────────────────────────────────── */
.guest-strip { background: var(--brown); padding: 80px 40px; }
.guest-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.guest-strip h2 { color: var(--white); }
.guest-strip p {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  margin-top: 12px;
  max-width: 560px;
}

/* ─── HOSTS ──────────────────────────────────────────── */
.hosts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.host-card { display: flex; flex-direction: column; }
.host-card__img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 28px;
}
.host-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.host-card__role {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 8px;
}
.host-card h3 { font-size: 30px; margin-bottom: 14px; }
.host-card p { font-size: 16px; }

/* ─── MANIFESTO ──────────────────────────────────────── */
.manifesto { background: var(--black); padding: 96px 40px; }
.manifesto__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.manifesto .eyebrow { color: var(--brown-pale); }
.manifesto p {
  font-family: var(--font-serif);
  font-size: clamp(19px, 2.2vw, 26px);
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 18px;
}
.manifesto p strong { color: var(--white); }
.manifesto p.accent { color: var(--brown-pale); font-style: italic; }
.manifesto__sig {
  margin-top: 48px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--white);
}

/* ─── BRAND POSITION GRID ────────────────────────────── */
.position-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gray-light);
  margin-top: 16px;
}
.position-cell {
  background: var(--bg);
  padding: 32px 28px;
}
.position-cell.dark-cell { background: var(--black); }
.position-cell h4 { font-size: 18px; margin-bottom: 12px; }
.position-cell.dark-cell h4 { color: var(--white); }
.position-cell ul { display: flex; flex-direction: column; gap: 8px; }
.position-cell ul li {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--gray-dark);
  padding-left: 16px;
  position: relative;
}
.position-cell ul li::before { content: '—'; position: absolute; left: 0; color: var(--brown); }
.position-cell.dark-cell ul li { color: rgba(255,255,255,0.7); }
.position-cell.dark-cell ul li::before { color: var(--brown-pale); }

/* ─── GUEST TYPES ────────────────────────────────────── */
.guest-types__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.guest-type {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-left: 4px solid var(--brown);
  padding: 36px 32px;
  transition: box-shadow 0.2s;
}
.guest-type:hover { box-shadow: 0 6px 28px rgba(92,47,15,0.07); }
.guest-type__tag {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 12px;
}
.guest-type h3 { font-size: 24px; margin-bottom: 12px; }
.guest-type p { font-size: 15px; margin-bottom: 14px; line-height: 1.7; }
.guest-type__best {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--gray);
}
.guest-type__best strong { color: var(--brown-light); }

/* ─── JOURNEY / STEPS ────────────────────────────────── */
.journey__steps { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--cream-dark);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step__num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
  padding-top: 2px;
  opacity: 0.85;
}
.step h4 { font-size: 21px; margin-bottom: 8px; }
.step p { font-size: 16px; color: var(--gray-dark); }

/* ─── STORY CATEGORIES ───────────────────────────────── */
.stories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.story-box {
  background: var(--cream);
  border-top: 3px solid var(--brown);
  padding: 32px 28px;
}
.story-box h4 { font-size: 20px; margin-bottom: 12px; }
.story-box p { font-size: 15px; color: var(--gray); line-height: 1.7; }

/* ─── QUALIFIERS (what we look for) ─────────────────── */
.qualifiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.qualifier {
  padding: 28px 24px;
  border: 1px solid var(--cream-dark);
  background: var(--white);
}
.qualifier__icon {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--brown);
  margin-bottom: 12px;
  opacity: 0.7;
}
.qualifier h4 { font-size: 18px; margin-bottom: 8px; }
.qualifier p { font-size: 14px; color: var(--gray); }

/* ─── FORM CTA BOX ───────────────────────────────────── */
.form-cta-box {
  max-width: 700px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  padding: 56px 48px;
  text-align: center;
}
.form-cta-box h3 { font-size: 36px; margin-bottom: 14px; }
.form-cta-box p { font-size: 17px; margin-bottom: 32px; }
.form-cta-box .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--black);
  color: var(--white);
  padding: 72px 40px 40px;
}
.footer__inner { max-width: var(--max-w); margin: 0 auto; }
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
.footer__brand p {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
  line-height: 1.7;
  margin-top: 12px;
}
.footer__logo {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.footer__logo span { color: var(--brown-pale); }
.footer__tagline {
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}
.footer__col h5 {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown-pale);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer__col ul a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p,
.footer__bottom a {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer__bottom a:hover { color: rgba(255,255,255,0.65); }

/* ─── DIVIDER LINE ───────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--gray-light);
  margin: 0;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 960px) {
  :root { --max-w: 100%; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__image { height: 65vw; order: -1; }
  .hero__content { max-width: 100%; margin: 0; padding: 48px 28px; }

  .about-strip__inner { grid-template-columns: 1fr; gap: 36px; }
  .platforms__grid { grid-template-columns: 1fr; }
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .guest-strip__inner { grid-template-columns: 1fr; }
  .hosts__grid { grid-template-columns: 1fr; max-width: 480px; }
  .guest-types__grid { grid-template-columns: 1fr; }
  .stories__grid { grid-template-columns: 1fr; }
  .qualifiers { grid-template-columns: 1fr; }
  .position-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }

  .section { padding: 72px 28px; }
  .page-hero { padding: 56px 28px; }
}

@media (max-width: 620px) {
  .nav__links, .nav__socials { display: none; }
  .nav__hamburger { display: flex; }

  .nav__mobile.open {
    display: block;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0; bottom: 0;
    background: var(--bg);
    padding: 40px 28px;
    z-index: 998;
    overflow-y: auto;
  }
  .nav__mobile ul { display: flex; flex-direction: column; gap: 28px; }
  .nav__mobile ul a {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--black);
  }
  .nav__mobile ul a:hover { color: var(--brown); }
  .mobile-socials {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 40px;
    padding-top: 36px;
    border-top: 1px solid var(--gray-light);
  }
  .mobile-socials a {
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
  }

  .pillars__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 8px; }
  .hero__content { padding: 40px 20px; }
  .step { grid-template-columns: 56px 1fr; gap: 16px; }
  .form-cta-box { padding: 40px 24px; }
  .section { padding: 56px 20px; }
  .page-hero { padding: 48px 20px; }
  .about-strip { padding: 56px 20px; }
  .guest-strip { padding: 56px 20px; }
  .manifesto { padding: 72px 20px; }
}

/* ═══════════════════════════════════════════════════════
   ADDITIONS — components not in original draft
   ═══════════════════════════════════════════════════════ */

/* Nav scroll shadow */
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.07); }

/* Page hero eyebrow / sub */
.page-hero .eyebrow { color: var(--brown); margin-bottom: 14px; }
.page-hero .page-hero-sub { font-size: 19px; max-width: 600px; margin-bottom: 32px; }
.page-hero .btn { margin-top: 8px; }

/* Section header */
.section-header { margin-bottom: 56px; }
.section-header h2 { margin-top: 12px; margin-bottom: 20px; }
.section-header .section-sub { font-size: 18px; max-width: 560px; }

/* About strip — image col */
.about-strip__image { overflow: hidden; }
.about-strip__image img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; }
.about-strip__text h2 { color: var(--white); margin-bottom: 20px; }

/* Platform icons inside platform-card */
.platform-card .platform-icon { color: var(--brown); margin-bottom: 8px; }
.platform-card .platform-icon svg { width: 32px; height: 32px; display: block; }
.platform-card .platform-name { font-family: var(--font-serif); font-size: 22px; font-weight: 600; margin: 0; }
.platform-card .platform-handle { font-size: 13px; color: var(--gray); margin: 4px 0 0; }

/* Story layout (about page — 2-col text + image) */
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.story-layout .story-image { overflow: hidden; }
.story-layout .story-image img { width: 100%; height: auto; object-fit: cover; }
.story-layout .story-text h2 { margin-bottom: 24px; }
.story-layout .story-text p { font-size: 16px; color: var(--gray-dark); margin-bottom: 16px; line-height: 1.8; }

/* Manifesto section (about page, standalone — same as .manifesto) */
.manifesto-section { background: var(--black); padding: 96px 40px; }
.manifesto-section .manifesto__inner { max-width: 780px; margin: 0 auto; text-align: center; }
.manifesto-section .eyebrow { color: var(--brown-pale); }
.manifesto-section blockquote {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 28px);
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin: 28px auto;
  font-style: italic;
  max-width: 680px;
}
.manifesto-section .manifesto-close {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

/* Guest strip image col */
.guest-strip__image { overflow: hidden; max-width: 300px; flex-shrink: 0; }
.guest-strip__image img { width: 100%; object-fit: cover; border-radius: 2px; }

/* Host info (text block inside host-card after __img) */
.host-card .host-info p { font-size: 16px; margin-bottom: 14px; }

/* Qualifiers — two-column yes/no layout */
.qualifiers-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 8px;
}
.qualifier-col { padding: 36px 32px; }
.qualifier-col.yes { background: var(--cream); border-top: 3px solid var(--brown); }
.qualifier-col.no { background: var(--white); border: 1px solid var(--gray-light); border-top: 3px solid var(--gray-light); }
.qualifier-col h4 { font-size: 18px; margin-bottom: 20px; }
.qualifier-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.qualifier-col ul li { font-size: 15px; color: var(--gray-dark); padding-left: 20px; position: relative; line-height: 1.6; }
.qualifier-col.yes ul li::before { content: '✓'; position: absolute; left: 0; color: var(--brown); font-weight: 700; }
.qualifier-col.no ul li::before { content: '✕'; position: absolute; left: 0; color: var(--gray); }
.qualifiers-wrap .qualifiers-header { margin-bottom: 36px; }
.qualifiers-wrap .qualifiers-header h2 { margin-bottom: 14px; }
.qualifiers-wrap .qualifiers-header p { font-size: 17px; max-width: 560px; }

/* Recording note (guest page) */
.recording-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.recording-note-text h2 { margin-bottom: 24px; }
.recording-note-text p { font-size: 16px; color: var(--gray-dark); margin-bottom: 16px; line-height: 1.8; }
.recording-note-image { overflow: hidden; }
.recording-note-image img { width: 100%; object-fit: cover; }

/* form-cta-box — h2 variant + note */
.form-cta-box h2 { font-family: var(--font-serif); font-size: clamp(26px, 3vw, 42px); margin-bottom: 14px; }
.form-cta-note { font-size: 14px !important; margin-bottom: 6px !important; color: rgba(92,47,15,0.55) !important; }
.form-cta-link { color: var(--brown); border-bottom: 1px solid var(--brown-pale); }
.section.brown-bg .form-cta-box { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
.section.brown-bg .form-cta-box h2,
.section.brown-bg .form-cta-box p { color: var(--white); }
.section.brown-bg .form-cta-note { color: rgba(255,255,255,0.55) !important; }
.section.brown-bg .form-cta-link { color: var(--white); border-color: rgba(255,255,255,0.4); }

/* Footer location line */
.footer__location {
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
  margin-top: 10px;
}

/* Responsive additions */
@media (max-width: 960px) {
  .story-layout { grid-template-columns: 1fr; gap: 36px; }
  .recording-note { grid-template-columns: 1fr; gap: 36px; }
  .qualifiers-cols { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .manifesto-section { padding: 72px 20px; }
  .story-layout .story-text p,
  .recording-note-text p { font-size: 15px; }
}

/* ═══════════════════════════════════════════════════════
   CORRECTIONS — patch fixes
   ═══════════════════════════════════════════════════════ */

/* Fix: nav button text white (overrides .nav__links a color) */
.nav__links .btn-primary {
  color: var(--white) !important;
}
.nav__links .btn-primary:hover {
  color: var(--white) !important;
}

/* Logo image in nav */
.nav__logo img {
  height: 36px;
  width: auto;
  display: block;
}

/* Fix: mobile hero — show full image, no aggressive crop */
@media (max-width: 960px) {
  .hero__image {
    height: auto;
    min-height: 60vw;
    max-height: none;
  }
  .hero__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
  }
}
@media (max-width: 620px) {
  .hero__image {
    min-height: 80vw;
  }
}

/* ═══════════════════════════════════════════════════════
   3D DEPTH & MOTION EFFECTS
   ═══════════════════════════════════════════════════════ */

/* Logo badge — gives dark bg pill so logo PNG sits naturally */
.nav__logo {
  background: #110604;
  padding: 5px 12px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s;
}
.nav__logo:hover { opacity: 0.88; }
.nav__logo img {
  height: 34px;
  width: auto;
  display: block;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
              transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ── Card depth shadows (richer layered system) ── */
.platform-card {
  box-shadow:
    0 1px 2px rgba(92,47,15,0.04),
    0 4px 10px rgba(92,47,15,0.05),
    0 16px 32px rgba(92,47,15,0.06);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.platform-card:hover {
  box-shadow:
    0 2px 4px rgba(92,47,15,0.06),
    0 8px 20px rgba(92,47,15,0.09),
    0 28px 48px rgba(92,47,15,0.1);
  transform: translateY(-4px);
}

.pillar {
  box-shadow: 0 2px 8px rgba(92,47,15,0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  will-change: transform;
}
.pillar:hover {
  box-shadow:
    0 4px 12px rgba(92,47,15,0.07),
    0 16px 36px rgba(92,47,15,0.08);
  transform: translateY(-3px);
  z-index: 2;
}

.guest-type {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  will-change: transform;
}
.guest-type:hover {
  box-shadow:
    0 4px 14px rgba(92,47,15,0.08),
    0 20px 40px rgba(92,47,15,0.09);
  transform: translateY(-4px) translateX(2px);
}

.host-card {
  transition: transform 0.3s ease;
  will-change: transform;
}
.host-card:hover {
  transform: translateY(-4px);
}

/* ── Hero image float animation ── */
@keyframes float-hero {
  0%,100% { transform: translateY(0px) scale(1); }
  50%      { transform: translateY(-10px) scale(1.008); }
}
.hero__image {
  animation: float-hero 7s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero__image { animation: none; }
}

/* ── Grain texture overlay (subtle depth/richness) ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
  mix-blend-mode: multiply;
}

/* ── 3D card tilt (applied via JS) ── */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out;
}

/* ── Story box lift ── */
.story-box {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.story-box:hover {
  box-shadow: 0 8px 28px rgba(92,47,15,0.1);
  transform: translateY(-3px);
}

/* ── Qualifier col depth ── */
.qualifier-col {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.qualifier-col.yes:hover {
  box-shadow: 0 8px 28px rgba(92,47,15,0.08);
  transform: translateY(-2px);
}

/* ── Step hover accent ── */
.step {
  transition: background 0.2s ease;
  border-radius: 2px;
  padding-left: 8px;
  padding-right: 8px;
  margin-left: -8px;
  margin-right: -8px;
}
.step:hover { background: rgba(196,145,109,0.06); }

/* ── Logo: revert to text wordmark (logo pill removed) ── */
.nav__logo {
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.nav__logo span { color: var(--black); }
.nav__logo img { display: none !important; }
