/* ==========================================================================
   THE 1% CLOSER - Home page
   ========================================================================== */

/* ---------- Hero ---------------------------------------------------------- */
.hero {
  position: relative;
  /* The masthead is already 76px of fixed chrome. Stacking 192px of padding on
     top of it pushed the call to action below the fold on a 900px laptop. */
  padding-top: clamp(5.5rem, 4rem + 3.4vw, 7.5rem);
  padding-bottom: clamp(3rem, 2rem + 4vw, 5.5rem);
  overflow: hidden;
}
/* A broad, weak wash tinted the whole upper band olive. A tighter, slightly
   stronger pool of light behind the portrait separates it from the background
   instead of hazing everything. */
.hero__glow {
  position: absolute; z-index: 0; pointer-events: none;
  top: -22vh; left: 50%; transform: translateX(-50%);
  width: min(1500px, 160vw); aspect-ratio: 1;
  background:
    radial-gradient(circle at 66% 46%, rgba(200,164,76,.15), transparent 34%),
    radial-gradient(circle at 24% 40%, rgba(200,164,76,.05), transparent 40%);
}
.hero__in {
  position: relative; z-index: 2;
  display: grid; gap: clamp(2.5rem, 1rem + 5vw, 4.5rem);
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  align-items: center;
}
@media (max-width: 940px) {
  .hero__in { grid-template-columns: 1fr; }
}

.hero__crest {
  width: clamp(52px, 4.6vw, 64px); height: auto;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 6px 22px rgba(200,164,76,.35));
  animation: crestIn 1.2s var(--ease-out) both;
}
@keyframes crestIn { from { opacity: 0; transform: translateY(-10px) scale(.9) } }

.hero__h1 { margin-block: 1.1rem 1.35rem; }
.hero__lede { max-width: 50ch; }
.hero__cta { margin-top: 2rem; gap: 1rem; }

.hero__proof {
  list-style: none; padding: 1.75rem 0 0; margin: 1.75rem 0 0;
  border-top: 1px solid var(--hair-soft);
  display: flex; flex-wrap: wrap; gap: clamp(1.75rem, 4vw, 3.5rem);
}
.hero__proof li { display: grid; gap: .2rem; }
.hero__proof strong {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(2.25rem, 4vw, 3rem); line-height: 1;
  color: var(--gold);
}
.hero__proof strong em { font-size: .38em; font-style: normal; margin-left: .1em; opacity: .8; }
.hero__proof span {
  font-family: var(--ff-mono); font-size: var(--t-xs);
  letter-spacing: .2em; text-transform: uppercase; color: var(--ash-dim);
}

.hero__plate { margin: 0; position: relative; }
.hero__duo { aspect-ratio: 4 / 5; }
.hero__plate::before {   /* offset gold frame - the "framed portrait" device */
  content: ""; position: absolute; inset: 18px -18px -18px 18px;
  border: 1px solid var(--hair); border-radius: var(--radius);
  z-index: -1;
}
.hero__plate figcaption {
  margin-top: 1.5rem; display: grid; gap: .4rem;
  padding-left: 1rem; border-left: 1px solid var(--hair);
}
@media (max-width: 940px) {
  .hero__plate { max-width: 460px; }
  .hero__duo { aspect-ratio: 1; }
}

.hero__cue {
  position: absolute; z-index: 3; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: grid; justify-items: center; gap: .75rem;
  color: var(--ash-dim); transition: color .3s;
}
.hero__cue:hover { color: var(--gold); }
.hero__cue-line { width: 1px; height: 52px; background: linear-gradient(var(--hair-hard), transparent); position: relative; overflow: hidden; }
.hero__cue-line::after {
  content: ""; position: absolute; inset-inline: 0; height: 14px;
  background: var(--gold); animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue { 0% { top: -14px } 60%,100% { top: 52px } }
@media (max-width: 940px) { .hero__cue { display: none; } }

/* ---------- Section headers ----------------------------------------------- */
.sec-head { max-width: 68ch; margin-bottom: clamp(2.5rem, 1.5rem + 3vw, 4.5rem); }
.sec-head__h { margin-block: 1.5rem 1.5rem; }
.sec-head .display { margin-block: 1.5rem 0; }
.sec-head--split {
  max-width: none;
  display: grid; gap: 2rem clamp(2rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: end;
}
@media (max-width: 860px) { .sec-head--split { grid-template-columns: 1fr; } }

/* ---------- The six truths ------------------------------------------------ */
.truths {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  border-top: 1px solid var(--hair-soft);
  border-left: 1px solid var(--hair-soft);
}
.truth {
  position: relative;
  padding: clamp(1.75rem, 1rem + 2vw, 2.75rem);
  border-right: 1px solid var(--hair-soft);
  border-bottom: 1px solid var(--hair-soft);
  transition: background .5s var(--ease);
}
.truth::before {   /* gold wash that fills from the bottom on hover */
  content: ""; position: absolute; inset: auto 0 0 0; height: 100%;
  background: linear-gradient(0deg, rgba(200,164,76,.07), transparent 70%);
  opacity: 0; transition: opacity .5s var(--ease);
  pointer-events: none;
}
.truth:hover::before { opacity: 1; }
.truth__n {
  font-family: var(--ff-mono); font-size: var(--t-xs); font-weight: 700;
  letter-spacing: .2em; color: var(--gold); opacity: .55;
}
.truth h3 {
  font-family: var(--ff-display); font-size: var(--t-xl);
  color: var(--bone); margin-block: .85rem .75rem;
}
.truth p { color: var(--ash); font-size: var(--t-sm); line-height: 1.7; }

/* ---------- Disciplines --------------------------------------------------- */
.disciplines { background: linear-gradient(180deg, transparent, var(--ink-1) 20%, var(--ink-1) 80%, transparent); }

.pillar { position: relative; }
.pillar__img { aspect-ratio: 16 / 11; }
.pillar__body { padding-top: 1.5rem; }
.pillar__body h3 {
  font-family: var(--ff-display); font-size: var(--t-2xl);
  color: var(--bone); margin-block: .6rem .75rem; line-height: 1.02;
}
.pillar__body p { color: var(--ash); max-width: 46ch; }

/* ---------- Program teaser ------------------------------------------------ */
.teaser {
  display: grid; gap: clamp(2.5rem, 1rem + 5vw, 4.5rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  align-items: start;
}
@media (max-width: 980px) { .teaser { grid-template-columns: 1fr; } }

.teaser__copy .display { margin-block: 1.5rem 1.75rem; }

.weeks { list-style: none; padding: 0; margin: 2.5rem 0; display: grid; }
.weeks li {
  display: grid; grid-template-columns: 3rem 1fr auto; align-items: center; gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--hair-soft);
  transition: padding-left .4s var(--ease), border-color .4s;
}
.weeks li:first-child { border-top: 1px solid var(--hair-soft); }
.weeks li:hover { padding-left: .6rem; border-color: var(--hair); }
.weeks__n {
  font-family: var(--ff-mono); font-size: var(--t-xs); font-weight: 700;
  letter-spacing: .16em; color: var(--gold);
}
.weeks__t { color: var(--bone-dim); font-size: var(--t-sm); }
.weeks__c {
  font-family: var(--ff-mono); font-size: var(--t-xs);
  color: var(--ash-dim); letter-spacing: .1em;
}
.weeks__c::after { content: " lessons"; }

/* The offer ledger - the money panel */
.ledger {
  position: sticky; top: 100px;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(200,164,76,.10), transparent 60%),
    linear-gradient(170deg, var(--ink-3), var(--ink-1) 65%);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 1rem + 2vw, 2.5rem);
  box-shadow: var(--shadow-lift);
}
@media (max-width: 980px) { .ledger { position: static; } }

.ledger__price { display: flex; align-items: baseline; gap: 1rem; margin-top: 1rem; }
.ledger__was {
  font-family: var(--ff-display); font-size: 1.6rem;
  color: var(--ash-dim); text-decoration: line-through;
  text-decoration-color: var(--blood); text-decoration-thickness: 1.5px;
}
.ledger__now {
  font-family: var(--ff-display); font-size: clamp(4rem, 8vw, 5.5rem);
  line-height: .85; color: var(--gold);
}
.ledger__terms { margin-block: .75rem 1.5rem; }

.ledger__list { list-style: none; padding: 0; margin: 1.75rem 0; display: grid; gap: .85rem; }
.ledger__list li {
  display: grid; grid-template-columns: 1.1rem 1fr; gap: .75rem;
  font-size: var(--t-sm); color: var(--bone-dim); line-height: 1.5;
}
.ledger__list li::before {
  content: "✓"; color: var(--gold); font-size: .8rem; line-height: 1.6;
}
.ledger__guarantee {
  margin-top: 1.25rem; font-size: var(--t-xs); line-height: 1.65;
  color: var(--ash-dim); text-align: center;
}

/* ---------- Lead magnet --------------------------------------------------- */
.magnet {
  border-block: 1px solid var(--hair-soft);
  background:
    radial-gradient(80% 120% at 85% 50%, rgba(200,164,76,.08), transparent 60%),
    var(--ink-1);
}
.magnet__in {
  display: grid; gap: clamp(2.5rem, 1rem + 5vw, 5rem);
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  align-items: center;
}
@media (max-width: 900px) { .magnet__in { grid-template-columns: 1fr; } }

.magnet__copy .display { margin-block: 1.5rem 1.5rem; }
.magnet__form { margin-top: 2.5rem; display: grid; gap: 1rem; max-width: 460px; }

.magnet__art { display: grid; place-items: center; }
.magnet__book {
  width: min(320px, 100%); aspect-ratio: 3 / 4;
  display: grid; align-content: center; justify-items: center; gap: 1rem;
  padding: 2.5rem 1.75rem; text-align: center;
  background: linear-gradient(155deg, var(--ink-3), var(--ink) 70%);
  border: 1px solid var(--hair);
  border-radius: 2px 6px 6px 2px;
  box-shadow:
    -10px 0 0 -6px var(--gold-lo),
    -14px 0 0 -8px rgba(200,164,76,.35),
    var(--shadow-lift);
  transform: rotate(-2.5deg);
  transition: transform .7s var(--ease-out);
}
.magnet__book:hover { transform: rotate(0deg) translateY(-6px); }
.magnet__book img { width: 76px; opacity: .95; }
.magnet__book h3 { font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--bone); }

/* ---------- Creed --------------------------------------------------------- */
.creed { position: relative; }
.creed::before {   /* laurel watermark */
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url("../img/crest.png") center/min(520px, 70%) no-repeat;
  opacity: .035;
}
.creed > * { position: relative; z-index: 1; }
.creed__q {
  font-family: var(--ff-display);
  font-size: clamp(1.85rem, 1rem + 3.4vw, 3.4rem);
  line-height: 1.28; color: var(--bone);
  margin: 2rem 0 0; letter-spacing: -.01em;
}

/* ---------- Final CTA ----------------------------------------------------- */
.closer { position: relative; overflow: hidden; border-top: 1px solid var(--hair-soft); }
.closer__glow {
  position: absolute; inset: auto 50% -40% auto; transform: translateX(50%);
  width: min(1100px, 130vw); aspect-ratio: 1; pointer-events: none;
  background: radial-gradient(circle, rgba(200,164,76,.16), transparent 58%);
}
.closer__cta { margin-top: 2.75rem; justify-content: center; }
