/* PT sales page. nine27 layout language (floating nav, arches hero, paper bands, bronze foil)
   with rounded cards, pill controls and soft curved band tops instead of torn-paper edges. */

body.site { overflow-x: hidden; }

/* ---------------- nav ---------------- */
.site-nav { position: fixed; top: 14px; left: 0; right: 0; z-index: 50; display: flex; justify-content: center; padding: 0 16px; pointer-events: none; }
.site-nav nav {
  pointer-events: auto; display: flex; align-items: center; gap: 2px; padding: 5px;
  border-radius: var(--r-pill); border: 1px solid rgba(211, 201, 181, .8);
  background: rgba(255, 253, 248, .74);
  -webkit-backdrop-filter: saturate(1.3) blur(14px); backdrop-filter: saturate(1.3) blur(14px);
  box-shadow: 0 10px 30px -18px rgba(22, 25, 29, .35), inset 0 1px 0 rgba(255, 255, 255, .8);
}
.site-nav a {
  display: inline-flex; align-items: center; height: 38px; padding: 0 13px; border-radius: var(--r-pill);
  font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; color: var(--ink-2);
  font-stretch: 110%; font-variation-settings: "wdth" 110; transition: color .2s, background .2s;
}
.site-nav a:hover { color: var(--ink); background: rgba(238, 233, 222, .8); }
.site-nav .nav-mark { padding: 0 8px; }
.site-nav .nav-mark svg { width: 24px; height: 24px; }
.site-nav .go { background: var(--ink); color: #F6F1E4; margin-left: 4px; }
.site-nav .go:hover { background: var(--ink-2); color: #fff; }
.site-nav .hide-sm { display: none; }
@media (min-width: 700px) { .site-nav { top: 22px; } .site-nav a { padding: 0 17px; } .site-nav .hide-sm { display: inline-flex; } }

/* ---------------- hero ---------------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding: 118px 20px 88px;
  background:
    radial-gradient(ellipse 60% 45% at 50% 0%, rgba(233, 220, 188, .55), transparent 70%),
    radial-gradient(ellipse 90% 60% at 50% 110%, rgba(214, 203, 180, .45), transparent 70%),
    var(--paper);
}
.arches { position: absolute; inset: 0; z-index: -1; pointer-events: none; display: flex; justify-content: center; }
.arches i {
  position: absolute; bottom: -2px; border-radius: 9999px 9999px 0 0;
  box-shadow: 0 -1px 0 rgba(255, 255, 255, .9) inset, 0 -18px 40px -22px rgba(92, 72, 38, .35), 0 -2px 6px -2px rgba(92, 72, 38, .12);
  animation: archRise 1.4s var(--ease) both;
}
.arches i:nth-child(1) { width: min(150vw, 1600px); height: 92%; background: #F2EDE3; animation-delay: .05s; }
.arches i:nth-child(2) { width: min(118vw, 1260px); height: 78%; background: #F6F2EA; animation-delay: .12s; }
.arches i:nth-child(3) { width: min(90vw, 940px); height: 62%; background: #F9F6F0; animation-delay: .19s; }
.arches i::after { content: ""; position: absolute; inset: 0; border-radius: inherit; border: 1px solid rgba(196, 160, 90, .28); border-bottom: 0; }
@keyframes archRise { from { transform: translateY(6%); opacity: 0; } to { transform: none; opacity: 1; } }
@media (max-width: 640px) {
  .arches i:nth-child(1) { width: 200vw; height: 80%; }
  .arches i:nth-child(2) { width: 160vw; height: 64%; }
  .arches i:nth-child(3) { width: 120vw; height: 48%; }
}

.rise { animation: rise .9s var(--ease) both; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.hero-grid { max-width: 1080px; margin: 0 auto; display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 56px; } }

.met-chip {
  display: inline-flex; align-items: center; gap: 10px; padding: 7px 16px 7px 8px; border-radius: var(--r-pill);
  background: var(--sheet); border: 1px solid var(--line); box-shadow: var(--shadow-soft);
  font-size: 14px; color: var(--ink-2); text-decoration: none; animation-delay: .2s;
}
.met-chip b { display: inline-grid; place-items: center; height: 26px; padding: 0 10px; border-radius: var(--r-pill); background: var(--ink); color: var(--gold); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.met-chip:hover { border-color: var(--line-strong); }

.hero h1 {
  margin: 22px 0 0; font-size: clamp(36px, 5vw, 62px); line-height: 1; font-weight: 800; color: var(--ink);
  text-transform: uppercase; letter-spacing: .005em; font-stretch: 112%; font-variation-settings: "wdth" 112; animation-delay: .3s;
}
.hero .foil-rule { width: 72px; margin: 26px 0 22px; animation-delay: .4s; }
.hero .tagline { margin: 0; font-family: var(--font-serif); font-size: clamp(22px, 3vw, 30px); line-height: 1.25; color: var(--ink); max-width: 24ch; animation-delay: .45s; }
.hero .sub { margin: 14px 0 0; max-width: 44ch; font-size: 17px; color: var(--muted); animation-delay: .5s; }
.hero .ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; animation-delay: .58s; }
.hero .ctas .btn { min-height: 54px; padding: 0 28px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 0; padding: 0; list-style: none; animation-delay: .66s; }
.hero-facts li { padding: 6px 14px; border-radius: var(--r-pill); background: rgba(255, 253, 248, .7); border: 1px solid var(--line); font-size: 13px; color: var(--ink-2); }

.hero-photo { position: relative; animation-delay: .4s; max-width: 440px; width: 100%; justify-self: center; }
.hero-photo .photo { aspect-ratio: 4 / 5; border-radius: 36px; }
.hero-badge {
  position: absolute; left: -14px; bottom: 28px; display: flex; align-items: center; gap: 12px; padding: 12px 18px 12px 12px;
  background: var(--sheet); border-radius: var(--r); box-shadow: var(--shadow-lift); border: 1px solid var(--line);
}
.hero-badge i { width: 40px; height: 40px; border-radius: 50%; background: var(--foil); display: grid; place-items: center; color: var(--ink); font-style: normal; font-weight: 800; }
.hero-badge div { font-size: 13px; line-height: 1.3; color: var(--muted); }
.hero-badge strong { display: block; font-size: 15px; color: var(--ink); }
@media (max-width: 640px) { .hero-badge { left: 10px; } }

/* photo placeholder: swap for <img> later, keep the class for the radius + crop */
.photo {
  position: relative; overflow: hidden; border-radius: var(--r-lg); background: var(--paper-2);
  background-image: repeating-linear-gradient(135deg, rgba(196, 160, 90, .08) 0 14px, transparent 14px 28px);
  border: 1px solid var(--line); display: grid; place-items: center; text-align: center; color: var(--faint);
}
.photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo .ph-in { display: grid; gap: 8px; justify-items: center; padding: 20px; font-size: 13px; }
.photo .ph-in svg { width: 34px; height: 34px; color: var(--line-strong); }
.photo .ph-in b { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--bronze); }

/* ---------------- sections ---------------- */
.band { position: relative; padding: 96px 20px; background: var(--paper); }
.band.paper2 { background: var(--paper-2); }
.band.ink { background: var(--ink); color: #EDE6D6; }
/* soft curved top edge where a band meets the one above */
.band.curve { border-radius: 48px 48px 0 0; margin-top: -48px; }
@media (max-width: 640px) { .band { padding: 76px 18px; } .band.curve { border-radius: 32px 32px 0 0; margin-top: -32px; } }
.wrap { max-width: 1080px; margin: 0 auto; }
.band-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.band-head h2 {
  margin: 0 0 12px; font-size: clamp(30px, 5vw, 48px); line-height: 1.02; font-weight: 800; color: var(--ink);
  text-transform: uppercase; letter-spacing: .01em; font-stretch: 112%; font-variation-settings: "wdth" 112;
}
.band-head p { margin: 0; color: var(--muted); font-size: 17px; }
.band.ink .band-head h2 { color: #F6F1E4; }
.band.ink .band-head p { color: #A9A395; }

.card {
  position: relative; background: var(--sheet); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft); padding: 28px 24px;
}
.ico { width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center; background: var(--gold-wash); color: var(--bronze-deep); }
.ico svg { width: 24px; height: 24px; }
.card h3 { margin: 18px 0 8px; font-size: 19px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--ink); font-stretch: 110%; font-variation-settings: "wdth" 110; }
.card p { margin: 0; color: var(--ink-2); font-size: 15.5px; }

/* proof strip */
.quotes { display: grid; gap: 14px; grid-template-columns: 1fr; max-width: 1080px; margin: -40px auto 0; padding: 0 20px; position: relative; z-index: 2; }
@media (min-width: 820px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote { background: var(--sheet); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-lift); padding: 22px 22px 20px; }
.quote p { margin: 0 0 14px; font-family: var(--font-serif); font-size: 19px; line-height: 1.35; color: var(--ink); }
.quote footer { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); }
.quote footer i { width: 32px; height: 32px; border-radius: 50%; background: var(--paper-2); border: 1px solid var(--line); }
.quote footer b { color: var(--ink); font-weight: 700; }

/* who */
.who { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .who { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .who { grid-template-columns: repeat(4, 1fr); } }
.not-fit { margin: 26px auto 0; max-width: 680px; text-align: center; font-size: 15px; color: var(--muted); }

/* story */
.story { display: grid; gap: 28px; }
.chapter { display: grid; gap: 28px; align-items: center; background: var(--sheet); border: 1px solid var(--line); border-radius: 36px; padding: 16px; box-shadow: var(--shadow-soft); }
.chapter .photo { aspect-ratio: 4 / 3; border-radius: 26px; }
.chapter .txt { padding: 8px 12px 18px; }
@media (min-width: 860px) {
  .chapter { grid-template-columns: 1fr 1fr; gap: 40px; padding: 18px; }
  .chapter .txt { padding: 12px 28px 12px 4px; }
  .chapter:nth-child(even) .photo { order: 2; }
  .chapter:nth-child(even) .txt { padding: 12px 4px 12px 28px; }
}
.step-tag { display: inline-flex; align-items: center; gap: 8px; height: 30px; padding: 0 14px; border-radius: var(--r-pill); font-size: 11.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.step-tag.t1 { background: var(--paper-2); color: var(--ink-2); }
.step-tag.t2 { background: #F4E6E1; color: var(--danger); }
.step-tag.t3 { background: var(--gold-wash); color: var(--bronze-deep); }
.chapter h3 { margin: 16px 0 10px; font-size: clamp(24px, 3vw, 32px); line-height: 1.05; font-weight: 800; text-transform: uppercase; color: var(--ink); font-stretch: 112%; font-variation-settings: "wdth" 112; }
.chapter p { margin: 0 0 12px; font-size: 16.5px; color: var(--ink-2); }
.chapter .note { margin-top: 16px; padding: 14px 16px; border-radius: var(--r); background: #F8EEEA; color: var(--danger); font-size: 14.5px; }

/* training options */
.train { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .train { grid-template-columns: repeat(3, 1fr); } }
.train .card { display: flex; flex-direction: column; }
.train .photo { aspect-ratio: 16 / 10; border-radius: 20px; margin: -12px -8px 6px; }
.ticks { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 8px; font-size: 15px; color: var(--ink-2); }
.ticks li { position: relative; padding-left: 28px; }
.ticks li::before { content: ""; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border-radius: 50%; background: var(--gold-wash) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236F5226' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12.5l4 4 8-9'/%3E%3C/svg%3E") center / 12px no-repeat; }
.pill-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.pill-row span { padding: 5px 12px; border-radius: var(--r-pill); background: var(--paper-2); font-size: 12.5px; color: var(--ink-2); }
.fine-note { margin: 18px auto 0; max-width: 720px; text-align: center; font-size: 13.5px; color: var(--muted); }

/* how it works */
.steps { display: grid; gap: 14px; grid-template-columns: 1fr; counter-reset: s; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps li { list-style: none; background: rgba(255, 255, 255, .05); border: 1px solid rgba(233, 220, 188, .16); border-radius: var(--r-lg); padding: 26px 24px; }
.steps { padding: 0; margin: 0; }
.steps .n { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--foil); color: var(--ink); font-weight: 800; }
.steps h3 { margin: 18px 0 8px; font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: #F6F1E4; font-stretch: 110%; font-variation-settings: "wdth" 110; }
.steps p { margin: 0; color: #B9B2A2; font-size: 15.5px; }
.expect { margin-top: 18px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(233, 220, 188, .16); border-radius: var(--r-lg); padding: 24px; display: grid; gap: 14px; }
@media (min-width: 860px) { .expect { grid-template-columns: 220px 1fr; align-items: center; } }
.expect h4 { margin: 0; font-size: 15px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.expect ul { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.expect li { padding: 7px 14px; border-radius: var(--r-pill); background: rgba(255, 255, 255, .07); color: #DCD5C5; font-size: 14px; }

/* pricing */
.prices { display: grid; gap: 16px; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 900px) { .prices { grid-template-columns: repeat(3, 1fr); } }
.price { display: flex; flex-direction: column; }
.price .amt { margin: 14px 0 2px; display: flex; align-items: baseline; gap: 6px; color: var(--ink); }
.price .amt small { font-size: 14px; color: var(--muted); }
.price .amt b { font-size: 44px; line-height: 1; font-weight: 800; letter-spacing: -.01em; }
.price .from { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.price .btn { margin-top: auto; }
.price .ticks { margin: 16px 0 24px; }
.price.feature { background: var(--ink); border-color: var(--ink); box-shadow: var(--shadow-lift); }
.price.feature h3, .price.feature .amt { color: #F6F1E4; }
.price.feature p, .price.feature .ticks, .price.feature .amt small, .price.feature .from { color: #B9B2A2; }

.price.feature .ph { background: rgba(196, 160, 90, .22); box-shadow: none; color: #F6F1E4; }
.price.feature .ticks li::before { background-color: rgba(233, 220, 188, .18); }
.price .tag { position: absolute; top: 18px; right: 18px; padding: 5px 12px; border-radius: var(--r-pill); background: var(--foil); color: var(--ink); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.free-first { margin: 20px auto 0; max-width: 760px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 18px; padding: 16px 22px; border-radius: var(--r-pill); background: var(--gold-wash); border: 1px solid var(--gold-soft); color: var(--ink-2); font-size: 15px; text-align: center; }
.free-first b { color: var(--ink); }
@media (max-width: 640px) { .free-first { border-radius: var(--r-lg); } }

/* faq */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 10px; }
.faq details { background: var(--sheet); border: 1px solid var(--line); border-radius: var(--r); transition: box-shadow .2s var(--ease); }
.faq details[open] { box-shadow: var(--shadow-soft); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 20px; font-size: 16.5px; font-weight: 700; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--paper-2); font-size: 18px; line-height: 1; color: var(--bronze); font-weight: 500; }
.faq details[open] summary::after { content: "−"; background: var(--gold-wash); }
.faq details p { margin: -4px 20px 20px; color: var(--ink-2); font-size: 15.5px; max-width: 62ch; }

/* ---------------- intake ---------------- */
.intake { max-width: 760px; margin: 0 auto; padding: 30px 22px; border-radius: 36px; }
@media (min-width: 700px) { .intake { padding: 40px 40px 36px; } }
.intake form { display: grid; gap: 22px; }
.row { display: grid; gap: 12px; }
@media (min-width: 640px) { .row.two { grid-template-columns: 1fr 1fr; } .row.three { grid-template-columns: 1fr 1fr 1fr; } }
.fld { display: grid; gap: 7px; }
.fld > span, fieldset legend { font-size: 13px; font-weight: 700; color: var(--ink); letter-spacing: .02em; }
fieldset legend { padding: 0; margin-bottom: 9px; }
fieldset legend em, .fld > span em { font-style: normal; font-weight: 500; color: var(--faint); }
fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
.fld input, .fld select, .fld textarea {
  width: 100%; height: 52px; padding: 0 16px; border: 1px solid var(--line-strong); border-radius: 14px;
  background: #fff; font-size: 16px; color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.fld textarea { height: auto; min-height: 96px; padding: 14px 16px; resize: vertical; line-height: 1.45; }
.fld select { appearance: none; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239C7439' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") right 14px center / 18px no-repeat; padding-right: 40px; }
.fld input:focus, .fld select:focus, .fld textarea:focus { outline: none; border-color: var(--bronze); box-shadow: 0 0 0 4px rgba(196, 160, 90, .18); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips label { position: relative; cursor: pointer; }
.chips input { position: absolute; opacity: 0; pointer-events: none; }
.chips span {
  display: inline-flex; align-items: center; gap: 7px; min-height: 42px; padding: 0 16px; border-radius: var(--r-pill);
  border: 1px solid var(--line-strong); background: #fff; font-size: 14.5px; color: var(--ink-2); transition: all .15s var(--ease);
}
.chips label:hover span { border-color: var(--bronze); }
.chips input:checked + span { background: var(--ink); border-color: var(--ink); color: #F6F1E4; }
.chips input:focus-visible + span { outline: 2px solid var(--bronze); outline-offset: 2px; }

.check { display: flex; gap: 10px; align-items: center; font-size: 14.5px; color: var(--ink-2); cursor: pointer; }
.check input { width: 20px; height: 20px; accent-color: var(--ink); }
.submit-row { display: grid; gap: 12px; }
.submit-row .btn { width: 100%; min-height: 56px; font-size: 14px; }
.submit-row .fine { margin: 0; text-align: center; font-size: 12.5px; color: var(--faint); }
.err { margin: 0; color: var(--danger); font-size: 14px; min-height: 1.2em; text-align: center; }
.done { text-align: center; padding: 20px 6px; }
.done .ok { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: var(--foil); display: grid; place-items: center; color: var(--ink); }
.done .ok svg { width: 28px; height: 28px; }
.done h3 { margin: 0 0 8px; font-size: 24px; font-weight: 800; text-transform: uppercase; color: var(--ink); font-stretch: 112%; font-variation-settings: "wdth" 112; }
.done p { margin: 0 auto; max-width: 40ch; color: var(--muted); }
.or-text { margin: 18px 0 0; text-align: center; font-size: 15px; color: var(--muted); }
.or-text a { color: var(--ink); font-weight: 700; }

/* ---------------- footer ---------------- */
.site-foot { padding: 44px 20px calc(110px + env(safe-area-inset-bottom)); background: var(--ink); color: #A9A395; }
@media (min-width: 900px) { .site-foot { padding-bottom: 44px; } }
.site-foot .wrap { display: grid; gap: 22px; font-size: 13.5px; }
@media (min-width: 820px) { .site-foot .wrap { grid-template-columns: 1.2fr 1fr 1fr; } }
.site-foot .brandline { display: flex; align-items: center; gap: 10px; color: #F6F1E4; }
.site-foot .brandline svg { width: 26px; height: 26px; }
.site-foot .brandline .wordmark { font-size: 12px; }
.site-foot h4 { margin: 0 0 8px; color: var(--gold); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.site-foot p { margin: 0; }
.site-foot a { color: #DCD5C5; text-decoration: none; }
.site-foot .ph { background: rgba(196, 160, 90, .18); box-shadow: none; color: #EDE6D6; }
.site-foot .legal { grid-column: 1 / -1; padding-top: 18px; border-top: 1px solid rgba(233, 220, 188, .12); font-size: 12px; color: #7F7A6F; }

/* ---------------- sticky mobile CTA ---------------- */
.dock {
  position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 60;
  display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 7px; border-radius: var(--r-pill);
  background: rgba(22, 25, 29, .9); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px -16px rgba(22, 25, 29, .6);
  transform: translateY(140%); transition: transform .45s var(--ease);
}
.dock.show { transform: none; }
.dock .btn { min-height: 48px; }
.dock .btn-line { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .14); color: #F6F1E4; padding: 0 18px; }
@media (min-width: 900px) { .dock { display: none; } }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
.reveal.in { opacity: 1; transform: none; }
