/* ==================================================================
   SacredAstra — clean commerce layout.
   Light, product-forward, generous whitespace. The PDF's own palette
   (ivory, navy, gold) with no decorative noise: the product photography
   carries the page.
   ================================================================== */

:root {
  /* canvas is warm and off-white, never pure white */
  --canvas: #ece9e2;
  --surface: #ffffff;
  --surface-muted: #e0dacf;
  --border: #cdcdcd;
  --border-soft: #ded8cd;
  --ink: #14161f;
  --muted-ink: #575757;
  --action: #14161f;
  --action-hover: #2b2f3d;
  --inverse: #ffffff;
  --navy: #202a4d;
  --gold: #a8894e;

  /* spacing cadence: controls 8-16, clusters 24-32, chapters 88-120 */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-6: 3rem;
  --chapter: clamp(3.5rem, 7vw, 7.5rem);

  /* rounding: broad on media, moderate on cards, minimal on controls */
  --r-media: 1.25rem;
  --r-card: 0.75rem;
  --r-control: 0.25rem;

  --shadow: 0 14px 40px rgba(20, 22, 31, 0.08);
  --shadow-lg: 0 26px 60px rgba(20, 22, 31, 0.14);

  /* One face for the whole site, the same one the Blueprint is set in.
     Hierarchy comes from size, weight and spacing, never from a second
     family. Garamond has a small x-height, so the base size runs a
     little larger than a sans would and small labels get extra tracking. */
  --serif: "EB Garamond", Georgia, "Times New Roman", serif;
  --sans: "EB Garamond", Georgia, "Times New Roman", serif;
  --wrap: 76rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--serif);
  background: var(--canvas);
  color: var(--ink);
  font-size: 17.5px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 1.5rem; }
.band { padding: var(--chapter) 0; }
.band-white { background: var(--surface); }
.band-tint { background: var(--surface-muted); }
.band-navy { background: var(--navy); color: #e8e4dc; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; color: var(--navy); line-height: 1.18; }
h1 { font-size: clamp(2rem, 3.6vw, 2.9rem); font-weight: 400; letter-spacing: -0.005em; line-height: 1.25; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.05rem); font-weight: 400; line-height: 1.3; }
h3 { font-size: 1.06rem; font-weight: 500; }
.band-navy h1, .band-navy h2, .band-navy h3 { color: #fbf8f3; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted-ink);
}
.section-head { text-align: center; max-width: 46rem; margin: 0 auto clamp(2.2rem, 5vw, 3.4rem); }
.section-head h2 { margin: 0.7rem 0 0.8rem; }
.section-head p { color: var(--muted-ink); font-size: 1.03rem; }
.band-navy .section-head p { color: #b9b6c9; }

/* ---------- header ---------- */
.hdr {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  border: none;
  padding: 0.7rem 0;
}
.hdr-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-media);
  padding: 0 1.4rem;
}
.hdr-in {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 4.4rem;
}
.logo { font-family: var(--serif); font-size: 1.28rem; color: var(--navy); text-decoration: none; letter-spacing: 0.01em; }
.hdr nav { display: flex; gap: 1.8rem; margin-left: auto; }
.hdr nav a {
  font-size: 0.92rem;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.15s;
}
.hdr nav a:hover { color: var(--gold); }
@media (max-width: 860px) { .hdr nav { display: none; } .hdr .btn { margin-left: auto; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.6rem;
  border: none;
  border-radius: 4px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s;
}
.btn:hover { background: #2b3763; transform: translateY(-1px); }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1rem; }
.btn-gold { background: var(--surface); color: var(--ink); }
.btn-gold:hover { background: var(--surface-muted); }
.btn-ghost { background: transparent; color: var(--navy); border: 1px solid var(--border-soft); }
.btn-ghost:hover { background: var(--surface-muted); }
.band-navy .btn-ghost { color: #fbf8f3; border-color: rgba(255,255,255,0.25); }

/* ---------- hero ---------- */
.hero { padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 5rem); }
.hero-in {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-in { grid-template-columns: 1fr; text-align: center; }
  .hero-copy .hero-points { justify-content: center; }
  .hero-cta { justify-content: center; }
}
.hero h1 { margin: 0.8rem 0 1.1rem; }
.hero-sub { font-size: 1.1rem; color: var(--muted-ink); max-width: 34rem; }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  margin: 1.5rem 0 1.8rem;
  font-size: 0.94rem;
  color: var(--ink);
}
.hero-points span::before { content: "✓"; color: var(--gold); font-weight: 700; margin-right: 0.45rem; }
.hero-cta { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.hero-price { font-family: var(--sans); font-weight: 600; font-size: 1.5rem; color: var(--navy); }
.hero-price small { font-family: var(--sans); font-size: 0.76rem; color: var(--muted-ink); display: block; letter-spacing: 0.06em; text-transform: uppercase; }
.hero-note { margin-top: 1.2rem; font-size: 0.88rem; color: var(--muted-ink); }

.hero-art { position: relative; }
.hero-art img {
  width: 100%;
  max-height: 30rem;
  object-fit: cover;
  object-position: top center;
  border-radius: 3px;
  box-shadow: var(--shadow-lg);
}
.hero-badge {
  position: absolute;
  right: -0.6rem;
  bottom: -0.9rem;
  background: var(--navy);
  color: #fbf8f3;
  border-radius: 50%;
  width: 6.6rem;
  height: 6.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}
.hero-badge strong { font-family: var(--serif); font-size: 1.5rem; letter-spacing: 0; text-transform: none; }
@media (max-width: 900px) { .hero-art { max-width: 26rem; margin: 0 auto; } }

/* ---------- feature strip ---------- */
.strip { border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); background: var(--surface); }
.strip-in {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1.5rem 2rem;
  padding: 2rem 0;
}
.strip-item { display: flex; gap: 0.8rem; align-items: flex-start; }
.strip-item .g { color: var(--gold); font-size: 1.1rem; line-height: 1.3; }
.strip-item h3 { font-family: var(--sans); font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 0.15rem; }
.strip-item p { font-size: 0.86rem; color: var(--muted-ink); line-height: 1.5; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 2.4rem; }
.step { text-align: center; }
.step-n {
  width: 2.9rem; height: 2.9rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { margin-bottom: 0.5rem; }
.step p { color: var(--muted-ink); font-size: 0.95rem; }

/* ---------- inclusions ---------- */
.inc-in { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 900px) { .inc-in { grid-template-columns: 1fr; } }
.inc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem 1.4rem; margin-top: 1.6rem; }
@media (max-width: 620px) { .inc-list { grid-template-columns: 1fr; } }
.inc-list li { list-style: none; font-size: 0.95rem; display: flex; gap: 0.55rem; }
.inc-list li::before { content: "✦"; color: var(--gold); font-size: 0.8rem; line-height: 1.7; }
.inc-art img { border-radius: var(--r-media); }

/* ---------- story card grid ----------
   Cards are a grid, not a clipped scroller, so no page is ever half
   visible. The middle column is offset so the field reads as a set of
   framed moments rather than a mechanical row. */
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 3vw, 2.4rem) clamp(1.2rem, 2.2vw, 1.8rem);
  align-items: start;
}
.story-grid > * { min-width: 0; }
.story-grid figure:nth-child(3n + 2) { margin-top: clamp(1.4rem, 3vw, 2.8rem); }
.story-grid img {
  width: 100%;
  border-radius: var(--r-card);
  box-shadow: 0 14px 34px rgba(20, 22, 31, 0.13);
}
.story-grid figcaption {
  margin-top: 0.85rem;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-ink);
}
@media (max-width: 880px) {
  .story-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid figure:nth-child(3n + 2) { margin-top: 0; }
  .story-grid figure:nth-child(2n) { margin-top: clamp(1.2rem, 4vw, 2rem); }
}
@media (max-width: 480px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-grid figure:nth-child(2n) { margin-top: 0; }
}

/* ---------- campaign panel ----------
   The page's one large editorial moment: a rounded dark stage with a
   statement set against the real pages at a size worth looking at. */
.campaign { padding: 0 0 var(--chapter); }
.campaign-panel {
  background: #0b1330;
  color: #e6e2da;
  border-radius: var(--r-media);
  padding: clamp(2.4rem, 5vw, 4.2rem) clamp(1.6rem, 4vw, 3.6rem);
  overflow: hidden;
}
.campaign-in {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.campaign-in > * { min-width: 0; }
.campaign .eyebrow { color: #9a9fb8; }
.campaign h2 {
  color: #f6f2ea;
  font-size: clamp(1.75rem, 3.2vw, 2.7rem);
  margin: 0.8rem 0 1rem;
}
.campaign p { color: #b6b8c9; font-size: 1.02rem; max-width: 30rem; }
.campaign .btn-ghost { color: #f6f2ea; border-color: rgba(255, 255, 255, 0.28); margin-top: 1.8rem; }
.campaign .btn-ghost:hover { background: rgba(255, 255, 255, 0.08); }

/* three real pages, stepped rather than rotated */
.fan { display: flex; align-items: flex-end; justify-content: center; }
.fan img {
  width: 31%;
  border-radius: 5px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.5);
}
.fan img:first-child { transform: translateY(1.8rem); margin-right: -3.5%; }
.fan img:nth-child(2) { width: 38%; position: relative; z-index: 2; }
.fan img:last-child { transform: translateY(1.8rem); margin-left: -3.5%; }
@media (max-width: 900px) {
  .campaign-in { grid-template-columns: 1fr; }
  .campaign p { max-width: none; }
  .fan { margin-top: 0.5rem; }
}

/* ---------- founder ---------- */
.founder-in { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 860px) { .founder-in { grid-template-columns: 1fr; } }
/* the source portrait is small and landscape; frame it as a media panel
   so it fills its column instead of leaving the band half empty */
.founder-in img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
  border-radius: var(--r-media);
}
@media (max-width: 860px) {
  .founder-in img { aspect-ratio: 16 / 10; object-position: center 26%; max-width: 30rem; }
}
.founder-quote { font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 1.75rem); line-height: 1.4; color: var(--navy); margin: 1rem 0 1.2rem; }
.founder-name { font-size: 0.86rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }

/* ---------- faq ---------- */
.faq { max-width: 46rem; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--border-soft); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 2.2rem 1.15rem 0;
  font-family: var(--serif);
  font-size: 1.08rem;
  color: var(--navy);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0.3rem; top: 50%;
  transform: translateY(-50%); color: var(--gold); font-size: 1.25rem;
}
.faq details[open] summary::after { content: "−"; }
.faq p { padding: 0 2.2rem 1.3rem 0; color: var(--muted-ink); font-size: 0.97rem; }

/* ---------- closing + footer ---------- */
.closing { text-align: center; }
.closing h2 { margin-bottom: 1rem; }
.closing p { color: #b9b6c9; max-width: 40rem; margin: 0 auto 2rem; }

.ftr { background: var(--navy); color: #a9a6ba; padding: 2.5rem 0; margin-top: auto; border-top: 1px solid rgba(255,255,255,0.08); }
.ftr-in { display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; justify-content: space-between; font-size: 0.86rem; }
.ftr a { color: #d6d2e0; text-decoration: none; }
.ftr a:hover { color: #fff; }
.ftr nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.ftr .disc { width: 100%; font-size: 0.76rem; color: #8c8a9c; line-height: 1.6; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.2rem; }

/* ---------- forms / sheets (wizard, confirm, thanks, policy) ---------- */
.page-head { text-align: center; padding: clamp(2.6rem, 6vw, 4rem) 0 0; }
.page-head h1 { margin: 0.7rem 0 0.8rem; }
.page-head p { color: var(--muted-ink); max-width: 40rem; margin: 0 auto; }
.page-date {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-ink);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 0.35rem 0.95rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-card);
  padding: clamp(1.6rem, 4vw, 2.6rem);
}
.card-narrow { max-width: 40rem; margin: 0 auto; }
/* the wizard swaps steps of different heights inside one card; a floor
   keeps the page from jumping under the reader between steps */
#bp-form { min-height: 34rem; display: flex; flex-direction: column; }
#bp-form .wiz-nav { margin-top: auto; }

.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.3rem; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.field .hint { font-size: 0.85rem; color: var(--muted-ink); }
.field input, .field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 5px;
  padding: 0.75rem 0.85rem;
  width: 100%;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(168, 137, 78, 0.15);
}
.field input:disabled { background: var(--surface-muted); color: var(--muted-ink); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.checkline { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.94rem; color: var(--ink); cursor: pointer; }
.checkline input { accent-color: var(--gold); margin-top: 0.25rem; }

.notice {
  background: var(--surface-muted);
  border-left: 3px solid var(--gold);
  padding: 0.9rem 1.1rem;
  font-size: 0.9rem;
  color: var(--muted-ink);
  border-radius: 0 5px 5px 0;
  margin-bottom: 1.3rem;
}
.notice strong { color: var(--navy); }

/* wizard progress */
.wiz-bar { display: flex; align-items: center; justify-content: center; margin-bottom: 0.7rem; }
.wiz-dot { width: 9px; height: 9px; border-radius: 50%; border: 1px solid var(--border-soft); background: var(--surface); }
.wiz-dot.done, .wiz-dot.current { background: var(--gold); border-color: var(--gold); }
.wiz-dot.current { box-shadow: 0 0 0 4px rgba(168, 137, 78, 0.18); }
.wiz-line { width: clamp(2rem, 7vw, 4rem); border-top: 1px solid var(--border-soft); }
.wiz-line.done { border-top-color: var(--gold); }
.wiz-label { text-align: center; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-ink); margin-bottom: 1.8rem; }
.wiz-step legend { font-family: var(--serif); font-size: 1.4rem; color: var(--navy); margin-bottom: 1.2rem; width: 100%; }
.wiz-step { border: none; }
.wiz-nav { display: flex; justify-content: space-between; align-items: center; gap: 1rem; border-top: 1px solid var(--border-soft); padding-top: 1.4rem; margin-top: 1.2rem; }
.wiz-nav .spacer { flex: 1; }

/* chips */
.chip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr)); gap: 0.6rem; }
.chip input { position: absolute; opacity: 0; }
.chip span {
  display: block;
  border: 1px solid var(--border-soft);
  border-radius: 5px;
  padding: 0.65rem 0.8rem;
  font-size: 0.9rem;
  cursor: pointer;
  background: var(--surface);
  transition: border-color 0.15s, background 0.15s;
}
.chip input:checked + span { border-color: var(--gold); background: rgba(168, 137, 78, 0.09); color: var(--navy); font-weight: 600; }

/* place autocomplete */
.place-wrap { position: relative; }
.place-list {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 30;
  background: var(--surface); border: 1px solid var(--border-soft); border-radius: 6px;
  box-shadow: var(--shadow); max-height: 15rem; overflow-y: auto;
}
.place-option {
  display: block; width: 100%; text-align: left; background: none; border: none;
  border-bottom: 1px solid var(--border-soft); padding: 0.7rem 0.9rem;
  font-family: var(--sans); font-size: 0.94rem; color: var(--ink); cursor: pointer;
}
.place-option:last-child { border-bottom: none; }
.place-option:hover { background: var(--surface-muted); }
.place-confirmed { font-size: 0.86rem; color: #2e7d4f; }
.place-pending { font-size: 0.86rem; color: var(--muted-ink); }

/* ---------- required / error states ----------
   Several fields have no safe default, so the form says which ones up
   front and refuses rather than quietly producing a lesser chart. */
.req, .opt {
  display: inline-block;
  margin-left: 0.45rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  vertical-align: 0.1em;
  padding: 0.16rem 0.42rem;
  border-radius: 3px;
}
.req { background: rgba(159, 42, 42, 0.09); color: #9f2a2a; }
.opt { background: var(--surface-muted); color: var(--muted-ink); }

.field .err { font-size: 0.86rem; color: #9f2a2a; margin-top: 0.15rem; }
.field.has-error input, .field.has-error textarea { border-color: #c26a6a; }
.field.has-error input:focus, .field.has-error textarea:focus {
  border-color: #9f2a2a;
  box-shadow: 0 0 0 3px rgba(159, 42, 42, 0.13);
}

.errbox {
  border: 1px solid #e2bcbc;
  background: #fdf5f4;
  border-radius: var(--r-card);
  padding: 1rem 1.2rem;
  margin-bottom: 1.8rem;
}
.errbox-head {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9f2a2a;
  margin-bottom: 0.5rem;
}
.errbox ul { margin: 0; padding-left: 1.1rem; }
.errbox li { font-size: 0.92rem; color: var(--ink); margin-bottom: 0.3rem; }
.errbox li:last-child { margin-bottom: 0; }

/* data rows (confirm) */
.rows { margin: 0 auto 1.8rem; max-width: 30rem; }
.rows .row { display: flex; justify-content: space-between; gap: 1.5rem; padding: 0.7rem 0; border-bottom: 1px solid var(--border-soft); font-size: 0.96rem; }
.rows .row:last-child { border-bottom: none; }
.rows .k { color: var(--muted-ink); }
.rows .v { color: var(--navy); font-weight: 600; text-align: right; }

/* numbered list (thanks, policies) */
.numlist { max-width: 42rem; margin: 0 auto; }
.numlist .item { display: flex; gap: 1.2rem; padding: 1.3rem 0; border-bottom: 1px solid var(--border-soft); }
.numlist .item:last-child { border-bottom: none; }
.numlist .n { font-family: var(--serif); font-size: 1.4rem; color: var(--gold); min-width: 2rem; line-height: 1.2; }
.numlist h3 { margin-bottom: 0.35rem; }
.numlist p { color: var(--muted-ink); font-size: 0.96rem; }
.numlist ul { margin-top: 0.5rem; padding-left: 1.1rem; color: var(--muted-ink); font-size: 0.96rem; }
.numlist li { margin-bottom: 0.35rem; }
.numlist a { color: var(--gold); }

.tldr {
  max-width: 42rem; margin: 0 auto 2.2rem;
  background: var(--surface-muted); border: 1px solid var(--border-soft); border-radius: 8px;
  padding: 1.3rem 1.6rem; text-align: center;
}
.tldr .lbl { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.tldr p { color: var(--navy); }

.foot-note { text-align: center; color: var(--muted-ink); font-size: 0.92rem; margin-top: 2rem; }
.foot-note a { color: var(--gold); }

/* ==================================================================
   Product hero: image panel + buy box (Hers / lululemon / Shop pattern)
   ================================================================== */
.pdp { padding: clamp(1.5rem, 4vw, 3rem) 0 clamp(3rem, 6vw, 4.5rem); }
.pdp-in {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 950px) { .pdp-in { grid-template-columns: 1fr; } }

/* left: image panel */
.pdp-media { position: sticky; top: 5.4rem; }
@media (max-width: 950px) { .pdp-media { position: static; } }
.pdp-stage {
  background: var(--surface-muted);
  border-radius: var(--r-media);
  padding: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(20rem, 42vw, 32rem);
}
.pdp-stage img {
  max-height: clamp(18rem, 38vw, 28rem);
  width: auto;
  border-radius: 2px;
  box-shadow: 0 24px 60px rgba(32, 42, 77, 0.22);
  transition: opacity 0.2s ease;
}
.pdp-thumbs { display: flex; gap: 0.6rem; margin-top: 0.9rem; flex-wrap: wrap; }
.pdp-thumb {
  width: 4.4rem;
  border: 1px solid var(--border-soft);
  border-radius: 5px;
  padding: 0;
  background: var(--surface);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.15s;
}
.pdp-thumb img { width: 100%; display: block; }
.pdp-thumb.active { border-color: var(--navy); box-shadow: 0 0 0 2px rgba(32, 42, 77, 0.12); }
.pdp-thumb:hover { border-color: var(--gold); }

/* right: buy box */
.pdp-buy { padding-top: 0.5rem; }
.pdp-buy h1 { font-size: clamp(2rem, 3.6vw, 2.9rem); margin: 0.55rem 0 0.9rem; }
.pdp-desc { color: var(--muted-ink); font-size: 1.03rem; margin-bottom: 1.4rem; }
.pdp-price-row { display: flex; align-items: baseline; gap: 0.8rem; margin-bottom: 1.3rem; }
.pdp-price { font-family: var(--sans); font-weight: 600; font-size: 1.85rem; color: var(--navy); letter-spacing: -0.01em; }
.pdp-price-note { font-size: 0.82rem; color: var(--gold); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }

.pdp-includes { border: 1px solid var(--border-soft); border-radius: 8px; background: var(--surface); padding: 1.1rem 1.2rem; margin-bottom: 1.4rem; }
.pdp-includes p.lbl { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.7rem; }
.pdp-includes ul { list-style: none; display: grid; gap: 0.4rem; }
.pdp-includes li { font-size: 0.93rem; display: flex; gap: 0.55rem; color: var(--ink); }


.pdp-cta { width: 100%; padding: 1.05rem 1.6rem; font-size: 1rem; }
.pdp-assure { margin-top: 0.9rem; font-size: 0.86rem; color: var(--muted-ink); text-align: center; }
.pdp-pay {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--muted-ink);
}
.pdp-pay .lock { color: var(--navy); font-weight: 600; }

.pdp-bullets { display: grid; gap: 0.9rem; margin-top: 1.6rem; }
.pdp-bullet { display: flex; gap: 0.75rem; align-items: flex-start; }
.pdp-bullet .g { color: var(--gold); font-size: 1rem; line-height: 1.4; }
.pdp-bullet strong { display: block; font-size: 0.9rem; color: var(--navy); }
.pdp-bullet span { font-size: 0.86rem; color: var(--muted-ink); }

/* sticky buy bar */
.buybar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-soft);
  box-shadow: 0 -6px 24px rgba(32, 42, 77, 0.08);
  transform: translateY(105%);
  transition: transform 0.25s ease;
}
.buybar.show { transform: translateY(0); }
.buybar-in { display: flex; align-items: center; gap: 1rem; padding: 0.75rem 0; }
.buybar-name { font-family: var(--serif); font-size: 1.05rem; color: var(--navy); }
.buybar-sub { font-size: 0.8rem; color: var(--muted-ink); }
.buybar .btn { margin-left: auto; white-space: nowrap; }
@media (max-width: 620px) { .buybar-sub { display: none; } }

/* ==================================================================
   Mobile hardening. Grid children default to min-width:auto, so a wide
   child (the thumbnail row) can force the whole column past the
   viewport. Pin every grid child to min-width:0 and guard the body.
   ================================================================== */
body { overflow-x: hidden; }
.pdp-in > *, .hero-in > *, .inc-in > *, .founder-in > *,
.strip-in > *, .steps > *, .ftr-in > * { min-width: 0; }

@media (max-width: 620px) {
  .hdr-in { gap: 0.8rem; }
  .logo { font-size: 1.1rem; }
  .hdr .btn { padding: 0.7rem 1rem; font-size: 0.85rem; }

  /* thumbnails scroll instead of wrapping into a tall block */
  .pdp-thumbs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.4rem;
    scroll-snap-type: x proximity;
  }
  .pdp-thumbs::-webkit-scrollbar { height: 4px; }
  .pdp-thumbs::-webkit-scrollbar-thumb { background: var(--border-soft); border-radius: 2px; }
  .pdp-thumb { flex: 0 0 auto; width: 3.6rem; scroll-snap-align: start; }

  .pdp-stage { padding: 1.2rem; min-height: 17rem; }
  .pdp-stage img { max-height: 15rem; }
  .pdp-buy h1 { font-size: 1.85rem; }
  .pdp-desc { font-size: 0.98rem; }
  .pdp-pay { justify-content: flex-start; font-size: 0.74rem; }

  .band { padding: 2.8rem 0; }
  .wrap { padding: 0 1.15rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  /* the sticky bar must not cover the footer CTA */
  .ftr { padding-bottom: 5.5rem; }
}

/* the buy bar needs breathing room above the page bottom on every size */
@media (max-width: 950px) { .ftr { padding-bottom: 5rem; } }

/* ---------- comparison ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; max-width: 58rem; margin: 0 auto; }
@media (max-width: 760px) { .compare { grid-template-columns: 1fr; } }
.compare-col {
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 1.6rem 1.7rem;
  background: var(--canvas);
}
.compare-ours { border-color: var(--ink); background: var(--surface); }
.compare-head {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--navy);
  padding-bottom: 0.9rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-soft);
}
.compare-col ul { list-style: none; display: grid; gap: 0.75rem; }
.compare-col li { font-size: 0.95rem; color: var(--muted-ink); display: flex; gap: 0.6rem; line-height: 1.5; }
.compare-col li::before { content: "—"; color: #b9b3a4; flex-shrink: 0; }
.compare-ours li { color: var(--ink); }
.compare-ours li::before { content: "✓"; color: var(--gold); font-weight: 700; }

.pattern-note {
  max-width: 46rem;
  margin: 2.6rem auto 0;
  text-align: center;
  border-top: 1px solid var(--border-soft);
  padding-top: 2rem;
}
.pattern-note p:last-child { color: var(--muted-ink); font-size: 1.02rem; margin-top: 0.7rem; }

/* proper drawn icons instead of stray unicode characters */
.ic { width: 1.45rem; height: 1.45rem; display: block; }
.ic-sm { width: 1.05rem; height: 1.05rem; }
.strip-item .g, .pdp-bullet .g { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pdp-pay .lock { display: inline-flex; align-items: center; gap: 0.35rem; }
.numlist .n .ic { width: 1.5rem; height: 1.5rem; color: var(--gold); }
.inc-list li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); margin-top: 0.6rem; flex-shrink: 0; }
.pdp-includes li::before { content: ""; }
.pdp-includes li { align-items: flex-start; }
.pdp-includes li .ic { color: var(--gold); margin-top: 0.1rem; flex-shrink: 0; }
.compare-ours li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); margin-top: 0.6rem; flex-shrink: 0; }
.compare-col li::before { margin-top: 0; }

/* ---------- announcement bar (persistent top notice) ---------- */
.promo {
  background: var(--ink);
  color: var(--inverse);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  padding: 0.6rem 1rem;
}
.promo strong { font-weight: 600; }
.promo span { color: #b8b5ae; }

/* ==================================================================
   Single-face tuning. With one serif carrying both display and UI, the
   hierarchy has to come from weight, size and tracking. Garamond also
   sets small caps tighter and numerals lighter than a sans, so labels
   get more air and figures are pinned to lining.
   ================================================================== */
h1, h2 { font-weight: 500; letter-spacing: -0.008em; }
h3 { font-weight: 600; }
.logo { font-weight: 600; letter-spacing: 0.02em; }

/* uppercase labels need noticeably more tracking in a serif */
.eyebrow, .founder-name, .gallery figcaption, .story-grid figcaption,
.page-date, .wiz-label, .tldr .lbl, .pdp-includes p.lbl, .req, .opt {
  letter-spacing: 0.16em;
  font-weight: 600;
}
.eyebrow { font-size: 0.78rem; }
.pdp-price-note { letter-spacing: 0.12em; }

/* buttons and controls: serif needs weight and a little tracking to
   hold its shape at small sizes against a solid fill */
.btn { font-weight: 600; letter-spacing: 0.03em; font-size: 0.98rem; }
.btn-lg { font-size: 1.06rem; }
.hdr nav a { font-size: 1rem; }

/* figures stay lining and even-width so prices and dates line up */
.pdp-price, .rows .v, .step-n, .hero-price, .buybar-name, .numlist .n {
  font-variant-numeric: lining-nums tabular-nums;
}
.pdp-price { font-weight: 600; font-size: 2rem; }
.step-n { font-weight: 600; }

/* forms: keep the face, but inputs need a touch more size to stay
   comfortable and small print needs to not disappear */
.field label { font-size: 0.92rem; font-weight: 600; }
.field input, .field textarea { font-family: var(--serif); font-size: 1.02rem; }
.field .hint, .strip-item p, .pdp-bullet span { font-size: 0.94rem; }
.strip-item h3 { font-size: 1rem; letter-spacing: 0.01em; }
.promo { font-size: 0.86rem; letter-spacing: 0.03em; }
.ftr, .ftr-in { font-size: 0.92rem; }
.ftr .disc { font-size: 0.84rem; }

/* gold is an accent of last resort, not the page's voice */
.eyebrow.gold { color: var(--gold); }
.strip-item .g, .pdp-bullet .g, .pdp-includes li .ic, .numlist .n .ic { color: var(--ink); }
.step-n { border-color: var(--border); color: var(--ink); }
.inc-list li::before, .compare-ours li::before { background: var(--ink); }
.pdp-price-note { color: var(--muted-ink); font-weight: 500; }
.faq summary::after { color: var(--ink); }
