/* =============================================================
   THE CONFIDENCE REBELLION — Landing Page
   Light editorial. Bone background throughout. Centered structure.
   Palette: Bone #f1ebe2 | Wine #3a0a1a | Brass #b08a4a | Rose #bc7e83
   Type: Playfair Display (headings) | DM Serif Text (body)
         Cormorant Garamond (labels) | Allura (script accent)
   ============================================================= */

:root {
  --bone:         #f1ebe2;
  --bone-deep:    #e6ddd0;
  --bone-mist:    #ece6dc;
  --paper:        #fafaf5;
  --wine:         #3a0a1a;
  --wine-mid:     #5a1530;
  --brass:        #b08a4a;
  --brass-soft:   rgba(176, 138, 74, 0.35);
  --brass-tint:   rgba(176, 138, 74, 0.06);
  --rose:         #bc7e83;
  --rose-soft:    #d4a0a5;
  --rose-mist:    #ead5d7;
  --ink-muted:    #6a3a48;

  --radius-sm:    2px;
  --radius:       4px;
  --radius-lg:    8px;

  --container:    1180px;
  --container-narrow: 760px;

  --ease:         cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 18px; /* Bumped from 16px default so all rem body copy reads larger */
}

body {
  background: var(--bone);
  color: var(--wine);
  font-family: 'DM Serif Text', Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

::selection { background: var(--brass); color: var(--bone); }

/* =============================================================
   TYPOGRAPHY
   ============================================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--wine);
}

h1 em, h2 em, h3 em, h4 em {
  font-style: italic;
  font-weight: 500;
  color: var(--brass);
}

.eyebrow {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.5rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--brass-soft);
}
.eyebrow--center {
  display: block;
  text-align: center;
  border-bottom: none;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0;
}
.eyebrow--center::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--brass);
  margin: 0.65rem auto 0;
  opacity: 0.6;
}

.section-title {
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.06;
  text-align: center;
  margin-bottom: 0;
  text-wrap: balance;
}
.section-title--center { text-align: center; }

/* Pullquote (used in pattern + about) */
.pullquote {
  margin-top: 3rem;
  padding: 2rem 1.5rem 2rem;
  border-top: 1px solid var(--brass-soft);
  border-bottom: 1px solid var(--brass-soft);
  text-align: center;
}
.pullquote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.95vw, 1.35rem);
  line-height: 1.5;
  color: var(--wine);
  max-width: 640px;
  margin: 0 auto;
}
.pullquote cite {
  display: block;
  margin-top: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
}

/* =============================================================
   LAYOUT
   ============================================================= */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.container--narrow { max-width: var(--container-narrow); }

section, header.hero, footer { position: relative; }

section { padding: 4.25rem 0; }

/* Section hairline removed — eyebrow underlines + pullquote borders provide enough visual separation already */

/* =============================================================
   BUTTONS
   ============================================================= */

.btn {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 17px 36px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  text-align: center;
}

.btn--primary {
  background: var(--wine);
  color: var(--bone);
  box-shadow: 0 12px 28px -14px rgba(58, 10, 26, 0.45);
}
.btn--primary:hover {
  background: var(--wine-mid);
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -14px rgba(58, 10, 26, 0.55);
}

.btn--block { display: block; width: 100%; }

/* =============================================================
   REVEAL ANIMATIONS
   ============================================================= */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =============================================================
   HERO
   ============================================================= */

.hero {
  padding: 0;
  min-height: 90vh;
  position: relative;
  overflow: hidden;
}
.hero::after { display: none !important; } /* override the section bottom hairline */

.hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 90vh;
  padding-right: max(2rem, calc(50vw - 590px));
}

.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem 4rem 4rem max(2rem, calc(50vw - 590px));
  text-align: left;
}
.hero__text .eyebrow {
  display: inline-block;
  margin-bottom: 1.75rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--brass-soft);
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
  color: var(--wine);
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--wine);
  display: inline-block;
  background-image: linear-gradient(transparent 62%, rgba(176,138,74,0.42) 62%, rgba(176,138,74,0.42) 88%, transparent 88%);
  padding: 0 0.08em;
}

.hero__lead {
  font-family: 'DM Serif Text', serif;
  font-size: 1.075rem;
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 480px;
  margin: 0 0 2.5rem;
}

.hero__text .btn {
  margin-bottom: 1.25rem;
}

.hero__micro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

.hero__photo {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  align-self: center;
  overflow: hidden;
  /* Radial gradient mask: photo dissolves softly into bone on all edges,
     with stronger fade on the left (toward the text) so the photo feels
     embedded in the page rather than dropped on top. */
  -webkit-mask-image: radial-gradient(ellipse 108% 100% at 72% 50%, #000 55%, transparent 100%);
          mask-image: radial-gradient(ellipse 108% 100% at 72% 50%, #000 55%, transparent 100%);
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* keep face visible */
  filter: saturate(0.96) contrast(0.98) brightness(1.02);
}

/* =============================================================
   THE PATTERN
   ============================================================= */

.pattern {
  text-align: center;
  padding: 4rem 0 4.5rem;
}
.pattern .eyebrow--center { margin-bottom: 1.25rem; }
.pattern .section-title {
  /* Slightly smaller so the first sentence fits on one line in the narrow container */
  font-size: clamp(1.85rem, 3.6vw, 2.65rem);
  line-height: 1.1;
}

.pattern__body {
  font-family: 'DM Serif Text', serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-muted);
  text-align: left;
  margin-top: 1.5rem;
}
.pattern__body p + p { margin-top: 1rem; }
.pattern__body em { color: var(--wine); font-style: italic; }
.pattern__body strong { color: var(--wine); font-weight: 600; }

.pattern__punch {
  background: var(--brass-tint);
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--brass);
  margin-top: 1.25rem !important;
  font-size: 1.05rem;
  color: var(--wine);
}

.pattern .pullquote {
  margin-top: 1.75rem;
  padding: 1.5rem 1rem;
}

/* =============================================================
   KIT (What You Get) — 6 cards in 3-up grid
   ============================================================= */

.kit__head {
  text-align: center;
  margin-bottom: 2.75rem;
}

.kit__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.kit-card {
  background: var(--paper);
  border: 1px solid var(--brass-soft);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.kit-card:hover {
  transform: translateY(-3px);
  border-color: var(--brass);
  box-shadow: 0 18px 36px -22px rgba(58,10,26,0.22);
}

.kit-card__icon {
  width: 36px;
  height: 36px;
  color: var(--brass);
  margin-bottom: 1.25rem;
}
.kit-card__icon svg { width: 100%; height: 100%; }

.kit-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--wine);
}

.kit-card p {
  font-family: 'DM Serif Text', serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-muted);
}

/* =============================================================
   WORKBOOKS — glass-box covers + caption
   ============================================================= */

.workbooks__head {
  text-align: center;
  margin-bottom: 2.75rem;
}
.workbooks__lead {
  max-width: 600px;
  margin: 1.25rem auto 0;
  text-align: center;
}

.workbooks__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}

.workbook-mock {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* The glass box: soft translucent panel with backdrop blur + brass border */
.workbook-mock__frame {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3 / 4.2;
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  background: linear-gradient(155deg, rgba(255,255,255,0.55), rgba(255,255,255,0.18));
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow:
    0 30px 60px -28px rgba(58,10,26,0.32),
    0 6px 18px -8px rgba(58,10,26,0.12),
    inset 0 1px 0 rgba(255,255,255,0.7);
  backdrop-filter: blur(14px) saturate(1.05);
  -webkit-backdrop-filter: blur(14px) saturate(1.05);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  overflow: hidden;
}

/* Soft brass corner glow */
.workbook-mock__frame::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -25%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(176,138,74,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.workbook-mock__frame::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -25%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(188,126,131,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.workbook-mock__frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  box-shadow:
    0 18px 40px -16px rgba(58,10,26,0.45),
    0 4px 10px -4px rgba(58,10,26,0.18);
  border-radius: 2px;
}

.workbook-mock:hover .workbook-mock__frame {
  transform: translateY(-6px) rotate(-0.6deg);
  box-shadow:
    0 40px 70px -28px rgba(58,10,26,0.4),
    0 10px 24px -10px rgba(58,10,26,0.18),
    inset 0 1px 0 rgba(255,255,255,0.8);
}
.workbook-mock:nth-child(2):hover .workbook-mock__frame {
  transform: translateY(-6px) rotate(0.6deg);
}

.workbook-mock__caption {
  margin-top: 2rem;
  max-width: 340px;
}
.workbook-mock__label {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.5rem;
}
.workbook-mock h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--wine);
}
.workbook-mock p {
  font-family: 'DM Serif Text', serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-muted);
}

/* =============================================================
   DELIVERY (Phone section)
   ============================================================= */

.delivery__grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.delivery__text .eyebrow {
  display: inline-block;
}
.delivery__text .section-title {
  text-align: left;
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  margin-bottom: 1.5rem;
}

.delivery__text p {
  font-family: 'DM Serif Text', serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-muted);
}
.delivery__text p + p { margin-top: 1.1rem; }

.delivery__pace {
  font-style: italic;
}

.delivery__phone {
  display: flex;
  justify-content: center;
}

/* --- Phone mock (improved iPhone-ish silhouette) --- */
.mock-phone {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 9 / 19.5;
  position: relative;
  margin: 0 auto;
  filter: drop-shadow(0 40px 50px rgba(58,10,26,0.32));
}

/* Side buttons */
.mock-phone__side-btn,
.mock-phone__volume-up,
.mock-phone__volume-down,
.mock-phone__mute {
  position: absolute;
  background: linear-gradient(90deg, #2a2528, #1a1517);
  border-radius: 1px;
  z-index: 0;
}
.mock-phone__side-btn { right: -3px; top: 22%; width: 4px; height: 75px; }
.mock-phone__volume-up { left: -3px; top: 22%; width: 4px; height: 50px; }
.mock-phone__volume-down { left: -3px; top: calc(22% + 70px); width: 4px; height: 50px; }
.mock-phone__mute { left: -3px; top: 14%; width: 4px; height: 30px; }

/* Phone bezel: outer frame */
.mock-phone__bezel {
  position: relative;
  z-index: 1;
  height: 100%;
  background: linear-gradient(155deg, #2a2326 0%, #0d0709 50%, #1a1316 100%);
  border-radius: 42px;
  padding: 6px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.04),
    inset 0 1px 3px rgba(255,255,255,0.08);
}

.mock-phone__screen {
  position: relative;
  background: #0e0a0b;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Dynamic Island */
.mock-phone__island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 26px;
  background: #000;
  border-radius: 14px;
  z-index: 5;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

/* Status bar (time + signal/battery) */
.mock-phone__statusbar {
  position: relative;
  z-index: 4;
  padding: 14px 28px 0;
  height: 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'DM Serif Text', serif;
  color: var(--bone);
}
.mock-phone__time {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.mock-phone__icons {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(241,235,226,0.85);
}
.mock-phone__icons svg {
  height: 9px;
  width: auto;
}

/* Chat header */
.mock-phone__header {
  padding: 12px 16px 12px;
  background: #1a1416;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 3;
}
.mock-phone__avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brass), #876a36);
  color: var(--wine);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.mock-phone__contact { line-height: 1.2; }
.mock-phone__name {
  font-family: 'DM Serif Text', serif;
  font-size: 0.78rem;
  color: var(--bone);
  font-weight: 700;
}
.mock-phone__status {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.62rem;
  color: rgba(241,235,226,0.55);
  letter-spacing: 0.1em;
  margin-top: 2px;
}

/* The viewport that crops + fades the scrolling messages */
.bot-window {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: #110c0e;
  /* Soft fade at top + bottom so messages "crawl" in and out */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.bot-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 12px;
}

/* Infinite vertical crawl. Pauses on hover for readability. */
.bot-messages--scroll {
  animation: botCrawl 28s linear infinite;
}
.bot-messages--scroll:hover { animation-play-state: paused; }
@keyframes botCrawl {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .bot-messages--scroll { animation: none; }
}

.msg {
  background: linear-gradient(180deg, #2c1f23, #241a1d);
  border-radius: 12px 12px 12px 3px;
  padding: 10px 12px;
  max-width: 94%;
  border-left: 2px solid var(--brass);
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  flex-shrink: 0;
}
.msg__day {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 5px;
}
.msg p:not(.msg__day) {
  font-family: 'DM Serif Text', serif;
  font-size: 0.72rem;
  line-height: 1.5;
  color: rgba(241,235,226,0.92);
}

/* =============================================================
   THE 7-DAY JOURNEY
   ============================================================= */

.journey__head {
  text-align: center;
  margin-bottom: 2.75rem;
}

.journey__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.day-row {
  background: var(--rose-mist);
  border: 1px solid rgba(212, 160, 165, 0.4);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1.5rem;
  align-items: center;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

/* Alternate the rose tint subtly */
.day-row:nth-child(even) {
  background: var(--paper);
  border-color: var(--brass-soft);
}

.day-row:hover {
  transform: translateX(4px);
  border-color: var(--rose);
  box-shadow: 0 14px 30px -22px rgba(58,10,26,0.25);
}

.day-row__num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 2.25rem;
  color: var(--brass);
  line-height: 1;
  text-align: center;
}

.day-row__body { min-width: 0; }

.day-row__tag {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine);
  background: rgba(58, 10, 26, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 0.4rem;
}

.day-row h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--wine);
  line-height: 1.15;
}

.day-row--accent {
  background: linear-gradient(120deg, #f0d8db, #ead5d7 70%);
  border-color: var(--rose);
}
.day-row--accent .day-row__num { color: var(--wine); }
.day-row--accent .day-row__tag {
  background: var(--wine);
  color: var(--bone);
}

/* =============================================================
   VOICES / TESTIMONIALS — 2x2 grid
   ============================================================= */

.voices__head {
  text-align: center;
  margin-bottom: 2.75rem;
}

.voices__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  max-width: 1000px;
  margin: 0 auto;
}

.voice-card {
  background: var(--paper);
  border: 1px solid var(--brass-soft);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.voice-card:hover {
  transform: translateY(-3px);
  border-color: var(--brass);
  box-shadow: 0 18px 36px -22px rgba(58,10,26,0.18);
}

.voice-card__label {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--brass-soft);
}

.voice-card__quote {
  font-family: 'DM Serif Text', serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--wine);
  flex: 1;
}

.voice-card--declaration .voice-card__quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--wine-mid);
}

.voice-card__attrib {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--brass-soft);
}

/* =============================================================
   ABOUT JULIA
   ============================================================= */

.about { text-align: center; }

.about__greeting {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}
.about__greeting em {
  font-family: 'Allura', cursive;
  font-style: normal;
  font-weight: 400;
  font-size: 1.4em;
  color: var(--wine);
  letter-spacing: 0;
  margin-left: 0.1em;
  vertical-align: -0.05em;
}

.about__body {
  font-family: 'DM Serif Text', serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-muted);
  text-align: left;
}
.about__body p + p { margin-top: 1.25rem; }
.about__body em { color: var(--wine); font-style: italic; }

/* =============================================================
   JOIN / PRICING
   ============================================================= */

.join {
  text-align: center;
  padding: 3.5rem 0 4.5rem;
}
/* Kill the section hairline above this section so we don't stack dividers with the about pullquote */
.about::after { display: none !important; }

/* Larger eyebrow specifically for JOIN (less of a tiny label, more of a clear marker) */
.join .eyebrow--center {
  font-size: 1.05rem;
  letter-spacing: 0.32em;
  margin-bottom: 1.75rem;
}
.join .eyebrow--center::after {
  width: 44px;
  margin-top: 0.85rem;
}

.join__lead {
  font-family: 'DM Serif Text', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 540px;
  margin: 1.5rem auto 3rem;
}

.price-card {
  max-width: 460px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--brass);
  border-radius: var(--radius);
  padding: 2.75rem 2.25rem 2.5rem;
  text-align: center;
  box-shadow: 0 30px 60px -30px rgba(58,10,26,0.3), 0 0 0 6px rgba(176,138,74,0.08);
}

.price-card__label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.75rem;
}

.price-card__price {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 5rem;
  line-height: 1;
  color: var(--wine);
  margin-bottom: 0.4rem;
}
.price-card__currency {
  font-size: 0.5em;
  vertical-align: 0.7em;
  font-weight: 500;
  margin-right: 0.05em;
  color: var(--brass);
}

.price-card__sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-muted);
  margin-bottom: 2rem;
}

.price-card__list {
  list-style: none;
  text-align: left;
  margin: 0 auto 2rem;
  max-width: 360px;
}
.price-card__list li {
  font-family: 'DM Serif Text', serif;
  font-size: 0.95rem;
  color: var(--wine);
  padding: 0.55rem 0 0.55rem 1.8rem;
  border-bottom: 1px solid var(--brass-soft);
  position: relative;
  line-height: 1.4;
}
.price-card__list li:last-child { border-bottom: none; }
.price-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 12px;
  height: 6px;
  border-left: 1.5px solid var(--brass);
  border-bottom: 1.5px solid var(--brass);
  transform: rotate(-45deg);
}

.price-card__micro {
  margin-top: 1.25rem;
  font-family: 'DM Serif Text', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* =============================================================
   FAQ
   ============================================================= */

.faq { padding: 5rem 0 6rem; text-align: center; }
.faq .eyebrow--center { margin-bottom: 1.5rem; }
.faq .section-title { margin-bottom: 3rem; }

.faq__item {
  border-top: 1px solid var(--brass-soft);
  padding: 1.5rem 0;
  text-align: left;
}
.faq__item:last-of-type { border-bottom: 1px solid var(--brass-soft); }

.faq__item summary {
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--wine);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--brass);
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.faq__item[open] summary::after { transform: rotate(45deg); }

.faq__item p {
  margin-top: 1rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  font-family: 'DM Serif Text', serif;
}

/* =============================================================
   FOOTER
   ============================================================= */

.footer {
  padding: 3rem 0 4rem;
  text-align: center;
  background: var(--wine);
  color: var(--bone);
}
.footer__brand {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--bone);
}
.footer__byline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(241,235,226,0.65);
  margin-top: 0.5rem;
}
.footer__name {
  font-family: 'Allura', cursive;
  text-transform: none;
  font-size: 1.3rem;
  color: var(--brass);
  letter-spacing: 0;
  margin-left: 0.25rem;
}
.footer__contact {
  margin-top: 1.25rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(241,235,226,0.7);
}
.footer__contact a { color: var(--brass); }
.footer__contact a:hover { color: var(--bone); }

/* =============================================================
   RESPONSIVE
   ============================================================= */

@media (max-width: 920px) {
  section { padding: 3.5rem 0; }

  .hero { min-height: auto; }
  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-right: 0;
  }
  .hero__text {
    padding: 3rem 1.5rem 1.5rem;
    text-align: center;
    align-items: center;
  }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .hero__photo {
    max-width: 360px;
    aspect-ratio: 4 / 5;
    margin: 0 auto 2rem;
    -webkit-mask-image: radial-gradient(ellipse 100% 105% at 50% 50%, #000 60%, transparent 100%);
            mask-image: radial-gradient(ellipse 100% 105% at 50% 50%, #000 60%, transparent 100%);
  }
  .hero__photo img {
    object-position: center top;
  }

  .kit__grid {
    grid-template-columns: 1fr 1fr;
  }

  .delivery__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .delivery__text .section-title { text-align: center; }
  .delivery__text .eyebrow { display: block; text-align: center; margin: 0 auto 1rem; }

  .voices__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .workbooks__grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .workbook-mock__frame {
    max-width: 320px;
  }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .container { padding: 0 22px; }
  section { padding: 3rem 0; }
  .hero__text { padding: 2.5rem 1.25rem 1.5rem; }
  .hero__lead { font-size: 1rem; }
  .hero__photo { max-width: 280px; margin-bottom: 1.5rem; }

  .kit__grid { grid-template-columns: 1fr; gap: 1rem; }
  .kit-card { padding: 1.75rem 1.5rem; }

  .day-row {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
    padding: 1.25rem 1.25rem;
  }
  .day-row__num { font-size: 2rem; }
  .day-row h3 { font-size: 1.15rem; }

  .voice-card { padding: 1.75rem 1.5rem; }

  .price-card { padding: 2.25rem 1.5rem 2rem; }
  .price-card__price { font-size: 4rem; }

  .pullquote { padding: 1.75rem 1rem; }

  .join { padding: 3rem 0 4rem; }

  .mock-phone { max-width: 230px; }
  .workbooks__grid { gap: 2.5rem; }
  .workbook-mock__frame { max-width: 280px; padding: 18px 16px; }
}
