:root {
  --ink: #fdf6e8;
  --muted: #c4b49a;
  --gold: #d4a843;
  --gold-bright: #ffd27a;
  --violet: #3b0764;
  --violet-mid: #6b21a8;
  --rose: #b84d6e;
  --rose-bright: #e8829e;
  --blood: #7a0f1e;
  --line: rgba(212, 168, 67, 0.22);
  --panel: rgba(8, 4, 18, 0.9);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.66);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: Inter, Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: #06030e;
  overflow-x: clip;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 6%, rgba(122, 15, 30, 0.45), transparent 24rem),
    radial-gradient(circle at 88% 12%, rgba(59, 7, 100, 0.48), transparent 26rem),
    radial-gradient(circle at 30% 72%, rgba(107, 33, 168, 0.18), transparent 22rem),
    radial-gradient(circle at 76% 88%, rgba(122, 15, 30, 0.22), transparent 20rem),
    linear-gradient(160deg, #06030e 0%, #0e061e 50%, #070310 100%);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
}

body.modal-open { overflow: hidden; }

body::before {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(212, 168, 67, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 33, 168, 0.028) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 5%, transparent 72%);
}

a, button { color: inherit; font: inherit; }
a { text-decoration: none; }
button { border: 0; cursor: pointer; }

/* ─── RITUAL BG ─── */
.ritual-bg {
  --mx: 0;
  --my: 0;
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
}

.ritual-bg::before {
  position: absolute;
  inset: -12%;
  content: "";
  opacity: 0.54;
  background:
    radial-gradient(circle at 20% 28%, rgba(212, 168, 67, 0.13), transparent 18rem),
    radial-gradient(circle at 76% 64%, rgba(107, 33, 168, 0.22), transparent 20rem),
    radial-gradient(circle at 50% 10%, rgba(122, 15, 30, 0.16), transparent 14rem),
    linear-gradient(120deg, transparent 30%, rgba(212, 168, 67, 0.04) 50%, transparent 70%);
  transform: translate(calc(var(--mx) * 12px), calc(var(--my) * 9px));
  animation: fogDrift 20s ease-in-out infinite alternate;
}

/* ─── HALOS ─── */
.halo {
  position: absolute;
  display: block;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(212, 168, 67, 0.16);
  border-radius: 50%;
  transform: translate(calc(var(--mx) * 20px), calc(var(--my) * 16px));
  box-shadow:
    inset 0 0 80px rgba(212, 168, 67, 0.07),
    0 0 100px rgba(212, 168, 67, 0.07);
  animation: slowSpin 32s linear infinite;
  will-change: transform;
}

.halo::before, .halo::after {
  position: absolute;
  inset: 14%;
  content: "";
  border: 1px solid rgba(212, 168, 67, 0.1);
  border-radius: 50%;
}

.halo::after {
  inset: 36%;
  border-radius: 12px;
  transform: rotate(45deg);
  border-color: rgba(107, 33, 168, 0.18);
}

.halo-left  { top: 2rem;  left: -14rem; }
.halo-right { right: -16rem; bottom: 6rem; animation-direction: reverse; }

.halo-center {
  width: 38rem;
  height: 38rem;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-color: rgba(107, 33, 168, 0.1);
  box-shadow:
    inset 0 0 120px rgba(107, 33, 168, 0.06),
    0 0 160px rgba(107, 33, 168, 0.06);
  animation-duration: 48s;
  animation-direction: reverse;
}

/* ─── STAINED GLASS SHAPES ─── */
.stained {
  position: absolute;
  display: block;
  width: 14rem;
  height: 19rem;
  opacity: 0.24;
  clip-path: polygon(50% 0, 92% 22%, 82% 100%, 18% 100%, 8% 22%);
  background:
    linear-gradient(90deg, transparent 48%, rgba(212, 168, 67, 0.3) 49% 51%, transparent 52%),
    conic-gradient(from 90deg, var(--blood), var(--gold), var(--violet), var(--rose), var(--blood));
  transform: translate(calc(var(--mx) * -22px), calc(var(--my) * -16px));
}

.stained-one { top: 8rem;  right: -3rem; }
.stained-two { left: -4rem; bottom: 22rem; transform: scale(0.68) rotate(-15deg); }

/* ─── CANDLE FLAMES ─── */
.candle-flame {
  position: absolute;
  display: block;
  width: 0.58rem;
  height: 2rem;
  border-radius: 55% 55% 45% 45%;
  background: linear-gradient(#fff4d6, #f5b84a 38%, #d4521a 68%, rgba(122, 15, 30, 0.06));
  filter:
    drop-shadow(0 0 8px rgba(255, 210, 80, 0.9))
    drop-shadow(0 0 24px rgba(212, 168, 67, 0.7));
  transform-origin: 50% 100%;
  animation: flame 2.1s ease-in-out infinite;
  will-change: transform;
}

.flame-one   { left: 7%;  top: 22%; }
.flame-two   { right: 9%; top: 54%; animation-delay: 0.5s; }
.flame-three { left: 22%; bottom: 9%; animation-delay: 1s; }

/* ─── STARS ─── */
.star-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.star {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: #fff;
  animation: starPulse var(--sd, 3s) ease-in-out infinite var(--sy, 0s);
}

.star:nth-child(1)  { width:2px;height:2px; top:4%;  left:11%; --sd:2.8s; --sy:0s;    opacity:.7; }
.star:nth-child(2)  { width:1px;height:1px; top:8%;  left:34%; --sd:3.4s; --sy:.4s;   opacity:.5; }
.star:nth-child(3)  { width:2px;height:2px; top:6%;  left:62%; --sd:2.2s; --sy:.8s;   opacity:.8; }
.star:nth-child(4)  { width:1px;height:1px; top:12%; left:82%; --sd:4.1s; --sy:1.2s;  opacity:.4; }
.star:nth-child(5)  { width:3px;height:3px; top:18%; left:5%;  --sd:2.6s; --sy:.2s;   opacity:.6; }
.star:nth-child(6)  { width:1px;height:1px; top:22%; left:48%; --sd:3.8s; --sy:1.6s;  opacity:.5; }
.star:nth-child(7)  { width:2px;height:2px; top:28%; left:91%; --sd:2.4s; --sy:.6s;   opacity:.7; }
.star:nth-child(8)  { width:1px;height:1px; top:36%; left:22%; --sd:5.2s; --sy:2s;    opacity:.3; }
.star:nth-child(9)  { width:2px;height:2px; top:42%; left:71%; --sd:3.1s; --sy:.9s;   opacity:.6; }
.star:nth-child(10) { width:1px;height:1px; top:48%; left:14%; --sd:2.9s; --sy:1.4s;  opacity:.5; }
.star:nth-child(11) { width:3px;height:3px; top:55%; left:88%; --sd:4.4s; --sy:.3s;   opacity:.7; }
.star:nth-child(12) { width:1px;height:1px; top:60%; left:40%; --sd:3.6s; --sy:1.8s;  opacity:.4; }
.star:nth-child(13) { width:2px;height:2px; top:66%; left:6%;  --sd:2.7s; --sy:.7s;   opacity:.6; }
.star:nth-child(14) { width:1px;height:1px; top:72%; left:56%; --sd:3.9s; --sy:2.2s;  opacity:.4; }
.star:nth-child(15) { width:2px;height:2px; top:78%; left:78%; --sd:2.3s; --sy:.1s;   opacity:.8; }
.star:nth-child(16) { width:1px;height:1px; top:82%; left:28%; --sd:4.7s; --sy:1.1s;  opacity:.3; }
.star:nth-child(17) { width:3px;height:3px; top:88%; left:18%; --sd:3.3s; --sy:.5s;   opacity:.6; }
.star:nth-child(18) { width:1px;height:1px; top:92%; left:66%; --sd:2.6s; --sy:1.7s;  opacity:.5; }
.star:nth-child(19) { width:2px;height:2px; top:96%; left:44%; --sd:3.7s; --sy:.8s;   opacity:.7; }
.star:nth-child(20) { width:1px;height:1px; top:15%; left:95%; --sd:4.2s; --sy:2.4s;  opacity:.4; }
.star:nth-child(21) { width:2px;height:2px; top:33%; left:3%;  --sd:2.9s; --sy:1.3s;  opacity:.6; }
.star:nth-child(22) { width:1px;height:1px; top:50%; left:30%; --sd:5.1s; --sy:.6s;   opacity:.3; }
.star:nth-child(23) { width:2px;height:2px; top:74%; left:92%; --sd:3.0s; --sy:1.9s;  opacity:.7; }
.star:nth-child(24) { width:1px;height:1px; top:90%; left:8%;  --sd:4.5s; --sy:.4s;   opacity:.4; }

/* ─── SECTION SHELL ─── */
.section-shell {
  width: min(100% - 28px, 1180px);
  margin: 0 auto;
}

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  width: min(100% - 28px, 1180px);
  margin: 0 auto;
  padding: 12px 0;
  background: rgba(6, 3, 14, 0.7);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 0.55rem;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 5vw, 1.55rem);
  font-weight: 700;
}

.brand span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-mark {
  flex: 0 0 1.9rem;
  width: 1.9rem;
  height: 1.9rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 44%, var(--gold-bright) 45% 55%, transparent 56%),
    linear-gradient(transparent 30%, var(--gold-bright) 31% 42%, transparent 43%),
    radial-gradient(circle, rgba(212, 168, 67, 0.3), transparent 68%);
  box-shadow:
    0 0 20px rgba(212, 168, 67, 0.28),
    0 0 50px rgba(212, 168, 67, 0.1);
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
}

.top-nav a, .nav-contact {
  padding: 0.48rem 0.56rem;
  color: var(--muted);
  background: transparent;
  font-size: 0.82rem;
  transition: color 180ms ease;
}

.top-nav a:hover, .nav-contact:hover { color: var(--ink); }

/* ─── HERO ─── */
.hero {
  --portrait-space: 0px;
  position: relative;
  display: grid;
  gap: 0.82rem;
  padding: 0.2rem 0 3.4rem;
}

.hero::before {
  position: absolute;
  inset: -30% 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 65% 42%, rgba(107, 33, 168, 0.14), transparent 40%),
    radial-gradient(circle at 18% 62%, rgba(122, 15, 30, 0.1), transparent 26%),
    radial-gradient(circle at 50% 20%, rgba(212, 168, 67, 0.07), transparent 30%);
  animation: heroAura 8s ease-in-out infinite alternate;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-right: var(--portrait-space);
}

/* ─── EYEBROW ─── */
.eyebrow {
  margin: 0 0 0.72rem;
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.88;
}

/* ─── OFFER PILL ─── */
.offer-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 0.8rem;
  padding: 0.22rem 0.8rem 0.22rem 0.72rem;
  border-left: 2px solid var(--gold-bright);
  color: var(--gold-bright);
  background:
    linear-gradient(90deg, rgba(212, 168, 67, 0.12), transparent 80%);
  font-size: 0.88rem;
  font-weight: 800;
  animation: pillGlow 4s ease-in-out infinite;
}

/* ─── HEADINGS ─── */
h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1;
}

h1 {
  max-width: 720px;
  margin-bottom: 0.86rem;
  font-size: clamp(2.42rem, 11vw, 4rem);
  font-weight: 700;
  text-wrap: balance;
}

h1 span { display: block; }

h1 span:first-child {
  color: var(--gold-bright);
  animation: nameShine 5s ease-in-out infinite;
}

h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2.12rem, 9vw, 3.7rem);
}

h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.42rem, 6vw, 2rem);
}

.section-heading p,
.trust-copy p,
.contact-sheet p,
.final-inner p {
  max-width: 680px;
  color: var(--muted);
  font-size: 0.96rem;
}

/* ─── CTA ─── */
.cta-row {
  display: grid;
  gap: 0.58rem;
  width: calc(100% + var(--portrait-space));
  max-width: 390px;
  margin-top: 1rem;
}

.mobile-contact-bar { display: none; }

.primary-cta, .ghost-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.82rem 1.2rem;
  border: 1px solid rgba(212, 168, 67, 0.36);
  text-align: center;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.primary-cta {
  color: #120a02;
  background: linear-gradient(135deg, #ffe8a0, #d4a843 55%, #a87830);
  box-shadow:
    0 12px 36px rgba(212, 168, 67, 0.4),
    0 0 0 1px rgba(255, 210, 122, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.primary-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid var(--gold-bright);
  opacity: 0;
  transform: scale(1);
  pointer-events: none;
}

.primary-cta.is-burst::before {
  animation: burstRing 0.65s ease-out forwards;
}

.ghost-cta {
  color: var(--gold-bright);
  border-color: transparent;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 0.32rem;
}

.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 48px rgba(212, 168, 67, 0.5),
    0 0 40px rgba(212, 168, 67, 0.2),
    0 0 0 1px rgba(255, 210, 122, 0.4);
}

.ghost-cta:hover { color: var(--ink); }

/* ─── PORTRAIT ─── */
.hero-portrait {
  position: relative;
  z-index: 1;
  width: min(70vw, 276px);
  margin: 0 auto;
}

.hero-photo-block {
  position: relative;
  z-index: 1;
}

.portrait-runes {
  position: absolute;
  inset: -2.8rem;
  z-index: 3;
  pointer-events: none;
}

.rune {
  position: absolute;
  color: var(--gold-bright);
  font-size: 0.9rem;
  line-height: 1;
  animation: runeFade var(--rd, 4s) ease-in-out infinite var(--rdy, 0s);
}

.rune-1 { top: 2%;  left: 50%; transform: translateX(-50%); --rd: 4.2s; --rdy: 0s; }
.rune-2 { top: 22%; right: 0;                               --rd: 3.8s; --rdy: .7s; }
.rune-3 { bottom: 26%; right: 2%;                           --rd: 4.6s; --rdy: 1.4s; }
.rune-4 { bottom: 2%; left: 50%; transform: translateX(-50%); --rd: 3.6s; --rdy: 2.1s; }
.rune-5 { bottom: 26%; left: 0;                             --rd: 4.8s; --rdy: 2.8s; }
.rune-6 { top: 22%;  left: 0;                               --rd: 4.0s; --rdy: 3.5s; }

.portrait-frame {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 0.72;
  overflow: hidden;
  border: 1px solid rgba(212, 168, 67, 0.34);
  background:
    radial-gradient(circle at 50% 14%, rgba(212, 168, 67, 0.18), transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(107, 33, 168, 0.12), transparent 40%),
    rgba(8, 3, 16, 0.84);
  box-shadow:
    var(--shadow),
    inset 0 0 80px rgba(212, 168, 67, 0.07),
    0 0 60px rgba(107, 33, 168, 0.1);
  clip-path: polygon(50% 0, 100% 14%, 100% 100%, 0 100%, 0 14%);
}

.portrait-frame::before {
  position: absolute;
  inset: 10px;
  z-index: 2;
  content: "";
  border: 1px solid rgba(212, 168, 67, 0.32);
  clip-path: polygon(50% 0, 100% 14%, 100% 100%, 0 100%, 0 14%);
  pointer-events: none;
}

.portrait-rings {
  position: absolute;
  inset: 20%;
  z-index: 1;
  border: 1px solid rgba(212, 168, 67, 0.18);
  border-radius: 50%;
  animation: slowSpin 22s linear infinite reverse;
}

.portrait-rings::before, .portrait-rings::after {
  position: absolute;
  inset: 18%;
  content: "";
  border: 1px solid rgba(212, 168, 67, 0.12);
  border-radius: 50%;
}

.portrait-rings::after {
  inset: 40%;
  border-radius: 8px;
  transform: rotate(45deg);
  border-color: rgba(107, 33, 168, 0.22);
}

.portrait-rings-outer {
  inset: 6%;
  border-color: rgba(107, 33, 168, 0.14);
  animation-duration: 38s;
  animation-direction: normal;
}

.portrait-rings-outer::before {
  border-color: rgba(107, 33, 168, 0.08);
}

.portrait-rings-outer::after {
  border-color: rgba(212, 168, 67, 0.1);
}

.portrait-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(0.9) contrast(1.06);
}

.portrait-overlay {
  position: absolute;
  right: 9px; bottom: 9px; left: 9px;
  z-index: 4;
  display: grid;
  gap: 0.12rem;
  padding: 0.68rem 0.78rem;
  color: var(--ink);
  background: linear-gradient(90deg, rgba(8, 3, 16, 0.88), rgba(8, 3, 16, 0.48));
  border-top: 1px solid rgba(212, 168, 67, 0.2);
}

.portrait-overlay strong {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1;
}

.portrait-overlay span {
  color: var(--muted);
  font-size: 0.76rem;
}

.portrait-caption { display: none; }

/* ─── SECTION DIVIDER ─── */
.section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(100% - 28px, 1180px);
  margin: 0 auto;
  padding: 1.6rem 0;
}

.section-divider::before,
.section-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(212, 168, 67, 0.18) 30%,
    rgba(107, 33, 168, 0.22) 70%,
    transparent);
}

.divider-symbol {
  color: var(--gold-bright);
  font-size: 0.88rem;
  flex: 0 0 auto;
  animation: dividerGlow 3.5s ease-in-out infinite;
}

/* ─── INTRO STRIP ─── */
.intro-strip {
  display: grid;
  gap: 0.7rem;
  margin-top: -1.6rem;
  padding-bottom: 4.4rem;
}

.intro-strip article {
  padding: 0.95rem;
  border: 1px solid rgba(212, 168, 67, 0.14);
  background:
    linear-gradient(135deg, rgba(212, 168, 67, 0.06), transparent 60%),
    rgba(8, 4, 18, 0.72);
}

.intro-strip strong, .intro-strip span { display: block; }

.intro-strip strong {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.52rem;
  line-height: 1;
}

.intro-strip span { color: var(--muted); font-size: 0.9rem; }

/* ─── SITUATIONS / REVIEWS / KNOW ─── */
.situations, .reviews, .know-section {
  position: relative;
  padding: 3.8rem 0;
}

.situations::before, .reviews::before, .know-section::before {
  position: absolute;
  top: -2.2rem; right: 0; left: 0;
  height: 4.4rem;
  content: "";
  background:
    radial-gradient(ellipse at 50% 50%, rgba(212, 168, 67, 0.1), transparent 62%);
  pointer-events: none;
}

.section-heading { margin-bottom: 1.45rem; }

.situation-grid, .review-grid, .know-grid, .process-steps {
  display: grid;
  gap: 0.85rem;
}

/* ─── CARDS ─── */
.situation-card, .review-card, .know-grid details, .process-steps article {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid rgba(212, 168, 67, 0.15);
  background:
    linear-gradient(160deg, rgba(212, 168, 67, 0.08) 0%, rgba(107, 33, 168, 0.04) 50%, transparent 100%),
    var(--panel);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(212, 168, 67, 0.05),
    inset 0 0 40px rgba(107, 33, 168, 0.04);
  transition: border-color 280ms ease, box-shadow 280ms ease, transform 280ms ease;
}

.situation-card:hover, .know-grid details:hover {
  border-color: rgba(212, 168, 67, 0.3);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.44),
    0 0 0 1px rgba(212, 168, 67, 0.14),
    inset 0 0 40px rgba(212, 168, 67, 0.06),
    0 0 28px rgba(107, 33, 168, 0.1);
  transform: translateY(-2px);
}

.situation-card::after, .know-grid details::after {
  position: absolute;
  right: -4rem; bottom: -5rem;
  width: 10rem; height: 10rem;
  content: "";
  border: 1px solid rgba(212, 168, 67, 0.08);
  border-radius: 50%;
}

/* Card top glow line */
.situation-card::before {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.4), rgba(107, 33, 168, 0.3), transparent);
  opacity: 0;
  transition: opacity 280ms ease;
}

.situation-card:hover::before { opacity: 1; }

.situation-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.28rem;
  height: 2.28rem;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(212, 168, 67, 0.32);
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 800;
}

.situation-card p, .review-card p, .know-grid p, .process-steps p {
  margin-bottom: 0;
  color: var(--muted);
}

/* ─── PROCESS / TRUST BANDS ─── */
.process-band, .trust-band {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background:
    radial-gradient(circle at 8% 20%, rgba(122, 15, 30, 0.36), transparent 22rem),
    radial-gradient(circle at 88% 70%, rgba(59, 7, 100, 0.4), transparent 24rem),
    radial-gradient(circle at 50% 0%, rgba(212, 168, 67, 0.08), transparent 18rem),
    rgba(6, 3, 14, 0.94);
}

.process-band::before, .trust-band::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent 49%, rgba(212, 168, 67, 0.1) 50%, transparent 51%),
    radial-gradient(circle at 50% 0, rgba(107, 33, 168, 0.12), transparent 28rem);
  pointer-events: none;
}

.process-band::after, .trust-band::after, .story-band::after, .final-cta::after {
  position: absolute;
  right: 0; bottom: -1px; left: 0;
  height: 5.2rem;
  content: "";
  background:
    radial-gradient(ellipse at 50% 100%, rgba(212, 168, 67, 0.12), transparent 58%),
    linear-gradient(180deg, transparent, rgba(6, 3, 14, 0.88));
  pointer-events: none;
}

.process-layout, .trust-layout { position: relative; z-index: 1; }

.process-steps article strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
}

/* ─── REVIEWS ─── */
.review-card { min-height: 190px; }

.review-more {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.2rem 0;
  color: var(--gold-bright);
  background: transparent;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.28rem;
  cursor: pointer;
}

.review-more:hover { color: var(--ink); }

.review-card.is-collapsed:not(.is-expanded) .review-text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card.is-expanded .review-text {
  display: block;
  -webkit-line-clamp: unset;
}

.review-card::before {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--gold-bright);
  content: "\201C";
  font-family: var(--font-display);
  font-size: 3.8rem;
  line-height: 0.55;
  text-shadow:
    0 0 16px rgba(212, 168, 67, 0.5),
    0 0 40px rgba(212, 168, 67, 0.2);
}

.review-card strong {
  display: block;
  margin-top: 1rem;
  color: var(--gold-bright);
}

/* ─── KNOW / FAQ ─── */
.know-grid details { cursor: pointer; overflow: visible; }

.know-grid summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  list-style: none;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: clamp(1.32rem, 5vw, 1.75rem);
  line-height: 1.08;
}

.know-grid summary::-webkit-details-marker { display: none; }

.know-grid summary::after {
  flex-shrink: 0;
  color: var(--muted);
  content: "+";
  font-family: var(--font-body);
  font-size: 1.2rem;
}

.know-grid details[open] summary::after { content: "\2212"; }
.know-grid details p { margin-top: 0.75rem; }

/* ─── TRUST LIST ─── */
.trust-layout { display: grid; gap: 1.2rem; }
.trust-list { display: grid; gap: 0.85rem; }

.trust-list div {
  padding: 1rem;
  border-left: 2px solid var(--gold);
  background:
    linear-gradient(90deg, rgba(212, 168, 67, 0.06), transparent 50%),
    rgba(8, 3, 14, 0.5);
  box-shadow: inset 0 0 24px rgba(107, 33, 168, 0.05);
}

.trust-list strong, .trust-list span { display: block; }

.trust-list strong {
  margin-bottom: 0.25rem;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.trust-list span { color: var(--muted); }

/* ─── STORY BAND ─── */
.story-band {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background:
    radial-gradient(circle at 16% 22%, rgba(212, 168, 67, 0.14), transparent 16rem),
    radial-gradient(circle at 82% 78%, rgba(122, 15, 30, 0.26), transparent 18rem),
    radial-gradient(circle at 50% 50%, rgba(59, 7, 100, 0.2), transparent 30rem),
    rgba(8, 3, 14, 0.95);
}

.story-band::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent 49%, rgba(212, 168, 67, 0.08) 50%, transparent 51%),
    radial-gradient(circle at 84% 10%, rgba(107, 33, 168, 0.28), transparent 16rem);
  pointer-events: none;
}

.story-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.25rem;
}

.story-photo { position: relative; }

.story-photo-frame {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(212, 168, 67, 0.34);
  background:
    linear-gradient(90deg, transparent 49%, rgba(212, 168, 67, 0.3) 50%, transparent 51%),
    linear-gradient(180deg, rgba(212, 168, 67, 0.3), transparent 26%),
    conic-gradient(from 130deg at 50% 18%,
      rgba(122, 15, 30, 0.8),
      rgba(212, 168, 67, 0.6),
      rgba(59, 7, 100, 0.78),
      rgba(30, 8, 53, 0.74),
      rgba(122, 15, 30, 0.8)),
    #080314;
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.5),
    inset 0 0 70px rgba(212, 168, 67, 0.07),
    0 0 60px rgba(107, 33, 168, 0.12);
  clip-path: polygon(50% 0, 100% 16%, 100% 100%, 0 100%, 0 16%);
}

.story-photo-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 46%;
  filter: saturate(0.88) contrast(1.06) brightness(0.86);
}

.story-photo-frame.is-photo-loaded { background: #080314; }
.story-photo-frame.is-photo-loaded::before { z-index: 2; }

.story-photo-frame::before {
  position: absolute;
  inset: 10px;
  content: "";
  border: 1px solid rgba(212, 168, 67, 0.28);
  clip-path: polygon(50% 0, 100% 16%, 100% 100%, 0 100%, 0 16%);
}

.story-photo-frame::after {
  position: absolute;
  z-index: 3;
  right: 10%; bottom: 0;
  width: 1rem; height: 5.4rem;
  content: "";
  border-radius: 999px 999px 0 0;
  background:
    radial-gradient(ellipse at 50% 12%, #fff8d6 0 14%, #f0b030 15% 28%, transparent 29%),
    linear-gradient(rgba(212, 168, 67, 0.44), rgba(212, 168, 67, 0.08));
  filter: drop-shadow(0 0 22px rgba(212, 168, 67, 0.8));
}

.story-copy { align-self: center; }

.story-copy p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
}

.story-signs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.56rem;
  margin-top: 1.1rem;
}

.story-signs span {
  padding: 0.48rem 0.68rem;
  border: 1px solid rgba(212, 168, 67, 0.2);
  color: var(--gold-bright);
  background: rgba(8, 3, 14, 0.5);
  font-size: 0.84rem;
  font-weight: 800;
}

/* ─── FINAL CTA ─── */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 7rem;
  text-align: center;
  background:
    radial-gradient(circle at 50% 28%, rgba(107, 33, 168, 0.2), transparent 34rem),
    radial-gradient(circle at 18% 80%, rgba(122, 15, 30, 0.24), transparent 22rem),
    radial-gradient(circle at 84% 8%,  rgba(212, 168, 67, 0.1),  transparent 16rem),
    rgba(6, 3, 14, 0.97);
  animation: finalAura 7s ease-in-out infinite;
}

.final-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent 49%, rgba(212, 168, 67, 0.08) 50%, transparent 51%),
    radial-gradient(circle at 50% 50%, rgba(107, 33, 168, 0.1), transparent 26rem);
  pointer-events: none;
}

.final-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.final-inner p { margin-inline: auto; }

/* ─── FOOTER ─── */
.site-footer {
  display: grid;
  gap: 0.45rem;
  width: min(100% - 28px, 1180px);
  margin: 0 auto;
  padding: 1.2rem 0 5.6rem;
  border-top: 1px solid rgba(212, 168, 67, 0.14);
  color: rgba(196, 180, 154, 0.7);
  font-size: 0.84rem;
}

/* ─── CONTACT MODAL ─── */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  align-items: end;
  visibility: hidden;
  opacity: 0;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.contact-modal.is-open { visibility: visible; opacity: 1; }

.contact-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(10px);
}

.contact-sheet {
  position: relative;
  width: 100%;
  max-height: min(78svh, 680px);
  overflow: auto;
  padding: 1.15rem 1rem calc(1rem + env(safe-area-inset-bottom));
  border: 1px solid rgba(212, 168, 67, 0.24);
  border-bottom: 0;
  background:
    radial-gradient(circle at 70% 6%, rgba(212, 168, 67, 0.12), transparent 14rem),
    radial-gradient(circle at 20% 90%, rgba(107, 33, 168, 0.18), transparent 12rem),
    linear-gradient(145deg, rgba(122, 15, 30, 0.24), rgba(59, 7, 100, 0.2)),
    #0c0518;
  box-shadow:
    0 -24px 80px rgba(0, 0, 0, 0.7),
    0 -2px 40px rgba(107, 33, 168, 0.1);
  transform: translateY(24px);
  transition: transform 220ms ease;
}

.contact-modal.is-open .contact-sheet { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 0.72rem; right: 0.72rem;
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid rgba(212, 168, 67, 0.2);
  color: var(--gold-bright);
  background: rgba(8, 3, 16, 0.72);
  font-size: 1.6rem;
  line-height: 1;
}

.contact-sheet h2 {
  padding-right: 2.6rem;
  font-size: clamp(2rem, 8vw, 3.3rem);
}

/* ─── LEAD FORM ─── */
.lead-form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.lead-form[hidden] { display: none; }

.form-field { position: relative; }

.form-field input {
  display: block;
  width: 100%;
  min-height: 52px;
  padding: 0.72rem 0.86rem;
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 0;
  color: var(--ink);
  background: rgba(8, 3, 16, 0.6);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.form-field input::placeholder { color: rgba(196, 180, 154, 0.5); }

.form-field input:focus {
  border-color: rgba(212, 168, 67, 0.5);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.12), inset 0 0 16px rgba(212, 168, 67, 0.04);
}

.form-field input.is-invalid {
  border-color: var(--rose);
  box-shadow: 0 0 16px rgba(184, 77, 110, 0.2);
}

.field-error {
  display: block;
  margin-top: 0.3rem;
  color: var(--rose-bright);
  font-size: 0.78rem;
}

.field-error[hidden] { display: none; }

.method-picker {
  border: 0;
  margin: 0;
  padding: 0;
}

.method-picker legend {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.method-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.48rem;
}

.method-option { cursor: pointer; }
.method-option input { position: absolute; opacity: 0; pointer-events: none; }

.method-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.3rem;
  border: 1px solid rgba(212, 168, 67, 0.14);
  background: rgba(8, 3, 16, 0.5);
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--muted);
  text-align: center;
  transition: border-color 200ms ease, background 200ms ease, color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.method-btn:hover {
  border-color: rgba(212, 168, 67, 0.3);
  color: var(--ink);
}

.method-btn.is-active {
  border-color: rgba(212, 168, 67, 0.6);
  background:
    linear-gradient(135deg, rgba(212, 168, 67, 0.14), rgba(107, 33, 168, 0.08)),
    rgba(8, 3, 16, 0.7);
  color: var(--gold-bright);
  box-shadow: 0 0 24px rgba(212, 168, 67, 0.15), inset 0 0 14px rgba(212, 168, 67, 0.06);
  transform: translateY(-2px);
}

.method-icon {
  width: 1.45rem;
  height: 1.45rem;
  object-fit: contain;
}

.method-btn svg.method-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-submit {
  position: relative;
  margin-top: 0.3rem;
  overflow: hidden;
}

.form-submit.is-loading .submit-text { opacity: 0; }

.submit-loader {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
}

.form-submit.is-loading .submit-loader {
  display: grid;
}

.submit-loader::after {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  border: 2px solid rgba(18, 10, 2, 0.3);
  border-top-color: #120a02;
  border-radius: 50%;
  animation: spinLoader 0.6s linear infinite;
}

@keyframes spinLoader { to { rotate: 360deg; } }

/* Success state */
.form-success {
  text-align: center;
  padding: 2rem 0 1rem;
  animation: successReveal 0.6s ease-out;
}

.form-success[hidden] { display: none; }

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.8rem;
  height: 3.8rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(212, 168, 67, 0.4);
  border-radius: 50%;
  color: var(--gold-bright);
  font-size: 1.6rem;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.14), transparent 70%);
  box-shadow: 0 0 40px rgba(212, 168, 67, 0.25), 0 0 80px rgba(107, 33, 168, 0.15);
  animation: successPulse 2s ease-in-out infinite;
}

.success-title {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.success-text {
  color: var(--muted);
  font-size: 0.92rem;
}

@keyframes successReveal {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes successPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(212, 168, 67, 0.25), 0 0 80px rgba(107, 33, 168, 0.15); }
  50%      { box-shadow: 0 0 56px rgba(212, 168, 67, 0.45), 0 0 110px rgba(107, 33, 168, 0.25); }
}

/* Error message */
.form-error-msg {
  margin-top: 0.6rem;
  padding: 0.62rem 0.8rem;
  border: 1px solid rgba(184, 77, 110, 0.3);
  background: rgba(184, 77, 110, 0.08);
  color: var(--rose-bright);
  font-size: 0.84rem;
  text-align: center;
}

.form-error-msg[hidden] { display: none; }

/* ─── REVEAL ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── KEYFRAMES ─── */
@keyframes slowSpin { to { rotate: 360deg; } }

@keyframes flame {
  0%, 100% { transform: skewX(-5deg) scaleY(1);    opacity: 0.8; }
  45%       { transform: skewX(7deg)  scaleY(1.14); opacity: 1; }
}

@keyframes fogDrift {
  0%   { transform: translate(calc(var(--mx)*12px), calc(var(--my)*9px))  scale(1); }
  100% { transform: translate(calc(var(--mx)*-9px), calc(var(--my)*-8px)) scale(1.05); }
}

@keyframes heroAura {
  0%   { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.08); }
}

@keyframes starPulse {
  0%, 100% { opacity: 0.1; transform: scale(0.8); }
  50%       { opacity: 1;   transform: scale(1.2); }
}

@keyframes runeFade {
  0%, 100% { opacity: 0;    transform: translateX(-50%) scale(0.7); }
  30%, 70% { opacity: 0.72; transform: translateX(-50%) scale(1); }
}

.rune-2, .rune-3, .rune-5, .rune-6 {
  transform: none;
}

@keyframes runeFadeNoShift {
  0%, 100% { opacity: 0;    transform: scale(0.7); }
  30%, 70% { opacity: 0.72; transform: scale(1); }
}

.rune-2 { animation-name: runeFadeNoShift; }
.rune-3 { animation-name: runeFadeNoShift; }
.rune-5 { animation-name: runeFadeNoShift; }
.rune-6 { animation-name: runeFadeNoShift; }

@keyframes nameShine {
  0%, 100% {
    text-shadow:
      0 0 22px rgba(212, 168, 67, 0.45),
      0 0 55px rgba(212, 168, 67, 0.22),
      0 0 100px rgba(212, 168, 67, 0.1);
  }
  50% {
    text-shadow:
      0 0 30px rgba(255, 210, 122, 0.75),
      0 0 70px rgba(212, 168, 67, 0.45),
      0 0 130px rgba(212, 168, 67, 0.22),
      0 0 220px rgba(107, 33, 168, 0.1);
  }
}

@keyframes pillGlow {
  0%, 100% { box-shadow: none; }
  50% {
    box-shadow:
      0 0 18px rgba(212, 168, 67, 0.2),
      inset 0 0 20px rgba(212, 168, 67, 0.08);
  }
}

@keyframes dividerGlow {
  0%, 100% { opacity: 0.35; text-shadow: none; }
  50% {
    opacity: 1;
    text-shadow:
      0 0 10px rgba(212, 168, 67, 0.9),
      0 0 28px rgba(212, 168, 67, 0.5),
      0 0 60px rgba(107, 33, 168, 0.3);
  }
}

@keyframes finalAura {
  0%, 100% { box-shadow: inset 0 0 80px rgba(107, 33, 168, 0.04); }
  50%       { box-shadow: inset 0 0 140px rgba(107, 33, 168, 0.1), inset 0 0 60px rgba(212, 168, 67, 0.04); }
}

@keyframes portraitBreath {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(212, 168, 67, 0)); }
  50%       { filter: drop-shadow(0 0 24px rgba(212, 168, 67, 0.2)) drop-shadow(0 0 50px rgba(107, 33, 168, 0.15)); }
}

@keyframes ctaWarmth {
  0%, 100% {
    box-shadow:
      0 12px 36px rgba(212, 168, 67, 0.4),
      0 0 0 1px rgba(255, 210, 122, 0.2);
  }
  50% {
    box-shadow:
      0 18px 54px rgba(212, 168, 67, 0.62),
      0 0 50px rgba(212, 168, 67, 0.28),
      0 0 0 1px rgba(255, 210, 122, 0.44);
  }
}

@keyframes buttonSheen {
  0%, 52%  { transform: translateX(-130%) skewX(-18deg); opacity: 0; }
  62%      { opacity: 0.6; }
  82%, 100%{ transform: translateX(130%)  skewX(-18deg); opacity: 0; }
}

@keyframes burstRing {
  0%   { opacity: 0.9; transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.7); }
}

/* ─── MOBILE ─── */
@media (max-width: 380px) {
  h1 { font-size: 2.22rem; }
}

@media (max-width: 520px) {
  .top-nav a { display: none; }
}

@media (max-width: 699px) {
  .site-footer { padding-bottom: calc(6.6rem + env(safe-area-inset-bottom)); }

  .hero { gap: 0.6rem; padding-top: 1.05rem; padding-bottom: 2.2rem; }
  .hero .eyebrow { display: none; }
  .hero-photo-block { margin-top: 0.08rem; }

  .hero-portrait {
    width: min(calc(100vw - 28px), 430px);
    margin-inline: auto;
    animation: portraitBreath 5.8s ease-in-out infinite;
  }

  .portrait-runes { inset: -2rem; }

  .portrait-frame {
    height: min(112vw, 440px);
    min-height: 0;
    aspect-ratio: auto;
    clip-path: none;
    border-color: rgba(212, 168, 67, 0.4);
    box-shadow:
      0 24px 66px rgba(0, 0, 0, 0.44),
      inset 0 0 60px rgba(212, 168, 67, 0.08),
      0 0 80px rgba(107, 33, 168, 0.16);
  }

  .portrait-frame::before { inset: 8px; clip-path: none; }

  .portrait-frame::after {
    position: absolute;
    top: 14px; right: 18px; left: 18px;
    z-index: 3;
    height: 18px;
    content: "";
    border-top: 1px solid rgba(212, 168, 67, 0.42);
    border-right: 1px solid rgba(212, 168, 67, 0.2);
    border-left: 1px solid rgba(212, 168, 67, 0.2);
    pointer-events: none;
  }

  .portrait-image {
    position: relative;
    top: auto; bottom: auto; left: auto;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 38%;
    transform: none;
  }

  .portrait-overlay {
    right: 16px; bottom: 14px; left: 16px;
    padding: 0.56rem 0.68rem;
    text-align: center;
    background: linear-gradient(90deg, rgba(8, 3, 16, 0.82), rgba(8, 3, 16, 0.5));
  }

  .portrait-overlay strong { font-size: 1.16rem; }
  .portrait-overlay span   { font-size: 0.7rem; }

  .offer-pill { min-height: 24px; margin-bottom: 0.42rem; padding-left: 0.6rem; font-size: 0.8rem; }

  h1 { margin-bottom: 0.46rem; font-size: clamp(2.05rem, 8.8vw, 2.75rem); }
  h1 span:last-child { display: none; }
  .cta-row { width: 100%; max-width: none; margin-top: 0.58rem; }

  .section-divider { padding: 1.2rem 0; }

  .mobile-contact-bar {
    position: fixed;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    left: 14px;
    z-index: 35;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0.82rem 1rem;
    border: 1px solid rgba(212, 168, 67, 0.5);
    border-radius: 999px;
    color: #120a02;
    background: linear-gradient(135deg, #ffe8a0, #d4a843 55%, #a87830);
    box-shadow:
      0 18px 54px rgba(0, 0, 0, 0.54),
      0 0 44px rgba(212, 168, 67, 0.36),
      0 0 90px rgba(107, 33, 168, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(130%);
    transition: opacity 220ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
    font-weight: 800;
    text-align: center;
  }

  .mobile-contact-bar.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-cta {
    position: relative;
    overflow: hidden;
    min-height: 54px;
    border-radius: 999px;
    animation: ctaWarmth 3.8s ease-in-out infinite;
  }

  .primary-cta::after {
    position: absolute;
    top: -20%; bottom: -20%; left: 0;
    width: 36%;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
    pointer-events: none;
    animation: buttonSheen 5.4s ease-in-out infinite;
  }

  .ghost-cta { min-height: 36px; padding: 0.25rem 0; border: 0; font-size: 0.9rem; }

  .intro-strip {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 0;
    padding: 0;
    border-top: 1px solid rgba(212, 168, 67, 0.18);
    border-bottom: 1px solid rgba(212, 168, 67, 0.12);
    background: linear-gradient(90deg,
      rgba(212, 168, 67, 0.1),
      rgba(107, 33, 168, 0.12),
      rgba(122, 15, 30, 0.1));
  }

  .intro-strip article {
    flex: 1 1 0;
    min-width: 0;
    min-height: 82px;
    padding: 0.78rem 0.46rem;
    border: 0;
    border-right: 1px solid rgba(212, 168, 67, 0.12);
    background: transparent;
    box-shadow: none;
    text-align: center;
  }

  .intro-strip article:last-child { border-right: 0; }
  .intro-strip strong { font-size: 1.08rem; }
  .intro-strip span { font-size: 0.72rem; line-height: 1.25; }

  .situations, .reviews, .know-section { padding: 3rem 0; }

  .situation-grid { gap: 0.52rem; }

  .situation-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.2rem 0.82rem;
    align-items: start;
    min-height: 0;
    padding: 0.82rem 0;
    border-width: 0 0 1px;
    border-color: rgba(212, 168, 67, 0.12);
    background: transparent;
    box-shadow: none;
    transition: none;
  }

  .situation-card:first-child {
    display: grid;
    min-height: 0;
    margin-bottom: 0;
    padding: 0.82rem 0;
    border-width: 0 0 1px;
    background: transparent;
    box-shadow: none;
  }

  .situation-card:hover { transform: none; box-shadow: none; }
  .situation-card::after, .situation-card:first-child::after { display: none; }
  .situation-card::before { display: none; }

  .situation-card span {
    grid-row: span 2;
    width: auto; height: auto;
    margin: 0; border: 0;
    color: rgba(212, 168, 67, 0.65);
    font-size: 0.76rem;
    line-height: 1.55rem;
  }

  .situation-card h3 { margin: 0; font-size: 1.55rem; }
  .situation-card p  { font-size: 0.92rem; }

  .process-band {
    padding: 3.4rem 0;
    background:
      radial-gradient(circle at 8% 16%, rgba(212, 168, 67, 0.1), transparent 12rem),
      radial-gradient(circle at 88% 80%, rgba(59, 7, 100, 0.3), transparent 16rem),
      rgba(6, 3, 14, 0.96);
  }

  .process-steps {
    position: relative;
    gap: 0.62rem;
    margin-top: 1.2rem;
    padding-left: 0;
    counter-reset: step;
  }

  .process-steps::before { display: none; }

  .process-steps article {
    display: block;
    padding: 1rem 1rem 1.12rem;
    border-width: 0 0 1px;
    border-color: rgba(212, 168, 67, 0.14);
    background:
      linear-gradient(90deg, rgba(212, 168, 67, 0.08), transparent 60%),
      rgba(8, 3, 14, 0.18);
    box-shadow: none;
    transition: transform 180ms ease, background 180ms ease;
  }

  .process-steps article::before {
    position: static;
    display: inline-block;
    margin-bottom: 0.5rem;
    padding: 0.12rem 0.42rem;
    border-left: 2px solid rgba(212, 168, 67, 0.7);
    color: var(--gold-bright);
    background: rgba(212, 168, 67, 0.08);
    content: counter(step, decimal-leading-zero);
    counter-increment: step;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
  }

  .process-steps article strong { display: block; margin-bottom: 0; font-size: 1.48rem; line-height: 1.05; }
  .process-steps article p { max-width: 25rem; margin-top: 0.18rem; line-height: 1.45; }
  .process-steps article:active { background: linear-gradient(90deg, rgba(212, 168, 67, 0.13), transparent 70%); transform: translateX(3px); }

  .reviews { width: 100%; padding-right: 0; padding-left: 0; }
  .reviews .section-heading {
    width: min(100% - 28px, 1180px);
    margin-right: auto;
    margin-left: auto;
  }

  .review-grid {
    display: flex;
    gap: 0.82rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 14px 1rem;
    scroll-padding-left: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .review-grid::-webkit-scrollbar { display: none; }

  .review-card {
    flex: 0 0 min(82vw, 330px);
    min-height: 0;
    height: 248px;
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    transition: transform 180ms ease, border-color 180ms ease;
  }

  .review-card:active { border-color: rgba(212, 168, 67, 0.3); transform: translateY(-2px); }
  .review-card::before { margin-bottom: 0.48rem; font-size: 3rem; }

  .review-text { display: block; overflow: hidden; margin-bottom: 0.9rem; }
  .review-card.is-collapsed:not(.is-expanded) .review-text {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
  }

  .review-card.is-expanded { height: auto; min-height: 248px; }
  .review-card strong { margin-top: auto; padding-top: 0.82rem; border-top: 1px solid rgba(212, 168, 67, 0.12); }
  .review-card.is-expanded strong { margin-top: 0; }

  .review-more {
    align-self: flex-start;
    margin-top: 0.34rem;
    margin-bottom: 0.82rem;
    padding: 0.12rem 0;
    color: var(--gold-bright);
    background: transparent;
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 0.28rem;
  }

  .trust-band {
    padding: 3.2rem 0;
    background:
      radial-gradient(circle at 50% 30%, rgba(212, 168, 67, 0.14), transparent 12rem),
      radial-gradient(circle at 82% 82%, rgba(59, 7, 100, 0.32), transparent 14rem),
      rgba(6, 3, 14, 0.97);
  }

  .trust-layout { gap: 1.4rem; }

  .trust-list {
    position: relative;
    gap: 0;
    padding: 4.6rem 1rem 1rem;
    border: 1px solid rgba(212, 168, 67, 0.2);
    background: rgba(8, 3, 14, 0.56);
    text-align: center;
  }

  .trust-list::before {
    position: absolute;
    top: 1rem; left: 50%;
    display: grid;
    place-items: center;
    width: 2.85rem; height: 2.85rem;
    border: 1px solid rgba(212, 168, 67, 0.4);
    border-radius: 8px;
    color: var(--gold-bright);
    content: "\2726";
    font-size: 1.35rem;
    transform: translateX(-50%);
    box-shadow: 0 0 32px rgba(212, 168, 67, 0.2), 0 0 70px rgba(107, 33, 168, 0.14);
    animation: dividerGlow 3.5s ease-in-out infinite;
  }

  .trust-list div {
    padding: 0.85rem 0;
    border: 0;
    border-top: 1px solid rgba(212, 168, 67, 0.1);
    background: transparent;
    box-shadow: none;
  }

  .trust-list div:first-child { border-top: 0; }

  .story-band { padding: 3.1rem 0; }
  .story-layout { gap: 1.2rem; }

  .story-photo-frame {
    min-height: min(108vw, 420px);
    clip-path: none;
    box-shadow:
      0 26px 80px rgba(0, 0, 0, 0.54),
      inset 0 0 70px rgba(212, 168, 67, 0.08),
      0 0 80px rgba(107, 33, 168, 0.16);
  }

  .story-photo-frame::before { inset: 8px; clip-path: none; }
  .story-copy h2 { margin-bottom: 0.72rem; }
  .story-copy p:not(.eyebrow) { font-size: 0.94rem; }

  .story-signs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(212, 168, 67, 0.14);
    border-bottom: 1px solid rgba(212, 168, 67, 0.1);
  }

  .story-signs span {
    display: grid;
    align-items: center;
    min-height: 58px;
    padding: 0.58rem 0.42rem;
    border: 0;
    border-right: 1px solid rgba(212, 168, 67, 0.12);
    background: rgba(8, 3, 14, 0.3);
    text-align: center;
    font-size: 0.72rem;
    line-height: 1.18;
  }

  .story-signs span:last-child { border-right: 0; }

  .know-grid { gap: 0.56rem; }

  .know-grid details {
    padding: 0.95rem 0;
    border-width: 0 0 1px;
    border-color: rgba(212, 168, 67, 0.12);
    background: transparent;
    box-shadow: none;
  }

  .know-grid details:hover { transform: none; box-shadow: none; border-color: rgba(212, 168, 67, 0.24); }
  .know-grid details::after { display: none; }
  .know-grid summary { font-size: 1.38rem; }

  .final-cta { padding: 4rem 0 5.5rem; }

  .final-cta::before {
    position: absolute;
    right: -3rem; bottom: -5rem;
    width: 13rem; height: 13rem;
    content: "";
    border: 1px solid rgba(212, 168, 67, 0.1);
    border-radius: 8px;
  }

  .contact-sheet {
    max-height: min(70svh, 560px);
    padding: 0.92rem 0.86rem calc(0.9rem + env(safe-area-inset-bottom));
    overflow: auto;
  }

  .contact-sheet .eyebrow { margin-bottom: 0.34rem; }
  .contact-sheet h2 { margin-bottom: 0.34rem; padding-right: 2.5rem; font-size: clamp(1.82rem, 8vw, 2.42rem); }
  .contact-sheet p:not(.eyebrow) { margin-bottom: 0; font-size: 0.84rem; }

  .modal-close { top: 0.68rem; right: 0.68rem; width: 2.15rem; height: 2.15rem; font-size: 1.34rem; }

  .lead-form { gap: 0.72rem; margin-top: 0.86rem; }

  .form-field input { min-height: 48px; padding: 0.62rem 0.72rem; font-size: 0.94rem; }

  .method-options { grid-template-columns: repeat(4, 1fr); gap: 0.36rem; }
  .method-btn { padding: 0.55rem 0.2rem; font-size: 0.68rem; }
  .method-icon { width: 1.25rem; height: 1.25rem; }
}

/* ─── TABLET / DESKTOP ─── */
@media (min-width: 700px) {
  .section-shell, .site-header, .site-footer {
    width: min(100% - 48px, 1180px);
  }

  .top-nav {
    gap: 0.5rem;
    padding: 0.3rem;
    border: 1px solid rgba(212, 168, 67, 0.12);
    border-radius: 999px;
    background: rgba(8, 3, 16, 0.6);
  }

  .top-nav a, .nav-contact { padding: 0.55rem 0.86rem; border-radius: 999px; font-size: 0.88rem; }
  .nav-contact:hover, .top-nav a:hover { background: rgba(212, 168, 67, 0.1); }

  .hero {
    --portrait-space: 0px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    align-items: center;
    gap: clamp(1.8rem, 4vw, 4rem);
    min-height: calc(100vh - 74px);
    padding: 2.5rem 0 5rem;
  }

  .hero-copy { grid-column: 1; grid-row: 1; padding-right: 0; }
  .hero-photo-block { grid-column: 2; grid-row: 1 / span 2; display: block; }
  .portrait-overlay { display: none; }

  .hero-portrait {
    order: initial;
    position: relative;
    top: auto; right: auto;
    width: min(100%, 430px);
    margin-left: 0;
    justify-self: center;
  }

  .portrait-frame { aspect-ratio: 0.72; }

  .portrait-image {
    position: relative;
    top: auto; bottom: auto; left: auto;
    width: 100%; height: 100%;
    transform: none;
    object-fit: cover;
    object-position: center 28%;
  }

  .portrait-caption {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1rem;
  }

  .portrait-caption span {
    padding: 0.45rem 0.75rem;
    border: 1px solid rgba(212, 168, 67, 0.16);
    color: var(--muted);
    background: rgba(8, 3, 14, 0.6);
  }

  .cta-row {
    grid-column: 1; grid-row: 2;
    grid-template-columns: max-content max-content;
    width: auto; max-width: none;
  }

  .primary-cta { border-radius: 0; }

  .ghost-cta {
    min-height: 50px;
    padding: 0.82rem 1rem;
    border: 1px solid rgba(212, 168, 67, 0.3);
    text-decoration: none;
  }

  .intro-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: -2rem; }
  .situation-grid, .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .know-grid, .process-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .trust-layout, .process-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
    gap: 3rem;
    align-items: start;
  }

  .story-layout {
    grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
  }

  .story-photo-frame { min-height: 520px; }

  .site-footer { grid-template-columns: 1fr auto; padding-bottom: 2rem; }

  .contact-modal { place-items: center; padding: 24px; }

  .contact-sheet {
    width: min(620px, 100%);
    max-height: min(86vh, 720px);
    padding: 1.7rem;
    border-bottom: 1px solid rgba(212, 168, 67, 0.24);
    transform: translateY(12px) scale(0.98);
  }

  .contact-modal.is-open .contact-sheet { transform: translateY(0) scale(1); }
}

@media (min-width: 1000px) {
  .situation-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .review-grid    { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .know-grid      { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
