/* Divine Listings — site styles */
:root {
  --bg: #0d0f12;
  --panel: #14171c;
  --panel-2: #191d23;
  --ink: #f2ede3;
  --muted: #9aa1ab;
  --gold: #d9a441;
  --gold-soft: #e8c37a;
  --line: #262b33;
  --radius: 14px;
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ---------- header ---------- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13, 15, 18, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
header.site .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: var(--serif); font-weight: 700;
  font-size: 1.2rem; letter-spacing: 0.3em;
  color: var(--ink); text-transform: uppercase;
}
.logo b { color: var(--gold); font-weight: normal; }
nav.main a {
  color: var(--muted); font-size: 0.85rem; letter-spacing: 0.08em;
  text-transform: uppercase; margin-left: 28px;
}
nav.main a:hover { color: var(--ink); }
nav.main a.cta {
  color: var(--bg); background: var(--gold);
  padding: 9px 18px; border-radius: 999px; font-weight: 600;
  white-space: nowrap; flex-shrink: 0;
}
nav.main a.cta:hover { background: var(--gold-soft); color: var(--bg); }

/* ---------- responsive nav (2026-08-19) — the CTA must NEVER clip ---------- */
nav.main { display: flex; align-items: center; }
header.site .wrap { gap: 16px; }
.logo { white-space: nowrap; }
.nav-toggle { display: none; }
.mobile-menu { display: none; }
@media (max-width: 1120px) {
  nav.main a { margin-left: 18px; font-size: 0.8rem; letter-spacing: 0.06em; }
}
@media (max-width: 960px) {
  nav.main a:not(.cta) { display: none; }
  nav.main a.cta { margin-left: 0; padding: 9px 16px; font-size: 0.8rem; }
  .logo { font-size: 1.02rem; letter-spacing: 0.2em; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 40px; height: 38px; padding: 0 10px; margin-left: 12px;
    background: none; border: 1px solid var(--line); border-radius: 10px; cursor: pointer;
    flex-shrink: 0;
  }
  .nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
  header.site.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  header.site.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  header.site.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu {
    position: absolute; left: 0; right: 0; top: 100%;
    background: rgba(13, 15, 18, 0.97); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    padding: 6px 24px 16px;
  }
  header.site.menu-open .mobile-menu { display: block; }
  .mobile-menu a {
    display: block; padding: 13px 0; margin: 0;
    font-size: 0.92rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--ink); border-bottom: 1px solid var(--line);
  }
  .mobile-menu a:last-child { border-bottom: none; }
}
.cta-short { display: none; }
@media (max-width: 520px) {
  header.site .wrap { padding: 0 16px; gap: 10px; }
  .logo { font-size: 0.88rem; letter-spacing: 0.1em; }
  nav.main a.cta { padding: 8px 14px; font-size: 0.75rem; }
  .nav-toggle { margin-left: 8px; }
  .cta-full { display: none; }
  .cta-short { display: inline; }
}

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 82vh;
  display: flex; align-items: flex-end;
  isolation: isolate; overflow: hidden;
}
.hero .bg {
  position: absolute; inset: 0; z-index: -1;
  background-size: cover; background-position: center;
}
.hero .bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,15,18,0.25) 0%, rgba(13,15,18,0.55) 55%, var(--bg) 100%);
}
.hero .wrap { padding-bottom: 72px; padding-top: 120px; }
.kicker {
  color: var(--gold); font-size: 0.8rem; letter-spacing: 0.3em;
  text-transform: uppercase; margin-bottom: 14px;
}
h1 {
  font-family: var(--serif); font-weight: 700; letter-spacing: -0.02em;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.08; max-width: 17ch;
}
.hero p.sub {
  margin-top: 18px; max-width: 54ch; color: var(--ink);
  font-size: 1.05rem; opacity: 0.92;
}
.btn-row { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 13px 26px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.02em;
  border: 1px solid transparent; cursor: pointer;
}
.btn.gold { background: var(--gold); color: #171203; }
.btn.gold:hover { background: var(--gold-soft); color: #171203; }
.btn.ghost { border-color: rgba(242,237,227,0.35); color: var(--ink); }
.btn.ghost:hover { border-color: var(--ink); color: var(--ink); }

/* ---------- sections ---------- */
section { padding: 84px 0; }
section.tight { padding: 56px 0; }
.sec-head { margin-bottom: 44px; max-width: 60ch; }
h2 {
  font-family: var(--serif); font-weight: 700; letter-spacing: -0.015em;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem); line-height: 1.2;
}
.sec-head p { color: var(--muted); margin-top: 10px; }

/* ---------- gallery cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); border-color: rgba(217,164,65,0.5); }
.card .thumb { aspect-ratio: 4 / 3; overflow: hidden; position: relative; }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.card .body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.card .tag {
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.card h3 { font-family: var(--serif); font-weight: 600; font-size: 1.25rem; }
.card p { color: var(--muted); font-size: 0.92rem; margin-top: 8px; flex: 1; }
.card .link { margin-top: 16px; font-size: 0.88rem; letter-spacing: 0.05em; }

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.step {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 26px;
}
.step .n {
  font-family: var(--serif); font-size: 2rem; color: var(--gold);
  line-height: 1; margin-bottom: 14px;
}
.step h3 { font-size: 1.02rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.92rem; }

/* ---------- pricing ---------- */
.prices { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.price {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 28px;
  display: flex; flex-direction: column;
}
.price.feature { border-color: rgba(217,164,65,0.55); background: var(--panel-2); }
.price h3 { font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.price .amount { font-family: var(--serif); font-size: 2.4rem; margin: 12px 0 4px; }
.price .amount span { font-size: 1rem; color: var(--muted); font-family: var(--sans); }
.price ul { list-style: none; margin: 18px 0 26px; flex: 1; }
.price li { color: var(--muted); font-size: 0.92rem; padding: 5px 0 5px 22px; position: relative; }
.price li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.price .btn { text-align: center; }

/* ---------- compliance strip ---------- */
.compliance {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--panel);
}
.compliance .inner { display: flex; gap: 20px; align-items: flex-start; }
.compliance .badge {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--gold); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.3rem;
}
.compliance h3 { font-family: var(--serif); font-weight: normal; font-size: 1.2rem; margin-bottom: 6px; }
.compliance p { color: var(--muted); font-size: 0.93rem; max-width: 75ch; }

/* ---------- property page ---------- */
.prop-head { padding: 64px 0 28px; }
.prop-head .tag {
  font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.prop-head .addr { color: var(--muted); margin-top: 10px; font-size: 0.98rem; }

.prop-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; padding-bottom: 84px; }
@media (max-width: 900px) { .prop-layout { grid-template-columns: 1fr; } }

.prop-images { display: flex; flex-direction: column; gap: 22px; }
.frame {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--panel);
}
.frame img { width: 100%; pointer-events: none; user-select: none; -webkit-user-drag: none; }
.frame .shield { position: absolute; inset: 0; z-index: 2; }
.frame figcaption {
  padding: 12px 16px; font-size: 0.82rem; color: var(--muted);
  border-top: 1px solid var(--line); letter-spacing: 0.04em;
}

/* buy panel */
.buy-panel {
  position: sticky; top: 84px;
  background: var(--panel-2); border: 1px solid rgba(217,164,65,0.4);
  border-radius: var(--radius); padding: 28px 26px;
}
.buy-panel h3 { font-family: var(--serif); font-weight: normal; font-size: 1.3rem; margin-bottom: 4px; }
.buy-panel .note { color: var(--muted); font-size: 0.88rem; margin-bottom: 20px; }
.buy-option {
  border-top: 1px solid var(--line); padding: 16px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.buy-option .meta b { display: block; font-size: 0.95rem; }
.buy-option .meta span { color: var(--muted); font-size: 0.8rem; }
.buy-option .price-tag { font-family: var(--serif); font-size: 1.3rem; white-space: nowrap; }
.buy-panel .btn { width: 100%; margin-top: 14px; }
.buy-panel .fine {
  margin-top: 14px; font-size: 0.75rem; color: var(--muted); line-height: 1.5;
}
.delivery-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--gold-soft); letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 16px;
}
.delivery-badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

/* before/after — simple side-by-side pair */
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .ba-pair { grid-template-columns: 1fr; } }
.ba-pair figure {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--panel);
  box-shadow: 0 14px 50px rgba(0,0,0,.4);
}
.ba-pair img { width: 100%; display: block; pointer-events: none; user-select: none; -webkit-user-drag: none; }
.ba-pair figcaption {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  background: rgba(13,15,18,0.75); color: var(--ink);
  padding: 6px 12px; border-radius: 999px;
}
.ba-pair figure.vision figcaption { background: var(--gold); color: #171203; }

/* ---------- footer ---------- */
footer.site {
  border-top: 1px solid var(--line); padding: 44px 0 60px;
  color: var(--muted); font-size: 0.85rem;
}
footer.site .wrap { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

/* ---------- living images ---------- */
/* scroll reveal (class added by JS; keyframes use `backwards` fill so hover
   transforms still work after the entrance finishes) */
.reveal { opacity: 0; }
.reveal.in { opacity: 1; animation: rise 0.9s cubic-bezier(0.19, 1, 0.22, 1) backwards; }
@keyframes rise {
  from { opacity: 0; transform: translateY(26px) scale(0.985); }
  to   { opacity: 1; transform: none; }
}

/* hover: containers lift with a gold glow */
.frame, .ba-pair figure, .gal .shot {
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}
.frame:hover, .ba-pair figure:hover, .gal .shot:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 164, 65, 0.55);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(217, 164, 65, 0.25), 0 12px 44px rgba(217, 164, 65, 0.14);
}

/* hover: the photo itself slowly drifts in — long ease-out so it feels alive, quick settle on leave */
.frame img, .ba-pair img, .gal .shot img, .card .thumb img {
  transition: transform 5s cubic-bezier(0.19, 1, 0.22, 1), filter 1.2s ease;
  will-change: transform;
}
.frame:hover img, .ba-pair figure:hover img, .gal .shot:hover img, .card .thumb:hover img {
  transform: scale(1.07) translateY(-1.2%);
  filter: brightness(1.02) contrast(1.09) saturate(1.12);
}

/* hover: one-shot light sweep across the image */
.frame, .ba-pair figure, .gal .shot, .twin { overflow: hidden; }
.frame::after, .ba-pair figure::after, .gal .shot::after, .twin::after {
  content: ''; position: absolute; top: -10%; bottom: -10%; left: -80%; width: 45%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.10) 40%, rgba(255,255,255,0.26) 50%, rgba(255,255,255,0.10) 60%, transparent 100%);
  transform: skewX(-18deg); z-index: 4; pointer-events: none; opacity: 0;
}
.frame:hover::after, .ba-pair figure:hover::after, .gal .shot:hover::after, .twin:hover::after {
  animation: shine 1.1s ease forwards;
}
@keyframes shine {
  0%   { left: -80%; opacity: 1; }
  100% { left: 135%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; }
  .reveal.in { animation: none; }
  .frame:hover::after, .ba-pair figure:hover::after, .gal .shot:hover::after, .twin:hover::after { animation: none; }
  .frame img, .ba-pair img, .gal .shot img, .card .thumb img,
  .frame, .ba-pair figure, .gal .shot, .twin { transition: none; }
}

/* ==========================================================
   AURA PASS (2026-08-16) — pristine/premium layer, overrides only
   ========================================================== */

/* deeper, layered canvas: warm breath up top, cool depth below, film grain */
:root {
  --champagne: #f3e3bd;
  --gold-deep: #b8842e;
}
body {
  background:
    radial-gradient(1400px 700px at 50% -10%, rgba(217, 164, 65, 0.075) 0%, transparent 60%),
    radial-gradient(1100px 800px at 85% 115%, rgba(58, 72, 96, 0.16) 0%, transparent 55%),
    radial-gradient(900px 600px at -10% 70%, rgba(217, 164, 65, 0.04) 0%, transparent 50%),
    var(--bg);
  background-attachment: fixed;
}
body::before {
  content: ''; position: fixed; inset: 0; z-index: 90; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05; mix-blend-mode: overlay;
}

/* lettering aura — headlines set in champagne metal, soft warm halo */
h1, h2 {
  background: linear-gradient(180deg, #fffdf6 0%, var(--ink) 52%, var(--champagne) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--champagne);
  filter: drop-shadow(0 1px 18px rgba(217, 164, 65, 0.12));
}
.hero h1 { filter: drop-shadow(0 2px 26px rgba(217, 164, 65, 0.2)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5)); }

/* kickers become jewelry: gradient text + leading hairline */
.kicker, .card .tag, .prop-head .tag {
  background: linear-gradient(90deg, var(--gold-soft) 0%, var(--gold) 55%, var(--gold-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold);
}
.kicker::before {
  content: ''; display: inline-block; vertical-align: middle;
  width: 30px; height: 1px; margin-right: 12px; margin-top: -2px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

/* the logo's accent word glints */
.logo b {
  background: linear-gradient(120deg, var(--gold-soft) 0%, var(--gold) 45%, var(--champagne) 80%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* gold becomes metal: gradient buttons with a real glow */
.btn.gold, nav.main a.cta {
  background: linear-gradient(135deg, var(--champagne) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  box-shadow: 0 2px 18px rgba(217, 164, 65, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}
.btn.gold:hover, nav.main a.cta:hover {
  background: linear-gradient(135deg, var(--champagne) 0%, var(--gold-soft) 45%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(217, 164, 65, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  filter: saturate(1.05);
}
.btn.ghost { transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease; }
.btn.ghost:hover { border-color: var(--gold-soft); color: var(--champagne); box-shadow: 0 0 24px rgba(217, 164, 65, 0.14); transform: translateY(-2px); }

/* pricing numbers in champagne metal */
.price .amount {
  background: linear-gradient(180deg, #fffdf6 10%, var(--champagne) 60%, var(--gold-soft) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 12px rgba(217, 164, 65, 0.18));
}
.price li::before { content: '✦'; color: var(--gold); font-size: 0.7em; top: 9px; }

/* panels get a lit top edge + richer depth */
.card, .step, .price, .buy-panel, .frame, .compliance {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 18px 44px -18px rgba(0, 0, 0, 0.55);
}
.price.feature {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 22px 60px -20px rgba(0, 0, 0, 0.6), 0 0 44px rgba(217, 164, 65, 0.09);
}
.buy-panel { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 18px 50px -18px rgba(0, 0, 0, 0.6), 0 0 36px rgba(217, 164, 65, 0.08); }

/* header: hairline of light under the glass */
header.site { border-bottom: 1px solid rgba(217, 164, 65, 0.16); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03), 0 12px 30px -18px rgba(0, 0, 0, 0.6); }

/* imagery: a touch more life at rest */
.hero .bg { filter: saturate(1.06) contrast(1.03); }
.frame img, .ba-pair img { filter: saturate(1.03); }

/* footer floats on a gold hairline */
footer.site { border-top: 1px solid rgba(217, 164, 65, 0.18); }

/* the small pristine details */
::selection { background: rgba(217, 164, 65, 0.85); color: #171203; }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #3a3325, var(--gold-deep)); border-radius: 99px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); border: 3px solid var(--bg); }
a:focus-visible, .btn:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 3px; border-radius: 999px; }

@media (prefers-reduced-motion: reduce) {
  .btn.gold, .btn.ghost, nav.main a.cta { transition: none; }
}

/* ==========================================================
   AURA II (2026-08-17) — the divine element: starfield + glints
   ========================================================== */
@media screen {
  body::after {
    content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
    background-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='520' height='520'%3E%3Cpath d='M110 78 Q112 88 122 90 Q112 92 110 102 Q108 92 98 90 Q108 88 110 78 Z' fill='%23e8c37a' opacity='0.75'/%3E%3Cpath d='M400 232 Q401.5 238.5 408 240 Q401.5 241.5 400 248 Q398.5 241.5 392 240 Q398.5 238.5 400 232 Z' fill='%23f3e3bd' opacity='0.55'/%3E%3Cpath d='M230 420 Q231.8 428 240 430 Q231.8 432 230 440 Q228.2 432 220 430 Q228.2 428 230 420 Z' fill='%23d9a441' opacity='0.65'/%3E%3C/svg%3E"),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cg fill='%23f3e3bd'%3E%3Ccircle cx='23' cy='41' r='1.1' opacity='0.55'/%3E%3Ccircle cx='88' cy='120' r='0.8' opacity='0.35'/%3E%3Ccircle cx='150' cy='30' r='1.3' opacity='0.6'/%3E%3Ccircle cx='210' cy='90' r='0.9' opacity='0.4'/%3E%3Ccircle cx='60' cy='200' r='1' opacity='0.5'/%3E%3Ccircle cx='130' cy='170' r='0.7' opacity='0.3'/%3E%3Ccircle cx='240' cy='180' r='1.2' opacity='0.55'/%3E%3Ccircle cx='30' cy='140' r='0.8' opacity='0.35'/%3E%3Ccircle cx='180' cy='230' r='1' opacity='0.45'/%3E%3Ccircle cx='110' cy='70' r='0.9' opacity='0.5'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 520px 520px, 260px 260px;
    opacity: 0.6;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0.3) 100%);
    mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0.3) 100%);
    animation: twinkle 9s ease-in-out infinite alternate;
  }
  @keyframes twinkle {
    from { opacity: 0.42; }
    to   { opacity: 0.78; }
  }
  @media (prefers-reduced-motion: reduce) {
    body::after { animation: none; opacity: 0.55; }
  }
}

/* ==========================================================
   CONVERSION PASS (2026-08-19) — research-driven components
   ========================================================== */

/* friction-killer line under CTAs */
.friction-line {
  margin-top: 14px; text-align: center;
  font-size: 0.8rem; letter-spacing: 0.06em; color: var(--muted);
}

/* before/after drag slider */
.ba-slider {
  position: relative; aspect-ratio: 3 / 2; overflow: hidden;
  border-radius: 18px; border: 1px solid rgba(217,164,65,.22);
  box-shadow: 0 22px 70px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.03);
  cursor: ew-resize; touch-action: pan-y; user-select: none;
  --pos: 50%;
}
.ba-slider img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; pointer-events: none; -webkit-user-drag: none;
}
.ba-slider .ba-before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-slider .ba-divider {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px;
  background: rgba(255,255,255,.85); transform: translateX(-1px);
  box-shadow: 0 0 14px rgba(0,0,0,.6); z-index: 3;
}
.ba-slider .ba-knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: #171203; font-size: 1.15rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.45);
}
.ba-tag {
  position: absolute; top: 14px; z-index: 4;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.ba-tag-b { left: 14px; background: rgba(13,15,18,.75); color: var(--ink); }
.ba-tag-a { right: 14px; background: var(--gold); color: #171203; }

/* pricing: most-popular badge */
.price.feature { position: relative; }
.pop-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--champagne) 0%, var(--gold) 60%);
  color: #171203; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(217,164,65,.35);
}

/* honesty / founder block */
.honesty-box {
  max-width: 760px; margin: 0 auto; text-align: center;
  background: var(--panel); border: 1px solid rgba(217,164,65,.3);
  border-radius: var(--radius); padding: 44px 36px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 18px 50px -18px rgba(0,0,0,.6);
}
.honesty-box h2 { margin-bottom: 18px; }
.honesty-box p { color: var(--muted); font-size: 0.98rem; margin-top: 14px; line-height: 1.7; }
.honesty-box p em { color: var(--gold-soft); font-style: normal; }
.honesty-box .founder-line { margin-top: 22px; font-size: 0.88rem; color: var(--gold-soft); letter-spacing: 0.04em; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-list details {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); margin-bottom: 12px; overflow: hidden;
}
.faq-list summary {
  cursor: pointer; padding: 18px 22px; font-weight: 600; font-size: 0.98rem;
  list-style: none; position: relative; padding-right: 46px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-size: 1.3rem; font-weight: 400; transition: transform 0.2s ease;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { padding: 0 22px 20px; color: var(--muted); font-size: 0.93rem; line-height: 1.65; }
.faq-list details[open] { border-color: rgba(217,164,65,.35); }

/* sticky mobile CTA bar — appears after scrolling past the hero */
.sticky-cta {
  display: none; position: fixed; left: 12px; right: 12px; z-index: 80;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  text-align: center; padding: 17px 20px; border-radius: 999px;
  background: linear-gradient(135deg, var(--champagne) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  color: #171203; font-weight: 600; font-size: 1rem; letter-spacing: 0.02em;
  box-shadow: 0 8px 30px rgba(0,0,0,.55), 0 2px 18px rgba(217,164,65,.35), inset 0 1px 0 rgba(255,255,255,.45);
  transform: translateY(120%); transition: transform 0.3s ease;
}
@media (max-width: 760px) {
  .sticky-cta { display: block; }
  body.show-sticky .sticky-cta { transform: translateY(0); }
}

/* mobile: fixed backgrounds jank on phones — let it scroll */
@media (max-width: 760px) {
  body { background-attachment: scroll; }
}

/* ---------- protection ---------- */
.protected, .protected * { user-select: none; -webkit-user-select: none; }
@media print {
  .frame img, .ba-pair, .hero .bg, .card .thumb { display: none !important; visibility: hidden !important; }
  body::after { content: 'Divine Listings — previews are view-only. Full-resolution files are delivered on purchase.'; }
}
