/* Once Upon a You — design system v2
   Premium cinematic "memoir": warm charcoal, bone, brass-gold. Editorial, grown-up,
   deliberately NOT storybook (differentiated from children's-book sites). */

:root {
  --ink:        #1C1815;   /* warm charcoal — dark sections */
  --ink-2:      #2A231D;
  --bone:       #F1ECE3;   /* warm bone — light bg */
  --bone-2:     #E7DED1;
  --surface:    #FCFAF5;
  --text:       #221C17;
  --text-soft:  #4A4036;
  --muted:      #71675A;
  --line:       #DBD0BF;
  --gold:       #A87E33;    /* brass-gold — primary action / accent */
  --gold-soft:  #C4A968;
  --gold-deep:  #7E5C1F;
  --on-dark:    #EFE7D8;    /* text on charcoal */
  --on-dark-muted: #B6AA96;
  --line-dark:  rgba(239,231,216,.16);
  --shadow:     0 1px 2px rgba(28,24,21,.05), 0 14px 34px rgba(28,24,21,.09);
  --shadow-lg:  0 2px 6px rgba(28,24,21,.07), 0 26px 64px rgba(28,24,21,.16);
  --radius:     14px;
  --radius-sm:  10px;
  --maxw:       1080px;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--sans); color: var(--text); background: var(--bone);
  -webkit-font-smoothing: antialiased; line-height: 1.6; font-size: 17px;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.07; color: var(--text); letter-spacing: -.015em; }
h1 { font-size: clamp(2.7rem, 6vw, 4.6rem); margin: 0 0 .3em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 .4em; }
h3 { font-size: 1.45rem; margin: 0 0 .3em; }
p { margin: 0 0 1em; color: var(--text-soft); }
a { color: var(--gold-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
em { font-style: italic; }
.serif { font-family: var(--serif); }
.muted { color: var(--muted); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 720px; margin-left: auto; margin-right: auto; }

/* ---- nav (dark) ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(28,24,21,.86); backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-dark);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { font-family: var(--serif); font-size: 1.5rem; color: var(--on-dark); letter-spacing: -.01em; }
.brand .dot { color: var(--gold-soft); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--on-dark-muted); font-size: .95rem; }
.nav-links a:hover { color: var(--on-dark); text-decoration: none; }
@media (max-width: 640px){ .nav-links a.hide-sm { display:none; } }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 1rem; font-weight: 600;
  padding: 14px 26px; border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-decoration: none; line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: #1C1815; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--gold-soft); box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { background: var(--surface); }
.btn-lg { padding: 17px 34px; font-size: 1.08rem; }
.btn[disabled]{ opacity:.5; cursor: not-allowed; transform:none; }

/* ghost button on dark backgrounds */
.on-dark .btn-ghost, .hero .btn-ghost { color: var(--on-dark); border-color: var(--line-dark); }
.on-dark .btn-ghost:hover, .hero .btn-ghost:hover { background: rgba(239,231,216,.08); }

/* ---- hero (dark cinematic) ---- */
.hero {
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(168,126,51,.20), transparent 60%),
    radial-gradient(800px 480px at -8% 8%, rgba(168,126,51,.10), transparent 55%),
    linear-gradient(180deg, var(--ink), var(--ink-2));
  color: var(--on-dark);
  padding: clamp(60px, 9vw, 116px) 0 clamp(48px,6vw,80px);
  border-bottom: 1px solid var(--line-dark);
}
.hero h1 { color: #FBF7EE; }
.hero .lede { color: var(--on-dark); opacity: .92; font-size: clamp(1.12rem, 2vw, 1.34rem); max-width: 610px; }
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-soft); margin-bottom: 22px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 30px; }
.hero-note { font-size: .92rem; color: var(--on-dark-muted); margin: 16px 0 0; }

/* ---- sections ---- */
section { padding: clamp(50px, 8vw, 94px) 0; }
.section-tag { font-size: .8rem; font-weight:600; letter-spacing:.18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 14px; }
.center { text-align: center; }

/* pull-quote band (now light + editorial) */
.band { background: var(--bone-2); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.band .pull { font-family: var(--serif); font-style: italic; font-size: clamp(1.8rem, 3.6vw, 2.8rem); line-height: 1.22; color: var(--text); }
.band p { color: var(--text-soft); }

/* steps / cards */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px; }
@media (max-width: 860px){ .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .steps { grid-template-columns: 1fr; } }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow); }
.step .num {
  font-family: var(--serif); font-size: 1.4rem; color: var(--gold-deep);
  width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--gold);
  display:flex; align-items:center; justify-content:center; margin-bottom: 16px;
}
.step h3 { font-size: 1.25rem; }
.step p { font-size: .96rem; margin: 0; }

/* feature cols */
.cols { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
@media (max-width: 820px){ .cols { grid-template-columns: 1fr; gap: 28px; } }

.media {
  background: linear-gradient(160deg, #16120F, #322820); border-radius: var(--radius);
  aspect-ratio: 16/10; display:flex; align-items:center; justify-content:center;
  color:#E9DcC4; box-shadow: var(--shadow-lg); border: 1px solid #3b3026; position: relative; overflow:hidden;
}
.media .play { width: 74px; height: 74px; border-radius: 50%; background: rgba(196,169,104,.18); border:1px solid rgba(196,169,104,.55); display:flex;align-items:center;justify-content:center; }
.media .play::after{ content:""; border-left: 20px solid var(--gold-soft); border-top: 12px solid transparent; border-bottom: 12px solid transparent; margin-left: 5px; }
.media .cap { position:absolute; bottom: 14px; left: 16px; font-size:.8rem; color: #B59B6E; letter-spacing:.05em; }

/* pricing */
.price-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-lg); max-width: 460px; margin: 0 auto; text-align:center; }
.price { font-family: var(--serif); font-size: 4.2rem; color: var(--text); line-height:1; }
.price small { font-size: 1.05rem; color: var(--muted); font-family: var(--sans); }
.price-card ul { list-style:none; padding:0; margin: 24px 0; text-align:left; }
.price-card li { padding: 9px 0 9px 30px; position: relative; color: var(--text-soft); border-bottom: 1px solid var(--bone-2); }
.price-card li:last-child { border-bottom: none; }
.price-card li::before { content:"✓"; position:absolute; left:0; color: var(--gold-deep); font-weight:700; }

/* faq */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq summary { font-family: var(--serif); font-size: 1.3rem; cursor: pointer; list-style: none; color: var(--text); display:flex; justify-content:space-between; align-items:center; gap:16px; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:"+"; color: var(--gold-deep); font-size: 1.5rem; }
.faq details[open] summary::after { content:"–"; }
.faq p { margin: 14px 2px 2px; }

/* footer (dark) */
.footer { background: var(--ink); color: var(--on-dark-muted); padding: 40px 0; font-size: .92rem; border-top: 1px solid var(--line-dark); }
.footer a { color: var(--gold-soft); }
.footer .wrap { display:flex; justify-content:space-between; gap: 16px; flex-wrap: wrap; }

/* ---------- booking funnel ---------- */
.funnel { padding: clamp(40px,7vw,72px) 0; min-height: 70vh; }
.progress { display:flex; gap: 8px; max-width: 640px; margin: 0 auto 38px; }
.progress .pip { flex:1; height: 6px; border-radius: 999px; background: var(--line); }
.progress .pip.active { background: var(--gold); }
.progress .pip.done { background: var(--gold-deep); }

.card { background: var(--surface); border:1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow); max-width: 640px; margin: 0 auto; }
.card h2 { margin-bottom: .2em; }
.card .sub { color: var(--muted); margin-bottom: 26px; }
.step-label { font-size:.8rem; letter-spacing:.16em; text-transform:uppercase; color: var(--gold-deep); font-weight:600; margin-bottom: 10px; }

label.field { display:block; margin: 0 0 18px; }
label.field span { display:block; font-size:.95rem; font-weight:600; color: var(--text); margin-bottom: 7px; }
label.field .hint { font-weight: 400; color: var(--muted); font-size:.86rem; }
input[type=text], input[type=email], select, textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--text);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bone); transition: border .15s ease, box-shadow .15s ease;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(168,126,51,.18); background: #fff; }
textarea { resize: vertical; min-height: 92px; }
.row2 { display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width:520px){ .row2 { grid-template-columns: 1fr; } }

.actions { display:flex; justify-content: space-between; align-items:center; gap: 12px; margin-top: 26px; }

.qcard { border:1px solid var(--line); border-radius: var(--radius-sm); padding: 18px; margin-bottom: 16px; background: var(--bone); }
.qcard .q { font-family: var(--serif); font-size: 1.24rem; color: var(--text); margin-bottom: 10px; }
.qcard textarea { background:#fff; }

.thinking { display:flex; align-items:center; gap: 12px; color: var(--muted); padding: 30px 4px; }
.spinner { width: 22px; height:22px; border-radius:50%; border:2.5px solid var(--line); border-top-color: var(--gold); animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg);} }

.brief { background: var(--bone); border:1px solid var(--line); border-left: 4px solid var(--gold); border-radius: var(--radius-sm); padding: 26px; }
.brief h3 { color: var(--gold-deep); font-size: 1.3rem; margin-top: 18px; }
.brief h3:first-child { margin-top: 0; }
.brief ul { padding-left: 20px; } .brief li { margin-bottom: 6px; color: var(--text-soft); }

.callout { background: rgba(168,126,51,.09); border:1px solid var(--gold); border-radius: var(--radius-sm); padding: 14px 16px; font-size:.92rem; color: var(--text-soft); margin: 18px 0; }
.stub { font-size:.82rem; color: var(--gold-deep); font-weight:600; }
.success-mark { width:64px;height:64px;border-radius:50%;background:var(--gold);color:#1C1815;display:flex;align-items:center;justify-content:center;font-size:2rem;margin:0 auto 18px; }
.hidden { display:none !important; }
