/* =========================================================
   MYSTERY ARCHER — FANTASY REDESIGN
   Inspired by: Elden Ring aesthetic · Dark luxury brands ·
   Medieval manuscript · Night sky · Candlelight gold
   ========================================================= */

:root {
  /* dark teal palette */
  --bg:        #212B2C;
  --bg-2:      #1D2526;
  --bg-warm:   #263233;
  --surface:   #2C3839;
  --surface-2: #323F40;
  --line:      rgba(225,189,128,.10);
  --line-2:    rgba(225,189,128,.18);

  --gold:      #E1BD80;
  --gold-hi:   #EDD9A3;
  --gold-dim:  rgba(225,189,128,.5);
  --gold-pale: rgba(225,189,128,.12);
  --amber:     #E09A3A;
  --cream:     #F0E2C0;
  --parchment: #E8D4A8;

  --text:      #EDE3CC;
  --text-dim:  #9AACAD;
  --text-mute: #6B8082;
  --heading:   #ffffff;

  --serif-display: 'Fraunces', 'Georgia', serif;
  --serif-formal:  'Cinzel', 'Times New Roman', serif;
  --serif-fantasy: 'Cinzel Decorative', 'Cinzel', serif;
  --serif-fell:    'IM Fell English', 'Georgia', serif;
  --sans:          'Inter', -apple-system, sans-serif;

  --pad:  clamp(24px, 4vw, 72px);
  --maxw: 1440px;
}

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--serif-formal);
  font-size: 19px;
  line-height: 1.35;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
  background: #212B2C;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input { font: inherit; color: inherit; background: none; border: none; outline: none; }
::selection { background: var(--gold); color: var(--bg); }

@media (hover: hover) {
  a, button, input, label, [data-cursor] { cursor: none; }
}
@media (max-width: 860px) { body { cursor: auto; } }

/* ── WARM GRAIN ─────────────────────────────────────────── */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9000;
  opacity: .28; mix-blend-mode: overlay;
  /* warm-toned noise */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/><feColorMatrix values='0 0 0 0 0.35 0 0 0 0 0.2 0 0 0 0 0.05 0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  animation: grainDrift 10s steps(7) infinite;
}
@keyframes grainDrift {
  0%,100% { transform: translate(0,0); }
  14%  { transform: translate(-2%, 1%); }
  28%  { transform: translate(1%, -2%); }
  42%  { transform: translate(-1%, -1%); }
  56%  { transform: translate(2%, 0%); }
  70%  { transform: translate(0%, 2%); }
  85%  { transform: translate(-1%, 1%); }
}

/* ── CURSOR ─────────────────────────────────────────────── */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 28px; height: 36px;
  pointer-events: none; z-index: 9999;
  will-change: transform;
  transition: opacity .3s;
}
.cur-svg { width: 100%; height: 100%; display: block; }

/* hover: brighter gold */
body.c-hover  .cur-fill   { fill: #EDD9A3; }
body.c-hover  .cur-shine  { opacity: .8; }

/* button: white-ish, scale up slightly */
body.c-button .cur-fill   { fill: #fff8ee; }
body.c-button .cur-outline { stroke: #2a1f08; fill: #2a1f08; }
body.c-button .cursor     { transform-origin: top left; }

@media (max-width: 860px) { .cursor { display: none; } }

/* ── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 40px;
  padding: 8px max(var(--pad), calc((100vw - var(--maxw)) / 2 + var(--pad)));
  background: linear-gradient(to bottom, rgba(33,43,44,.9), rgba(33,43,44,.2));
  border-bottom: 1px solid transparent;
  transition: border-color .4s, background .4s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(33,43,44,.92);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif-formal);
  font-size: 18px; font-weight: 700;
  letter-spacing: .06em; color: var(--text);
}
.logo-img {
  display: block;
}
.logo-img-nav    { height: 60px; width: auto; }
.logo-img-footer { height: 60px; width: auto; }
.nav-mark { color: var(--gold); }
.nav-logo em { font-style: italic; color: var(--gold); font-family: var(--serif-display); }
.nav-links {
  display: flex; gap: 36px;
  font-family: var(--serif-formal); font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-dim);
}
.nav-links a { transition: color .25s; position: relative; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -5px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.nav-active { color: var(--gold); }
.nav-links a.nav-active::after { transform: scaleX(1); }
.nav-cta {
  justify-self: end;
  padding: 10px 22px;
  border: 1px solid rgba(225,189,128,.7);
  font-family: var(--serif-formal); font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
  background: linear-gradient(135deg, rgba(225,189,128,.13) 0%, rgba(225,189,128,.04) 60%, rgba(225,189,128,.08) 100%);
  box-shadow: inset 0 1px 0 rgba(245,232,176,.12), 0 2px 20px rgba(225,189,128,.08);
  transition: background .35s, border-color .35s, color .35s, box-shadow .35s;
}
.nav-cta:hover {
  background: linear-gradient(135deg, rgba(225,189,128,.28) 0%, rgba(225,189,128,.14) 60%, rgba(225,189,128,.22) 100%);
  border-color: var(--gold);
  color: var(--cream);
  box-shadow: inset 0 1px 0 rgba(245,232,176,.2), 0 4px 32px rgba(225,189,128,.2);
}
@media (min-width: 861px) { .nav-burger { display: none !important; } }

/* ── BURGER BUTTON ───────────────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none;
  padding: 8px; cursor: none;
  color: var(--gold); z-index: 600;
}
.nav-burger span {
  display: block; width: 24px; height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .25s;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU OVERLAY ─────────────────────────────────── */
.nav-mobile-menu {
  position: fixed; inset: 0; z-index: 480;
  background: rgba(22,30,31,.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  padding: 80px 40px 40px;
  gap: 0;
  opacity: 0; pointer-events: none;
  transform: translateY(-10px);
  transition: opacity .3s ease, transform .3s ease;
  overflow-y: auto;
}
.nav-mobile-menu.is-open { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav-mobile-menu a {
  font-family: var(--serif-formal); font-size: 15px; font-weight: 600;
  letter-spacing: .10em; text-transform: uppercase;
  color: var(--text-dim);
  padding: 10px 0;
  border-bottom: 1px solid rgba(201,169,97,.09);
  width: 100%; text-align: left;
  transition: color .22s;
  cursor: none;
}
.nav-mobile-menu a:last-of-type { border-bottom: none; }
.nav-mobile-menu a:hover, .nav-mobile-menu a:active { color: var(--gold); }
.nm-section {
  font-family: var(--serif-formal); font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(201,169,97,.35);
  padding: 28px 0 6px; width: 100%; text-align: left;
}
.nav-mobile-menu .nm-cta {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 20px;
  padding: 13px 20px;
  border: 1px solid rgba(225,189,128,.65);
  color: var(--gold);
  font-family: var(--serif-formal); font-size: 12px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  text-align: left; width: auto; align-self: flex-start; box-sizing: border-box; min-width: 200px;
  background: linear-gradient(135deg, rgba(225,189,128,.08), rgba(225,189,128,.02));
  transition: background .3s, border-color .3s;
  cursor: none;
  border-bottom: 1px solid rgba(225,189,128,.65) !important;
}
.nav-mobile-menu .nm-cta::after {
  content: '→';
  font-family: sans-serif; font-size: 18px; letter-spacing: 0;
  opacity: .9;
  line-height: 1;
  position: relative; top: -1px;
}
.nav-mobile-menu .nm-cta:hover { background: rgba(225,189,128,.15); border-color: var(--gold); }

/* ── MOBILE BREAKPOINT ───────────────────────────────────── */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-burger { display: flex; }
  .logo-img-nav { height: 64px; }
  .nav {
    grid-template-columns: 1fr auto;
    padding: 16px var(--pad);
  }
}

/* ── SHARED ─────────────────────────────────────────────── */
.s-pad {
  padding: clamp(80px, 11vw, 180px) var(--pad);
  max-width: var(--maxw); margin: 0 auto;
}
.section-head { max-width: 100%; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }

.s-num { display: none; }

.h-display {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: clamp(38px, 5.5vw, 80px);
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--heading);
}
.h-display em {
  font-style: italic; color: var(--gold);
  font-weight: 700;
}

.s-lead {
  margin-top: 28px;
  font-family: var(--serif-formal);
  font-size: clamp(15px, 1.4vw, 20px);
  letter-spacing: .05em;
  color: var(--text-dim);
  max-width: 580px;
  line-height: 1.35;
}
.center-lead { max-width: 540px; margin-left: auto; margin-right: auto; }

.section-divider {
  padding: 0 var(--pad);
  max-width: var(--maxw); margin: 0 auto;
}

.ornament-line {
  display: flex; justify-content: flex-start;
}
.ornament-line.center { justify-content: center; }
.ornament-line.mt40   { margin-top: 40px; }

/* ── STARS CANVAS ───────────────────────────────────────── */
.star-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: .9;
}

/* ═════════════════════════════════════════════════════════
   BLOCK 1 — HERO
   ═════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  z-index: 0;
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding-top: 110px;
  background: #212B2C;
  isolation: isolate;
}

/* hero composition — text stays original, target half-hidden right */
.hero {
  display: flex;
  align-items: center;
}
/* hero composition — large title, subtext bottom-left, target right */
.hero {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  padding: 0;
}
.hero-content {
  position: relative; z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: calc(100vh - 110px);
  /* left aligns with .s-pad sections (max-width 1440 + var(--pad)) */
  padding: clamp(36px, 5vw, 72px) var(--pad) clamp(48px, 6vw, 80px) max(var(--pad), calc((100vw - var(--maxw)) / 2 + var(--pad)));
  max-width: 100%;
}
/* big title — top of the block */
.hero-title {
  font-size: clamp(100px, 15vw, 220px) !important;
  line-height: .92 !important;
  max-width: 90vw;
}
.hero-line-accent {
  padding-left: 0.65em;
}
.hero-line-accent em {
  color: var(--gold);
  font-style: italic;
  font-family: var(--serif-display);
}
/* sub + actions — pushed to the bottom */
.hero-sub {
  margin-top: 0;
  max-width: 420px;
}
.hero-actions {
  margin-top: 32px;
}
.hero-bottom {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Target: center at ~75% from left, ~65% off-screen to right */
.hero-target-wrap {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(55%, -50%);
  width: min(1400px, 140vh);
  height: min(1400px, 140vh);
  pointer-events: none;
}
.hero-target-svg {
  width: 100%;
  height: 100%;
  filter: none;
  animation: heroTargetSpin 90s linear infinite;
  transform-origin: center;
}
@keyframes heroTargetSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@media (max-width: 900px) {
  .hero-title { font-size: clamp(90px, 26vw, 140px) !important; max-width: 100%; line-height: .88 !important; }
  .h-display { font-size: clamp(32px, 9.5vw, 52px) !important; }
  .s-lead { font-size: clamp(17px, 4.8vw, 22px) !important; max-width: 100%; }
  .hero-content {
    justify-content: flex-start;
    min-height: auto;
    gap: 28px;
  }
  .hero-bottom { margin-top: 0; }
  .hero-target-wrap {
    top: auto; bottom: 0; right: 50%;
    width: 130vw; height: 130vw;
    transform: translate(50%, 55%);
    opacity: .25; z-index: 1;
  }
}

/* candle glow pools */
.hero-glow { display: none; }

/* hero content (left column) */
.hero-content {
  position: relative; z-index: 10;
}
.hero-ornament { margin-bottom: 28px; }

.hero-eyebrow {
  font-family: var(--serif-formal);
  font-size: 13px; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-dim); margin-bottom: 32px;
}

.hero-title {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: clamp(38px, 4.8vw, 82px);
  line-height: 1.02;
  letter-spacing: -.03em;
  color: var(--cream);
}
.hero-line { display: block; }
.hero-line em { font-style: italic; color: var(--gold); font-weight: 700; }
.hero-accent { color: var(--gold); }

/* English emphasis — Cinzel uppercase, clear to read */
.hero-title .ht-en {
  font-family: var(--serif-formal);
  font-style: normal;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .01em;
  font-size: .82em;
  vertical-align: .04em;
  text-shadow: 0 0 40px rgba(225,189,128,.25);
}

.hero-line em { position: relative; }

/* reveal animations */
.reveal {
  display: inline-block;
  transform: translateY(110%); opacity: 0;
  animation: revealUp 1.1s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-title .hero-line:nth-child(1) .reveal:nth-child(1) { animation-delay: .1s; }
.hero-title .hero-line:nth-child(1) .reveal:nth-child(2) { animation-delay: .25s; }
.hero-title .hero-line:nth-child(2) .reveal:nth-child(1) { animation-delay: .4s; }
.hero-title .hero-line:nth-child(2) .reveal:nth-child(2) { animation-delay: .55s; }
.hero-sub.reveal  { animation-delay: .85s; }
.hero-actions.reveal { animation-delay: 1.1s; }
@keyframes revealUp { to { transform: translateY(0); opacity: 1; } }

.hero-sub {
  margin-top: 32px;
  font-family: var(--serif-formal);
  font-size: clamp(26px, 2.8vw, 38px); font-weight: 700;
  letter-spacing: .04em;
  color: var(--text-dim); max-width: 780px; line-height: 1.35;
  text-wrap: balance;
}

.hero-actions {
  margin-top: 44px;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}

/* ── hero scene (right column — archer constellation) ── */
.hero-scene {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 7;
  max-height: 72vh;
  display: flex; align-items: center; justify-content: center;
}
.archer-svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 0 24px rgba(225,189,128,.12));
}
@media (max-width: 960px) {
  .hero-scene { max-height: 46vh; aspect-ratio: 6 / 5; }
}

/* star twinkle */
.ast {
  transform-box: fill-box;
  transform-origin: center;
  animation: astTwink 3.8s ease-in-out infinite;
}
.ast:nth-child(2n)  { animation-duration: 4.6s; animation-delay: -1.2s; }
.ast:nth-child(3n)  { animation-duration: 5.4s; animation-delay: -2.5s; }
.ast:nth-child(4n)  { animation-duration: 4.0s; animation-delay: -.8s; }
@keyframes astTwink {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .55; transform: scale(.7); }
}
.ast-nock {
  animation: nockGlow 5.5s ease-in-out infinite;
}
@keyframes nockGlow {
  0%,18%,22%,100% { opacity: .9; transform: scale(1); filter: none; }
  19%,21%         { opacity: 1;  transform: scale(1.6); filter: drop-shadow(0 0 6px #F5E8B0); }
}
.ast-head {
  animation: astTwink 6s ease-in-out infinite;
}

/* background scattered stars */
.bgs {
  transform-box: fill-box;
  transform-origin: center;
  animation: bgsTwink 7s ease-in-out infinite;
}
.bgs:nth-child(2n) { animation-duration: 9s; animation-delay: -3s; }
.bgs:nth-child(3n) { animation-duration: 11s; animation-delay: -6s; }
@keyframes bgsTwink {
  0%,100% { opacity: .3; }
  50%      { opacity: .9; }
}

/* ── Sagittarius bow-shot sequence (all 5.5s synced to .fire-arrow with 1.2s delay) ── */

/* nocked arrow — visible while drawn, hidden the instant it's released */
.arrow-nocked {
  animation: arrowNockedCycle 5.5s ease-in-out infinite;
  animation-delay: 1.2s;
}
@keyframes arrowNockedCycle {
  0%, 17%  { opacity: .6; }
  19%      { opacity: .9; }       /* brief glint at full draw */
  20%, 95% { opacity: 0; }        /* gone during flight */
  100%     { opacity: .6; }       /* rebuild for next cycle */
}

/* bowstring held under tension back to the draw hand */
.bstring-drawn {
  animation: bstringDrawnCycle 5.5s ease-out infinite;
  animation-delay: 1.2s;
}
@keyframes bstringDrawnCycle {
  0%, 17%   { opacity: .9; }
  20%, 95%  { opacity: 0; }
  100%      { opacity: .9; }
}

/* relaxed bowstring — appears at release, vibrates, then fades until next draw */
.bstring-released {
  animation: bstringReleasedCycle 5.5s ease-in-out infinite;
  animation-delay: 1.2s;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes bstringReleasedCycle {
  0%, 18%   { opacity: 0; transform: scaleX(1); }
  20%       { opacity: 1; transform: scaleX(1.02); }
  22%       { opacity: .95; transform: scaleX(.98); }
  24%       { opacity: .9; transform: scaleX(1.01); }
  28%       { opacity: .8; transform: scaleX(1); }
  90%       { opacity: .5; transform: scaleX(1); }
  100%      { opacity: 0; transform: scaleX(1); }
}

/* draw-arm recoils slightly at release */
.draw-arm {
  transform-box: fill-box;
  transform-origin: 370px 230px;
  animation: drawArmRecoil 5.5s ease-out infinite;
  animation-delay: 1.2s;
}
@keyframes drawArmRecoil {
  0%, 18%   { transform: translate(0,0) rotate(0deg); }
  20%       { transform: translate(8px,2px) rotate(3deg); }
  26%       { transform: translate(2px,0) rotate(1deg); }
  34%, 100% { transform: translate(0,0) rotate(0deg); }
}

/* bow flash on release */
.bow-flash {
  animation: bowFlash 5.5s ease-out infinite;
  animation-delay: 1.2s;
}
@keyframes bowFlash {
  0%, 18%, 26%, 100% { r: 0; opacity: 0; }
  19% { r: 8;  opacity: .6; }
  20% { r: 18; opacity: 1;  }
  22% { r: 34; opacity: .5; }
  24% { r: 48; opacity: 0;  }
}

/* sparks burst at release point */
.release-sparks {
  transform-box: fill-box;
  transform-origin: 118px 278px;
  animation: sparksCycle 5.5s ease-out infinite;
  animation-delay: 1.2s;
}
@keyframes sparksCycle {
  0%, 18%   { opacity: 0; transform: scale(.4); }
  20%       { opacity: 1; transform: scale(1); }
  24%       { opacity: .5; transform: scale(1.35); }
  28%, 100% { opacity: 0; transform: scale(1.6); }
}

/* hit target pulses when the arrow lands */
.hit-target {
  transform-box: fill-box;
  transform-origin: center;
  animation: hitTargetPulse 5.5s ease-out infinite;
  animation-delay: 1.2s;
}
@keyframes hitTargetPulse {
  0%, 36%   { opacity: .35; transform: scale(1); }
  38%       { opacity: 1;   transform: scale(1.12); filter: drop-shadow(0 0 10px rgba(224,74,74,.6)); }
  44%       { opacity: .8;  transform: scale(1.04); }
  55%, 100% { opacity: .35; transform: scale(1); filter: none; }
}

/* ── fire-arrow overlay: flies right→left across hero ── */
.fire-arrow {
  position: absolute;
  top: 40%;
  left: -200px; right: auto;
  width: 60vw; max-width: 900px;
  height: 14px;
  pointer-events: none; z-index: 6;
  transform: translateX(100vw);
  opacity: 0;
  animation: fireArrow 5.5s cubic-bezier(.18,.6,.18,1) infinite;
  animation-delay: 1.2s;
  filter: drop-shadow(0 0 8px rgba(245,232,176,.35));
}
.fire-arrow svg { width: 100%; height: 100%; display: block; }
@keyframes fireArrow {
  0%,18%    { transform: translateX(72vw);  opacity: 0; }
  20%       { transform: translateX(68vw);  opacity: 1; }
  38%       { transform: translateX(-40vw); opacity: 1; }
  42%,100%  { transform: translateX(-60vw); opacity: 0; }
}
@media (max-width: 960px) {
  .fire-arrow { display: none; }
}

/* primary CTA */
.btn-primary {
  position: relative;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 36px;
  border: 1px solid rgba(225,189,128,.7);
  color: var(--gold);
  font-family: var(--serif-formal); font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  background: linear-gradient(135deg, rgba(225,189,128,.13) 0%, rgba(225,189,128,.04) 60%, rgba(225,189,128,.08) 100%);
  box-shadow: inset 0 1px 0 rgba(245,232,176,.12), 0 2px 20px rgba(225,189,128,.08);
  transition: background .35s, color .35s, border-color .35s, box-shadow .35s;
}
.btn-primary:hover {
  background: linear-gradient(135deg, rgba(225,189,128,.28) 0%, rgba(225,189,128,.14) 60%, rgba(225,189,128,.22) 100%);
  border-color: var(--gold);
  color: var(--cream);
  box-shadow: inset 0 1px 0 rgba(245,232,176,.2), 0 4px 32px rgba(225,189,128,.2);
}
.btn-rings {
  position: absolute; left: 26px; top: 50%; transform: translateY(-50%);
}
.br {
  position: absolute; border-radius: 50%;
  border: 1px solid var(--gold);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  transition: border-color .3s;
}
.br1 { width: 28px; height: 28px; }
.br2 { width: 18px; height: 18px; }
.br3 { width: 9px;  height: 9px; }
.br-dot {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 3.5px; height: 3.5px; border-radius: 50%;
  background: var(--gold); transition: background .3s;
}
.btn-primary:hover .br { border-color: rgba(33,43,44,.4); }
.btn-primary:hover .br-dot { background: var(--bg); }
.btn-arr { transition: transform .3s; }
.btn-primary:hover .btn-arr { transform: translateX(5px); }

.btn-text {
  font-family: var(--serif-formal); font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-dim);
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(225,189,128,.3);
  transition: color .3s, border-color .3s;
}
.btn-text:hover { color: var(--gold); border-color: var(--gold); }

/* hero stats strip — bottom, full width */
.hero-stats {
  position: relative; z-index: 10;
  margin: 72px auto 0;
  max-width: var(--maxw);
  padding: 28px var(--pad) 0;
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  border-top: 1px solid var(--line);
  width: 100%;
}
.hstat {
  display: flex; flex-direction: column; gap: 4px;
}
.hstat b {
  font-family: var(--serif-display); font-style: italic;
  font-size: 42px; font-weight: 700;
  color: var(--gold); letter-spacing: -.03em;
  line-height: 1;
}
.hstat span {
  font-family: var(--serif-formal); font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--text-mute);
}
.hstat-sep {
  color: var(--gold-dim); font-size: 12px;
  align-self: center;
}

/* scroll hint */
.hero-scroll {
  position: absolute; bottom: 50px; right: clamp(20px, 3vw, 48px);
  display: flex; align-items: center; gap: 14px;
  font-family: var(--serif-formal); font-size: 10px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-mute);
  writing-mode: vertical-rl; transform: rotate(180deg);
  z-index: 5;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; transform: scaleY(1); }
  50%      { opacity: .4; transform: scaleY(.3); }
}
.br-desk { display: inline; }
@media (max-width: 640px) { .br-desk { display: none; } .hero-scroll { display: none; } }

/* ═════════════════════════════════════════════════════════
   BLOCK 2 — ANATOMY
   ═════════════════════════════════════════════════════════ */
.anatomy { overflow: hidden; background: #212B2C !important; position: relative; z-index: 1; isolation: isolate; }

.arrow-stage { position: relative; margin-top: 72px; }

.arrow-svg {
  width: 100%; height: auto;
  display: block; max-width: 1400px; margin: 0 auto;
  background: transparent;
  animation: arrowFloat 7s ease-in-out infinite alternate;
}
.arrow-svg, .arrow-svg * { --svg-bg: none; }
@keyframes arrowFloat { to { transform: translateY(-10px); } }

.hs { cursor: crosshair; }
.hs-ring {
  transform-origin: center; transform-box: fill-box;
  animation: hsPulse 2.8s ease-in-out infinite;
}
@keyframes hsPulse {
  0%,100% { transform: scale(1);   opacity: .5; }
  50%      { transform: scale(2.4); opacity: .1; }
}
.hs:nth-child(6) .hs-ring { animation-delay: .7s; }
.hs:nth-child(7) .hs-ring { animation-delay: 1.4s; }
.hs:nth-child(8) .hs-ring { animation-delay: 2.1s; }

.arrow-labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 72px;
}
@media (max-width: 900px)  { .arrow-labels { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px)  { .arrow-labels { grid-template-columns: 1fr; } }

.alabel {
  padding: 44px 36px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(44,56,57,.5), rgba(33,43,44,.2));
  transition: border-color .35s, transform .35s, background .35s;
  position: relative;
  overflow: hidden;
}
.alabel::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(225,189,128,.08), transparent);
  opacity: 0; transition: opacity .4s;
}
.alabel:hover { border-color: var(--gold); transform: translateY(-6px); }
.alabel:hover::before { opacity: 1; }

.alabel-num {
  font-family: var(--serif-display);
  font-size: 64px; font-weight: 700; font-style: italic;
  letter-spacing: -.02em; color: var(--gold-hi);
  line-height: 1;
  margin-bottom: 16px;
}
.alabel h3 {
  font-family: var(--serif-formal);
  font-weight: 700;
  font-size: 13px; letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 10px;
}
.alabel-sub {
  font-family: var(--serif-formal); font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.alabel p {
  font-family: var(--serif-formal);
  font-size: 19px; letter-spacing: .04em;
  line-height: 1.35; color: var(--text-dim);
}

.arrow-quote {
  margin: 90px auto 0;
  max-width: 680px; text-align: center;
  font-family: var(--serif-display); font-style: italic;
  font-size: clamp(18px, 2.2vw, 28px);
  color: var(--text-dim); line-height: 1.35;
}
.arrow-quote em { color: var(--gold); font-style: italic; }
.aq-mark { color: var(--gold-dim); font-size: .7em; margin: 0 16px; }

/* ═════════════════════════════════════════════════════════
   BLOCK 3 — CONSTELLATION
   ═════════════════════════════════════════════════════════ */
.constellation { overflow: hidden; }
.constellation-wrap {
  position: relative;
  margin-top: 60px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(32,42,43,.8), rgba(29,37,38,.5));
  overflow: hidden;
}
.const-canvas {
  display: block; width: 100%;
  height: clamp(360px, 45vw, 600px);
}
.const-legend {
  position: absolute; top: 24px; right: 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.cl-item {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--serif-formal); font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-mute);
}
.cl-star {
  border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 6px var(--gold);
}
.cl-lg { width: 8px;  height: 8px; }
.cl-md { width: 6px;  height: 6px; }
.cl-sm { width: 4px;  height: 4px; }

.const-niches {
  position: absolute; bottom: 20px; left: 24px;
  display: flex; flex-wrap: wrap; gap: 8px;
  max-width: 70%;
}
.const-niches span {
  font-family: var(--serif-formal); font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(225,189,128,.5);
  padding: 3px 8px;
  border: 1px solid rgba(225,189,128,.18);
}

.const-stats {
  margin-top: 36px;
  display: flex; align-items: center; justify-content: center; gap: 48px;
  flex-wrap: wrap;
}
.cst {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.cst b {
  font-family: var(--serif-display); font-style: italic;
  font-size: 40px; font-weight: 700;
  color: var(--gold); letter-spacing: -.03em;
}
.cst span {
  font-family: var(--serif-formal); font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--text-mute);
}
.cst-div { color: var(--gold-dim); font-size: 14px; }

/* ═════════════════════════════════════════════════════════
   BLOCK 4 — VERSUS
   ═════════════════════════════════════════════════════════ */
.versus { text-align: center; }
.vs-grid {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 16px; margin-top: 64px; align-items: stretch;
}
@media (max-width: 800px) {
  .vs-grid { grid-template-columns: 1fr; }
  .vs-divider { display: none; }
}

.vs-col {
  padding: 44px 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(44,56,57,.4), rgba(33,43,44,.2));
}
.vs-clean {
  border-color: rgba(225,189,128,.22);
  background: linear-gradient(180deg, rgba(225,189,128,.05), rgba(33,43,44,.2));
}
.vs-name {
  font-family: var(--serif-formal);
  font-size: 17px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-mute); margin-bottom: 28px;
}
.vs-name-gold { color: var(--gold); }

.vs-target { width: 300px; height: 300px; margin: 0 auto 32px; }
.vs-arrow-g { animation: vsArrow 3.5s ease-in-out infinite; }
@keyframes vsArrow {
  0%,100% { transform: rotate(-38deg); }
  50%      { transform: rotate(-37deg) scale(1.02); }
}

.vs-list {
  list-style: none; text-align: left;
  display: flex; flex-direction: column; gap: 12px;
  max-width: 300px; margin: 0 auto;
}
.vs-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-family: var(--serif-formal);
  font-size: 20px; letter-spacing: .04em;
  color: var(--text-dim);
}
.vs-x  { color: #aa3333; font-style: normal; font-family: sans-serif; }
.vs-ok { color: var(--gold); font-style: normal; font-size: .8em; margin-top: 3px; }

.vs-divider {
  display: flex; align-items: center; justify-content: center;
}
.vs-divider em {
  font-family: var(--serif-display); font-style: italic;
  font-size: 52px; color: var(--text-mute);
}

.vs-epigraph {
  margin-top: 80px;
  font-family: var(--serif-display); font-style: italic;
  font-size: clamp(18px, 2.2vw, 28px);
  color: var(--text-dim); line-height: 1.35;
}
.vs-epigraph em { color: var(--gold); }

/* ═════════════════════════════════════════════════════════
   BLOCK 5 — RITUAL
   ═════════════════════════════════════════════════════════ */
.ritual-wrap { position: relative; margin-top: 80px; }
.ritual-track {
  position: absolute; left: 46px; top: 16px; bottom: 16px;
  width: 1px; background: rgba(225,189,128,.12);
}
.rt-fill {
  position: absolute; top: 0; left: 0; right: 0;
  height: 0; background: linear-gradient(180deg, var(--gold), rgba(225,189,128,.3));
  transition: height .15s linear;
}
.rt-head {
  position: absolute; left: 50%; top: 0;
  width: 9px; height: 9px;
  transform: translate(-50%, -50%);
  background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 16px var(--gold);
  opacity: 0; transition: top .15s linear, opacity .3s;
}
@media (max-width: 640px) { .ritual-track { left: 28px; } }

.ritual-steps { list-style: none; display: flex; flex-direction: column; gap: 36px; }

.rstep {
  position: relative; padding-left: 130px;
  opacity: .3; transition: opacity .6s;
}
.rstep.seen { opacity: 1; }
@media (max-width: 640px) { .rstep { padding-left: 80px; } }

.rs-num {
  position: absolute; left: 0; top: 6px;
  font-family: var(--serif-display); font-style: italic;
  font-size: 52px; font-weight: 300; line-height: 1;
  color: var(--text-mute); transition: color .6s;
}
.rstep.seen .rs-num { color: var(--gold); }
@media (max-width: 640px) { .rs-num { font-size: 34px; } }

.rs-body {
  padding: 26px 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(38,50,51,.5), rgba(33,43,44,.15));
  position: relative;
}
.rstep.seen .rs-body { border-color: rgba(225,189,128,.2); }
.rs-icon {
  position: absolute; top: 24px; right: 24px;
  width: 38px; height: 38px; color: var(--gold); opacity: .6;
}
.rs-body h3 {
  font-family: var(--serif-display); font-weight: 700; font-style: italic;
  font-size: 28px; letter-spacing: -.02em; color: var(--cream); margin-bottom: 12px;
}
.rs-body p {
  font-family: var(--serif-formal);
  font-size: 18px; letter-spacing: .04em;
  color: var(--text-dim); line-height: 1.35; max-width: 500px; margin-bottom: 16px;
}
.rs-time {
  font-family: var(--serif-formal); font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); padding: 4px 10px;
  border: 1px solid rgba(225,189,128,.25);
  display: inline-block;
}

.rs-final .rs-body { border-color: var(--gold); background: linear-gradient(180deg, rgba(225,189,128,.07), rgba(33,43,44,.15)); }
.rs-final h3 { color: var(--gold); }

/* ═════════════════════════════════════════════════════════
   BLOCK 6 — ARSENAL
   ═════════════════════════════════════════════════════════ */
.arsenal-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 960px) { .arsenal-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px) { .arsenal-grid { grid-template-columns: 1fr; } }

.weapon {
  padding: 32px 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(38,50,51,.5), rgba(33,43,44,.2));
  position: relative; overflow: hidden;
  transition: border-color .35s, transform .4s;
  min-height: 240px; display: flex; flex-direction: column;
}
.weapon::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(225,189,128,.07), transparent);
  opacity: 0; transition: opacity .4s;
}
.weapon:hover { border-color: var(--gold); transform: translateY(-7px); }
.weapon:hover::after { opacity: 1; }

.weapon-hero {
  grid-column: span 1;
  border-color: rgba(225,189,128,.28);
  background: linear-gradient(180deg, rgba(225,189,128,.07), rgba(33,43,44,.2));
  animation: weaponBreath 5s ease-in-out infinite;
}
@keyframes weaponBreath {
  0%,100% { box-shadow: 0 0 0 rgba(225,189,128,0); }
  50%      { box-shadow: 0 0 40px rgba(225,189,128,.1); }
}

.weapon-glyph {
  font-family: var(--serif-display);
  font-size: 48px; color: var(--gold);
  opacity: .25; margin-bottom: 20px; line-height: 1;
}
.weapon-glyph.small { font-size: 28px; }

.weapon-badge {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--serif-formal); font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--gold); color: var(--gold);
}

.weapon-icon {
  width: 56px; height: 56px; color: var(--gold);
  margin-bottom: 24px; opacity: .8;
}
.weapon-hero .weapon-icon { width: 56px; height: 56px; }

.weapon h3 {
  font-family: var(--serif-display); font-weight: 700; font-style: italic;
  font-size: 26px; letter-spacing: -.02em;
  color: var(--cream); margin-bottom: 6px; margin-top: 0;
}
.weapon-hero h3 { font-size: 26px; }
.weapon-kicker {
  font-family: var(--serif-formal); font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.weapon-desc {
  font-family: var(--serif-formal);
  font-size: 20px !important; letter-spacing: .04em;
  color: var(--text-dim); line-height: 1.35;
}
.weapon-price {
  margin-top: 20px;
  font-family: var(--serif-formal); font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em; color: var(--text-mute);
}

/* ═════════════════════════════════════════════════════════
   BLOCK 7 — STATS
   ═════════════════════════════════════════════════════════ */
.stats {
  position: relative;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
/* parchment scroll texture */
.stats-scroll-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%,  rgba(225,189,128,.06), transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% 100%,rgba(180,100,20,.04),  transparent 55%);
}
.stats-scroll-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(225,189,128,.014) 0, rgba(225,189,128,.014) 1px,
    transparent 1px, transparent 44px
  );
}

.stats-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 48px;
}
@media (max-width: 800px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }

.stat {
  padding: 56px 24px;
  background: var(--bg-2);
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.stat-n {
  font-family: var(--serif-display);
  font-weight: 700; font-style: italic;
  font-size: clamp(64px, 8vw, 120px);
  letter-spacing: -.04em; line-height: .9;
  color: var(--gold); margin-bottom: 20px;
  display: block; min-height: 1.1em;
}
.splus {
  color: var(--cream); font-size: .55em;
  vertical-align: super; font-style: normal;
}
.stat-l {
  font-family: var(--serif-formal); font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-hi); margin-bottom: 12px;
}
.stat-d {
  font-family: var(--serif-formal);
  font-size: 12px; font-weight: 600;
  letter-spacing: .06em;
  color: var(--text-dim);
  max-width: 200px; line-height: 1.35;
}

/* ═════════════════════════════════════════════════════════
   BLOCK 3 — PORTFOLIO SLIDER (cinematic dossier)
   ═════════════════════════════════════════════════════════ */
.pf-slider-wrap {
  margin: 64px calc(-1 * var(--pad)) 0;
  padding: 0 var(--pad);
  position: relative;
}
.pf-viewport {
  overflow: hidden;
  padding: 8px 0 16px;
}

.pf-track {
  list-style: none;
  display: flex;
  gap: 28px;
  will-change: transform;
  transition: transform .72s cubic-bezier(.16,.84,.24,1);
  user-select: none;
  padding-left: 4px;
}

.pf-slide {
  flex: 0 0 auto;
  width: min(880px, 82vw);
  height: 520px;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  background:
    linear-gradient(135deg, rgba(44,56,57,.85) 0%, rgba(33,43,44,.55) 100%);
  border: 1px solid var(--line-2);
  position: relative;
  overflow: hidden;
  transition: transform .6s cubic-bezier(.2,.8,.2,1), border-color .4s, opacity .4s;
  opacity: .55;
  transform: scale(.94);
}
.pf-slide.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(225,189,128,.38);
  box-shadow:
    0 30px 80px -30px rgba(0,0,0,.85),
    0 0 0 1px rgba(225,189,128,.05) inset,
    0 40px 120px -60px rgba(225,189,128,.25);
}
.pf-slide.is-near { opacity: .8; transform: scale(.97); }

/* corner filigree on the whole card */


/* ── MEDIA (large image area) ───────────────────── */
.pf-media {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(225,189,128,.10), transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(180,120,40,.08), transparent 60%),
    linear-gradient(160deg, #263435 0%, #212B2C 100%);
  border-right: 1px solid var(--line);
}
.pf-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .85;
  filter: contrast(1.05) saturate(.85) brightness(.82);
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1), opacity .4s;
}
.pf-slide.is-active .pf-img { transform: scale(1.04); }
.pf-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(33,43,44,.25) 100%);
  pointer-events: none;
}
/* No overlay on iframe slides */
.pf-media:has(.pf-iframe-wrap)::after { display: none; }
.pf-media-fallback {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: rgba(225,189,128,.22);
  pointer-events: none;
}
.pf-emblem {
  width: 46%; max-width: 220px; height: auto;
  filter: drop-shadow(0 4px 20px rgba(225,189,128,.15));
  animation: pfEmblemFloat 7s ease-in-out infinite;
}
@keyframes pfEmblemFloat {
  0%,100% { transform: translateY(0) rotate(0); }
  50%     { transform: translateY(-6px) rotate(.8deg); }
}






/* ── PORTFOLIO IFRAME TABLE EMBED ────────────────── */
.pf-iframe-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.pf-iframe-pos {
  width: 852px;
  height: 1200px;
  border: none;
  display: block;
  transform-origin: top left;
  transform: scale(0.593);
  opacity: .92;
}

/* ── ZOOM BUTTON ─────────────────────────────────── */
.pf-zoom-btn {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 34px; height: 34px;
  background: rgba(33,43,44,.88);
  border: 1px solid rgba(201,169,97,.35);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  color: var(--gold);
  z-index: 10;
  transition: background .2s, border-color .2s;
  pointer-events: all;
}
.pf-zoom-btn:hover {
  background: rgba(201,169,97,.15);
  border-color: rgba(201,169,97,.7);
}

/* ── LIGHTBOX ────────────────────────────────────── */
.pf-lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.88);
  z-index: 9999;
  align-items: center; justify-content: center;
}
.pf-lightbox.open { display: flex; }
.pf-lightbox-inner {
  position: relative;
  background: #1a2223;
  border: 1px solid rgba(201,169,97,.3);
  overflow: hidden;
  border-radius: 4px;
}
.pf-lightbox-close {
  position: absolute;
  top: 6px; right: 12px;
  background: none; border: none;
  color: #111;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  padding: 0;
  transition: opacity .2s;
}
.pf-lightbox-close:hover { opacity: .7; }
#pfLightboxIframe {
  width: min(852px, 96vw);
  height: min(640px, 90vh);
  border: none;
  display: block;
}

/* ── DOSSIER (right panel) ───────────────────────── */
.pf-dossier {
  padding: 44px 40px 36px;
  display: flex; flex-direction: column; gap: 22px;
  background:
    linear-gradient(180deg, rgba(38,50,51,.4) 0%, rgba(16,14,10,.75) 100%),
    repeating-linear-gradient(-45deg, rgba(225,189,128,.014) 0 24px, transparent 24px 48px);
  position: relative;
}
.pf-top {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.pf-tag {
  font-family: var(--serif-formal); font-size: 14px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
}
.pf-id {
  font-family: var(--serif-formal); font-size: 10px;
  color: var(--text-mute); letter-spacing: .18em;
}
.pf-name {
  font-family: var(--serif-display); font-style: italic;
  font-size: 24px; font-weight: 700;
  color: var(--cream); line-height: 1.25;
}
.pf-result {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 0 6px;
  color: var(--gold);
}
.pf-jump { color: var(--gold); flex-shrink: 0; }
.pf-col { display: flex; flex-direction: column; gap: 6px; }
.pf-col span {
  font-family: var(--serif-formal);
  font-size: 9px; color: var(--text-mute);
  letter-spacing: .18em; text-transform: uppercase;
}
.pf-col b {
  font-family: var(--serif-display);
  font-size: 48px; font-weight: 700;
  color: var(--text-dim); line-height: .9;
}
.pf-hit {
  color: var(--gold-hi) !important;
  text-shadow: 0 0 22px rgba(232,206,138,.35);
}


.pf-meta {
  margin-top: auto;
  display: flex; gap: 22px; flex-wrap: wrap;
  font-family: var(--serif-formal);
  font-size: 14px;
  color: var(--text-dim);
  letter-spacing: .10em;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.pf-meta i {
  color: var(--gold);
  font-style: normal;
  font-size: 6px;
  vertical-align: middle;
  margin-right: 6px;
}

/* ── CTA slide ─────────────────────────────────── */
.pf-slide-cta {
  grid-template-columns: 1fr;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(225,189,128,.08), transparent 60%),
    linear-gradient(180deg, rgba(38,50,51,.5) 0%, rgba(33,43,44,.6) 100%);
  border-style: dashed;
}
.pf-cta-inner {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  gap: 18px; padding: 48px;
  color: var(--gold);
}
.pf-cta-ornament { color: var(--gold); opacity: .7; }
.pf-cta-kicker {
  font-family: var(--serif-formal);
  font-size: 11px; letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.pf-cta-label {
  font-family: var(--serif-display);
  font-style: italic; font-weight: 700;
  font-size: 96px; line-height: 1;
  color: var(--gold-hi);
  display: flex; align-items: center; gap: 22px;
  text-shadow: 0 0 40px rgba(232,206,138,.2);
}
.pf-cta-label span {
  font-size: 18px; font-style: normal;
  color: var(--text-dim); text-align: left;
  font-family: var(--serif-formal);
  letter-spacing: .18em; text-transform: uppercase;
  font-weight: 600; line-height: 1.4;
}
.pf-cta-note {
  max-width: 340px;
  font-family: var(--serif-display);
  font-size: 14px; font-style: italic;
  color: var(--text-dim); line-height: 1.35;
  margin-bottom: 10px;
}

/* ── CONTROLS ──────────────────────────────────── */
.pf-controls {
  display: flex; align-items: center; gap: 28px;
  margin: 40px var(--pad) 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  max-width: var(--maxw);
}
.pf-nav {
  width: 54px; height: 54px;
  border: 1px solid var(--line-2);
  color: var(--gold);
  display: grid; place-items: center;
  transition: background .3s, border-color .3s, color .3s, transform .3s;
  flex-shrink: 0;
  background: rgba(38,50,51,.4);
}
.pf-nav:hover {
  background: var(--gold); color: var(--bg);
  border-color: var(--gold);
}
.pf-nav:disabled {
  opacity: .25;
  cursor: not-allowed;
}
.pf-nav:disabled:hover { background: rgba(38,50,51,.4); color: var(--gold); border-color: var(--line-2); }

.pf-progress {
  flex: 1;
  display: flex; align-items: center; gap: 24px;
}
.pf-progress-line {
  flex: 1; height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.pf-progress-fill {
  position: absolute; top: -1px; left: 0;
  height: 3px; width: 14%;
  background: linear-gradient(90deg, var(--gold), var(--gold-hi));
  box-shadow: 0 0 10px rgba(225,189,128,.45);
  transition: width .72s cubic-bezier(.16,.84,.24,1), left .72s cubic-bezier(.16,.84,.24,1);
}
.pf-counter {
  font-family: var(--serif-display);
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--text-dim);
  display: flex; align-items: baseline; gap: 6px;
  white-space: nowrap;
}
.pf-cur { font-size: 26px; color: var(--gold-hi); font-style: italic; }
.pf-sep { font-size: 16px; color: var(--text-mute); }
.pf-tot { font-size: 14px; color: var(--text-mute); }

.pf-hint {
  text-align: center;
  margin: 18px auto 0;
  font-family: var(--serif-formal);
  font-size: 10px; letter-spacing: .3em;
  color: var(--text-mute); text-transform: uppercase;
}
.pf-hint span { color: var(--gold); font-size: 7px; margin: 0 8px; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 900px) {
  .pf-slide { width: 86vw; height: auto; grid-template-columns: 1fr; }
  .pf-media { height: 280px; border-right: none; border-bottom: 1px solid var(--line); }
  .pf-dossier { padding: 32px 26px 26px; gap: 18px; }
  .pf-col b { font-size: 38px; }
  .pf-name { font-size: 20px; }
  .pf-cta-label { font-size: 64px; flex-direction: column; gap: 8px; }
  .pf-cta-label span { text-align: center; }
  .pf-stamp { font-size: 12px; bottom: 28px; }
}
@media (max-width: 560px) {
  .pf-controls { gap: 14px; margin: 28px var(--pad) 0; }
  .pf-nav { width: 44px; height: 44px; }
  .pf-cur { font-size: 20px; }
}

/* ═════════════════════════════════════════════════════════
   BLOCK 8 — CASES
   ═════════════════════════════════════════════════════════ */
.cases-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 20px; margin-top: 64px;
}
@media (max-width: 700px) { .cases-grid { grid-template-columns: 1fr; } }

.dossier {
  padding: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(44,56,57,.6) 0%, rgba(33,43,44,.3) 100%);
  position: relative; overflow: hidden;
  transition: border-color .35s, transform .35s;
}
/* parchment pattern */
.dossier::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg, rgba(225,189,128,.02) 0 20px, transparent 20px 40px
  );
  pointer-events: none;
}
/* watermark */
.dossier::after {
  content: 'SEALED';
  position: absolute; bottom: 40%; left: 50%;
  transform: translate(-50%, 50%) rotate(-12deg);
  font-family: var(--serif-formal);
  font-size: 80px; letter-spacing: .08em;
  color: rgba(225,189,128,.028); pointer-events: none;
}
.dossier:hover { border-color: var(--gold); transform: translateY(-5px); }

.d-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px; border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
  font-family: var(--serif-formal); font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--text-mute);
}
.d-seal {
  padding: 3px 8px;
  border: 1px solid rgba(180,80,50,.6);
  color: rgba(210,110,80,.85); font-size: 11px;
  font-weight: 700; letter-spacing: .15em;
}

.d-title {
  font-family: var(--serif-display); font-style: italic;
  font-size: 22px; font-weight: 700;
  color: var(--cream); margin-bottom: 20px;
}
.redact {
  display: inline-block; color: transparent; position: relative;
}
.redact::before {
  content: ''; position: absolute; inset: 1px 0;
  background: repeating-linear-gradient(90deg, #1e1a10 0 12px, #27221a 12px 16px);
}

.d-meta {
  list-style: none; display: grid; grid-template-columns: repeat(3,1fr);
  gap: 12px; margin-bottom: 20px;
}
.d-meta li { display: flex; flex-direction: column; gap: 3px; }
.d-meta span {
  font-family: var(--serif-formal); font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--text-mute);
}
.d-meta b { font-size: 15px; color: var(--text); font-weight: 600; }

.d-result {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0; border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line); margin-bottom: 16px;
}
.d-col { display: flex; flex-direction: column; gap: 3px; }
.d-col span {
  font-family: var(--serif-formal); font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--text-mute);
}
.d-col b {
  font-family: var(--serif-display); font-style: italic;
  font-size: 30px; font-weight: 700; color: var(--text-dim); letter-spacing: -.02em;
}
.d-col b.gold { color: var(--gold); }
.d-arr-svg { color: var(--gold); flex-shrink: 0; }

.d-spark {
  width: 100%; height: 48px; display: block; margin-bottom: 16px;
}
.d-foot {
  font-family: var(--serif-formal); font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em; color: var(--text-mute);
}
.d-foot b { color: var(--text); font-weight: 700; }

.cases-cta {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 48px;
  padding: 14px 26px;
  border: 1px solid var(--line-2);
  font-family: var(--serif-formal); font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-dim);
  transition: border-color .3s, color .3s;
}
.cases-cta:hover { border-color: var(--gold); color: var(--gold); }
.cc-arr { transition: transform .3s; }
.cases-cta:hover .cc-arr { transform: translateX(5px); }

/* ═════════════════════════════════════════════════════════
   BLOCK 9 — MANIFESTO
   ═════════════════════════════════════════════════════════ */
.manifesto {
  position: relative; text-align: center;
  padding: clamp(120px, 16vw, 240px) var(--pad);
  background: #1A2223;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: none; margin: 0 auto;
  overflow: hidden;
}
.manifesto-candle {
  position: absolute; width: 300px; height: 300px;
  border-radius: 50%; pointer-events: none;
  filter: blur(100px);
}
.manifesto-candle-l {
  bottom: -80px; left: -80px;
  background: radial-gradient(circle, rgba(180,100,20,.18), transparent 65%);
  animation: candleFlicker 6s ease-in-out infinite;
}
.manifesto-candle-r {
  top: -80px; right: -80px;
  background: radial-gradient(circle, rgba(180,100,20,.12), transparent 65%);
  animation: candleFlicker 8s ease-in-out infinite reverse;
}
@keyframes candleFlicker {
  0%,100% { transform: scale(1);   opacity: 1;  }
  30%      { transform: scale(1.1); opacity: .7; }
  60%      { transform: scale(.95); opacity: .9; }
}

.manifesto-stars {
  position: absolute; inset: 0; pointer-events: none;
}
.manifesto-stars span {
  position: absolute; border-radius: 50%;
  background: var(--gold); opacity: 0;
  animation: starTwinkle linear infinite;
}
@keyframes starTwinkle {
  0%,100% { opacity: 0; }
  50%      { opacity: .6; }
}

.manifesto-ornament {
  display: flex; justify-content: center; margin-bottom: 48px;
}
.manifesto-ornament:last-of-type { margin-bottom: 0; margin-top: 48px; }

.manifesto-text {
  position: relative; z-index: 2;
  font-family: var(--serif-display); font-style: italic;
  font-size: clamp(18px, 2.4vw, 32px);
  line-height: 1.35; color: var(--text);
  max-width: 860px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 4px;
}
.mline {
  display: block;
  opacity: 0; transform: translateY(12px);
  transition: opacity .9s, transform .9s;
}
.mline.show { opacity: 1; transform: translateY(0); }
.mline-em { color: var(--gold); font-size: 1.08em; margin-top: 14px; }
.mline-sm { font-size: .8em; color: var(--text-dim); margin-top: 28px; }
.mline-sm + .mline-sm { margin-top: 2px; }
.manifesto-sign {
  margin-top: 40px;
  font-family: var(--serif-formal); font-size: 15px;
  font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-dim); font-style: normal;
}

/* ═════════════════════════════════════════════════════════
   BLOCK 10 — CTA
   ═════════════════════════════════════════════════════════ */
.cta {
  position: relative; overflow: hidden;
  max-width: none; padding: clamp(80px, 11vw, 160px) var(--pad);
}
.cta-target-bg {
  position: absolute; top: 50%; left: 50%;
  width: 900px; height: 900px;
  transform: translate(-50%,-50%);
  pointer-events: none; opacity: .85;
  transition: transform .5s ease-out;
}
.cta-target-bg svg { width: 100%; height: 100%; }
.cta-rings { transition: transform .3s ease-out; }

.cta-content {
  position: relative; z-index: 2;
  max-width: 580px; margin: 0 auto; text-align: center;
}

.cta-form {
  margin-top: 52px; text-align: left;
  display: flex; flex-direction: column; gap: 22px;
  padding: 36px;
  border: 1px solid var(--line-2);
  background: rgba(29,37,38,.75);
  backdrop-filter: blur(16px);
}
.field-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--serif-formal); font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--text-mute);
}
.field input {
  padding: 12px 0;
  border-bottom: 1px solid rgba(225,189,128,.2);
  color: var(--cream); font-size: 17px;
  font-family: var(--serif-formal); font-style: normal;
  transition: border-color .3s;
}
.field input::placeholder { color: var(--text-mute); font-style: italic; }
.field input:focus { border-bottom-color: var(--gold); }
.city-dropdown { position: relative; }
.city-selected {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(225,189,128,.2);
  cursor: pointer;
  font-family: var(--serif-formal); font-size: 17px; font-style: italic;
  color: var(--text-mute);
  transition: border-color .3s;
}
.city-selected svg { flex-shrink: 0; transition: transform .25s; }
.city-dropdown.open .city-selected { border-bottom-color: var(--gold); }
.city-dropdown.open .city-selected svg { transform: rotate(180deg); }
.city-list {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0; z-index: 200;
  list-style: none;
  background: #1a2526;
  border: 1px solid rgba(225,189,128,.2);
  border-top: none;
  max-height: 260px; overflow-y: auto;
}
.city-dropdown.open .city-list { display: block; }
.city-list li {
  padding: 11px 16px;
  font-family: var(--serif-formal); font-size: 17px;
  color: var(--text-dim); cursor: pointer;
  transition: background .2s, color .2s;
}
.city-list li:hover { background: rgba(225,189,128,.08); color: var(--gold); }
.city-list li.selected { color: var(--gold); }

.btn-shoot {
  margin-top: 10px; padding: 18px 24px;
  background: linear-gradient(135deg, rgba(225,189,128,.18) 0%, rgba(225,189,128,.07) 60%, rgba(225,189,128,.13) 100%);
  border: 1px solid rgba(225,189,128,.7);
  color: var(--gold);
  font-family: var(--serif-formal); font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  cursor: none;
  display: flex; justify-content: space-between; align-items: center;
  box-shadow: inset 0 1px 0 rgba(245,232,176,.12), 0 2px 20px rgba(225,189,128,.08);
  transition: background .35s, border-color .35s, box-shadow .35s, color .35s;
}
.btn-shoot:hover {
  background: linear-gradient(135deg, rgba(225,189,128,.3) 0%, rgba(225,189,128,.15) 60%, rgba(225,189,128,.24) 100%);
  border-color: var(--gold);
  color: var(--cream);
  box-shadow: inset 0 1px 0 rgba(245,232,176,.2), 0 4px 32px rgba(225,189,128,.2);
}
.btn-shoot svg { transition: transform .4s; }
.btn-shoot:hover svg { transform: translateX(8px); }

.cta-success {
  margin-top: 40px; padding: 40px;
  border: 1px solid var(--gold); text-align: center;
  background: rgba(225,189,128,.04);
  animation: successIn .6s ease;
}
@keyframes successIn {
  from { opacity: 0; transform: translateY(16px) scale(.98); }
  to   { opacity: 1; transform: translateY(0)    scale(1);   }
}
.cs-icon { width: 72px; height: 72px; margin: 0 auto 20px; }
.cta-success h3 {
  font-family: var(--serif-display); font-style: italic;
  font-size: 28px; color: var(--gold); margin-bottom: 8px;
}
.cta-success p { font-family: var(--serif-display); font-style: italic; color: var(--text-dim); }

/* ═════════════════════════════════════════════════════════
   FOOTER
   ═════════════════════════════════════════════════════════ */
.footer {
  padding: 80px max(var(--pad), calc((100vw - var(--maxw)) / 2 + var(--pad))) 40px;
  border-top: 1px solid var(--line);
  background: #1a2324;
}
.footer-ornament { display: flex; justify-content: center; margin-bottom: 64px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1fr 1fr;
  gap: 48px 40px;
  padding-bottom: 64px;
  max-width: var(--maxw);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p {
  margin-top: 20px; font-family: var(--serif-display); font-style: italic;
  font-size: 15px; color: var(--text-dim); max-width: 280px; line-height: 1.6;
}
.footer-col h4 {
  font-family: var(--serif-formal); font-size: 11px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-dim); margin-bottom: 20px; font-weight: 700;
}
.footer-col a, .footer-col p {
  display: block; margin-bottom: 10px;
  font-size: 14px; color: var(--text-dim);
  font-family: var(--serif-formal);
  letter-spacing: .04em;
  transition: color .25s;
}
.footer-col a:hover { color: var(--gold); }
.footer-services {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px;
}
.footer-services h4 { grid-column: span 2; }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  max-width: var(--maxw);
  font-family: var(--serif-formal); font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text-mute);
}
.f-motto { color: var(--gold-dim); letter-spacing: .2em; }

/* ═════════════════════════════════════════════════════════
   HEADINGS WHITE — SUBHEADINGS MUTED
   ═════════════════════════════════════════════════════════ */
.h-display        { color: var(--heading); }
.hero-title       { color: var(--heading); }
.rs-body h3       { color: var(--heading); }
.weapon h3        { color: var(--heading); }
.alabel h3        { color: var(--text-dim); }
.d-title          { color: var(--heading); }
.pf-name          { color: var(--heading); }
.vs-name          { color: var(--text-dim); }
.s-lead           { color: var(--text-dim); }
.hero-sub         { color: var(--text-dim); }

/* ═════════════════════════════════════════════════════════
   LOGO TARGET (bullseye SVG)
   ═════════════════════════════════════════════════════════ */
.logo-target {
  color: var(--gold);
  filter: drop-shadow(0 0 10px rgba(225,189,128,.3));
  transition: filter .3s;
}
.nav-logo:hover .logo-target {
  filter: drop-shadow(0 0 18px rgba(225,189,128,.5));
}

/* ═════════════════════════════════════════════════════════
   NAV DROPDOWN
   ═════════════════════════════════════════════════════════ */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex; align-items: center; gap: 6px;
  transition: color .25s; position: relative;
}
.nav-dropdown-toggle::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -5px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.nav-dropdown:hover .nav-dropdown-toggle { color: var(--gold); }
.nav-dropdown:hover .nav-dropdown-toggle::after { transform: scaleX(1); }
.nav-arrow {
  transition: transform .25s;
  flex-shrink: 0;
}
.nav-dropdown:hover .nav-arrow { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(27,36,37,.97);
  border: 1px solid rgba(225,189,128,.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  min-width: 260px;
  padding: 16px 0 8px;
  opacity: 0; pointer-events: none;
  transition: opacity .22s, transform .22s;
  box-shadow: 0 24px 64px rgba(0,0,0,.55), 0 0 0 1px rgba(225,189,128,.05);
  z-index: 200;
}
/* прозрачный мост — закрывает зазор между кнопкой и меню */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px; left: 0; right: 0;
  height: 16px;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-family: var(--serif-formal);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color .2s, background .2s;
  border-bottom: 1px solid rgba(225,189,128,.05);
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover {
  color: var(--gold);
  background: rgba(225,189,128,.06);
}

/* ── Consent checkbox ── */
.field-consent { flex-direction: row !important; align-items: flex-start; }
.consent-label {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer;
  color: rgba(232,219,191,.5);
  line-height: 1.55;
}
.field.field-consent .consent-label {
  font-family: var(--serif-formal);
  font-size: 13px; font-weight: 400;
  letter-spacing: .03em; text-transform: none;
}
.consent-label input[type="checkbox"] {
  width: 17px; height: 17px; min-width: 17px;
  margin-top: 2px;
  appearance: none; -webkit-appearance: none;
  border: 1px solid rgba(225,189,128,.35);
  background: transparent;
  cursor: none;
  border-radius: 2px;
  transition: border-color .25s, background .25s;
  position: relative;
  padding: 0;
}
.consent-label input[type="checkbox"]:checked {
  background: rgba(225,189,128,.12);
  border-color: #E1BD80;
}
.consent-label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px; top: 2px;
  width: 6px; height: 10px;
  border: 1.5px solid #E1BD80;
  border-top: none; border-left: none;
  transform: rotate(45deg);
}
.consent-label span { flex: 1; }
.consent-label a {
  color: #C9A961; text-decoration: underline;
  text-underline-offset: 3px; transition: color .2s;
}
.consent-label a:hover { color: #E1BD80; }

/* ── Copy-text (footer contacts) ── */
.footer-col .copy-text {
  font-family: var(--serif-formal);
  font-size: 14px;
  color: var(--text-dim);
  cursor: none;
  position: relative;
  transition: color .2s;
  display: block;
  margin-bottom: 10px;
  letter-spacing: .04em;
  user-select: none;
}
.footer-col .copy-text:hover { color: var(--gold); }
.copy-tooltip {
  position: fixed;
  background: rgba(201,169,97,.15);
  border: 1px solid rgba(201,169,97,.35);
  color: #E1BD80;
  font-family: var(--serif-formal);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
  z-index: 9999;
  white-space: nowrap;
}
.copy-tooltip.show { opacity: 1; }
