/* ═══════════════════════════════════════════════════════════
   Phil Cyber · Black & Gold · Selling the man, not the resume
   Colors live here; change once, changes everywhere.
   ═══════════════════════════════════════════════════════════ */
:root {
  --black:      #0b0a08;
  --black-soft: #141210;
  --ink:        #f2ecdf;
  --ink-dim:    #a89f8d;
  --gold:       #d4a94e;
  --gold-soft:  rgba(212, 169, 78, 0.28);
  --gold-faint: rgba(212, 169, 78, 0.10);
  --gold-grad:  linear-gradient(115deg, #f3dd8e 0%, #d4a94e 45%, #a97c22 70%, #f0d98c 100%);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", "Segoe UI", system-ui, sans-serif;
  --max: 1010px;
}

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

html { overflow-x: clip; }

body {
  background: var(--black);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--black); }

/* ── drifting gold dust (canvas, painted by script.js) ── */
.dust {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  width: 100%; height: 100%;
}
.nav, main, .marquee, .footer, .mobile-menu { position: relative; z-index: 1; }
.nav { z-index: 100; }
.mobile-menu { z-index: 90; }

/* ── film grain overlay ── */
.grain {
  position: fixed; inset: 0; z-index: 999; pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── gold scroll progress bar (scaleX driven, GPU friendly) ── */
.progress {
  position: fixed; top: 0; left: 0; z-index: 200;
  height: 2px; width: 100%;
  background: var(--gold-grad);
  box-shadow: 0 0 12px rgba(212, 169, 78, 0.6);
  transform: scaleX(0);
  transform-origin: left;
}

/* ═══════════ TYPE ═══════════ */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); margin-bottom: 0.5em; }
h3 { font-size: 1.3rem; margin-bottom: 0.45em; }

.gold-ital {
  font-style: italic;
  /* original gold, untouched — with a glare band passing over it */
  background-image: linear-gradient(110deg, transparent 42%, rgba(255, 251, 230, 0.9) 50%, transparent 58%), var(--gold-grad);
  background-size: 260% 100%, 100% 100%;
  background-position: 200% 0, 0 0;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gold-glare 4s linear infinite;
  padding-right: 0.06em; /* italic overhang clip fix */
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 2.4rem; height: 1px;
  background: var(--gold);
  display: inline-block;
}

p { color: var(--ink-dim); max-width: 60ch; }

.section-intro { font-size: 1.05rem; margin-top: 0.6rem; }
.section-closer {
  margin-top: 2.6rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
}

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1.2rem, 4vw, 3rem);
  transition: background 0.4s, border-color 0.4s, padding 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11, 10, 8, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--gold-faint);
  padding-top: 0.8rem; padding-bottom: 0.8rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.55rem;
  text-decoration: none; color: var(--ink);
  font-family: var(--serif); font-size: 1.15rem; letter-spacing: 0.04em;
}
.logo-mark { color: var(--gold); font-size: 1rem; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  color: var(--ink-dim); text-decoration: none;
  font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-burger {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 7px; padding: 6px;
}
.nav-burger span { width: 26px; height: 1.5px; background: var(--gold); display: block; transition: transform 0.3s, opacity 0.3s; }
.nav-burger.open span:first-child { transform: translateY(4.25px) rotate(45deg); }
.nav-burger.open span:last-child  { transform: translateY(-4.25px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(11, 10, 8, 0.97);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.2rem;
  opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  color: var(--ink); text-decoration: none;
  font-family: var(--serif); font-size: 2rem;
}

/* ═══════════ BUTTONS ═══════════ */
.btn {
  display: inline-block;
  padding: 0.85rem 2.1rem;
  font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.btn-gold {
  background: var(--gold-grad);
  color: var(--black);
  font-weight: 500;
  border: none;
  padding: calc(0.85rem + 1px) calc(2.1rem + 1px);
  position: relative;
  overflow: hidden;
}
/* the 4th beat of the first second: photo, 1,6, Count, Let's Talk.
   Gold box, engraved serif letters, floating photo-frame behind. */
.btn-talk {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.05em;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0.9rem 3.4rem;
  border: none;
  background: var(--gold-grad);
  color: var(--black);
  white-space: nowrap;
  transition: box-shadow 0.35s;
}
.btn-talk span { /* the glint through the engraved letters */
  background: linear-gradient(110deg, var(--black) 40%, #8a6a1e 50%, var(--black) 60%);
  background-size: 260% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: name-shine 4s linear infinite;
}
.btn-talk::after { /* thin engraved inner line */
  content: "";
  position: absolute; inset: 5px;
  border: 1px solid rgba(11, 10, 8, 0.5);
  pointer-events: none;
}
.talk-arrow { /* the chevron chip */
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #1c1812, #0b0a08);
  border: 1px solid rgba(243, 221, 142, 0.4);
  border-radius: 4px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.65), 0 0 12px rgba(212, 169, 78, 0.25);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
}
.talk-arrow svg { width: 22px; height: 22px; }
.chev { animation: chev-march 1.5s ease-in-out infinite; }
.chev-2 { animation-delay: 0.25s; }
@keyframes chev-march {
  0%, 100% { opacity: 0.3; transform: translateX(-1.5px); }
  45%      { opacity: 1; transform: translateX(1.5px); }
}
@media (hover: hover) and (pointer: fine) {
  .btn-talk:hover .talk-arrow {
    transform: translateY(-50%) translateX(4px);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.65), 0 0 18px rgba(212, 169, 78, 0.5);
  }
}
/* hover: the front chevron flies out to escort the L, the back one
   takes the chip's center */
.talk-arrow svg, .talk-arrow { overflow: visible; }
.chev { transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), stroke 0.4s, opacity 0.4s; }
/* only on real pointers — touch taps leave :hover stuck on, which
   parked the chevron at the L and never let it home */
@media (hover: hover) and (pointer: fine) {
  .btn-talk:hover .chev { animation: none; opacity: 1; }
  .btn-talk:hover .chev-1 { transform: translateX(3.5px); }
  .btn-talk:hover .chev-2 { transform: translateX(54px); stroke: #0b0a08; }
}
/* clicking must never strand it either */
.btn-talk:active .chev-1,
.btn-talk:active .chev-2 { transform: none; }
@media (max-width: 420px) {
  .btn-talk { font-size: 1.25rem; padding: 0.85rem 2.4rem 0.85rem 3rem; }
  .talk-arrow { width: 30px; height: 30px; font-size: 1.05rem; }
}
.btn-talk::before { /* symmetric halo frame — balanced, still double-edged */
  content: "";
  position: absolute; inset: -8px;
  border: 1px solid var(--gold-soft);
  transition: inset 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s;
  pointer-events: none;
}
.btn-talk:hover {
  box-shadow: 0 0 38px rgba(212, 169, 78, 0.35), inset 0 0 22px rgba(212, 169, 78, 0.12);
}
.btn-talk:hover::before { inset: -3px; border-color: var(--gold); }

.hero-actions .btn-talk {
  align-self: stretch;
  text-align: center;
}
.hero-actions .btn-ghost {
  font-size: 0.85rem;
  padding: 0.8rem 1.6rem;
  align-self: stretch;
  text-align: center;
  margin-inline: 12px;
}

/* corner sparks on the money button */
.spark {
  position: absolute;
  font-style: normal;
  font-size: 0.72rem;
  color: #f7e7a9;
  text-shadow: 0 0 8px rgba(212, 169, 78, 0.8);
  pointer-events: none;
  animation: twinkle 2.8s ease-in-out infinite;
}
.spark.s1 { top: -9px; right: 12px; }
.spark.s2 { bottom: -8px; left: 14px; animation-delay: 1.4s; }
@keyframes twinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.6) rotate(0deg); }
  50%      { opacity: 1; transform: scale(1.2) rotate(45deg); }
}

/* the money lines shimmer forever: 1,6 · Make Them Count · Let's Talk */
.skip-num, .skip-punch {
  background: linear-gradient(110deg, var(--ink) 42%, #ffffff 50%, var(--ink) 58%);
  background-size: 260% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: name-shine 4s linear infinite;
}
@keyframes gold-glare {
  to { background-position: -100% 0, 0 0; }
}
/* hero gold words get extra tonal stops so every letter has texture,
   especially the tail letters (the d of Second) */
.hero h1 .gold-ital {
  background-image:
    linear-gradient(110deg, transparent 42%, rgba(255, 251, 230, 0.9) 50%, transparent 58%),
    linear-gradient(115deg, #f3dd8e 0%, #d4a94e 28%, #a97c22 50%, #f0d98c 64%, #c89638 78%, #f3dd8e 90%, #cfa040 100%);
  padding-right: 0.16em; /* italic d overhangs further at hero size */
  margin-right: -0.16em;
}
.btn-talk { animation: talk-breathe 4s ease-in-out infinite; }
@keyframes talk-breathe {
  0%, 100% { box-shadow: 0 0 14px rgba(212, 169, 78, 0.12); }
  50%      { box-shadow: 0 0 34px rgba(212, 169, 78, 0.30); }
}
@media (prefers-reduced-motion: reduce) {
  .skip-num, .skip-punch, .gold-ital, .btn-talk, .btn-talk span, .spark, .chev { animation: none; }
}
.btn-gold::after { /* sheen sweep */
  content: "";
  position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn-gold:hover::after { left: 130%; }
.btn-gold:hover { box-shadow: 0 0 34px rgba(212, 169, 78, 0.35); transform: translateY(-2px); }
.btn-ghost { color: var(--gold); }
.btn-ghost:hover { background: var(--gold-faint); }
.btn-big { font-size: 0.95rem; padding: 1.15rem 2.9rem; }

.gold-link {
  color: var(--gold); text-decoration: none;
  font-size: 0.95rem; letter-spacing: 0.06em;
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 3px;
  transition: border-color 0.3s;
  display: inline-block;
  margin-top: 1.4rem;
}
.gold-link:hover { border-color: var(--gold); }
.gold-link.inline { margin-top: 0; font-size: inherit; }

/* ── FOMO line ── */
.fomo {
  margin-top: 1.8rem;
  font-size: 0.88rem;
  display: flex; align-items: baseline; gap: 0.7rem;
  max-width: 46ch;
}
.fomo-dot {
  flex: none;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(212, 169, 78, 0.6);
  animation: pulse 2s infinite;
  transform: translateY(-1px);
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(212, 169, 78, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(212, 169, 78, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 169, 78, 0); }
}
.reply-note { font-size: 0.85rem; margin-top: 0.9rem; font-style: italic; }

/* pre-CTA tease line */
.tease {
  font-family: var(--serif); font-style: italic;
  font-size: 1.05rem;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-top: 2rem; margin-bottom: 0.4rem;
  max-width: 48ch;
}
.contact .tease { margin-left: auto; margin-right: auto; }

/* ═══════════ HERO ═══════════ */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 7.5rem clamp(1.2rem, 4vw, 3rem) 4rem;
  position: relative;
  max-width: var(--max); margin: 0 auto;
}
.hero-glow {
  position: absolute; top: 12%; right: 0;
  width: min(640px, 70vw); height: 480px;
  background: radial-gradient(ellipse at center, rgba(212, 169, 78, 0.14) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
/* the 1,6 second stack */
.skip-num {
  display: block;
  font-size: clamp(3.4rem, 9vw, 7rem);
  line-height: 1;
}
.skip-caption {
  display: flex; align-items: center; gap: 1rem;
  font-family: var(--sans);
  font-size: 0.8rem; font-weight: 300;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--ink-dim);
  margin: 1.3rem 0 1.6rem;
}
.skip-caption::before, .skip-caption::after {
  content: "";
  height: 1px; width: 2.6rem;
  background: var(--gold-soft);
  display: inline-block;
}
.skip-punch {
  display: block;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.1;
}

.hero-sub { margin-top: 1.6rem; font-size: 1.08rem; }
.hero-actions {
  margin-top: 2.4rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-photo { position: relative; max-width: 430px; justify-self: end; }
.hero-photo img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  display: block;
  border: 1px solid var(--gold-soft);
  position: relative; z-index: 1;
  filter: saturate(1.04) contrast(1.02);
  will-change: transform;
}
.photo-frame {
  position: absolute; inset: 0;
  border: 1px solid var(--gold);
  transform: translate(16px, 16px);
  z-index: 0;
}

/* hover: Phil's photos get the golden treatment too */
.hero-photo img, .me-photo img { transition: border-color 0.5s, box-shadow 0.5s; }
.hero-photo::after, .me-photo::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 38%, rgba(243, 221, 142, 0.22) 50%, transparent 62%);
  background-size: 260% 100%;
  background-position: 200% 0;
  background-repeat: no-repeat;
}
.hero-photo:hover::after, .me-photo:hover::after {
  animation: photo-sheen 1.3s ease forwards;
}
@keyframes photo-sheen {
  from { background-position: 200% 0; }
  to   { background-position: -100% 0; }
}
.hero-photo:hover img, .me-photo:hover img {
  border-color: #f3dd8e;
  box-shadow: 0 0 36px rgba(212, 169, 78, 0.28);
}

.scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); }
.scroll-line {
  display: block; width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: drip 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes drip {
  0%   { transform: scaleY(0); opacity: 0; }
  35%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ═══════════ MARQUEE ═══════════ */
.marquee {
  border-top: 1px solid var(--gold-faint);
  border-bottom: 1px solid var(--gold-faint);
  overflow: hidden;
  padding: 1.1rem 0;
  background: var(--black-soft);
}
.marquee-track {
  display: flex; width: max-content;
  animation: scroll-x 30s linear infinite;
}
.marquee-track span {
  font-family: var(--serif);
  font-size: 1.05rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  opacity: 0.85;
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════ SECTIONS ═══════════ */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(6.5rem, 15vh, 11rem) clamp(1.2rem, 4vw, 3rem);
  position: relative;
}

/* full-bleed ambient backgrounds that shift per section */
.section::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: calc(50% - 50vw); right: calc(50% - 50vw);
  z-index: -1;
  pointer-events: none;
}
#me::before {
  background-image: radial-gradient(rgba(212, 169, 78, 0.06) 1px, transparent 1.5px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(75% 70% at 50% 40%, #000, transparent 78%);
  mask-image: radial-gradient(75% 70% at 50% 40%, #000, transparent 78%);
}
#gameplan::before {
  background: repeating-linear-gradient(115deg, rgba(212, 169, 78, 0.024) 0 1px, transparent 1px 90px);
}
#contact::before {
  background: radial-gradient(60% 55% at 50% 60%, rgba(212, 169, 78, 0.07), transparent 72%);
}

/* ═══════════ ME ═══════════ */
.me { padding-top: clamp(8rem, 18vh, 13rem); padding-bottom: clamp(8rem, 18vh, 13rem); }
.me-eyebrow { justify-content: center; margin-bottom: 1.2rem; }
.me-title {
  text-align: center;
  margin-bottom: clamp(4rem, 9vh, 6.5rem);
}
.me-grid {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: clamp(2.2rem, 5vw, 4rem);
  align-items: start;
}
.me-photo { position: relative; margin-top: 0.5rem; }
.me-photo img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: top;
  display: block;
  border: 1px solid var(--gold-soft);
  position: relative; z-index: 1;
}
.me-line {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 1.4rem;
  max-width: 46ch;
  position: relative;
}
.me-line::after {
  content: "✦";
  display: block;
  color: var(--gold-soft);
  font-size: 0.5rem;
  margin-top: 0.7rem;
}
/* the muttered aside — said half under the breath */
.me-line .aside {
  font-style: italic;
  font-size: 0.9em;
  color: var(--ink-dim);
  opacity: 0.85;
}
.me-line:last-of-type { margin-bottom: 2.8rem; }
.me-line:last-of-type::after { content: none; }
.me-line:first-of-type::first-letter {
  font-size: 3.1em;
  line-height: 0.85;
  float: left;
  padding-right: 0.12em;
  font-style: italic;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.mantra {
  border-left: 2px solid var(--gold);
  background: linear-gradient(90deg, var(--gold-faint), transparent 70%);
  padding: 1.4rem 1.8rem;
  margin-top: 1.8rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.5s, border-color 0.5s;
}
/* hover: the oath turns gold and prestigious */
.mantra::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(243, 221, 142, 0.16) 50%, transparent 70%);
  transform: translateX(-130%);
  pointer-events: none;
}
.mantra:hover {
  border-left-color: #f3dd8e;
  box-shadow: 0 0 34px rgba(212, 169, 78, 0.22), inset 0 0 24px rgba(212, 169, 78, 0.06);
}
.mantra:hover::before {
  animation: oath-sheen 1.4s ease forwards;
}
@keyframes oath-sheen {
  to { transform: translateX(130%); }
}
.mantra:hover p { color: #f3dd8e; }
.mantra p { transition: color 0.6s; }
/* label crossfades between its two truths */
.mantra-label { position: relative; display: block; min-height: 1.3em; }
.mantra-label::before, .mantra-label::after {
  position: absolute; left: 0; top: 0;
  white-space: nowrap;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
/* the witness line is long — let it breathe on small screens */
@media (max-width: 660px) {
  .mantra-label { min-height: 2.6em; }
  .mantra-label::before, .mantra-label::after {
    white-space: normal;
    width: 100%;
    letter-spacing: 0.14em;
  }
}
.mantra-label::before {
  content: attr(data-idle);
  opacity: 1;
  transform: translateY(0);
}
.mantra-label::after {
  content: attr(data-hover);
  opacity: 0;
  transform: translateY(8px);
}
.mantra:hover .mantra-label::before {
  opacity: 0;
  transform: translateY(-8px);
}
.mantra:hover .mantra-label::after {
  opacity: 1;
  transform: translateY(0);
}
.mantra-label {
  display: block;
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.mantra p {
  font-family: var(--serif); font-style: italic;
  font-size: 1.3rem; line-height: 1.5;
  color: var(--ink);
}

/* the home team — lives under the ME photo */
.me-side { display: flex; flex-direction: column; gap: 2rem; }
.crew { margin-top: 0; margin-bottom: 1.2rem; }
.crew .eyebrow { margin-bottom: 1.8rem; }
.crew-row {
  display: flex; align-items: center; gap: 1.2rem;
  margin-bottom: 1.8rem;
}
.crew-row:last-child { margin-bottom: 0; }
.crew-ring {
  width: 80px; height: 80px;
  flex: none;
  box-shadow: 0 0 0 4px var(--gold-faint), 0 8px 22px rgba(0, 0, 0, 0.4);
}
.crew-row:hover .crew-ring {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-faint), 0 0 26px rgba(212, 169, 78, 0.35);
}
.crew-row figcaption strong {
  display: block;
  font-family: var(--serif); font-weight: 400;
  font-size: 1.02rem; color: var(--ink);
  margin-bottom: 0.15rem;
}
.crew-row figcaption span { font-size: 0.8rem; color: var(--ink-dim); line-height: 1.5; display: block; }

/* mentors footer inside ME */
.mentors-footer {
  margin-top: clamp(4.5rem, 9vh, 7rem);
  padding-top: clamp(3rem, 6vh, 4.5rem);
  border-top: 1px solid var(--gold-faint);
}
.mentors-title { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 0.6rem; }
.mentors-intro { font-size: 1.02rem; }

/* receipts strip */
.receipts {
  margin-top: 3rem;
  border: 1px solid var(--gold-faint);
  background: var(--black-soft);
  padding: 1.8rem 2rem;
}
.receipts-intro {
  font-family: var(--serif); font-style: italic;
  color: var(--ink);
  font-size: 1.35rem;
  margin-bottom: 1.3rem;
}
.receipts ul { list-style: none; }
.receipts li {
  font-size: 1.05rem;
  color: var(--ink-dim);
  padding: 0.6rem 0 0.6rem 1.5rem;
  position: relative;
}
.receipts li::before {
  content: "✦";
  position: absolute; left: 0; top: 0.75rem;
  color: var(--gold);
  font-size: 0.75rem;
}
.receipts li strong { color: var(--ink); font-weight: 500; }
.result-arrow {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding: 0 0.15em;
}

/* ═══════════ MENTOR / CREW BUBBLES ═══════════ */
.bubbles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 2.4rem 1.6rem;
  margin-top: 3rem;
  text-align: center;
}
.bubble { display: flex; flex-direction: column; align-items: center; }
.bubble-ring {
  width: 128px; height: 128px;
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
  box-shadow: 0 0 0 6px var(--gold-faint), 0 10px 30px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 35% 30%, rgba(212, 169, 78, 0.16), transparent 70%), var(--black-soft);
  display: flex; align-items: center; justify-content: center;
  animation: bob var(--bob, 6.5s) ease-in-out infinite;
  transition: border-color 0.35s, box-shadow 0.35s;
}
.bubble:hover .bubble-ring {
  border-color: var(--gold);
  box-shadow: 0 0 0 6px var(--gold-faint), 0 0 34px rgba(212, 169, 78, 0.35);
}
/* mentor bubbles link to LinkedIn — badge shows on hover */
.bubble-link { position: relative; display: block; text-decoration: none; }
.bubble-link::after {
  content: "in";
  position: absolute; bottom: 4px; right: 4px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans); font-weight: 700; font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.bubble-link:hover::after, .bubble-link:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}
.bubble-ring img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* hover: bubbles grow, faces zoom, names turn to liquid gold */
.bubble-link { transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1); }
.bubble-link:hover { transform: scale(1.08); }
.crew-row .crew-ring { transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1); }
.crew-row:hover .crew-ring { animation: none; transform: scale(1.1); }
.bubble-link:hover img,
.crew-row:hover .crew-ring img { transform: scale(1.16); }

.bubble figcaption strong, .crew-row figcaption strong { transition: color 0.3s; }
.bubble:hover figcaption strong,
.crew-row:hover figcaption strong {
  background: linear-gradient(110deg, #d4a94e 25%, #f7e7a9 50%, #d4a94e 75%);
  background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: name-shine 1.5s linear infinite;
}
@keyframes name-shine {
  from { background-position: 200% 0; }
  to   { background-position: -100% 0; }
}
.bubble figcaption span, .crew-row figcaption span { transition: color 0.4s; }
.bubble:hover figcaption span,
.crew-row:hover figcaption span { color: var(--ink); }
.bubble-initials {
  font-family: var(--serif); font-style: italic;
  font-size: 2rem;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}
.bubble figcaption { margin-top: 1.2rem; max-width: 22ch; }
.bubble figcaption strong {
  display: block;
  font-family: var(--serif); font-weight: 400;
  font-size: 1.08rem; color: var(--ink);
  margin-bottom: 0.3rem;
}
.bubble figcaption span { font-size: 0.82rem; color: var(--ink-dim); line-height: 1.55; display: block; }

/* pop-in variant of reveal, for bubbles */
.pop {
  transform: scale(0.55) translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pop.visible { transform: none; }

/* ═══════════ THE WORK · poker hand ═══════════ */
.hand {
  display: flex;
  justify-content: center;
  margin-top: 4.5rem;
  padding: 1rem 0 2rem;
}
.pcard {
  width: 236px;
  aspect-ratio: 5 / 7;
  margin: 0 -36px;
  transform: rotate(var(--rot)) translateY(var(--ty));
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), z-index 0s;
  perspective: 1200px;
  cursor: pointer;
  outline: none;
}
.pcard:hover, .pcard:focus-visible, .pcard.flipped {
  transform: rotate(var(--rot)) translateY(calc(var(--ty) - 26px)) scale(1.07);
  z-index: 10;
}
.pcard-inner {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
}
.pcard:hover .pcard-inner, .pcard:focus-visible .pcard-inner, .pcard.flipped .pcard-inner {
  transform: rotateY(180deg);
}
.pcard-face {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border: 1px solid var(--gold-soft);
  background: var(--black-soft);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  border-radius: 12px;
  overflow: hidden;
}
.pcard-front::after { /* inner frame, like a real card */
  content: "";
  position: absolute; inset: 9px;
  border: 1px solid var(--gold-faint);
  border-radius: 7px;
  pointer-events: none;
}
.pcard-front {
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(212, 169, 78, 0.10), transparent 65%),
    var(--black-soft);
}
.pcard-index {
  position: absolute; top: 14px; left: 16px;
  font-family: var(--serif);
  font-size: 1.15rem; line-height: 1.05;
  color: var(--gold);
  text-align: center;
}
.pcard-index i { display: block; font-style: normal; font-size: 0.95rem; }
.flip-index { top: auto; left: auto; bottom: 14px; right: 16px; transform: rotate(180deg); }
.pcard-center { text-align: center; padding: 0 1.4rem; }
.pcard-no {
  font-family: var(--serif); font-style: italic;
  font-size: 0.85rem; color: var(--gold);
  display: block; margin-bottom: 0.7rem;
}
.pcard-center h3 {
  font-size: 1.45rem; line-height: 1.15;
  margin-bottom: 0.9rem;
}
.pcard-tag {
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-dim);
}
.pcard-back {
  transform: rotateY(180deg);
  padding: 1.5rem 1.3rem;
  display: flex; flex-direction: column;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(212, 169, 78, 0.08), transparent 60%),
    var(--black-soft);
}
.pcard-angle {
  font-family: var(--serif); font-style: italic;
  font-size: 0.88rem; line-height: 1.45;
  color: var(--ink);
  margin-bottom: 0.9rem;
}
.pcard-detail { font-size: 0.72rem; line-height: 1.5; margin-bottom: 0.7rem; }
.pcard-detail strong { color: var(--gold); font-weight: 500; }
.pcard-chips {
  margin-top: auto;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  border-top: 1px solid var(--gold-faint);
  padding-top: 0.7rem;
}
.hand-hint {
  text-align: center;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-dim);
  margin: 1.6rem auto 0;
}

/* ═══════════ FROM THE DECK TO THE TABLE ═══════════ */
.table-felt { margin-top: clamp(4rem, 8vh, 6rem); text-align: center; }
.table-felt .eyebrow { justify-content: center; }
.felt-intro {
  font-family: var(--serif); font-style: italic;
  font-size: 1.1rem; color: var(--ink-dim);
  margin: 0.6rem 0 2.4rem;
}
.ad-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 2.2rem 1.8rem;
}
.ad-frame {
  position: relative;
  display: block; width: 100%;
  padding: 0; border: 1px solid var(--gold-soft);
  background: var(--black-soft);
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
}
.ad-frame::after { /* the offset gold frame, house signature */
  content: "";
  position: absolute; inset: 0;
  border: 1px solid var(--gold-soft);
  transform: translate(10px, 10px);
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}
.ad-frame img { display: block; width: 100%; height: auto; }
.ad-frame:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 34px rgba(212, 169, 78, 0.25);
}
.ad-frame:hover::after { transform: translate(5px, 5px); }
.xray { /* the strategist's glass */
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 1.4rem;
  background: rgba(11, 10, 8, 0.9);
  color: var(--ink);
  font-size: 0.85rem; line-height: 1.75;
  text-align: left;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.xray strong { color: var(--gold); font-weight: 600; }
.xray em {
  display: block; margin-top: 0.8rem;
  font-family: var(--serif); color: var(--gold);
  font-size: 0.92rem;
}
@media (hover: hover) and (pointer: fine) {
  .ad-frame:hover .xray { opacity: 1; }
}
.ad-piece figcaption {
  margin-top: 1.1rem;
  font-size: 0.82rem; color: var(--ink-dim);
}
.ad-piece figcaption i { opacity: 0.75; }
.mustache-line {
  margin-top: 2.4rem;
  font-family: var(--serif); font-style: italic;
  font-size: 0.95rem; color: var(--ink-dim);
}

/* the lightbox: museum viewing room */
.lightbox {
  position: fixed; inset: 0;
  z-index: 120;
  display: flex; align-items: center; justify-content: center;
  background: rgba(5, 4, 3, 0.94);
  cursor: zoom-out;
  padding: 3vh 3vw;
}
.lightbox[hidden] { display: none; } /* display:flex must not beat the hidden attribute */
.lightbox img {
  max-width: 94vw; max-height: 94vh;
  border: 1px solid var(--gold);
  box-shadow: 0 0 60px rgba(212, 169, 78, 0.25);
}

/* live rounds — hooks written for this page */
.hooks-live {
  max-width: 660px;
  margin: 4.5rem auto 0;
  text-align: center;
}
.hooks-live .eyebrow { justify-content: center; }
.hooks-intro {
  font-size: 0.95rem;
  color: var(--ink-dim);
  line-height: 1.6;
  margin-bottom: 2.2rem;
}
.hook-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 1.6rem;
}
.hook-line::after {
  content: "✦";
  display: block;
  color: var(--gold-soft);
  font-size: 0.5rem;
  margin-top: 1.4rem;
}
.hook-line:last-of-type::after { content: none; }
#work .section-closer { text-align: center; margin-left: auto; margin-right: auto; }
#work::before {
  background: radial-gradient(55% 50% at 50% 55%, rgba(212, 169, 78, 0.06), transparent 70%);
}

@media (max-width: 860px) {
  .hand { flex-wrap: wrap; gap: 1.6rem; }
  .pcard { margin: 0; transform: none; }
  .pcard:hover, .pcard:focus-visible, .pcard.flipped { transform: translateY(-8px) scale(1.03); }
}

/* ═══════════ CARDS (gameplan) ═══════════ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 1.7rem;
  margin-top: 3.6rem;
}
.cards-2 { grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); }
.card {
  border: 1px solid var(--gold-faint);
  background: var(--black-soft);
  padding: 2.6rem 2.2rem;
  position: relative;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-soft);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}
.card-num {
  font-family: var(--serif); font-style: italic;
  font-size: 1.25rem; color: var(--gold);
  display: block; margin-bottom: 1.6rem;
}
.card-num::after {
  content: ""; display: block; width: 2rem; height: 1px;
  background: var(--gold-soft); margin-top: 0.7rem;
}
.card p { font-size: 0.95rem; }

/* ═══════════ STEPS (the bet) ═══════════ */
.steps { list-style: none; margin-top: 3rem; }
.step {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.6rem;
  padding: 2.7rem 0;
  border-top: 1px solid var(--gold-faint);
}
.step:last-child { border-bottom: 1px solid var(--gold-faint); }
.step-num {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.step p { font-size: 0.98rem; }

/* ═══════════ THE BET ═══════════ */
.bet-inner {
  border: 1px solid var(--gold-soft);
  background:
    radial-gradient(ellipse at top right, rgba(212, 169, 78, 0.08), transparent 60%),
    var(--black-soft);
  padding: clamp(2.4rem, 6vw, 4.5rem);
}
.bet-head {
  display: grid;
  grid-template-columns: 1fr minmax(150px, 210px);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.syrup { text-align: center; }
.syrup svg {
  width: 100%; max-width: 210px;
  filter: drop-shadow(0 0 24px rgba(212, 169, 78, 0.18));
}
.syrup figcaption {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 0.6rem;
}
@media (max-width: 700px) {
  .bet-head { grid-template-columns: 1fr; }
  .syrup { order: -1; }
  .syrup svg { max-width: 150px; }
}
.bet-steps { margin-top: 2.4rem; }
.bet-steps .step-num { font-size: clamp(1.2rem, 2.2vw, 1.6rem); }
.thebet .btn-big { margin-top: 2rem; }

/* CTA row: button left, certified bottle right */
.bet-cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.syrup-mini { max-width: 200px; text-align: center; }
.syrup-mini img {
  width: 100%; max-width: 170px;
  display: inline-block;
  border: 1px solid var(--gold-soft);
  border-radius: 6px;
  box-shadow: 0 0 28px rgba(212, 169, 78, 0.18), 0 12px 30px rgba(0, 0, 0, 0.5);
}
.syrup-mini figcaption {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: none;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink-dim);
  margin-top: 0.4rem;
}

/* ═══════════ CONTACT ═══════════ */
.contact { text-align: center; }
.contact-inner { display: flex; flex-direction: column; align-items: center; }
.contact .eyebrow { justify-content: center; }
.contact .eyebrow::after { content: ""; width: 2.4rem; height: 1px; background: var(--gold); }
.contact p { margin: 1.2rem 0 0; }
.contact .btn-big { margin-top: 2.2rem; }
.contact .pdf-btn { margin-top: 1.1rem; }
.contact .fomo { justify-content: center; }
.socials { margin-top: 2.6rem; display: flex; gap: 1.1rem; align-items: center; flex-wrap: wrap; justify-content: center; }
.socials a {
  color: var(--ink-dim); text-decoration: none;
  font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase;
  transition: color 0.25s;
}
.socials a:hover { color: var(--gold); }
.socials .dot { color: var(--gold); font-size: 0.6rem; }

/* ═══════════ FOOTER ═══════════ */
.footer {
  border-top: 1px solid var(--gold-faint);
  padding: 2rem clamp(1.2rem, 4vw, 3rem);
  text-align: center;
}
.footer p { font-size: 0.8rem; margin: 0 auto; letter-spacing: 0.06em; }

/* the suspicious empty spot — hovering above Phil's head, where it belongs */
.unhinged-spot {
  position: absolute;
  top: -44px;
  left: 0;
  width: 100%; height: 96px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  z-index: 3;
}
.unhinged-toast {
  position: absolute;
  bottom: calc(100% + 12px); /* fully above the photo, never over the face */
  left: 50%;
  z-index: 5;
  background: var(--black-soft);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 1.1rem 1.4rem;
  text-align: center;
  width: max-content;
  max-width: min(360px, 92vw);
  box-shadow: 0 0 34px rgba(212, 169, 78, 0.22), 0 18px 40px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translate(-50%, 10px) scale(0.92);
  transform-origin: bottom center;
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.unhinged-toast.show { opacity: 1; transform: translate(-50%, 0) scale(1); }
.unhinged-toast p {
  font-family: var(--serif); font-style: italic;
  font-size: 1.05rem; color: var(--ink);
  margin-bottom: 0.4rem;
}
.unhinged-toast span { display: block; font-size: 0.78rem; color: var(--gold); letter-spacing: 0.08em; }
.unhinged-toast .toast-love {
  margin-top: 0.3rem;
  font-family: var(--serif); font-style: italic;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
}

/* ═══════════ THE BASEMENT (off the books) ═══════════ */
#basement {
  position: relative;
  z-index: 1;
  background: linear-gradient(#0b0a08, #050403 12%, #030202);
  text-align: center;
  overflow: hidden;
}
.b-room {
  min-height: 92vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 4rem clamp(1.2rem, 5vw, 3rem);
  background: radial-gradient(46% 38% at 50% 8%, rgba(212, 169, 78, 0.13), transparent 70%);
  /* plays the moment the floor gives way and the room first renders */
  animation: b-arrive 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes b-arrive {
  from { opacity: 0; transform: translateY(46px) scale(0.985); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .b-room { animation: none; }
}
.b-eyebrow {
  font-size: 0.78rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}
.b-title { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 2rem; }
.b-copy {
  max-width: 34em;
  color: var(--ink-dim);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.75;
  margin: 0 auto 1.4rem;
}
.b-gold { color: var(--gold); font-weight: 500; }
.b-whisper {
  margin-top: 2.2rem;
  font-family: var(--serif); font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-dim);
  opacity: 0.8;
}
.b-gap { height: 1300vh; }
.b-gap-last { height: 1700vh; }
.b-taunt {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.2;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding: 0 1.2rem;
}
.b-bedrock {
  padding: 6rem clamp(1.2rem, 5vw, 3rem) 7rem;
  background: radial-gradient(50% 45% at 50% 100%, rgba(212, 169, 78, 0.08), transparent 70%);
}
.b-bedrock .b-taunt { margin-bottom: 1.6rem; }
.b-bedrock .btn { margin-top: 1.8rem; }
.b-ps { margin-top: 3.5rem; }

/* the sub-basement — below bedrock there is only CJ */
#basement2 {
  position: relative;
  z-index: 1;
  background: linear-gradient(#030202, #000);
  text-align: center;
  overflow: hidden;
}
.b2-room {
  background: radial-gradient(42% 34% at 50% 12%, rgba(212, 169, 78, 0.10), transparent 70%);
}
.b2-line { margin-bottom: 2.4rem; }
.b2-gif {
  max-width: min(340px, 80vw);
  border: 1px solid var(--gold-soft);
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(212, 169, 78, 0.16), 0 18px 44px rgba(0, 0, 0, 0.6);
  margin-bottom: 2rem;
}
#dust { transition: opacity 0.9s ease; }

/* ═══════════ REVEAL ANIMATION ═══════════ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .scroll-line { animation: none; }
  .fomo-dot { animation: none; }
  .bubble-ring { animation: none; }
  .dust { display: none; }
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero { padding-top: 6.5rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { justify-self: start; max-width: 340px; }
  .me-grid { grid-template-columns: 1fr; }
  .me-photo { max-width: 320px; }
  .step { grid-template-columns: 3.4rem 1fr; }
  .scroll-hint { display: none; }
}
