/* ————————————————————————————————————————————————
   Rachel Teeger — design system
   Dark museum walls, liquid glass chrome, SF Pro UI,
   Bodoni Moda display. Paintings are the only color.
   ———————————————————————————————————————————————— */

:root {
  --bg: #0b0a08;
  --bg-2: #12100c;
  --ink: #f4efe6;
  --ink-dim: rgba(244, 239, 230, 0.64);
  --ink-faint: rgba(244, 239, 230, 0.42);
  --gold: #c6a25f;
  --gold-bright: #e6cb8b;
  --line: rgba(244, 239, 230, 0.14);
  --line-soft: rgba(244, 239, 230, 0.08);
  --glass-bg: rgba(24, 21, 16, 0.58);
  --glass-bg-strong: rgba(20, 18, 14, 0.78);
  --glass-border: rgba(255, 255, 255, 0.09);
  --glass-hi: rgba(255, 255, 255, 0.16);
  --wa: #25d366;
  --radius: 22px;
  --radius-sm: 14px;
  --serif: "Bodoni Moda", "Didot", "Playfair Display", serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --shadow-deep: 0 30px 80px rgba(0, 0, 0, 0.55), 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-frame: 0 22px 60px rgba(0, 0, 0, 0.6), 0 4px 14px rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background:
    radial-gradient(1200px 700px at 70% -10%, rgba(198, 162, 95, 0.07), transparent 60%),
    radial-gradient(900px 600px at 0% 100%, rgba(198, 162, 95, 0.045), transparent 55%),
    var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: rgba(198, 162, 95, 0.35); }

/* ——— type ——— */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  font-weight: 500;
}
h1, h2, .display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.005em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(42px, 6.5vw, 88px); }
h2 { font-size: clamp(30px, 4vw, 52px); }
h3 {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-dim);
  margin: 0 0 14px;
}
.lede {
  font-size: clamp(19px, 2.2vw, 23px);
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 34em;
}
p { margin: 0 0 1.2em; }
.dim { color: var(--ink-dim); }
.faint { color: var(--ink-faint); }

/* ——— liquid glass primitives ——— */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-deep), inset 0 1px 0 var(--glass-hi);
}
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .glass {
    -webkit-backdrop-filter: blur(28px) saturate(1.6);
    backdrop-filter: blur(28px) saturate(1.6);
  }
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass { background: var(--glass-bg-strong); }
}

/* ——— nav ——— */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px max(24px, 4.5vw);
  border-bottom: 1px solid transparent;
  transition: background 0.45s ease, border-color 0.45s ease;
}
.nav.is-solid {
  background: rgba(11, 10, 8, 0.72);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  backdrop-filter: blur(24px) saturate(1.5);
  border-bottom-color: var(--line-soft);
}
.nav-wordmark {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-dim);
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.is-active { color: var(--ink); border-bottom-color: var(--gold); }
.nav-cta {
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: #0b0a08;
  background: linear-gradient(160deg, var(--gold-bright), var(--gold));
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(198, 162, 95, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(198, 162, 95, 0.4); }

/* ——— buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  padding: 16px 30px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease,
    border-color 0.25s ease, color 0.25s ease;
}
.btn-gold {
  color: #0b0a08;
  background: linear-gradient(160deg, var(--gold-bright), var(--gold));
  box-shadow: 0 8px 26px rgba(198, 162, 95, 0.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(198, 162, 95, 0.42); }
.btn-ghost {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn-wa {
  color: #eafff2;
  background: linear-gradient(160deg, #2eab62, #1f8f4f);
  box-shadow: 0 6px 18px rgba(31, 143, 79, 0.22);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(31, 143, 79, 0.32); }
.btn svg { flex: none; width: 18px; height: 18px; }
.btn { white-space: nowrap; }
@media (max-width: 720px) {
  .btn { font-size: 11.5px; letter-spacing: 0.09em; padding: 15px 20px; }
  .hero-actions .btn { flex: 1 1 100%; }
}

/* ——— layout ——— */
.section {
  padding: clamp(80px, 11vw, 150px) max(24px, 5vw);
  max-width: 1280px;
  margin: 0 auto;
}
.section-tight { padding-top: clamp(50px, 7vw, 90px); padding-bottom: clamp(50px, 7vw, 90px); }
.hr {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  margin: 0 auto;
  max-width: 1280px;
}

/* ——— hero ——— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  overflow: hidden;
}
.hero-art {
  position: absolute;
  inset: 0;
}
.hero-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
@media (min-width: 961px) {
  /* card sits right; widen and shift the canvas so the Rebbe's gaze owns the left half */
  .hero-art img {
    width: 118%;
    max-width: none;
    margin-left: -18%;
    object-position: 50% 38%;
  }
  .hero-inner { display: flex; justify-content: flex-end; }
  .hero-caption { right: auto; left: max(24px, 4vw); text-align: left; }
}
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 10, 8, 0.5) 0%, rgba(11, 10, 8, 0.05) 30%, rgba(11, 10, 8, 0.12) 55%, rgba(11, 10, 8, 0.88) 88%, var(--bg) 100%),
    radial-gradient(120% 70% at 50% 110%, rgba(11, 10, 8, 0.55), transparent 60%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 max(24px, 5vw) clamp(56px, 8vh, 110px);
}
.hero-card {
  max-width: 640px;
  padding: clamp(28px, 4vw, 44px);
}
.hero-card .lede { margin: 18px 0 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-caption {
  position: absolute;
  right: max(24px, 4vw);
  bottom: 26px;
  z-index: 2;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.55);
  text-align: right;
}

/* ——— trust strip ——— */
.trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 34px;
  padding: 26px max(24px, 5vw);
  max-width: 1280px;
  margin: 0 auto;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-align: center;
}
.trust span { white-space: nowrap; }

/* ——— gallery grid ——— */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(30px, 4vw, 60px);
  margin-top: clamp(40px, 5vw, 70px);
}
.work {
  text-decoration: none;
  color: inherit;
  display: block;
  group: work;
}
.work-frame {
  position: relative;
  background: #191611;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  box-shadow: var(--shadow-frame);
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.45s ease;
  overflow: hidden;
}
/* gallery cards share one mat so titles and CTAs sit on one baseline per row */
.work .work-frame {
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work .work-frame picture { display: contents; }
.work .work-frame img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.work:hover .work-frame {
  transform: translateY(-6px);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.7), 0 6px 18px rgba(0, 0, 0, 0.5);
}
.work-frame img { width: 100%; height: auto; border-radius: 2px; }
.work-badge {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(16, 14, 11, 0.62);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
}
.work-badge.is-available { color: var(--gold-bright); }
.work-badge.is-sold { color: rgba(244, 239, 230, 0.55); }
.work-meta { padding: 18px 4px 0; }
.work-title {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.25;
  margin: 0;
}
.work-sub {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  margin: 6px 0 0;
}
.work-cta {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 10px;
  display: inline-block;
  border-bottom: 1px solid rgba(198, 162, 95, 0.35);
  padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.work:hover .work-cta { color: var(--gold-bright); border-color: var(--gold-bright); }

/* ——— painting page ——— */
.painting-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
  padding-top: clamp(120px, 16vh, 170px);
}
.painting-stage { position: sticky; top: 110px; }
.painting-stage .work-frame { padding: 14px; cursor: zoom-in; }
.painting-stage figcaption {
  margin-top: 14px;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-align: center;
}
.acquire {
  padding: clamp(26px, 3.4vw, 40px);
}
.acquire .eyebrow { margin-bottom: 10px; }
.acquire h1 { font-size: clamp(32px, 3.6vw, 48px); }
.acquire-facts {
  list-style: none;
  margin: 22px 0;
  padding: 0;
  border-top: 1px solid var(--line-soft);
}
.acquire-facts li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14.5px;
}
.acquire-facts span { color: var(--ink-faint); letter-spacing: 0.04em; }
.acquire-facts em { font-style: normal; color: var(--ink); text-align: right; }
.acquire-actions { display: grid; gap: 12px; margin-top: 22px; }
.acquire-note { font-size: 13.5px; color: var(--ink-faint); margin: 18px 0 0; line-height: 1.65; }

/* ——— forms ——— */
.form { margin-top: 22px; }
.form form { display: grid; gap: 16px; }
.form-row { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; align-items: end; }
.field { display: grid; gap: 7px; }
.field label {
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
}
.field input, .field textarea, .field select {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  outline: none;
  width: 100%;
  transition: border-color 0.25s ease, background 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%23c6a25f' fill='none' stroke-width='1.4' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.field select option { background: #171410; color: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: rgba(244, 239, 230, 0.32); }
.field textarea { resize: none; }
.field select { color: var(--ink-dim); }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.07);
}
.form .btn { width: 100%; }
.form-privacy {
  font-size: 12px;
  color: var(--ink-faint);
  text-align: center;
  margin: 4px 0 0;
  letter-spacing: 0.03em;
}
.form-done {
  display: none;
  text-align: center;
  padding: 30px 10px;
}
.form-done h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  margin: 0 0 10px;
}
.form-done p { color: var(--ink-dim); margin: 0; }
.form.is-done form { display: none; }
.form.is-done .form-done { display: block; }

/* ——— story / about blocks ——— */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.split .work-frame { max-width: 520px; margin: 0 auto; }
.quote {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.4;
  font-style: italic;
  text-align: center;
  max-width: 21em;
  margin: 0 auto;
  color: var(--ink);
}
.quote-attr {
  text-align: center;
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ——— process steps ——— */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(40px, 5vw, 60px);
  counter-reset: step;
}
.step {
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.025);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 34px;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.step h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 10px;
}
.step p { font-size: 15px; color: var(--ink-dim); margin: 0; }

/* ——— collectors band ——— */
.band {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 80px);
  text-align: center;
}
.band-inner { position: relative; z-index: 2; max-width: 560px; margin: 0 auto; }
.band-inner .form { text-align: left; }

/* ——— footer ——— */
.footer {
  border-top: 1px solid var(--line-soft);
  padding: clamp(50px, 7vw, 80px) max(24px, 5vw) 90px;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
}
.footer-wordmark { font-family: var(--serif); font-size: 30px; margin: 0 0 12px; }
.footer p { font-size: 14px; color: var(--ink-faint); max-width: 30em; }
.footer h5 {
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin: 0 0 16px;
  font-weight: 600;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer ul a {
  font-size: 14.5px;
  color: var(--ink-dim);
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer ul a:hover { color: var(--gold-bright); }
.footer-legal {
  max-width: 1280px;
  margin: 50px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
  color: var(--ink-faint);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  justify-content: space-between;
}

/* ——— WhatsApp float ——— */
.wa-float {
  position: fixed;
  right: max(18px, 2.4vw);
  bottom: max(18px, 2.6vh);
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 12px 20px 12px 14px;
  box-shadow: var(--shadow-deep), inset 0 1px 0 var(--glass-hi);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wa-float:hover { transform: translateY(-3px); }
.wa-float .wa-dot {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(160deg, #3ee27f, var(--wa));
  display: grid;
  place-items: center;
  flex: none;
}
.wa-float .wa-dot svg { width: 20px; height: 20px; }

/* ——— collectors slide-in capture ——— */
.invite {
  position: fixed;
  left: max(18px, 2.4vw);
  bottom: max(18px, 2.6vh);
  z-index: 69;
  width: min(400px, calc(100vw - 36px));
  padding: 26px 26px 22px;
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.55s ease;
}
.invite.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.invite h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 8px;
  padding-right: 30px;
}
.invite > p { font-size: 14px; color: var(--ink-dim); margin: 0 0 16px; }
.invite .form { margin-top: 0; }
.invite-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: 0;
  color: var(--ink-faint);
  cursor: pointer;
  padding: 6px;
  line-height: 0;
}
.invite-close:hover { color: var(--ink); }

/* ——— lightbox ——— */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(8, 7, 5, 0.92);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  display: none;
  place-items: center;
  padding: 4vmin;
  cursor: zoom-out;
}
.lightbox.is-open { display: grid; }
.lightbox img {
  max-width: 94vw;
  max-height: 92vh;
  width: auto; height: auto;
  box-shadow: var(--shadow-frame);
}

/* ——— consent ——— */
.consent {
  position: fixed;
  left: 50%;
  bottom: max(18px, 2.6vh);
  transform: translateX(-50%);
  z-index: 80;
  width: min(560px, calc(100vw - 32px));
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.consent p { margin: 0; font-size: 13px; color: var(--ink-dim); flex: 1 1 260px; }
.consent .btn { padding: 10px 20px; font-size: 11.5px; }

/* ——— faq ——— */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--line-soft);
  padding: 4px 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  font-family: var(--serif);
  font-size: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--sans);
  color: var(--gold);
  font-size: 22px;
  font-weight: 300;
  transition: transform 0.3s ease;
  flex: none;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--ink-dim); padding-bottom: 20px; margin: 0; max-width: 44em; }

/* ——— buy module (self checkout) ——— */
.buy {
  margin: 26px 0 8px;
  padding: 22px 22px 18px;
  border: 1px solid rgba(198, 162, 95, 0.35);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(198, 162, 95, 0.07), rgba(198, 162, 95, 0.02));
}
.buy-lede { font-size: 14px; color: var(--ink-dim); margin: 0 0 16px; line-height: 1.65; }
.buy-regions { display: grid; gap: 8px; margin-bottom: 14px; }
.buy-region {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-dim);
  padding: 11px 14px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.buy-region:has(input:checked) { border-color: var(--gold); background: rgba(198, 162, 95, 0.08); color: var(--ink); }
.buy-region input { accent-color: #c6a25f; margin: 0; }
.buy-region span { flex: 1; }
.buy-region em { font-style: normal; color: var(--ink); }
.buy-total {
  font-family: var(--serif);
  font-size: 21px;
  margin: 0 0 16px;
  color: var(--ink);
}
.buy-buttons { min-height: 48px; }
.buy-status { font-size: 13.5px; color: var(--gold-bright); margin: 12px 0 0; }
.buy-status a { color: var(--gold-bright); }
.buy-note { font-size: 12px; color: var(--ink-faint); margin: 14px 0 6px; line-height: 1.6; }
.buy-done { text-align: center; padding: 10px 0 6px; }
.buy-done h4 { font-family: var(--serif); font-weight: 500; font-size: 26px; margin: 0 0 10px; }
.buy-done p { color: var(--ink-dim); font-size: 14.5px; }

/* ——— proof strip + viewing link ——— */
.proof {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: var(--ink-faint);
  border-top: 1px solid var(--line-soft);
  margin: 22px 0 0;
  padding-top: 16px;
}
.viewing-link {
  display: block;
  text-align: center;
  font-size: 13.5px;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(198, 162, 95, 0.45);
  padding: 4px 0;
  transition: color 0.25s ease;
}
.viewing-link:hover { color: var(--gold-bright); }

/* ——— mobile sticky action bar (painting pages) ——— */
.action-bar {
  display: none;
  position: fixed;
  left: 14px; right: 14px;
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 71;
  padding: 10px;
  gap: 10px;
  align-items: center;
  border-radius: 999px;
}
.action-bar .btn { flex: 1; padding: 14px 18px; font-size: 12px; }
.action-bar-wa {
  flex: none;
  display: grid;
  place-items: center;
}
.action-bar-wa .wa-dot {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(160deg, #3ee27f, var(--wa));
  display: grid;
  place-items: center;
  color: #06120a;
}
.action-bar-wa .wa-dot svg { width: 22px; height: 22px; }
@media (max-width: 720px) {
  .action-bar { display: flex; }
  body.has-action-bar .wa-float, body.has-action-bar .invite { display: none; }
  body.has-action-bar .footer { padding-bottom: 160px; }
  body.has-action-bar .consent { bottom: 90px; }
}

/* ——— accessibility fallbacks ——— */
@media (prefers-reduced-transparency: reduce) {
  .glass, .nav.is-solid, .wa-float, .work-badge, .lightbox { -webkit-backdrop-filter: none; backdrop-filter: none; }
  .glass, .wa-float { background: var(--glass-bg-strong); }
  .nav.is-solid { background: rgba(11, 10, 8, 0.96); }
}

/* ——— reveal on scroll ——— */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ——— breadcrumbs ——— */
.crumbs {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 26px;
}
.crumbs a { color: var(--ink-faint); text-decoration: none; }
.crumbs a:hover { color: var(--gold-bright); }
.crumbs span { margin: 0 8px; color: rgba(244, 239, 230, 0.25); }

/* ——— responsive ——— */
@media (max-width: 960px) {
  .painting-hero { grid-template-columns: 1fr; }
  .painting-stage { position: static; }
  .split { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav { padding: 10px 16px 8px; gap: 2px 10px; flex-wrap: wrap; }
  .nav-wordmark { font-size: 17px; }
  .nav-links { width: 100%; order: 3; gap: 16px; }
  .nav-links a { font-size: 10px; letter-spacing: 0.14em; padding: 4px 0; }
  .nav-cta { display: none; }
  body { overflow-x: hidden; }
  .form-row { grid-template-columns: 1fr; }
  .hero-caption { display: none; }
  .wa-float span.wa-label { display: none; }
  .wa-float { padding: 8px; }
  .wa-float .wa-dot { width: 44px; height: 44px; }
  .footer { padding-bottom: 140px; }
}
