:root {
  --white: #FFFFFF;
  --paper: #F7F1EA;
  --blush: #EFDCD3;
  --ink: #141210;
  --red: #C0281E;
  --line: rgba(20, 18, 16, 0.12);
}

@font-face {
  font-family: 'Brittany Signature';
  src: url('/assets/BrittanySignature.woff2') format('woff2'),
       url('/assets/BrittanySignature.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}

.label {
  font-family: 'Bodoni Moda', serif;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.68rem;
  font-weight: 500;
}

.script { font-family: 'Brittany Signature', cursive; color: var(--red); }

/* ANNOUNCEMENT BAR */
.announce {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 12px 5vw;
  font-family: 'Bodoni Moda', serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.announce a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }

/* NAV */
nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 24px 5vw;
  border-bottom: 1px solid var(--ink);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-menu { display: flex; gap: 30px; }

.nav-menu a {
  font-family: 'Bodoni Moda', serif;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-menu a:hover, .nav-menu a.active { color: var(--red); }

.nav-mark {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  color: var(--ink);
  text-decoration: none;
}

.nav-cta {
  justify-self: end;
  font-family: 'Bodoni Moda', serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ink);
  text-decoration: none;
  padding: 12px 20px;
  transition: background 0.25s ease;
}

.nav-cta:hover { background: var(--red); }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  justify-self: start;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  margin: 5px 0;
}

.mobile-menu {
  display: none;
  border-bottom: 1px solid var(--ink);
  background: var(--white);
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 18px 5vw;
  font-family: 'Bodoni Moda', serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 900px) {
  .nav-menu { display: none; }
  .hamburger { display: block; }
  nav { grid-template-columns: auto 1fr auto; gap: 14px; }
  .nav-mark { font-size: 0.85rem; letter-spacing: 0.2em; }
  .nav-cta { font-size: 0.6rem; padding: 10px 14px; }
}

/* BUTTONS */
.btn-solid {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-family: 'Bodoni Moda', serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 19px 34px;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease;
}

.btn-solid:hover { background: var(--red); }

.btn-ghost {
  display: inline-block;
  color: var(--ink);
  text-decoration: none;
  font-family: 'Bodoni Moda', serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 30px;
  border: 1px solid var(--ink);
  transition: all 0.25s ease;
}

.btn-ghost:hover { border-color: var(--red); color: var(--red); }

/* HERO (homepage) */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  padding: 5vh 5vw 9vh;
  gap: 50px;
  align-items: end;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; align-items: start; padding-top: 7vh; min-height: unset; }
  .hero-visual { order: -1; }
}

.hero-copy { padding-bottom: 4vh; }

h1.hero-title {
  font-family: 'Bodoni Moda', serif;
  font-weight: 500;
  font-size: clamp(2.7rem, 5.6vw, 5.2rem);
  line-height: 1.06;
}

.hero-benefit {
  display: block;
  margin-top: 26px;
  max-width: 38ch;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.5;
  color: rgba(20,18,16,0.8);
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.hero-micro {
  display: block;
  margin-top: 20px;
  font-family: 'Bodoni Moda', serif;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20,18,16,0.55);
}

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }

.colour-block {
  background: var(--blush);
  width: 100%;
  aspect-ratio: 1/1.02;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.book-cover { width: 52%; box-shadow: 22px 26px 60px rgba(20,18,16,0.22); }
.book-cover img { width: 100%; display: block; }

.book-flat {
  position: absolute;
  width: 26%;
  left: -8%;
  bottom: 12%;
  box-shadow: 12px 14px 34px rgba(20,18,16,0.16);
  background: var(--white);
}

.book-flat img { width: 100%; display: block; }

@media (max-width: 900px) { .book-flat { display: none; } }

/* PROOF STRIP */
.proof {
  border-top: 1px solid var(--ink);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 800px) { .proof { grid-template-columns: 1fr 1fr; } }

.proof-item {
  padding: 36px 30px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.proof-item:last-child { border-right: none; }
@media (max-width: 800px) { .proof-item:nth-child(2) { border-right: none; } .proof-item:nth-child(1), .proof-item:nth-child(2) { border-bottom: 1px solid var(--line); } }

.proof-item .big {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.9rem;
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}

.proof-item .small {
  font-family: 'Bodoni Moda', serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(20,18,16,0.6);
}

/* PROBLEM */
.problem {
  border-top: 1px solid var(--ink);
  padding: 120px 5vw;
  text-align: center;
  background: var(--paper);
}

.problem .label { color: var(--red); display: block; margin-bottom: 22px; }

.problem h2 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 500;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  max-width: 22ch;
  margin: 0 auto 50px;
}

.problem-lines { max-width: 560px; margin: 0 auto; }

.problem-lines p {
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.5;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(20,18,16,0.85);
}

.problem-lines p:last-child { border-bottom: none; }

.problem .resolve {
  margin-top: 44px;
  font-size: 1.2rem;
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.problem .resolve-label {
  display: block;
  font-family: 'Bodoni Moda', serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 20px;
}

/* DOORS */
.doors-wrap { border-top: 1px solid var(--ink); padding: 110px 5vw; }

.doors-head { text-align: center; margin-bottom: 60px; }
.doors-head .label { display: block; margin-bottom: 16px; color: rgba(20,18,16,0.55); }
.doors-head h2 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
}

.doors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--ink);
}

@media (max-width: 900px) { .doors { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .doors { grid-template-columns: 1fr; } }

.door {
  padding: 52px 32px 46px;
  border-right: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  min-height: 360px;
  transition: background 0.3s ease;
  position: relative;
}

.door:last-child { border-right: none; }
@media (max-width: 900px) { .door { border-bottom: 1px solid var(--line); } }
.door:hover { background: var(--paper); }

.door.featured { background: var(--ink); color: var(--white); }
.door.featured:hover { background: #241F1B; }
.door.featured .door-verb { color: var(--blush); }
.door.featured p { color: rgba(255,255,255,0.85); }

.door .badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-family: 'Bodoni Moda', serif;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 14px;
  white-space: nowrap;
}

.door .door-verb {
  font-family: 'Bodoni Moda', serif;
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}

.door h3 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 500;
  font-size: 1.55rem;
  margin-bottom: 14px;
}

.door p { font-size: 1.02rem; line-height: 1.55; color: rgba(20,18,16,0.78); flex-grow: 1; }

.door .door-price { font-family: 'Bodoni Moda', serif; font-size: 0.95rem; margin-top: 20px; }
.door .door-price s { opacity: 0.5; margin-left: 8px; font-size: 0.8rem; }

.door .door-cta {
  margin-top: 14px;
  font-family: 'Bodoni Moda', serif;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.door:hover .door-cta { color: var(--red); }
.door.featured:hover .door-cta { color: var(--blush); }

/* WATCH */
section.watch { border-top: 1px solid var(--ink); padding: 120px 5vw; }

.watch-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.watch-head h2 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 500;
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
}

.watch-head p { max-width: 36ch; font-size: 1.1rem; line-height: 1.6; color: rgba(20,18,16,0.78); }

.episodes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
@media (max-width: 900px) { .episodes { grid-template-columns: 1fr; } }

.episode { text-decoration: none; color: var(--ink); }

.episode-frame {
  aspect-ratio: 4/5;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  transition: background 0.3s ease;
}

.episode:hover .episode-frame { background: var(--blush); }

.episode-frame .play {
  width: 58px; height: 58px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.episode-frame .ep-tag {
  position: absolute;
  top: 18px; left: 18px;
  font-family: 'Bodoni Moda', serif;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(20,18,16,0.55);
}

.episode h3 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.episode .verdict {
  font-style: italic;
  font-size: 1.15rem;
  color: var(--red);
  line-height: 1.4;
  display: block;
}

.episode .ep-link {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Bodoni Moda', serif;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(20,18,16,0.6);
}

/* QUOTE */
.quote { border-top: 1px solid var(--ink); padding: 110px 5vw; text-align: center; }

.quote blockquote {
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.4;
  max-width: 26ch;
  margin: 0 auto 28px;
}

.quote .attr {
  font-family: 'Bodoni Moda', serif;
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(20,18,16,0.6);
}

.quote .sig {
  display: block;
  font-family: 'Brittany Signature', cursive;
  font-size: 2.6rem;
  color: var(--red);
  margin-top: 34px;
  line-height: 1;
}

/* CAPTURE */
section.capture { border-top: 1px solid var(--ink); background: var(--paper); padding: 120px 5vw; }

.capture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

@media (max-width: 900px) { .capture-grid { grid-template-columns: 1fr; } }

.capture h2 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 500;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  margin-bottom: 20px;
}

.capture .lead { font-size: 1.15rem; line-height: 1.65; color: rgba(20,18,16,0.8); margin-bottom: 34px; }

.capture-includes { list-style: none; margin-bottom: 38px; }

.capture-includes li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.08rem;
  display: flex;
  gap: 14px;
  align-items: baseline;
}

.capture-includes li::before { content: '—'; color: var(--red); font-family: 'Bodoni Moda', serif; }

.capture-form { display: flex; border: 1px solid var(--ink); background: var(--white); max-width: 460px; }

.capture-form input {
  flex-grow: 1;
  border: none;
  background: transparent;
  padding: 18px 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--ink);
  min-width: 0;
}

.capture-form input:focus { outline: 2px solid var(--red); outline-offset: -2px; }

.capture-form button {
  border: none;
  background: var(--ink);
  color: var(--white);
  padding: 0 28px;
  font-family: 'Bodoni Moda', serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease;
  white-space: nowrap;
}

.capture-form button:hover { background: var(--red); }

.capture-micro {
  margin-top: 16px;
  font-family: 'Bodoni Moda', serif;
  letter-spacing: 0.1em;
  font-size: 0.62rem;
  text-transform: uppercase;
  color: rgba(20,18,16,0.55);
}

.capture-visual {
  background: var(--blush);
  aspect-ratio: 1/1.05;
  display: flex;
  justify-content: center;
  align-items: center;
}

.capture-visual img { width: 55%; box-shadow: 18px 22px 50px rgba(20,18,16,0.2); }

/* PAGE HEADERS (inner pages) */
.page-head {
  padding: 90px 5vw 70px;
  text-align: center;
  border-bottom: 1px solid var(--ink);
}

.page-head .label { color: var(--red); display: block; margin-bottom: 18px; }

.page-head h1 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.08;
  max-width: 18ch;
  margin: 0 auto;
}

.page-head .sub {
  display: block;
  margin: 24px auto 0;
  max-width: 44ch;
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  color: rgba(20,18,16,0.78);
}

/* GENERIC CONTENT SECTIONS */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding: 100px 5vw;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 900px) { .content-split { grid-template-columns: 1fr; gap: 44px; } }

.content-split h2 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 22px;
}

.content-split p { font-size: 1.15rem; line-height: 1.7; color: rgba(20,18,16,0.82); }
.content-split p + p { margin-top: 16px; }

.content-visual {
  background: var(--blush);
  aspect-ratio: 1/1.05;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-visual img { width: 55%; box-shadow: 18px 22px 50px rgba(20,18,16,0.2); }

/* LIST BLOCKS (toolkit worksheets, circle weeks) */
.list-block { padding: 100px 5vw; border-top: 1px solid var(--ink); max-width: 900px; margin: 0 auto; }

.list-block > .label { display: block; text-align: center; color: rgba(20,18,16,0.55); margin-bottom: 16px; }

.list-block h2 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  text-align: center;
  margin-bottom: 56px;
}

.item-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.item-row .num {
  font-family: 'Bodoni Moda', serif;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  color: var(--red);
}

.item-row h3 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 500;
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.item-row p { font-size: 1.08rem; line-height: 1.6; color: rgba(20,18,16,0.78); }

/* CTA BAND */
.cta-band {
  border-top: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  text-align: center;
  padding: 90px 5vw;
}

.cta-band h2 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  margin-bottom: 14px;
}

.cta-band p { font-size: 1.15rem; color: rgba(255,255,255,0.8); margin-bottom: 36px; }

.cta-band .btn-solid { background: var(--white); color: var(--ink); }
.cta-band .btn-solid:hover { background: var(--red); color: var(--white); }

/* FOOTER */
footer {
  border-top: 1px solid var(--ink);
  padding: 48px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

footer .label { color: rgba(20,18,16,0.5); }

.footer-links { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }

.footer-links a {
  font-family: 'Bodoni Moda', serif;
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-ljf { font-style: italic; font-size: 0.95rem; color: rgba(20,18,16,0.6); }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
