/* ============================================
   HEY COCO — Brand Stylesheet v3
   Logo:     Montserrat Regular, ls 0.06em, lowercase
   Headings: Cormorant Garamond 400 — editorial serif
   Labels:   Open Sans, uppercase, ls 0.175em
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,300;0,400;0,500;0,600;1,400;1,500&family=Montserrat:wght@300;400;500&display=swap');

/* --- Tokens --- */
:root {
  --brown:       #2C1810;
  --brown-mid:   #5C3420;
  --brown-light: #8B5E3C;
  --brown-muted: #B89475;

  --white:       #FFFFFF;
  --off-white:   #F7F5F2;
  --stone:       #ECEAE5;
  --cream:       #F7F5F2;
  --cream-dark:  #ECEAE5;

  --text:        #2C1810;
  --text-mid:    #5C3420;
  --text-light:  #8B6048;

  --font-serif:  'Hanken Grotesk', sans-serif;   /* serif removed site-wide */
  --font-head:   'Hanken Grotesk', sans-serif;   /* headings / labels */
  --font-logo:   'Montserrat', sans-serif;        /* hey coco wordmark only */
  --font-body:   'Hanken Grotesk', sans-serif;

  --max-w:       1160px;
  --section-gap: clamp(88px, 11vw, 144px);
  --gutter:      clamp(24px, 5vw, 72px);

  --transition:  0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; font-size: 93.75%; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.005em;
}

/* --- Typography — grotesque, uppercase headlines (per design direction) --- */
h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.05;
  color: var(--brown);
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

h1 { font-size: clamp(1.7rem, 3.8vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 2.6vw, 2.2rem); }
h3 { font-size: clamp(1.05rem, 1.7vw, 1.35rem); }

p { color: var(--text); line-height: 1.65; }
p + p { margin-top: 14px; }

/* Two-col text — consistent vertical rhythm */
.two-col__text .eyebrow { margin-bottom: 12px; }
.two-col__text h2 { margin-bottom: 28px; }
.two-col__text h3 { margin-bottom: 20px; }

p  { max-width: 68ch; }

/* Eyebrow / label / all-caps UI text — Open Sans, wide tracking */
.eyebrow,
h4,
.nav__links a,
.nav__cta,
.btn,
.offer-card__label,
.offer-card__link,
.schedule__time,
.pillar__num,
.footer__links a,
.footer__copy,
.form__label,
.urgency,
.signoff .name {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
}

.eyebrow {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  color: var(--brown-light);
  display: block;
}

h4 {
  font-size: 0.78rem;
  color: var(--brown);
}

/* --- Logo — Montserrat Regular 400, ls 0.06em, lowercase --- */
.nav__logo,
.footer__logo {
  font-family: var(--font-logo);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

/* --- Layout --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: var(--section-gap) 0; }

/* Section backgrounds — all light, no dark brown in-page */
.section--cream  { background: var(--off-white); }
.section--warm   { background: var(--stone); }

/* "Dark" sections now use stone with a top rule — no brown background */
.section--dark {
  background: var(--stone);
  border-top: 1px solid rgba(44,24,16,0.08);
  border-bottom: 1px solid rgba(44,24,16,0.08);
}
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--brown); }
.section--dark p  { color: var(--text-mid); }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(44, 24, 16, 0.07);
}

.nav__logo {
  font-size: 0.9rem;
  color: var(--cream);
  transition: color var(--transition);
}

.nav.scrolled .nav__logo,
.nav--light .nav__logo { color: var(--brown); }

.nav__links {
  display: none;
  gap: clamp(16px, 1.8vw, 30px);
  list-style: none;
}
@media (min-width: 900px) { .nav__links { display: flex; } }

.nav__links a {
  font-size: 0.66rem;
  color: rgba(250,246,240,0.8);
  transition: color var(--transition);
  white-space: nowrap;
}

.nav.scrolled .nav__links a,
.nav--light .nav__links a { color: var(--brown-light); }
.nav__links a:hover { color: var(--cream); }
.nav.scrolled .nav__links a:hover,
.nav--light .nav__links a:hover { color: var(--brown); }

.nav__cta {
  font-size: 0.66rem;
  padding: 10px 22px;
  border: 1px solid rgba(250,246,240,0.45);
  color: var(--cream);
  transition: all var(--transition);
  display: none;
}
.nav.scrolled .nav__cta {
  border-color: var(--brown);
  color: var(--brown);
}
.nav__cta:hover { background: rgba(250,246,240,0.1); }
.nav.scrolled .nav__cta:hover { background: var(--brown); color: var(--cream); }

@media (min-width: 768px) { .nav__cta { display: block; } }

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: background var(--transition);
}
.nav.scrolled .nav__hamburger span,
.nav--light .nav__hamburger span { background: var(--brown); }
@media (min-width: 900px) { .nav__hamburger { display: none; } }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--brown);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.nav__mobile-close {
  position: absolute;
  top: 24px; right: var(--gutter);
  font-size: 1.5rem;
  color: var(--cream);
  font-family: var(--font-head);
  font-weight: 300;
}

/* --- Hero --- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(64px, 8vw, 96px);
  position: relative;
  overflow: hidden;
  background: var(--brown-deep);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--brown);
  background-size: cover;
  background-position: center center;
  /* Subtle warm grade — keeps the photo premium and natural */
  filter: brightness(0.82) contrast(1.02) saturate(0.96);
}

/* Soft gradient at the base only — just enough for text legibility */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(28, 14, 6, 0.78) 0%, rgba(28, 14, 6, 0.32) 45%, rgba(28, 14, 6, 0.05) 75%, transparent 100%);
}

/* Home hero — giant wordmark centred over the image */
.hero--center {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 0;
}
.hero--center .hero__bg::after {
  background:
    linear-gradient(rgba(28,14,6,0.24) 0%, rgba(28,14,6,0.14) 50%, rgba(28,14,6,0.32) 100%);
}
.hero--center .hero__content { width: 100%; }

/* Oversized "hey coco" wordmark — Montserrat, cream fill with finest dark keyline */
.hero__wordmark {
  font-family: var(--font-logo);
  font-weight: 400;
  text-transform: lowercase;
  color: var(--off-white);
  font-size: clamp(4rem, 16vw, 14rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin: 0;
  -webkit-text-stroke: 1px #030303;
  text-stroke: 1px #030303;
  paint-order: stroke fill;
}

/* Intro block — sits directly under the hero image (Merit/Sézane style) */
.intro {
  text-align: left;
  padding: clamp(64px, 9vw, 110px) 0;
}
.intro__inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.intro__statement {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--brown);
  margin-bottom: 24px;
}
.intro__statement em { font-style: italic; }
.intro__lead {
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.6;
  color: var(--text-light);
  max-width: 56ch;
  margin: 0 auto 40px;
}
.intro__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__content {
  position: relative;
  z-index: 1;
}
.hero__content .eyebrow {
  color: rgba(250, 246, 240, 0.85);
}

.hero__tagline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.0;
  color: var(--off-white);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero__tagline em {
  font-style: italic;
  font-weight: 400;
}

.hero__sub {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: rgba(250, 246, 240, 0.78);
  max-width: 50ch;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-size: 0.68rem;
  padding: 16px 40px;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--brown);
  color: var(--off-white);
}
.btn--primary:hover { background: var(--brown-mid); }

/* On hero (dark photo background): cream outline */
.hero .btn--primary {
  background: var(--off-white);
  color: var(--brown);
}
.hero .btn--primary:hover { background: var(--white); }

.btn--outline-light {
  border: 1px solid rgba(248,245,242,0.55);
  color: var(--off-white);
}
.btn--outline-light:hover { background: rgba(248,245,242,0.1); border-color: var(--off-white); }

.btn--outline-dark {
  border: 1px solid rgba(44,24,16,0.4);
  color: var(--brown);
}
.btn--outline-dark:hover { background: var(--brown); color: var(--off-white); }

.btn--dark { background: var(--brown); color: var(--cream); }
.btn--dark:hover { background: var(--brown-mid); }

/* --- Offer Cards --- */
.offer-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  border: 1px solid rgba(44,24,16,0.1);
}
@media (min-width: 640px) { .offer-cards { grid-template-columns: 1fr 1fr; } }

.offer-card {
  background: var(--white);
  color: var(--brown);
  padding: clamp(40px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  transition: background var(--transition);
  border: 1px solid rgba(44,24,16,0.08);
}
.offer-card:hover { background: var(--off-white); }

.offer-card__label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-body);
  color: var(--brown-muted);
}

.offer-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--brown);
  line-height: 1.12;
  flex: 1;
}

.offer-card__detail {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

.offer-card__link {
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.175em;
  text-transform: uppercase;
  color: var(--brown-light);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: gap var(--transition);
}
.offer-card:hover .offer-card__link { gap: 16px; }
.offer-card__link::after { content: '→'; }

/* --- Two-col --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: center;
}
@media (min-width: 768px) {
  .two-col { grid-template-columns: 1fr 1fr; }
  .two-col--reverse .two-col__text { order: 2; }
  .two-col--reverse .two-col__img  { order: 1; }
}

.two-col__img {
  aspect-ratio: 4/5;
  min-height: 460px;
  background: var(--stone);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}
.two-col__img--wide { aspect-ratio: 16/10; }
.two-col__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}
.two-col__text { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }

/* --- Schedule --- */
.schedule {
  display: flex;
  flex-direction: column;
}
.schedule__item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(44, 26, 14, 0.1);
  align-items: start;
}
.schedule__item:first-child { border-top: 1px solid rgba(44, 26, 14, 0.1); }
.schedule__time {
  font-size: 0.68rem;
  color: var(--brown-light);
  padding-top: 4px;
}
.schedule__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.schedule__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 52ch;
}

/* --- Inclusions --- */
.inclusions {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.inclusions li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.inclusions li::before {
  content: '—';
  color: var(--brown-light);
  font-family: var(--font-head);
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- CTA block --- */
.cta-block {
  background: var(--off-white);
  border-top: 1px solid rgba(44,24,16,0.08);
  padding: clamp(56px, 8vw, 96px) var(--gutter);
  text-align: left;
}
.cta-block h2 { color: var(--brown); margin-bottom: 20px; }
.cta-block p  { color: var(--text-mid); margin: 0 auto 40px; max-width: 52ch; }

/* --- Pull quote --- */
.pull-quote {
  border-left: 1px solid var(--brown-muted);
  padding-left: 40px;
  margin: 48px 0;
}
.pull-quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: var(--brown);
  max-width: 52ch;
}

/* --- Framework pillars --- */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}
@media (min-width: 640px) { .pillars { grid-template-columns: repeat(3, 1fr); } }

.pillar {
  background: var(--stone);
  padding: clamp(32px, 5vw, 56px);
}
.pillar__num {
  font-size: 0.62rem;
  color: var(--brown-muted);
  margin-bottom: 20px;
  display: block;
}
.pillar__name {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.pillar__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 36ch;
}

/* --- Bio --- */
.bio-block { max-width: 72ch; }
.bio-block p + p { margin-top: 24px; }

/* --- Contact / lead magnet form --- */
.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 560px;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__label {
  font-size: 0.64rem;
  color: var(--brown-light);
}
.form__input,
.form__textarea,
.form__select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(44, 26, 14, 0.22);
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  -webkit-appearance: none;
}
.form__input:focus,
.form__textarea:focus,
.form__select:focus { border-color: var(--brown); }
.form__textarea { resize: none; min-height: 120px; line-height: 1.7; }
.form__input::placeholder,
.form__textarea::placeholder { color: var(--brown-muted); }
.form__note {
  font-size: 0.8rem;
  color: var(--text-light);
  min-height: 1.2em;
}

/* Waitlist section — home + Join the Conversation */
.waitlist {
  padding: clamp(56px, 8vw, 96px) 0;
}
.waitlist__inner { max-width: 640px; }
.waitlist h2 { margin-bottom: 14px; }
.waitlist p.prose__lead { margin-bottom: 28px; }

/* Waitlist form embed - Kajabi page framed inside a card that matches site chrome */
.waitlist-embed {
  margin-top: 28px;
  border: 1px solid rgba(44,24,16,0.12);
  border-radius: 2px;
  overflow: hidden;
  background: var(--white);
  max-width: 640px;
}
.waitlist-embed iframe {
  display: block;
  width: 100%;
  height: 760px;
  border: none;
}
.waitlist-embed__fallback {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 12px;
}
.waitlist-embed__fallback a { text-decoration: underline; color: var(--brown-light); }

/* --- Sign-off --- */
.signoff {
  background: var(--stone);
  padding: clamp(40px, 5vw, 64px);
  max-width: 640px;
}
.signoff p {
  font-style: italic;
  color: var(--text-mid);
  font-size: 1.02rem;
  margin-bottom: 20px;
}
.signoff .name {
  font-size: 0.88rem;
  color: var(--brown);
  font-style: normal;
}

/* --- Urgency badge (no yellow — cream outline) --- */
.urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(250,246,240,0.45);
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 0.64rem;
  letter-spacing: 0.175em;
  text-transform: uppercase;
  color: var(--cream);
}
.urgency--dark {
  border-color: rgba(44,26,14,0.3);
  color: var(--brown-light);
}

/* --- Lead magnet block --- */
.lead-magnet {
  background: var(--stone);
  border-top: 1px solid rgba(44,24,16,0.08);
  padding: clamp(56px, 8vw, 96px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.lead-magnet__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 6vw, 80px);
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .lead-magnet__inner { grid-template-columns: 1fr 1fr; align-items: center; }
}
.lead-magnet h2,
.lead-magnet h3 { color: var(--brown); }
.lead-magnet p  { color: var(--text-mid); }
.lead-magnet .eyebrow { color: var(--brown-light); }

.lead-magnet__form .form__input {
  border-bottom-color: rgba(44,24,16,0.2);
  color: var(--brown);
}
.lead-magnet__form .form__input:focus { border-bottom-color: var(--brown); }
.lead-magnet__form .form__input::placeholder { color: var(--brown-muted); }
.lead-magnet__form .form__label { color: var(--text-light); }

/* --- Testimonial quotes --- */
.quotes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}
@media (min-width: 640px) { .quotes-grid { grid-template-columns: repeat(3, 1fr); } }

.quote-card {
  background: var(--stone);
  padding: clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.quote-card--dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(250,246,240,0.1);
}

.quote-card__mark {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--brown-muted);
  line-height: 1;
  margin-bottom: -16px;
}
.quote-card--dark .quote-card__mark { color: rgba(250,246,240,0.2); }

.quote-card__text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--text-mid);
  flex: 1;
}
.quote-card--dark .quote-card__text { color: rgba(250,246,240,0.8); }

.quote-card__attr {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-light);
  font-weight: 500;
}
.quote-card--dark .quote-card__attr { color: rgba(250,246,240,0.4); }

/* --- Divider --- */
.divider {
  height: 1px;
  background: rgba(44, 26, 14, 0.1);
}

/* --- Footer --- */
.footer {
  background: var(--off-white);
  border-top: 1px solid rgba(44,24,16,0.08);
  padding: clamp(64px, 8vw, 100px) var(--gutter) clamp(40px, 5vw, 56px);
  color: var(--text-light);
  text-align: left;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.footer__logo {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 4px;
}
.footer__tagline {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--brown-muted);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: clamp(16px, 3vw, 36px);
  margin-top: 8px;
}
.footer__social {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.66rem;
  color: var(--brown-light);
  transition: color var(--transition);
}
.footer__social:hover { color: var(--brown); }
.footer__links a {
  font-size: 0.66rem;
  color: var(--brown-light);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--brown); }
.footer__copy {
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-muted);
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(44,24,16,0.08);
  text-align: left;
  width: 100%;
}

/* --- Utility --- */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-56 { margin-top: 56px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.gap-stack-sm > * + * { margin-top: 16px; }
.gap-stack    > * + * { margin-top: 24px; }
.gap-stack-lg > * + * { margin-top: 40px; }
.text-center { text-align: left; }

/* --- Belief statements (Why page) --- */
.belief {
  padding: clamp(56px, 7vw, 88px) 0;
  border-bottom: 1px solid rgba(44,26,14,0.1);
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
@media (min-width: 768px) {
  .belief { grid-template-columns: 1fr 2fr; gap: 64px; }
}
.belief__num {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown-muted);
  padding-top: 12px;
}
.belief__body {}
.belief__headline {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--brown);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.015em;
}
.belief__text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.85;
  max-width: 60ch;
}
.belief__text p + p { margin-top: 18px; }

/* --- About photo --- */
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--brown-mid);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* --- Testimonials / reviews (masonry, mixed type) --- */
.testimonials {
  background: var(--off-white);
  padding: clamp(72px, 9vw, 130px) 0;
  text-align: left;
}
.testimonials__title {
  font-family: var(--font-head);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  letter-spacing: -0.005em;
  color: var(--brown);
  margin-bottom: clamp(44px, 6vw, 76px);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: clamp(28px, 3vw, 48px);
  row-gap: clamp(40px, 4vw, 56px);
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 980px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .reviews-grid { grid-template-columns: 1fr; } }

.review {
  display: flex;
  flex-direction: column;
}
.review__quote {
  font-family: var(--font-serif);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--brown);
  margin-bottom: 16px;
}
.review__body {
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 22px;
  flex: 1;
}
.review__attr {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--brown);
  margin-top: auto;
  padding-top: 16px;
}

/* ============================================================
   EDITORIAL HOME — per design direction deck
   ============================================================ */

/* Prose section — uppercase headline + quiet body */
.prose {
  padding: clamp(64px, 9vw, 120px) 0;
}
.prose__inner { max-width: 920px; }
.prose__inner--center { text-align: left; }
.prose h2 {
  margin-bottom: clamp(28px, 3vw, 44px);
  max-width: none;
}
.prose p {
  color: var(--text-mid);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.75;
  max-width: 64ch;
}
.prose p + p { margin-top: 16px; }
.prose__lead {
  color: var(--brown) !important;
  font-size: clamp(1rem, 1.25vw, 1.15rem) !important;
  line-height: 1.55 !important;
}

/* Feature band — full-bleed image with underlined label link */
.feature-band {
  position: relative;
  min-height: clamp(360px, 62vh, 660px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: clamp(32px, 5vw, 64px);
  overflow: hidden;
  background: var(--brown);
}
.feature-band__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.72) saturate(0.95);
}
.feature-band__bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(28,14,6,0.18);
}
.feature-band__label {
  position: relative; z-index: 1;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(1.3rem, 3.2vw, 2.6rem);
  color: var(--off-white);
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-thickness: 1px;
  transition: opacity var(--transition);
}
.feature-band:hover .feature-band__label { opacity: 0.8; }

/* Oversized word band — giant lowercase word + fine keyline over image */
.word-band {
  position: relative;
  min-height: clamp(300px, 46vh, 520px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: clamp(32px, 5vw, 64px);
  overflow: hidden;
  background: var(--brown);
}
.word-band__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.9) saturate(0.97);
}
.word-band__word {
  position: relative; z-index: 1;
  font-family: var(--font-logo);
  font-weight: 400;
  text-transform: lowercase;
  color: var(--off-white);
  font-size: clamp(3.5rem, 14vw, 12rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  -webkit-text-stroke: 1px #030303;
  text-stroke: 1px #030303;
  paint-order: stroke fill;
}

/* Mindset · Model · Method — three horizontal boxes */
.mmm {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  border: 1px solid rgba(44,24,16,0.12);
  background: rgba(44,24,16,0.12);
}
@media (min-width: 800px) { .mmm { grid-template-columns: repeat(3, 1fr); } }
.mmm__box {
  background: var(--white);
  padding: clamp(32px, 3vw, 52px);
  min-height: clamp(280px, 30vw, 360px);
  display: flex;
  flex-direction: column;
}
.mmm__num {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--brown-muted);
  margin-bottom: clamp(28px, 4vw, 48px);
}
.mmm__title {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  letter-spacing: -0.01em;
  color: var(--brown);
  margin-bottom: 16px;
}
.mmm__body {
  color: var(--text-mid);
  font-size: 0.85rem;
  line-height: 1.7;
}

/* Mind Body Soul Life — headline list, body reveals on hover/tap */
.mbsl { margin-top: clamp(28px, 4vw, 48px); }
.mbsl__item {
  border-top: 1px solid rgba(44,24,16,0.14);
  padding: clamp(20px, 2.5vw, 30px) 0;
  cursor: pointer;
}
.mbsl__item:last-child { border-bottom: 1px solid rgba(44,24,16,0.14); }
.mbsl__title {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--brown);
  transition: transform 0.35s ease;
}
.mbsl__item:hover .mbsl__title,
.mbsl__item.open .mbsl__title {
  transform: translateX(10px);
}
.mbsl__body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease, margin-top 0.5s ease;
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 56ch;
  margin-top: 0;
}
.mbsl__item:hover .mbsl__body,
.mbsl__item.open .mbsl__body {
  max-height: 320px;
  opacity: 1;
  margin-top: 14px;
}
@media (prefers-reduced-motion: reduce) {
  .mbsl__title, .mbsl__body { transition: none; }
}

/* Numbered beliefs strip (A Fresh Take) */
.fresh {
  padding: clamp(64px, 9vw, 120px) 0;
  background: var(--off-white);
}
.fresh__head { max-width: 900px; margin-bottom: clamp(40px, 5vw, 64px); }
.tenet {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: clamp(32px, 4vw, 48px) 0;
  border-top: 1px solid rgba(44,24,16,0.14);
}
@media (min-width: 800px) {
  .tenet { grid-template-columns: 90px 1fr; gap: 48px; align-items: baseline; }
}
.tenet:last-child { border-bottom: 1px solid rgba(44,24,16,0.14); }
.tenet__num {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--brown-muted);
  padding-top: 6px;
}
.tenet__title {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--brown);
  margin-bottom: 16px;
}
.tenet__body { color: var(--text-mid); font-size: 1rem; line-height: 1.7; max-width: 62ch; }
.tenet__body p + p { margin-top: 14px; }

/* Two big offer panels (Join the conversation) */
.offer-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}
@media (min-width: 800px) { .offer-panels { grid-template-columns: 1fr 1fr; } }
.offer-panel {
  position: relative;
  min-height: clamp(440px, 60vh, 640px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(36px, 4vw, 60px);
  overflow: hidden;
  color: var(--off-white);
}
.offer-panel > .offer-panel__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.62) saturate(0.95);
  transition: transform 0.7s ease;
  z-index: 0;
}
.offer-panel:hover .offer-panel__bg { transform: scale(1.04); }
.offer-panel__bg::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(to top, rgba(28,14,6,0.7) 0%, rgba(28,14,6,0.1) 60%, transparent 100%);
}
.offer-panel > * { position: relative; z-index: 1; }
.offer-panel__eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.66rem;
  color: rgba(248,245,242,0.8);
  margin-bottom: 14px;
}
.offer-panel__title {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.0;
  color: var(--off-white);
  margin-bottom: 14px;
}
.offer-panel__detail { color: rgba(248,245,242,0.85); font-size: 0.95rem; line-height: 1.6; margin-bottom: 26px; }
.offer-panel__link {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: var(--off-white);
  display: inline-flex; align-items: center; gap: 10px;
}
.offer-panel__link::after { content: '→'; transition: transform var(--transition); }
.offer-panel:hover .offer-panel__link::after { transform: translateX(6px); }

/* Wide single-card variant — full width, used when there's one offer, not two */
.offer-panels--single { grid-template-columns: 1fr; }
.offer-panels--single .offer-panel {
  min-height: clamp(360px, 46vh, 480px);
}
.offer-panels--single .offer-panel__title { font-size: clamp(2rem, 4vw, 3.4rem); }

/* ============================================================
   CTA SYSTEM — one job: the Mind Report
   ============================================================ */
.btn--cta {
  display: inline-block;
  background: var(--brown);
  color: var(--off-white);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 20px 48px;
  transition: background var(--transition), transform var(--transition);
}
.btn--cta:hover { background: var(--brown-mid); transform: translateY(-1px); }

.cta-micro {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--text-light);
  margin-top: 14px;
}

.cta-band {
  padding: clamp(56px, 8vw, 96px) 0;
}
.cta-band--oat { background: var(--stone); border-top: 1px solid rgba(44,24,16,0.08); border-bottom: 1px solid rgba(44,24,16,0.08); }
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { color: var(--text-mid); font-size: 0.9rem; max-width: 54ch; margin-bottom: 30px; }

/* Hero CTA anchored inside locked hero — sits under wordmark */
.hero__cta-wrap { margin-top: clamp(24px, 4vw, 40px); }
.hero__cta-wrap .cta-micro { color: rgba(248,245,242,0.75); }

/* ============================================================
   SIGNATURE — hero testimonial band (keyline treatment)
   ============================================================ */
.t-hero {
  background: var(--off-white);
  border-top: 1px solid rgba(44,24,16,0.08);
  padding: clamp(56px, 7vw, 96px) 0;
  overflow: hidden;
}
.t-hero__eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.66rem;
  color: var(--brown-light);
  margin-bottom: clamp(24px, 3vw, 40px);
}
.t-hero__quote {
  font-family: var(--font-head);
  font-weight: 400;
  text-transform: lowercase;
  font-size: clamp(2.2rem, 6.5vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--brown);
  max-width: 18ch;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.t-hero__quote em {
  font-style: normal;
  color: var(--off-white);
  -webkit-text-stroke: 1px var(--brown);
  text-stroke: 1px var(--brown);
  paint-order: stroke fill;
}
.t-hero__body {
  font-size: 0.9rem;
  color: var(--text-mid);
  max-width: 52ch;
  margin-bottom: 12px;
}
.t-hero__attr {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  color: var(--brown-light);
}
.t-hero__attr::before { content: '- '; }

/* Staggered reveal for testimonial masonry */
.reviews-grid .review {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reviews-grid.visible .review { opacity: 1; transform: none; }
.reviews-grid.visible .review:nth-child(2) { transition-delay: 0.12s; }
.reviews-grid.visible .review:nth-child(3) { transition-delay: 0.24s; }
.reviews-grid.visible .review:nth-child(4) { transition-delay: 0.36s; }
.reviews-grid.visible .review:nth-child(5) { transition-delay: 0.44s; }
.reviews-grid.visible .review:nth-child(6) { transition-delay: 0.52s; }

/* Hero settle on load — one orchestrated moment */
@keyframes heroSettle {
  from { opacity: 0; transform: scale(1.03); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes wordmarkRise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.hero--center .hero__bg { animation: heroSettle 1.4s ease-out both; }
.hero--center .hero__content { animation: wordmarkRise 1.1s 0.35s ease-out both; }

@media (prefers-reduced-motion: reduce) {
  .hero--center .hero__bg,
  .hero--center .hero__content { animation: none; }
  .reveal, .reviews-grid .review { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* --- Scroll reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
