/* ─────────────────────────────────────────────────────────────────
   Như Huyền · Graduation Invitation
   Midnight + Bronze, with HUB crimson accents
   ───────────────────────────────────────────────────────────────── */

:root {
  --ink: #060912;
  --ink-2: #0b1226;
  --ink-3: #131a33;
  --ivory: #f3ecdc;
  --ivory-dim: #b8af9c;
  --bronze: #c9985a;
  --bronze-hi: #e8c98e;
  --bronze-deep: #8a6332;
  --crimson: #c8302b;
  --crimson-deep: #7a1a17;
  --blue-glow: #7ab8ff;
  --line: rgba(232, 201, 142, 0.18);
  --line-strong: rgba(232, 201, 142, 0.42);
  --serif: "Fraunces", "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter Tight", "Geist", ui-sans-serif, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }

html, body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(ellipse 1200px 800px at 30% -10%, rgba(122, 184, 255, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 1000px 700px at 90% 30%, rgba(201, 152, 90, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 1100px 900px at 10% 80%, rgba(200, 48, 43, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, #050813 0%, #0a0f1f 40%, #060912 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

/* Typography */
.serif { font-family: var(--serif); font-weight: 400; }
.sans { font-family: var(--sans); }
.mono { font-family: var(--mono); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  text-wrap: pretty;
}

p { margin: 0; text-wrap: pretty; }

/* Gold + crimson text utilities */
.gold { color: var(--bronze-hi); }
.gold-deep { color: var(--bronze); }
.crimson { color: var(--crimson); }
.muted { color: var(--ivory-dim); }
.dim { color: rgba(243, 236, 220, 0.55); }

/* Eyebrow label */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--bronze);
  opacity: 0.6;
}

/* Gold gradient text */
.gold-grad {
  background: linear-gradient(135deg, #e8c98e 0%, #c9985a 40%, #f3e3b6 70%, #a87838 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Section scaffolding */
section {
  position: relative;
  padding: clamp(80px, 12vw, 160px) clamp(24px, 6vw, 96px);
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.container.narrow { max-width: 920px; }
.container.wide { max-width: 1480px; }

/* Section divider */
.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
  max-width: 200px;
  opacity: 0.4;
}
.section-divider::before,
.section-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bronze), transparent);
}
.section-divider .diamond {
  width: 6px;
  height: 6px;
  background: var(--bronze);
  transform: rotate(45deg);
}

/* Floating particles */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--bronze-hi);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 8px var(--bronze-hi), 0 0 16px rgba(232, 201, 142, 0.4);
  animation: drift linear infinite;
}
@keyframes drift {
  0% { opacity: 0; transform: translateY(0) translateX(0); }
  10% { opacity: 0.8; }
  90% { opacity: 0.8; }
  100% { opacity: 0; transform: translateY(-120vh) translateX(40px); }
}

/* Light rays */
.light-rays {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.5;
  z-index: 1;
}
.ray {
  position: absolute;
  top: -10%;
  width: 200px;
  height: 140%;
  background: linear-gradient(180deg, transparent 0%, rgba(232, 201, 142, 0.08) 50%, transparent 100%);
  filter: blur(40px);
  transform-origin: top center;
}

/* Glassmorphism card */
.glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02) inset,
    0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }
.reveal-d4 { transition-delay: 0.48s; }
.reveal-d5 { transition-delay: 0.6s; }

/* Buttons */
.btn {
  appearance: none;
  border: none;
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-gold {
  background: linear-gradient(135deg, #e8c98e 0%, #c9985a 100%);
  color: #1a1208;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 12px 32px rgba(232, 201, 142, 0.25),
    0 0 60px rgba(232, 201, 142, 0.15);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.3) inset,
    0 18px 40px rgba(232, 201, 142, 0.35),
    0 0 80px rgba(232, 201, 142, 0.25);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--ivory);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  background: rgba(232, 201, 142, 0.08);
  border-color: var(--bronze);
}

/* Inputs */
.input, .textarea, .select {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  color: var(--ivory);
  padding: 14px 16px;
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 15px;
  transition: all 0.2s ease;
}
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--bronze);
  background: rgba(232, 201, 142, 0.05);
  box-shadow: 0 0 0 3px rgba(232, 201, 142, 0.1);
}
.textarea { resize: vertical; min-height: 100px; font-family: var(--sans); }
.label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 8px;
  font-weight: 500;
}

/* ─────────────────────────────────────────────
   OPENING / HERO
   ───────────────────────────────────────────── */

.opening {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: radial-gradient(ellipse at center, #0a0f24 0%, #050813 50%, #02030a 100%);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  transition: opacity 1.4s ease, transform 1.4s ease, visibility 0s 1.4s;
}
.opening.gone {
  opacity: 0;
  transform: scale(1.04);
  visibility: hidden;
  pointer-events: none;
}
.opening-inner {
  position: relative;
  z-index: 5;
  max-width: 900px;
}

/* Letter-by-letter reveal */
.letters {
  display: inline-block;
}
.letters .ch {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: letter-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.letters.delay-2 .ch { animation-delay: calc(var(--i) * 0.045s + 1.4s); }
.letters.delay-1 .ch { animation-delay: calc(var(--i) * 0.04s); }
@keyframes letter-in {
  to { opacity: 1; transform: translateY(0); }
}

/* Glow pulse */
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 60px rgba(232, 201, 142, 0.15), 0 0 0 1px rgba(232, 201, 142, 0.2) inset; }
  50% { box-shadow: 0 0 100px rgba(232, 201, 142, 0.3), 0 0 0 1px rgba(232, 201, 142, 0.4) inset; }
}

.crest {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(232, 201, 142, 0.15), rgba(232, 201, 142, 0.03));
  border: 1px solid rgba(232, 201, 142, 0.3);
  animation: glow-pulse 4s ease-in-out infinite;
}

/* Cap icon orbit */
.orbit {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto 48px;
  animation: spin 60s linear infinite;
}
.orbit-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(232, 201, 142, 0.2);
  border-radius: 50%;
}
.orbit-ring.r2 { inset: 20px; opacity: 0.5; }
.orbit-ring.r3 { inset: 40px; opacity: 0.3; }
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Cinematic image frame */
.cine-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(232, 201, 142, 0.2),
    0 0 0 12px rgba(0, 0, 0, 0.4),
    0 60px 120px rgba(0, 0, 0, 0.6),
    0 0 100px rgba(232, 201, 142, 0.08);
}
.cine-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
}
.cine-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 8, 19, 0.6) 100%);
  pointer-events: none;
}

/* Floating quotes / labels next to hero photo */
.hero-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze-hi);
}
.hero-tag::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--bronze);
}

/* Countdown */
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.count-cell {
  position: relative;
  padding: 32px 16px;
  text-align: center;
  border-radius: 18px;
  overflow: hidden;
}
.count-num {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(180deg, #f3e3b6 0%, #c9985a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  font-variant-numeric: tabular-nums;
}
.count-label {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}
.count-cell::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bronze), transparent);
  opacity: 0.6;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 56px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--bronze) 10%, var(--bronze) 90%, transparent);
  opacity: 0.4;
}
.timeline-item {
  position: relative;
  padding: 0 0 56px 0;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -49px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bronze);
  box-shadow: 0 0 0 5px rgba(201, 152, 90, 0.15), 0 0 20px rgba(232, 201, 142, 0.5);
}
.timeline-item.active .timeline-dot {
  animation: dot-pulse 2.4s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(201, 152, 90, 0.15), 0 0 20px rgba(232, 201, 142, 0.5); }
  50% { box-shadow: 0 0 0 12px rgba(201, 152, 90, 0.05), 0 0 40px rgba(232, 201, 142, 0.8); }
}
.timeline-year {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--bronze);
  margin-bottom: 6px;
}
.timeline-title {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 10px;
}
.timeline-body { color: var(--ivory-dim); max-width: 540px; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  grid-auto-rows: 80px;
}
.gallery-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: zoom-in;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.gallery-item:hover { transform: translateY(-4px) scale(1.01); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  filter: contrast(1.04) saturate(1.05) brightness(0.96);
}
.gallery-item:hover img { transform: scale(1.06); filter: contrast(1.06) saturate(1.1) brightness(1); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5, 8, 19, 0.7));
  pointer-events: none;
  opacity: 0.7;
}
.gallery-caption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.85;
}

/* Handwritten letter */
.letter-card {
  position: relative;
  padding: clamp(40px, 6vw, 80px);
  background:
    radial-gradient(ellipse at top left, rgba(232, 201, 142, 0.08), transparent 60%),
    linear-gradient(135deg, #faf3e2 0%, #f0e3c2 100%);
  color: #2a1f0a;
  border-radius: 6px;
  box-shadow:
    0 0 0 1px rgba(232, 201, 142, 0.5),
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 120px rgba(232, 201, 142, 0.1);
  transform: rotate(-0.6deg);
  font-family: "Caveat", "Dancing Script", "Brush Script MT", cursive;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.7;
}
.letter-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(138, 99, 50, 0.3);
  border-radius: 4px;
  pointer-events: none;
}
.letter-card p { margin: 0 0 18px; }
.letter-card .signoff {
  text-align: right;
  margin-top: 32px;
  font-size: 1.1em;
}
.letter-stamp {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 88px;
  height: 88px;
  border: 2px dashed rgba(122, 26, 23, 0.5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--crimson-deep);
  transform: rotate(-12deg);
  line-height: 1.2;
}

/* Event detail cards */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.event-card {
  padding: 28px;
  text-align: left;
}
.event-card .ec-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(232, 201, 142, 0.18), rgba(232, 201, 142, 0.04));
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--bronze-hi);
  margin-bottom: 18px;
}
.event-card .ec-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 8px;
}
.event-card .ec-value {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.25;
  color: var(--ivory);
}
.event-card .ec-meta {
  margin-top: 8px;
  font-size: 13px;
  color: var(--ivory-dim);
}

/* Map */
.map-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  height: 480px;
}
.map-frame iframe {
  width: 100%; height: 100%; border: 0;
  filter: invert(0.92) hue-rotate(180deg) brightness(0.95) saturate(0.7);
}

/* RSVP */
.rsvp-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.rsvp-opt {
  position: relative;
  padding: 18px 14px;
  text-align: center;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ivory);
}
.rsvp-opt:hover {
  border-color: var(--bronze);
  background: rgba(232, 201, 142, 0.05);
}
.rsvp-opt.active {
  border-color: var(--bronze);
  background: linear-gradient(135deg, rgba(232, 201, 142, 0.2), rgba(232, 201, 142, 0.05));
  color: var(--bronze-hi);
  box-shadow: 0 0 32px rgba(232, 201, 142, 0.2);
}
.rsvp-opt .ic { display: block; margin: 0 auto 8px; opacity: 0.9; }

/* Guestbook */
.guestbook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gb-card {
  padding: 22px 24px;
  border-radius: 16px;
  position: relative;
}
.gb-msg {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 16px;
}
.gb-from {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--ivory-dim);
}
.gb-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px;
  font-family: var(--serif);
  background: linear-gradient(135deg, var(--bronze-deep), var(--bronze));
  color: #1a1208;
}

/* Music toggle */
.music-toggle {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 12px;
  background: rgba(10, 14, 30, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ivory);
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.music-toggle:hover {
  border-color: var(--bronze);
}
.music-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
}
.music-bars span {
  width: 2px;
  background: var(--bronze-hi);
  border-radius: 1px;
  height: 4px;
  animation: none;
}
.music-toggle.on .music-bars span {
  animation: bar 0.9s ease-in-out infinite;
}
.music-toggle.on .music-bars span:nth-child(2) { animation-delay: 0.15s; }
.music-toggle.on .music-bars span:nth-child(3) { animation-delay: 0.3s; }
.music-toggle.on .music-bars span:nth-child(4) { animation-delay: 0.45s; }
@keyframes bar {
  0%, 100% { height: 4px; }
  50% { height: 14px; }
}

/* Closing */
.closing {
  text-align: center;
  position: relative;
  padding: clamp(120px, 18vw, 220px) 24px;
  overflow: hidden;
}
.closing h2 {
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

/* Footer */
footer {
  padding: 40px 24px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 236, 220, 0.35);
  border-top: 1px solid var(--line);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(2, 4, 12, 0.96);
  display: grid;
  place-items: center;
  padding: 40px;
  cursor: zoom-out;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 0 100px rgba(232, 201, 142, 0.15);
}
.lightbox .lb-close {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--ivory);
  font-size: 24px;
  cursor: pointer;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line);
}

/* Confetti */
.confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 300;
}
.confetti-piece {
  position: absolute;
  top: -20px;
  width: 8px;
  height: 14px;
  animation: fall linear forwards;
}
@keyframes fall {
  to {
    transform: translateY(110vh) rotate(720deg);
    opacity: 0;
  }
}

/* RESPONSIVE */
@media (max-width: 860px) {
  .countdown-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 60px;
  }
  .timeline { padding-left: 36px; }
  .timeline-dot { left: -30px; }
  .timeline::before { left: 7px; }
  .rsvp-options { grid-template-columns: 1fr; }
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 201, 142, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s ease;
  mix-blend-mode: screen;
}

/* Hero variations */
.hero-photo-wrap {
  position: relative;
}
.hero-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
  filter: contrast(1.05) saturate(1.05);
}
.frame-bar {
  position: absolute;
  background: var(--bronze);
  opacity: 0.85;
}

/* Specific layouts */
.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 860px) {
  .split-2 { grid-template-columns: 1fr; }
}

/* Section number marker */
.sec-num {
  display: inline-block;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--bronze);
  letter-spacing: 0.16em;
  margin-bottom: 12px;
  opacity: 0.85;
}
.sec-num::before { content: "— "; }

/* Stat / inline tag */
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze-hi);
  background: rgba(232, 201, 142, 0.04);
}
