/* Academy product visual system
   bright warm · editorial · gold as living accent */
:root {
  --bg:         #fffcf7;
  --bg-warm:    #fbf3e4;
  --bg-gold:    #f8edd6;
  --surface:    #ffffff;
  --ink:        #1a1612;
  --muted:      #5c5348;
  --line:       #efe6d6;
  --line-strong:#e2d5bf;

  --accent:       #d4a84b;
  --accent-hover: #b8892e;
  --accent-soft:  #fbf3e4;
  --accent-mid:   #edd9a8;

  --love:       #d4a8b0;
  --love-deep:  #b07882;
  --love-soft:  #fdf4f5;

  --gold:       #d4a84b;
  --gold-light: #e6c36a;
  --gold-ink:   #b8892e;

  --calm:       #5c5348;

  --radius-lg: 16px;
  --radius-md: 8px;
  --radius-sm: 8px;
  --shadow:    none;
  --max:       1120px;
  --ease:      cubic-bezier(0.25, 0.1, 0.25, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100%;
  font-family: "Mulish", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.sans { font-family: "Mulish", system-ui, sans-serif; }

a { color: var(--gold-ink); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left:  max(22px, env(safe-area-inset-left));
  padding-right: max(22px, env(safe-area-inset-right));
}
.wrap-wide {
  max-width: 1280px;
  margin: 0 auto;
  padding-left:  max(28px, env(safe-area-inset-left));
  padding-right: max(28px, env(safe-area-inset-right));
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 252, 247, 0.95);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 14px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--gold-ink);
  text-decoration: none !important;
  line-height: 1.15;
  min-width: 0;
  flex: 1 1 auto;
}
.nav-links {
  display: none;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.nav-links a { color: var(--muted); text-decoration: none; white-space: nowrap; }
.nav-links a:hover, .nav-links a.is-on { color: var(--ink); }
@media (min-width: 900px) { .nav-links { display: flex; } }
.header-cta {
  display: inline-flex;
  flex: 0 0 auto;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: none;
  padding: 9px 14px;
  background: transparent;
  color: var(--ink) !important;
  border-radius: 0;
  border-bottom: 1px solid var(--gold);
  text-decoration: none !important;
  transition: opacity 0.18s;
}
.header-cta:hover { opacity: 0.7; background: transparent; }
@media (min-width: 640px) {
  .header-cta { font-size: 0.85rem; padding: 9px 14px; }
}

/* Hero */
.hero {
  padding: 80px 0 96px;
  background: linear-gradient(180deg, #fffdf9 0%, #fffcf7 45%, #fbf3e4 100%);
}
.hero-kicker {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--muted);
  margin: 0 0 18px;
}
h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.6rem, 8vw, 4.6rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--gold-ink);
  margin: 0 0 20px;
  overflow-wrap: break-word;
  max-width: 12ch;
}
.hero-sub {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-style: normal;
  font-weight: 500;
  color: var(--ink);
  max-width: 28em;
  margin: 0 0 14px;
  line-height: 1.35;
}
.hero-lead {
  max-width: 38em;
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 32px;
  line-height: 1.7;
}

.who-cards {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}
@media (min-width: 700px) {
  .who-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.who-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 22px 20px 22px 0;
  box-shadow: none;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 700px) {
  .who-card {
    border-bottom: 0;
    border-right: 1px solid var(--line);
    padding: 22px 24px 8px 0;
  }
  .who-card:last-child { border-right: 0; padding-right: 0; }
}
.who-card strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}
.who-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 0;
}
.hero-tagline {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.8;
  margin-top: 20px;
  letter-spacing: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Mulish", system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none !important;
  border: 1px solid transparent;
  transition: background 0.18s, border-color 0.18s, filter 0.18s;
}
.btn-primary { background: var(--gold); color: #fff !important; border-color: var(--gold); }
.btn-primary:hover { filter: brightness(0.96); background: var(--gold); }
.btn-ghost {
  background: transparent;
  color: var(--ink) !important;
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: var(--hover, #f1ece4); }
.btn-sm { font-size: 0.8rem; padding: 8px 14px; }

/* Sections */
section { padding: 88px 0; }
.band { background: var(--bg-warm); }
.band-gold { background: var(--bg-warm); }

.section-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1.2;
  color: var(--ink);
  max-width: 18ch;
}
.section-lead {
  max-width: 38em;
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 32px;
  line-height: 1.7;
}
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 8px;
}

/* Pain list */
.pain-list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}
.pain-list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px 32px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 700px) {
  .pain-list li { grid-template-columns: 1fr 1.2fr; align-items: baseline; }
}
.pain-symptom {
  font-family: "Mulish", system-ui, sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
}
.pain-truth {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  font-style: normal;
}
.pain-last .pain-symptom { color: var(--love-deep); }

/* Blocks-4 — strip, not cards */
.blocks-4 {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}
@media (min-width: 800px)  { .blocks-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .blocks-4 { grid-template-columns: repeat(4, 1fr); } }

.block-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 20px 18px 20px 0;
  box-shadow: none;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 800px) {
  .block-card {
    border-bottom: 0;
    border-right: 1px solid var(--line);
    padding: 22px 22px 8px 0;
  }
  .block-card:nth-child(2n) { border-right: 0; }
}
@media (min-width: 1020px) {
  .block-card:nth-child(2n) { border-right: 1px solid var(--line); }
  .block-card:last-child { border-right: 0; padding-right: 0; }
}
.block-card h3 { margin: 0 0 8px; color: var(--ink); }
.block-card p { margin: 0; color: var(--muted); font-size: 0.88rem; }

/* Chains / flow */
.chains { margin: 24px 0 0; display: grid; gap: 0; border-top: 1px solid var(--line-strong); }
.chains p {
  margin: 0;
  padding: 16px 0;
  background: transparent;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.flow { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; border-top: 1px solid var(--line-strong); }
.flow li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  background: transparent;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  font-size: 0.92rem;
  font-weight: 500;
}
.flow span { color: var(--gold-ink); font-weight: 500; flex: 0 0 1.6em; font-variant-numeric: tabular-nums; }

/* Stair */
.stair {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  max-width: 640px;
  position: relative;
  border-top: 1px solid var(--line-strong);
}
.stair::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: var(--line-strong);
  opacity: 1;
  border-radius: 0;
}
.stair-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 16px 0;
  margin: 0;
  background: none;
  border: none;
  border-radius: 0;
  position: relative;
  animation: none;
}
.stair-step > div {
  flex: 1;
  min-width: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.stair-step-last > div {
  background: transparent;
  border-color: transparent;
}
.stair-num {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line-strong);
  margin-top: 2px;
  position: relative;
  z-index: 1;
  box-shadow: none;
}
.stair-step-last .stair-num {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.stair-step h3 {
  margin: 0 0 4px;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}
.stair-step p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}
@keyframes stairIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.mini-label {
  display: block;
  margin: 0 0 10px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Product + doors — editorial panels */
.product-card {
  display: block;
  margin: 8px 0 28px;
  padding: 0 0 24px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--ink);
  border-radius: 0;
  text-decoration: none !important;
  box-shadow: none;
  transition: opacity 0.2s;
}
.product-card:hover { box-shadow: none; opacity: 0.9; }
.product-card h3 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--ink);
}
.product-lead { margin: 0 0 14px; color: var(--muted); font-size: 0.95rem; }
.product-card p { margin: 0 0 10px; font-size: 0.95rem; color: var(--muted); }
.product-card ul { margin: 0 0 10px; padding-left: 1.1em; color: var(--muted); font-size: 0.92rem; }
.product-card li { margin-bottom: 5px; }
.product-card .door-go { display: inline-block; margin-top: 14px; }

.doors {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  border-top: 1px solid var(--line-strong);
}
@media (min-width: 860px) {
  .doors.two { grid-template-columns: 1fr 1fr; column-gap: 40px; }
}
@media (min-width: 1000px) {
  .doors.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 40px;
    align-items: stretch;
  }
}
.door {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none !important;
  box-shadow: none;
  transition: none;
  overflow: hidden;
}
@media (min-width: 860px) {
  .doors.two .door {
    border-bottom: 0;
    border-right: 1px solid var(--line);
    padding-right: 32px;
  }
  .doors.two .door:last-child { border-right: 0; padding-right: 0; }
}
@media (min-width: 1000px) {
  .doors.three .door {
    border-bottom: 0;
    border-right: 1px solid var(--line);
    padding: 32px 36px 32px 0;
  }
  .doors.three .door:last-child {
    border-right: 0;
    padding-right: 0;
  }
}
.door:hover { box-shadow: none; }
.door-num {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.door h2 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  margin: 12px 0 8px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.door p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1;
  line-height: 1.55;
  overflow-wrap: anywhere;
}
.door-go {
  margin-top: 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0;
  border-bottom: 1px solid var(--gold);
  align-self: flex-start;
  padding-bottom: 2px;
}

/* Case frame */
.case-frame { display: grid; gap: 0; border-top: 1px solid var(--line-strong); }
@media (min-width: 800px) { .case-frame { grid-template-columns: repeat(4, 1fr); } }
.case-frame > div {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 18px 16px 18px 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 800px) {
  .case-frame > div {
    border-bottom: 0;
    border-right: 1px solid var(--line);
    padding-right: 18px;
  }
  .case-frame > div:last-child { border-right: 0; padding-right: 0; }
}
.case-frame strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
}
.case-frame span { color: var(--muted); font-size: 0.88rem; }

/* FAQ */
.faq-list {
  max-width: 42em;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}
.faq-item {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  overflow: visible;
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.98rem;
  padding: 16px 0;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--muted);
  font-weight: 400;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin: 0;
  padding: 0 0 16px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}
.faq-item a { color: var(--gold-ink); }

/* CTA final — calm dark, no glow */
.cta-final {
  padding: 96px 0 100px;
  background: #2a2118;
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.cta-final::after { display: none; }
.cta-final h2 { color: #f8edd6; font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 500; }
.cta-final p { color: #a8a29a; margin: 0 0 26px; font-size: 0.95rem; }
.cta-final .btn-primary { background: var(--gold); }
.cta-final .btn-primary:hover { filter: brightness(0.96); }

/* Footer */
footer {
  padding: 28px 0 calc(40px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: var(--bg);
  color: var(--muted);
  font-size: 0.82rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
}
footer a { font-weight: 500; color: var(--muted); }
footer a:hover { color: var(--ink); }
.footer-quiet {
  font-size: 0.76rem !important;
  font-weight: 400 !important;
  color: #9a948c !important;
  text-decoration: none !important;
}
.dot { margin: 0 6px; color: var(--line); }

/* Inner pages */
.page-hero { padding: 48px 0 16px; }
.page-hero h1 { font-size: clamp(2rem, 6vw, 3.2rem); color: var(--gold-ink); max-width: none; }
.tour-list { display: grid; gap: 0; padding: 28px 0 88px; border-top: 1px solid var(--line-strong); }
.tour {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 28px 0;
  box-shadow: none;
  border-bottom: 1px solid var(--line);
}
.tour-copy h2 { font-size: 1.45rem; margin: 0 0 10px; max-width: none; }
.tour-copy .meta {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin: 0 0 10px;
}
.tour-copy p { color: var(--muted); margin: 0 0 10px; }

.soon-screen {
  min-height: calc(100svh - 180px);
  display: grid;
  place-items: center;
  text-align: left;
  padding: 64px 16px 80px;
}
.soon-screen h1 { font-size: clamp(2rem, 5vw, 3rem); color: var(--ink); max-width: none; }
.soon-screen p { max-width: 28em; margin: 0; color: var(--muted); }
.crumbs { font-size: 0.78rem; font-weight: 500; color: var(--muted); margin-bottom: 12px; }
.crumbs a { color: var(--muted); }

.poster {
  margin: 0 0 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.poster img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.poster figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(28,20,10,.55) 0%, transparent 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
}
.tag {
  display: inline-block;
  background: transparent;
  color: var(--gold-ink);
  border-radius: 0;
  padding: 0;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
@media (min-width: 700px) {
  .tour-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .tour-featured .poster { margin: 0; }
  .poster img { height: 100%; min-height: 200px; }
}
.tour-later { opacity: 0.85; }

.site-footer {
  margin-top: 48px; padding: 28px 0 40px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 0.82rem;
}
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; }
.site-footer a { color: var(--muted); font-weight: 500; text-decoration: none; }
.site-footer a.footer-quiet { color: #9a948c; font-weight: 400; font-size: .76rem; }
.site-footer a.footer-quiet:hover { color: #78716c; text-decoration: underline; }

@media (max-width: 640px) {
  h1 { font-size: clamp(2.2rem, 11vw, 3.2rem); }
  .hero { padding: 56px 0 72px; }
  .wrap {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }
}
