/* ============================================================
   Tara Jordan Ministries
   Palette sampled directly from the logo.
   ============================================================ */

:root{
  --ink:        #14120C;   /* warm near-black, from the logo lettering */
  --vesper:     #1B1F19;   /* deep ink-green, nods to the laurel sprig */
  --bronze:     #2A2114;   /* deep bronze sampled from the cover's hillside */
  --ivory:      #F4EDE0;   /* warm linen, the lightest ground on the site */
  --parchment:  #EBE0CD;   /* sand */
  --sand-deep:  #E3D6C0;   /* deepest light ground, for the About band */
  --gold:       #B89060;   /* exact logo gold */
  --gold-light: #D8C0A0;
  --gold-deep:  #755327;   /* accessible gold for text on all three light grounds */
  --body:       #3D372C;
  --body-light: #DDD6C7;
  --hairline:   rgba(184,144,96,.38);

  --display: "Prata", Georgia, serif;
  --display-italic: "Cormorant Garamond", Georgia, serif;
  --serif:   "Source Serif 4", Georgia, serif;
  --sans:    "Jost", system-ui, sans-serif;

  --measure: 1180px;
  --pad: clamp(1.25rem, 5vw, 3rem);
}

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

html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion:reduce){ html{ scroll-behavior:auto; } }

body{
  margin:0;
  background:var(--ivory);
  color:var(--body);
  font-family:var(--serif);
  font-size:1.15rem;
  line-height:1.75;
  -webkit-font-smoothing:antialiased;
}

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

.wrap{ width:100%; max-width:var(--measure); margin-inline:auto; padding-inline:var(--pad); }

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}
.skip{
  position:absolute; left:-999px; top:0; z-index:200;
  background:var(--ink); color:var(--ivory); padding:.75rem 1.25rem;
}
.skip:focus{ left:0; }

:focus-visible{ outline:2px solid var(--gold-deep); outline-offset:3px; }

/* ---------- Type scale ---------- */
h1,h2,h3,h4{ font-family:var(--display); font-weight:400; color:var(--ink); margin:0; }

h1{
  font-size:clamp(3.4rem, 10vw, 6.75rem);
  line-height:1.04;
  letter-spacing:-.012em;
}
h1 em{ font-family:var(--display-italic); font-style:italic; font-weight:600; color:var(--gold-deep); }

.h2{
  font-size:clamp(2.1rem, 5vw, 3.35rem);
  line-height:1.18;
  letter-spacing:-.008em;
}

.eyebrow{
  font-family:var(--sans);
  font-size:.8rem;
  font-weight:500;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--gold-deep);
  margin:0 0 1.4rem;
  display:flex;
  align-items:center;
  gap:.7rem;
  flex-wrap:wrap;
}
.eyebrow-light{ color:var(--gold-light); }

.dot{
  width:3px; height:3px; border-radius:50%;
  background:currentColor; display:inline-block; opacity:.7;
}

.lead{
  font-size:clamp(1.22rem, 2vw, 1.4rem);
  line-height:1.65;
  max-width:34ch;
  margin:1.6rem 0 0;
}
.lead-sm{ font-size:1.2rem; line-height:1.6; }

.byline{
  font-family:var(--sans);
  font-size:.82rem;
  font-weight:500;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gold-deep);
  margin:1.6rem 0 0;
}

/* ---------- Signature divider: lifted from the logo ---------- */
.divider{
  display:flex; align-items:center; justify-content:center;
  gap:.9rem; margin:1.5rem auto 2rem; max-width:260px;
}
.divider::before,
.divider::after{
  content:""; flex:1; height:1px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
}
.divider span{
  width:5px; height:5px; background:var(--gold);
  transform:rotate(45deg); flex:none;
}
.divider-left{ margin-inline:0; }
.divider-light::before,
.divider-light::after{
  background:linear-gradient(90deg,transparent,var(--gold-light),transparent);
}
.divider-light span{ background:var(--gold-light); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  font-family:var(--sans);
  font-size:.85rem; font-weight:500;
  letter-spacing:.1em; text-transform:uppercase;
  padding:1.05rem 2.1rem;
  background:var(--ink); color:var(--ivory);
  text-decoration:none; border:1px solid var(--ink);
  transition:background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease;
  cursor:pointer;
}
.btn:hover{ background:var(--gold-deep); border-color:var(--gold-deep); transform:translateY(-2px); }

.btn-gold{ background:var(--gold); border-color:var(--gold); color:var(--ink); }
.btn-gold:hover{ background:var(--gold-light); border-color:var(--gold-light); color:var(--ink); }

.btn-ghost{ background:transparent; color:var(--ink); border-color:var(--hairline); }
.btn-ghost:hover{ background:var(--ink); color:var(--ivory); border-color:var(--ink); }

.btn-ghost-light{ color:var(--ivory); border-color:rgba(216,192,160,.45); }
.btn-ghost-light:hover{ background:var(--ivory); color:var(--ink); border-color:var(--ivory); }

.btn-sm{ padding:.7rem 1.35rem; font-size:.7rem; }
.btn-block{ width:100%; }

.cta-row{ display:flex; flex-wrap:wrap; gap:.85rem; margin-top:2.2rem; }

.link-arrow{
  font-family:var(--sans); font-size:.78rem; letter-spacing:.18em;
  text-transform:uppercase; color:var(--gold-deep);
  text-decoration:none; border-bottom:1px solid var(--hairline);
  padding-bottom:.35rem; display:inline-block; margin-top:1.6rem;
  transition:border-color .3s ease;
}
.link-arrow::after{ content:" →"; }
.link-arrow:hover{ border-color:var(--gold-deep); }

/* ============================================================
   Header
   ============================================================ */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(244,237,224,.93);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(184,144,96,.2);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:1rem; padding-block:.85rem;
}
.brand{ display:flex; align-items:center; gap:.75rem; text-decoration:none; }
.brand img{ width:52px; height:52px; }
.brand-text{ display:flex; flex-direction:column; line-height:1; }
.brand-name{
  font-family:var(--display); font-size:1.15rem;
  color:var(--ink); letter-spacing:.05em;
}
.brand-sub{
  font-family:var(--sans); font-size:.6rem; letter-spacing:.34em;
  text-transform:uppercase; color:var(--gold-deep); margin-top:.3rem;
}

.site-nav{ display:flex; align-items:center; gap:2rem; }
.site-nav a{
  font-family:var(--sans); font-size:.84rem; font-weight:500; letter-spacing:.08em;
  text-transform:uppercase; color:var(--ink); text-decoration:none;
  transition:color .25s ease;
}
.site-nav a:hover{ color:var(--gold-deep); }
.site-nav a.btn{ color:var(--ivory); }
.site-nav a.btn:hover{ color:var(--ivory); }

.nav-toggle{
  display:none; width:44px; height:44px; background:none;
  border:1px solid var(--hairline); cursor:pointer; position:relative;
}
.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after{
  content:""; position:absolute; left:12px; width:20px; height:1px;
  background:var(--ink); transition:transform .3s ease, opacity .3s ease;
}
.nav-toggle-bar{ top:21px; }
.nav-toggle-bar::before{ left:0; top:-6px; }
.nav-toggle-bar::after{ left:0; top:6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar{ background:transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before{ transform:translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after{ transform:translateY(-6px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero{
  padding-block:clamp(3.5rem, 9vw, 7rem) clamp(3rem, 7vw, 5.5rem);
  overflow:hidden;
  position:relative;
  background:
    radial-gradient(120% 90% at 78% 8%, rgba(184,144,96,.22) 0%, rgba(184,144,96,.06) 42%, transparent 68%),
    linear-gradient(178deg, var(--ivory) 0%, #EFE6D6 100%);
}
.hero-grid{
  display:grid; grid-template-columns:1.05fr .95fr;
  gap:clamp(2rem,6vw,5rem); align-items:center;
}
.hero-art{ display:flex; justify-content:center; position:relative; }
.hero-art::before{
  content:""; position:absolute; inset:-14% -6%;
  border:1px solid var(--hairline); border-radius:50%;
  pointer-events:none;
}

/* ============================================================
   Pillars
   ============================================================ */
.pillars{
  background:linear-gradient(180deg, var(--parchment) 0%, #E7DAC5 100%);
  padding-block:clamp(3rem,6vw,4.5rem);
  border-block:1px solid rgba(184,144,96,.22);
}
.pillar-grid{
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:clamp(1.5rem,4vw,3.5rem);
}
.pillar{ text-align:center; position:relative; }
.pillar + .pillar::before{
  content:""; position:absolute; left:calc(-1 * clamp(.75rem,2vw,1.75rem));
  top:12%; bottom:12%; width:1px;
  background:linear-gradient(180deg,transparent,var(--hairline),transparent);
}
.pillar h3{
  font-size:1.65rem; margin-bottom:.6rem;
  font-style:italic; color:var(--gold-deep);
}
.pillar p{ margin:0; font-size:1.08rem; line-height:1.65; }

/* ============================================================
   The Book (dark)
   ============================================================ */
.book-section{
  background:var(--vesper); color:var(--body-light);
  padding-block:clamp(4rem,9vw,7rem);
}
.book-section .h2,
.book-section h3{ color:var(--ivory); }
.book-grid{
  display:grid; grid-template-columns:.85fr 1.15fr;
  gap:clamp(2.5rem,7vw,5.5rem); align-items:center;
}
.book-visual{ display:flex; justify-content:center; }
.book-copy p{ max-width:56ch; }
.book-copy em{ color:var(--gold-light); font-style:italic; }

.checklist{ list-style:none; padding:0; margin:2rem 0 0; }
.checklist li{
  position:relative; padding-left:1.7rem; margin-bottom:.8rem;
  font-size:1.08rem; line-height:1.6;
}
.checklist li::before{
  content:""; position:absolute; left:0; top:.72em;
  width:5px; height:5px; background:var(--gold);
  transform:rotate(45deg);
}
.checklist-dark li::before{ background:var(--gold-deep); }

.price-row{
  display:flex; align-items:baseline; gap:1rem; flex-wrap:wrap;
  margin-top:2.2rem; padding-top:1.6rem;
  border-top:1px solid rgba(184,144,96,.28);
}
.price{
  font-family:var(--display); font-size:2.1rem; color:var(--gold);
  line-height:1;
}
.price-note{
  font-family:var(--sans); font-size:.78rem; letter-spacing:.1em;
  text-transform:uppercase; opacity:.85;
}
.fineprint{
  font-family:var(--sans); font-size:.82rem; letter-spacing:.02em;
  line-height:1.6; opacity:.82; margin-top:1.1rem;
}

/* ============================================================
   Digital resource
   ============================================================ */
.guide-section{
  padding-block:clamp(4rem,9vw,7rem);
  background:linear-gradient(180deg, #E9DECA 0%, #F0E8D9 50%, #E9DECA 100%);
}
.section-head{ text-align:center; max-width:46rem; margin-inline:auto; }
.section-head .eyebrow{ justify-content:center; }
.section-intro{ margin-top:.5rem; }

.guide-grid{
  display:grid; grid-template-columns:1.35fr 1fr;
  gap:clamp(1.5rem,4vw,3rem); margin-top:3rem; align-items:start;
}
.guide-card{
  background:#F6EFE2;
  border:1px solid rgba(184,144,96,.36);
  box-shadow:0 14px 38px rgba(42,33,20,.09);
  padding:clamp(1.75rem,4vw,3rem);
}
.guide-card h3{ font-size:2rem; margin:.4rem 0 1rem; }
.guide-format{
  font-family:var(--sans); font-size:.74rem; letter-spacing:.16em; font-weight:500;
  text-transform:uppercase; color:var(--gold-deep); margin:0;
}
.guide-card .btn{ margin-top:1.8rem; }

.guide-aside{
  background:var(--ink); color:var(--body-light);
  padding:clamp(1.75rem,4vw,2.5rem);
}
.aside-title{ color:var(--ivory); font-size:1.65rem; margin-bottom:.8rem; font-style:italic; }
.guide-aside p{ font-size:1.06rem; }

.signup{ display:flex; flex-direction:column; gap:.7rem; margin-top:1.5rem; }
.signup input{
  font-family:var(--serif); font-size:1rem;
  padding:.95rem 1.1rem; background:transparent;
  border:1px solid rgba(216,192,160,.4); color:var(--ivory);
}
.signup input::placeholder{ color:rgba(207,199,182,.5); }
.signup .btn{ background:var(--gold); border-color:var(--gold); color:var(--ink); }
.signup .btn:hover{ background:var(--gold-light); border-color:var(--gold-light); }

/* ============================================================
   About
   ============================================================ */
.about-section{
  background:var(--sand-deep);
  padding-block:clamp(4rem,9vw,7rem);
  border-block:1px solid rgba(184,144,96,.22);
}
.about-grid{
  display:grid; grid-template-columns:.8fr 1.2fr;
  gap:clamp(2rem,6vw,4.5rem); align-items:center;
}
/* Portrait: a gold hairline offset behind the photo — the editorial
   author-photo treatment, and a rectangle that rhymes with the cover. */
.portrait{
  position:relative; margin:0;
  max-width:400px;
}
.portrait::before{
  content:""; position:absolute;
  inset:1.5rem -1.5rem -1.5rem 1.5rem;
  border:1px solid var(--gold);
  opacity:.55; z-index:0;
}
.portrait img{
  position:relative; z-index:1;
  width:100%; height:auto; display:block;
  box-shadow:0 18px 44px rgba(20,18,12,.22);
}
.about-copy p{ max-width:56ch; }

/* ============================================================
   Speaking
   ============================================================ */
.speaking-section{
  background:
    radial-gradient(90% 80% at 50% 0%, rgba(184,144,96,.13), transparent 62%),
    var(--bronze);
  color:var(--body-light);
  padding-block:clamp(4rem,9vw,7rem);
}
.speaking-section .h2{ color:var(--ivory); }

.booking{
  display:grid; grid-template-columns:1fr 1fr;
  gap:1.2rem; max-width:44rem; margin:2.5rem auto 0;
}
.field{ display:flex; flex-direction:column; gap:.45rem; }
.field-full{ grid-column:1 / -1; }
.field label{
  font-family:var(--sans); font-size:.76rem; font-weight:500; letter-spacing:.13em;
  text-transform:uppercase; color:var(--gold-light);
}
.field input,
.field textarea{
  font-family:var(--serif); font-size:1rem; color:var(--ivory);
  background:transparent; border:1px solid rgba(216,192,160,.32);
  padding:.85rem 1rem; width:100%; resize:vertical;
}
.field input:focus,
.field textarea:focus{ border-color:var(--gold); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer{ background:var(--vesper); color:var(--body-light); padding-top:clamp(3rem,7vw,4.5rem); }
.footer-inner{
  display:grid; grid-template-columns:1.2fr 1fr 1fr;
  gap:clamp(2rem,5vw,3rem); padding-bottom:3rem;
}
.footer-brand img{ width:88px; height:88px; }
.footer-tag{
  font-family:var(--sans); font-size:.66rem; letter-spacing:.28em;
  text-transform:uppercase; color:var(--gold-light);
  margin-top:1.1rem; display:flex; align-items:center; gap:.6rem;
}
.site-footer h4{
  font-family:var(--sans); font-size:.74rem; letter-spacing:.16em; font-weight:500;
  text-transform:uppercase; color:var(--gold); font-weight:400;
  margin-bottom:1.1rem;
}
.footer-nav,
.footer-connect{ display:flex; flex-direction:column; gap:.6rem; align-items:flex-start; }
.site-footer a{
  color:var(--body-light); text-decoration:none;
  font-size:.98rem; transition:color .25s ease;
}
.site-footer a:hover{ color:var(--gold-light); }
.socials{ display:flex; gap:1.1rem; margin-top:.6rem; flex-wrap:wrap; }
.socials a{
  font-family:var(--sans); font-size:.72rem; letter-spacing:.16em;
  text-transform:uppercase;
}
.footer-base{
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:1rem;
  padding-block:1.5rem;
  border-top:1px solid rgba(184,144,96,.2);
  font-family:var(--sans); font-size:.72rem; letter-spacing:.08em;
  opacity:.7;
}
.footer-base p{ margin:0; }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal{ opacity:0; transform:translateY(22px); }
.reveal.is-visible{
  opacity:1; transform:none;
  transition:opacity .8s ease, transform .8s cubic-bezier(.2,.7,.3,1);
}
@media (prefers-reduced-motion:reduce){
  .reveal{ opacity:1; transform:none; }
  .reveal.is-visible{ transition:none; }
  .btn:hover{ transform:none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width:900px){
  .hero-grid,
  .book-grid,
  .about-grid,
  .guide-grid{ grid-template-columns:1fr; }

  .hero-grid{ text-align:left; }
  .hero-art{ order:-1; margin-bottom:1rem; }
  .hero-art::before{ display:none; }
  .lead{ max-width:100%; }

  .book-grid .book-visual{ margin-bottom:1rem; }
  .about-portrait{ max-width:260px; }

  .footer-inner{ grid-template-columns:1fr 1fr; }
}

@media (max-width:760px){
  .nav-toggle{ display:block; }
  .site-nav{
    position:absolute; left:0; right:0; top:100%;
    flex-direction:column; align-items:stretch; gap:0;
    background:var(--ivory);
    border-bottom:1px solid var(--hairline);
    padding:.5rem var(--pad) 1.5rem;
    display:none;
  }
  .site-nav.is-open{ display:flex; }
  .site-nav a{
    padding:1rem 0; border-bottom:1px solid rgba(184,144,96,.18);
  }
  .site-nav a.btn{ margin-top:1rem; border:1px solid var(--ink); justify-content:center; }

  .pillar-grid{ grid-template-columns:1fr; gap:2rem; }
  .pillar + .pillar::before{
    left:20%; right:20%; top:calc(-1rem); bottom:auto;
    width:auto; height:1px;
    background:linear-gradient(90deg,transparent,var(--hairline),transparent);
  }
  .booking{ grid-template-columns:1fr; }
  .footer-inner{ grid-template-columns:1fr; }
  .footer-base{ justify-content:flex-start; }
}

/* ============================================================
   Refinements
   ============================================================ */

/* The logo file has a white ground, so on dark sections it needs
   a circular ivory plate to read as a medallion instead of a box. */
.footer-brand img{
  width:96px; height:96px;
  background:var(--ivory);
  border-radius:50%;
  padding:2px;
  border:1px solid rgba(184,144,96,.35);
}
.brand img{ width:56px; height:56px; border-radius:50%; }

/* Book section copy is left-aligned, so its divider should be too. */
.book-copy .divider{ margin-inline:0; }

/* Gold on parchment is too low-contrast for the price; use the deep gold. */
.guide-card .price{ color:var(--gold-deep); }

/* Keep the aside from stretching taller than its content. */
.guide-aside{ align-self:start; }

/* ============================================================
   Cover art
   Real cover in place of the CSS stand-in. The art is dark and
   backlit, so it needs a warm halo behind it on the ivory hero
   and a lifted edge on the dark section.
   ============================================================ */
.cover-mount{
  position:relative;
  width:min(360px, 78vw);
  perspective:1400px;
}
.cover-mount::before{
  content:"";
  position:absolute; inset:-18% -22% -12%;
  background:radial-gradient(60% 55% at 50% 42%,
    rgba(184,144,96,.30) 0%, rgba(184,144,96,.10) 45%, transparent 72%);
  pointer-events:none; z-index:0;
}
.cover{
  position:relative; z-index:1;
  width:100%; height:auto; display:block;
  border-radius:2px;
  transform:rotateY(-11deg) rotateX(1.5deg);
  box-shadow:
    26px 36px 64px rgba(20,18,12,.34),
    6px 8px 18px rgba(20,18,12,.20),
    0 0 0 1px rgba(184,144,96,.28);
  transition:transform .7s cubic-bezier(.2,.7,.3,1), box-shadow .7s ease;
}
.cover-mount:hover .cover{
  transform:rotateY(-4deg) rotateX(.5deg) translateY(-8px);
  box-shadow:
    30px 44px 78px rgba(20,18,12,.40),
    6px 8px 18px rgba(20,18,12,.22),
    0 0 0 1px rgba(184,144,96,.42);
}
.cover-mount--flip .cover{ transform:rotateY(11deg) rotateX(1.5deg); }
.cover-mount--flip:hover .cover{ transform:rotateY(4deg) translateY(-8px); }
.book-section .cover{ box-shadow:
    26px 36px 70px rgba(0,0,0,.55),
    0 0 0 1px rgba(184,144,96,.34),
    0 0 70px rgba(184,144,96,.14); }
.book-section .cover-mount::before{ opacity:.55; }

@media (prefers-reduced-motion:reduce){
  .cover{ transition:none; }
  .cover-mount:hover .cover,
  .cover-mount--flip:hover .cover{ transform:rotateY(-11deg) rotateX(1.5deg); }
  .cover-mount--flip:hover .cover{ transform:rotateY(11deg) rotateX(1.5deg); }
}

/* ---------- Subtitle ---------- */
.subtitle{
  font-family:var(--sans);
  font-size:clamp(.92rem, 1.7vw, 1.08rem);
  font-weight:500;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--gold-deep);
  margin:1.4rem 0 0;
  line-height:1.55;
  max-width:32ch;
}
.subtitle-light{ color:var(--gold-light); max-width:38ch; margin-bottom:.4rem; }
.section-head .subtitle{ margin-inline:auto; }

/* On small screens the cover shouldn't eat the whole first screen —
   the headline and buttons need to be reachable without scrolling. */
@media (max-width:900px){
  .cover-mount{ width:min(240px, 54vw); }
  .hero{ padding-top:2rem; }
  .hero-art{ margin-bottom:1.75rem; }
  .book-section .cover-mount{ width:min(270px, 62vw); }
}

@media (max-width:900px){
  .about-portrait{ max-width:320px; }
  .portrait::before{ inset:1rem -1rem -1rem 1rem; }
}

/* The bio runs longer than a stub, so the About column gets a wider
   measure and the intro paragraph sits closer to normal body size. */
.about-copy p{ max-width:62ch; }
.about-copy .lead-sm{ font-size:1.13rem; }
.about-copy em{ font-style:italic; color:var(--gold-deep); }

/* Full book title as a single heading: main line, then the subtitle
   set smaller and in gold so the whole thing reads as one name. */
.title-full{ display:block; }
.title-sub{
  display:block;
  font-family:var(--sans);
  font-size:clamp(.8rem, 1.5vw, .95rem);
  font-weight:300;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--gold-light);
  margin-top:.9rem;
  line-height:1.6;
}
/* Footer title link wraps to two lines, so it needs its own leading. */
.footer-nav a{ line-height:1.45; }

/* ============================================================
   Legal pages (privacy, terms, refunds)
   Single readable column. No hero, no cover art: these pages
   exist to be read and referenced, not to sell.
   ============================================================ */
.legal-head{
  background:var(--parchment);
  border-bottom:1px solid rgba(184,144,96,.22);
  padding-block:clamp(3rem,7vw,4.5rem);
  text-align:center;
}
.legal-head .h2{ margin-bottom:.4rem; }
.legal-head .eyebrow{ justify-content:center; }
.legal-updated{
  font-family:var(--sans); font-size:.72rem; letter-spacing:.16em;
  text-transform:uppercase; color:var(--gold-deep); margin:1.2rem 0 0;
}
.legal-body{
  max-width:46rem;
  padding-block:clamp(3rem,7vw,5rem);
}
.legal-body h3{
  font-size:1.5rem; margin:2.75rem 0 .9rem;
}
.legal-body h3:first-of-type{ margin-top:0; }
.legal-body p,
.legal-body li{ font-size:1.1rem; }
.legal-body ul{ padding-left:1.2rem; margin:1rem 0; }
.legal-body li{ margin-bottom:.55rem; }
.legal-body a{ color:var(--gold-deep); }
.legal-note{
  background:var(--parchment);
  border-left:2px solid var(--gold);
  padding:1.25rem 1.5rem;
  margin:2.5rem 0;
  font-size:.98rem;
}
.legal-note strong{ font-family:var(--sans); font-size:.72rem;
  letter-spacing:.2em; text-transform:uppercase; color:var(--gold-deep);
  display:block; margin-bottom:.5rem; font-weight:400; }
.legal-back{ margin-top:3rem; }

/* ============================================================
   Leader's Guide column: bulk offer stacked above the free chapter
   ============================================================ */
.guide-side{ display:flex; flex-direction:column; gap:1.25rem; align-self:start; }

.bulk-card{
  background:var(--vesper); color:var(--body-light);
  border:1px solid rgba(184,144,96,.4);
  padding:clamp(1.5rem,3.5vw,2rem);
}
.bulk-card h3{ color:var(--ivory); font-size:1.5rem; margin-bottom:.7rem; }
.bulk-card p{ font-size:1.06rem; }
.bulk-card em{ color:var(--gold-light); font-style:italic; }
.bulk-card .btn{ margin-top:1.4rem; }
.bulk-flag{
  font-family:var(--sans); font-size:.74rem; letter-spacing:.15em; font-weight:500;
  text-transform:uppercase; color:var(--gold); margin:0 0 .6rem;
}

/* The fineprint under the buy buttons now carries a link. */
.fineprint a{ color:var(--gold-light); text-decoration:underline; }
.fineprint a:hover{ color:var(--gold); }

/* Two-line card headings need tighter leading than the default. */
.guide-card h3,
.bulk-card h3{ line-height:1.14; }

/* Two named resources inside one card: a small gold label separates
   them without needing two headings competing at the same level. */
.resource{ margin-top:1.6rem; }
.resource-label{
  font-family:var(--sans); font-size:.75rem; font-weight:500; letter-spacing:.14em;
  text-transform:uppercase; color:var(--gold-deep);
  margin:0 0 .5rem;
}
.resource p:last-child{ margin:0; }
.resource + .resource{
  padding-top:1.6rem;
  border-top:1px solid rgba(184,144,96,.28);
}

/* ============================================================
   Notice dialog: shown while checkout and forms are being connected
   ============================================================ */
.notice-backdrop{
  position:fixed; inset:0; z-index:300;
  background:rgba(20,18,12,.55);
  backdrop-filter:blur(3px);
  display:flex; align-items:center; justify-content:center;
  padding:1.5rem;
}
.notice{
  background:var(--ivory);
  border:1px solid rgba(184,144,96,.4);
  box-shadow:0 24px 60px rgba(20,18,12,.35);
  max-width:26rem; width:100%;
  padding:clamp(1.75rem,4vw,2.25rem);
  text-align:center;
}
.notice h3{ font-size:1.5rem; margin-bottom:.7rem; }
.notice p{ margin:0 0 1.6rem; font-size:1rem; }
.notice .btn{ width:100%; }

/* ============================================================
   Start a Study page
   ============================================================ */
.study-hero{
  background:linear-gradient(178deg, var(--ivory) 0%, #EFE6D6 100%);
  padding-block:clamp(3.5rem,8vw,5.5rem) clamp(2rem,4vw,3rem);
}
.h3-lead{
  font-family:var(--display); font-size:clamp(1.6rem,3vw,2.1rem);
  color:var(--ink); margin:0 0 .8rem;
}
.study-lead{ max-width:60ch; margin:0 0 2.5rem; }

.sessions-section{
  padding-block:clamp(2.5rem,6vw,4rem) clamp(3rem,7vw,5rem);
  background:var(--ivory);
}
.sessions{ list-style:none; padding:0; margin:0; counter-reset:none; }
.sessions li{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:1.5rem; align-items:baseline;
  padding:1.15rem 0;
  border-bottom:1px solid rgba(184,144,96,.3);
}
.sessions li:first-child{ border-top:1px solid rgba(184,144,96,.3); }
.s-no{
  font-family:var(--sans); font-size:.85rem; font-weight:500;
  letter-spacing:.1em; color:var(--gold-deep);
}
.s-title{ font-family:var(--display); font-size:1.32rem; color:var(--ink); line-height:1.3; }
.s-read{
  font-family:var(--sans); font-size:.8rem; letter-spacing:.06em;
  text-transform:uppercase; opacity:.75; text-align:right;
}

.need-section{
  background:var(--vesper); color:var(--body-light);
  padding-block:clamp(3.5rem,8vw,6rem);
}
.need-section .h2{ color:var(--ivory); }
.need-grid{
  display:grid; grid-template-columns:repeat(2,1fr);
  gap:clamp(1.5rem,3vw,2.5rem); margin-top:3rem;
}
.need-card{
  border:1px solid rgba(184,144,96,.3);
  padding:clamp(1.5rem,3vw,2rem);
}
.need-card h3{ color:var(--ivory); font-size:1.4rem; margin:.5rem 0 .8rem; line-height:1.2; }
.need-card p{ margin:0; font-size:1.04rem; }
.need-no{
  font-family:var(--sans); font-size:.7rem; font-weight:500;
  letter-spacing:.24em; text-transform:uppercase; color:var(--gold);
  margin:0;
}

.leading-section{
  background:var(--sand-deep);
  padding-block:clamp(3.5rem,8vw,6rem);
}
.leading-grid{
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:clamp(1.75rem,4vw,3rem); margin-top:3rem;
}
.leading-item h3{
  font-size:1.4rem; margin-bottom:.7rem; line-height:1.25;
  color:var(--gold-deep); font-style:normal;
}
.leading-item p{ margin:0; font-size:1.04rem; }

.study-cta{
  background:
    radial-gradient(90% 80% at 50% 0%, rgba(184,144,96,.14), transparent 62%),
    var(--bronze);
  color:var(--body-light);
  padding-block:clamp(3.5rem,8vw,5.5rem);
}
.study-cta .h2{ color:var(--ivory); }
.cta-center{ justify-content:center; }
.fineprint-center{ text-align:center; }

@media (max-width:820px){
  .need-grid,
  .leading-grid{ grid-template-columns:1fr; }
  .sessions li{ grid-template-columns:auto 1fr; row-gap:.3rem; }
  .s-read{ grid-column:2; text-align:left; }
}

/* Centre the six-weeks intro and give the session list a max width */
.study-lead{ margin-inline:auto; text-align:center; }
.sessions{ max-width:52rem; margin-inline:auto; }
