/* =========================================================
   The Magic of Jen Kramer — stylesheet
   Palette derived from the Westgate Las Vegas admat:
   deep aubergine, violet, chrome-teal accent, Westgate gold.
   ========================================================= */

:root {
  /* core palette */
  --ink:        #0b0410;   /* near-black violet */
  --plum-950:   #120626;
  --plum-900:   #1a0a2e;
  --plum-800:   #24103f;
  --purple-700: #4a1a86;
  --purple-600: #6a25b8;
  --purple-500: #8b3fd4;
  --violet-400: #a865e8;
  --magenta:    #d6328a;
  --cyan:       #46e0e8;   /* chrome accent — used sparingly */

  --gold:       #d4af37;
  --gold-soft:  #ecd9a0;
  --gold-deep:  #b8932b;

  --cream:      #f6f1fb;
  --text:       #ece6f4;
  --muted:      #b6a6cf;
  --muted-dim:  #8d7caa;
  --line:       rgba(212,175,55,.22);

  --maxw: 1200px;
  --pad: clamp(1.25rem, 5vw, 4rem);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  --script: 'Cormorant Garamond', serif;

  --ease: cubic-bezier(.22,.61,.36,1);
  --shadow: 0 30px 80px -30px rgba(0,0,0,.75);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* overflow-x: clip (not hidden) — hidden lets iOS Safari pan the page
   sideways to reveal clipped-away content (the wide ticker tracks) and the
   page sticks off-center; clip forbids horizontal scrolling entirely */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--ink);
  font-size: 1.06rem;
  line-height: 1.72;
  font-weight: 400;
  overflow-x: hidden; /* fallback for browsers without clip */
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--gold); color: var(--ink); padding: .75rem 1.25rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* visually hidden, still read by screen readers */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }

/* consistent, high-contrast keyboard focus indicator on the dark theme */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------- shared type ---------- */
.eyebrow {
  font-size: .84rem; letter-spacing: .38em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 1.2rem;
}
.eyebrow--center { text-align: center; }
.eyebrow--lg { font-size: clamp(1.15rem, 2.6vw, 1.7rem); letter-spacing: .22em; }

.display {
  font-family: var(--serif); font-weight: 600; line-height: 1.16;
  font-size: clamp(2.3rem, 5.1vw, 3.7rem); color: var(--cream);
  letter-spacing: 0;
}
.display--center { text-align: center; margin-inline: auto; max-width: 18ch; }
@media (min-width: 768px) { .display--oneline { max-width: none; white-space: nowrap; } }

.lead { font-size: clamp(1.08rem, 1.55vw, 1.26rem); color: var(--text); margin-bottom: 1.6rem; font-weight: 400; line-height: 1.7; }
p { color: var(--muted); margin-bottom: 1.4rem; }
strong { color: var(--text); font-weight: 500; }
em { color: inherit; font-style: italic; }            /* calm: italic only, no gold noise */
.display + .lead, .display + p { margin-top: 1.5rem; } /* air between heading and body */
/* comfortable reading measure for long-form copy */
.intro__text p, .contact__intro p { max-width: 36rem; }

.section { padding: clamp(3.5rem, 7vw, 6rem) var(--pad); max-width: var(--maxw); margin-inline: auto; }
.section__head { text-align: center; margin-bottom: clamp(2rem, 4.5vw, 3.25rem); }
.section__sub { max-width: 56ch; margin: 1rem auto 0; color: var(--muted); }
.reel .section__sub { max-width: none; }
.intro__text strong { font-weight: 600; color: var(--cream); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem; justify-content: center;
  padding: .95rem 2rem; border-radius: 100px; font-weight: 600; font-size: .92rem;
  letter-spacing: .14em; text-transform: uppercase;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s;
  white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 45%, var(--gold-deep));
  color: #2a1c05; box-shadow: 0 10px 30px -10px rgba(212,175,55,.55);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(212,175,55,.7); }
.btn--ghost {
  border: 1px solid rgba(246,241,251,.35); color: var(--cream);
  background: rgba(255,255,255,.07);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-soft); transform: translateY(-3px); }
.btn--full { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem; color: var(--gold-soft);
  font-weight: 500; font-size: .92rem; letter-spacing: .02em; margin-top: .5rem;
}
.link-arrow span { transition: transform .3s var(--ease); }
.link-arrow:hover span { transform: translateX(5px); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
/* Hero must paint immediately (LCP): image shows instantly, copy uses a CSS-driven
   entrance that starts at load instead of waiting for JS scroll-reveal. */
.hero .reveal { opacity: 1; transform: none; transition: none; }
.hero__copy .reveal { animation: heroIn .7s var(--ease) backwards; }
.hero__copy .reveal:nth-child(2) { animation-delay: .12s; }
.hero__copy .reveal:nth-child(3) { animation-delay: .24s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .hero__copy .reveal { animation: none; } }
/* Failsafe: if JS is disabled/slow, never hide content */
.no-js .reveal { opacity: 1; transform: none; }
/* no-JS: the <noscript> native video replaces the JS-driven poster/play button */
.no-js .reel__poster, .no-js .reel__play { display: none; }
/* no-JS: static gallery grid */
.gallery__nojs { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.gallery__nojs img { width: 100%; height: auto; border-radius: 10px; display: block; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), backdrop-filter .4s, box-shadow .4s, padding .4s;
  padding: 1.5rem 0;
}
.nav.scrolled {
  background: rgba(11,4,16,.82); backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--line); padding: .85rem 0;
}
.nav__inner {
  max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad);
  display: flex; align-items: center; justify-content: space-between; position: relative;
}
.nav__brand { display: flex; align-items: center; gap: .7rem; z-index: 2; }
.nav__logo { height: 46px; width: auto; display: block; transition: height .4s var(--ease); }
.nav.scrolled .nav__logo { height: 40px; }
.nav__links {
  display: flex; align-items: center; gap: 2.2rem;
}
.nav__links a { font-size: .92rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text); font-weight: 500; transition: color .3s; position: relative; }
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0; background: var(--gold); transition: width .35s var(--ease);
}
.nav__links a:hover { color: var(--gold-soft); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  z-index: 2; border: 1px solid var(--gold); color: var(--gold-soft); padding: .6rem 1.4rem; border-radius: 100px;
  font-weight: 500; font-size: .9rem; letter-spacing: .16em; text-transform: uppercase;
  transition: background .3s, color .3s;
}
.nav__cta:hover { background: var(--gold); color: var(--ink); }

.nav__toggle { display: none; width: 30px; height: 22px; position: relative; }
.nav__toggle::before { content: ''; position: absolute; inset: -11px -7px; } /* 44x44 tap target */
.nav__toggle span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--cream); transition: .35s var(--ease); }
.nav__toggle span:nth-child(1) { top: 0; }
.nav__toggle span:nth-child(2) { top: 10px; }
.nav__toggle span:nth-child(3) { top: 20px; }
.nav__toggle.open span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: rgba(11,4,16,.97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 1.8rem; text-align: center; }
.mobile-menu a { font-family: var(--serif); font-size: 1.8rem; color: var(--cream); }
.mobile-menu .nav__cta { font-family: var(--sans); font-size: 1rem; align-self: center; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 84vh; min-height: 84svh; overflow: hidden; display: flex; align-items: center;
  padding: 6rem 0 3.5rem;
  background:
    radial-gradient(70% 65% at 72% 46%, rgba(123,44,191,.28), transparent 62%),
    linear-gradient(180deg, #160827 0%, var(--plum-950) 56%, var(--ink) 100%);
}
.hero__glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(38% 48% at 70% 46%, rgba(168,101,232,.20), transparent 72%);
  filter: blur(20px);
}
.hero__inner {
  position: relative; z-index: 2; width: 100%; max-width: var(--maxw);
  margin-inline: auto; padding-inline: var(--pad);
  display: grid; grid-template-columns: 1fr 1.4fr; align-items: center; gap: clamp(1rem, 3vw, 2.5rem);
}
.hero__copy { max-width: 30rem; container-type: inline-size; text-align: center; }
/* eyebrow + name live inside the single h1 as stacked spans */
.hero__eyebrow, .hero__title { display: block; }
.hero__eyebrow {
  font-family: var(--sans);
  font-size: .92rem; /* fallback for browsers without container-query units */
  font-size: min(.92rem, 3.4cqi); letter-spacing: .24em; text-transform: uppercase;
  white-space: nowrap;
  color: var(--gold); font-weight: 500; margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--serif); font-style: italic; font-weight: 600;
  font-size: clamp(2.6rem, 7.5vw, 5.2rem); /* fallback for browsers without container-query units */
  font-size: clamp(2.6rem, 16cqi, 5.2rem); line-height: 1; letter-spacing: 0;
  text-transform: uppercase; white-space: nowrap;
  padding-bottom: .14em; margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--gold-deep) 0%, var(--gold) 26%, #fff6e2 50%, var(--gold-soft) 72%, var(--gold) 100%);
  background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 7s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }
.hero__cta { width: fit-content; margin-inline: auto; }  /* shrinks to the buttons' width, centered so icons center under them */
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__social { display: flex; justify-content: center; gap: 1.7rem; margin-top: 3rem; }
.hero__social a { color: var(--muted); display: inline-flex; transition: color .3s var(--ease), transform .3s var(--ease); }
.hero__social svg { width: 26px; height: 26px; fill: currentColor; display: block; }
.hero__social a:hover { color: var(--gold-soft); transform: translateY(-3px); }

.hero__portrait { position: relative; justify-self: end; width: 100%; }
.hero__portrait img {
  width: 100%; height: auto; display: block;
  /* fade all four edges so the figure melts seamlessly into the page
     (single-gradient mask: the dual-gradient mask-composite version delayed first paint by ~1.8s) */
  -webkit-mask-image: radial-gradient(ellipse 82% 86% at 52% 47%, #000 55%, transparent 99%);
          mask-image: radial-gradient(ellipse 82% 86% at 52% 47%, #000 55%, transparent 99%);
}
@media (max-width: 860px) {
  .hero { padding: 6.5rem 0 3rem; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: .5rem; }
  /* width must be explicit: auto margins disable grid stretch, and with
     container-type: inline-size the box would otherwise collapse to 0 */
  .hero__copy { width: 100%; max-width: 100%; order: 2; }
  .hero__portrait { order: 1; max-width: 400px; margin: 0 auto; justify-self: center; }
  .hero__eyebrow { margin-bottom: 1rem; }
  .hero__cta { width: 100%; }
  .hero__actions { justify-content: center; }
  .hero__social { justify-content: center; }
  /* centered figure on mobile: fade top/bottom instead of sides */
  .hero__portrait img {
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 9%, #000 88%, transparent 100%);
            mask-image: linear-gradient(180deg, transparent 0%, #000 9%, #000 88%, transparent 100%);
  }
}

/* =========================================================
   CREDIBILITY STRIP
   ========================================================= */
.proof { background: linear-gradient(180deg, var(--ink), var(--plum-950)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof__inner {
  max-width: var(--maxw); margin-inline: auto; padding: clamp(2.6rem,4.5vw,3.7rem) var(--pad);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; text-align: center;
}
.stat { display: flex; flex-direction: column; gap: .65rem; position: relative; justify-content: flex-start; }
.stat:not(:last-child)::after { content: ''; position: absolute; right: -.75rem; top: 50%; transform: translateY(-50%); height: 64%; width: 1px; background: var(--line); }
.stat__num { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.7rem); font-weight: 700; color: var(--gold-soft); line-height: 1; }
.stat__label { font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); line-height: 1.45; }

/* =========================================================
   INTRO
   ========================================================= */
.intro { overflow-x: clip; }
.intro__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.intro__rule {
  width: 140px; height: 2px; margin: 1.4rem 0 2rem; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-deep) 0%, var(--gold) 26%, #fff6e2 50%, var(--gold-soft) 72%, var(--gold) 100%);
  background-size: 200% auto;
  animation: shimmer 7s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .intro__rule { animation: none; } }
.intro__text p { margin-bottom: 1.45rem; }
.intro__media { position: sticky; top: 100px; align-self: start; }
.intro__media img { width: 100%; height: auto; border-radius: 14px; box-shadow: var(--shadow); position: relative; z-index: 2; }
.intro__media-glow { position: absolute; inset: -12% -12% -12% -12%; z-index: 1; background: radial-gradient(circle at 50% 45%, rgba(139,63,212,.5), transparent 65%); filter: blur(30px); }

/* =========================================================
   EXPERIENCES
   ========================================================= */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.card {
  background: linear-gradient(180deg, var(--plum-900), var(--plum-950));
  border: 1px solid rgba(168,101,232,.16); border-radius: 16px; overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s, box-shadow .5s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: var(--shadow); }
.card__img { aspect-ratio: 3/2; overflow: hidden; position: relative; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card__img img { transform: scale(1.06); }
.card__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(18,6,38,.85)); }
.card__body { padding: 1.6rem 1.7rem 1.9rem; flex: 1; display: flex; flex-direction: column; }
.card__body h3 { font-family: var(--serif); font-size: 1.72rem; font-weight: 600; color: var(--cream); margin-bottom: .6rem; letter-spacing: .01em; }
.card__body p { font-size: .95rem; margin-bottom: 1.1rem; flex: 1; }
.card__body p a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 3px; transition: color .3s; }
.card__body p a:hover { color: var(--gold); }
.contact__faqlink { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 3px; transition: color .3s; }
.contact__faqlink:hover { color: var(--gold); }

/* =========================================================
   SIZZLE REEL
   ========================================================= */
.reel__frame { max-width: 1000px; margin-inline: auto; }
.reel__player {
  position: relative; aspect-ratio: 16/9; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(168,101,232,.25); box-shadow: var(--shadow); cursor: pointer;
}
.reel__poster, .reel__poster img { position: absolute; inset: 0; width: 100%; height: 100%; }
.reel__poster img { object-fit: cover; }
.reel__player::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(11,4,16,.25), rgba(11,4,16,.65)); transition: background .4s; }
.reel__player:hover::after { background: radial-gradient(circle at 50% 50%, rgba(11,4,16,.1), rgba(11,4,16,.5)); }
.reel__play {
  position: absolute; z-index: 3; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 88px; height: 88px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep)); color: var(--ink); font-size: 1.6rem;
  box-shadow: 0 12px 40px -8px rgba(212,175,55,.7); transition: transform .4s var(--ease);
}
.reel__play span { margin-left: 5px; }
.reel__player:hover .reel__play { transform: translate(-50%,-50%) scale(1.1); }
.reel__play::before { content: ''; position: absolute; inset: -10px; border-radius: 50%; border: 1px solid rgba(212,175,55,.5); animation: pulse 2.2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.5); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .reel__play::before, .jk-love__heart { animation: none; } }
.reel__player video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 4; background: #000; }
/* buffering progress bar (added by JS while the reel loads) */
.vbuffer { position: absolute; left: 0; top: 0; height: 3px; width: 100%; background: rgba(246,241,251,.15); z-index: 5; opacity: 0; transition: opacity .3s; pointer-events: none; }
.vbuffer.show { opacity: 1; }
.vbuffer i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold-deep), var(--gold)); transition: width .25s linear; }

/* =========================================================
   PRESS
   ========================================================= */
/* ---- scrolling ticker (As Seen On / Trusted By) ---- */
.ticker-band {
  background: linear-gradient(180deg, var(--ink), var(--plum-950));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(1.8rem, 4vw, 2.8rem) 0;
}
.tickers {
  display: flex; flex-direction: column; gap: 1.1rem;
}
.ticker-label {
  text-align: center; font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin: .6rem 0 -.1rem;
}
.ticker {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.ticker__track { display: flex; width: max-content; animation: ticker-scroll 46s linear infinite; }
.ticker--rev .ticker__track { animation-direction: reverse; animation-duration: 54s; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__group { display: flex; align-items: center; flex: 0 0 auto; }
.ticker__item {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  color: var(--muted); white-space: nowrap; display: inline-flex; align-items: center; transition: color .3s;
}
.ticker__item::before {
  content: '\2726'; color: var(--gold); opacity: .6; font-style: normal; font-size: .58em; margin: 0 2.3rem;
}
.ticker__item:hover { color: var(--gold-soft); }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
  .ticker { -webkit-mask-image: none; mask-image: none; }
  .ticker__group:nth-child(2) { display: none; }
}
.press.section { max-width: 1480px; }
.press__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; align-items: start; }
.press__card { border-radius: 12px; overflow: hidden; background: var(--plum-900); border: 1px solid rgba(168,101,232,.16); transition: transform .5s var(--ease), border-color .5s; }
.press__card:hover { transform: translateY(-6px); border-color: var(--gold); }
.press__card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.press__card--tall { grid-row: span 1; }
.press__card figcaption { padding: 1.15rem .8rem; font-size: .98rem; letter-spacing: .04em; color: var(--muted); text-align: center; white-space: nowrap; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.quotes { background: linear-gradient(180deg, var(--plum-950), var(--ink)); max-width: none; }
.quotes .section__head, .quotes__carousel { max-width: var(--maxw); margin-inline: auto; }
/* --- testimonials fading carousel --- */
.quotes__carousel { max-width: 860px; text-align: center; position: relative; }
.quotes__carousel::before {
  content: '\201C'; display: block; font-family: var(--serif); font-size: 5rem; line-height: .6;
  color: var(--gold); opacity: .45; margin-bottom: 1.4rem;
}
.quotes__viewport { display: grid; }
.quote-slide {
  grid-area: 1 / 1; display: flex; flex-direction: column; align-items: center;
  opacity: 0; visibility: hidden; transform: translateY(14px); pointer-events: none;
  transition: opacity .8s var(--ease), transform .8s var(--ease), visibility .8s;
}
.quote-slide.is-active { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.quote-slide p {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 2.3vw, 1.85rem);
  line-height: 1.6; color: var(--text); max-width: 42ch; margin: 0 auto 2rem;
}
.quote-slide cite {
  font-style: normal; font-size: .9rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-soft); line-height: 1.5;
}
.quote-slide cite span { display: block; margin-top: .4rem; text-transform: none; letter-spacing: .02em; font-size: .9rem; color: var(--muted); }
.quotes__dots { display: flex; justify-content: center; gap: .5rem; margin-top: 2.2rem; }
/* 24px buttons (WCAG target size) drawing a 9px visual dot */
.quotes__dot { width: 24px; height: 24px; padding: 0; border-radius: 50%; position: relative; }
.quotes__dot::before {
  content: ''; position: absolute; inset: 0; margin: auto;
  width: 9px; height: 9px; border-radius: 50%; background: rgba(246,241,251,.45);
  transition: background .35s var(--ease), transform .35s var(--ease);
}
.quotes__dot:hover::before { background: rgba(246,241,251,.75); }
.quotes__dot.is-active::before { background: var(--gold); transform: scale(1.3); }
@media (prefers-reduced-motion: reduce) { .quote-slide { transition: opacity .01s linear; transform: none; } }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; grid-auto-rows: 8px; }
.gallery__item { border-radius: 12px; overflow: hidden; cursor: pointer; position: relative; display: block; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img { width: 100%; height: auto; display: block; transition: transform .7s var(--ease), filter .5s; }
.gallery__item::after { content: '\2316'; position: absolute; inset: 0; display: grid; place-items: center; color: var(--cream); font-size: 1.6rem; opacity: 0; background: rgba(18,6,38,.4); transition: opacity .4s; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item:hover::after { opacity: 1; }
/* mobile: JS adds a "View All" button after the grid; hidden on desktop */
.gallery__more { display: none; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: linear-gradient(180deg, var(--ink), var(--plum-900)); max-width: none; }
.contact__inner { max-width: var(--maxw); margin-inline: auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.contact__intro { position: sticky; top: 6rem; }
.contact__direct { margin-top: 2rem; }
.contact__email { font-family: var(--serif); font-size: clamp(1.2rem, 2.5vw, 1.7rem); color: var(--gold-soft); border-bottom: 1px solid var(--line); padding-bottom: .3rem; transition: color .3s, border-color .3s; }
.contact__email:hover { color: var(--gold); border-color: var(--gold); }
.contact__social { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 1.4rem; }
.contact__social a { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); transition: color .3s; }
.contact__social a:hover { color: var(--gold-soft); }

.contact__form { background: rgba(36,16,63,.4); border: 1px solid rgba(168,101,232,.2); border-radius: 18px; padding: clamp(1.6rem, 4vw, 2.6rem); }
.field { margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; }
.field label span { color: var(--magenta); }
.field input, .field select, .field textarea {
  width: 100%; background: rgba(11,4,16,.55); border: 1px solid rgba(168,101,232,.5); border-radius: 9px;
  padding: .8rem 1rem; color: var(--cream); font-family: var(--sans); font-size: .95rem; transition: border-color .3s, box-shadow .3s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-dim); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,.35); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b6a6cf' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.field textarea { resize: vertical; }
.contact__formnote { margin: 1rem 0 0; font-size: .88rem; text-align: center; min-height: 1.2em; }
.contact__formnote.error { color: var(--magenta); }
.contact__formnote.success { color: var(--cyan); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--ink); border-top: 1px solid var(--line); padding: clamp(3rem, 6vw, 4.5rem) var(--pad) 2rem; }
.footer__inner { max-width: var(--maxw); margin-inline: auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line); }
.footer__logo { height: 66px; width: auto; display: block; margin-bottom: 1rem; opacity: .95; }
.footer__contact a { font-size: .9rem; color: var(--muted); transition: color .3s; }
.footer__contact a:hover { color: var(--gold-soft); }
.footer__contact { display: flex; flex-direction: column; gap: .8rem; }
.footer__social { display: flex; gap: 1.1rem; flex-wrap: wrap; }
.footer__social a { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.footer__base { max-width: var(--maxw); margin: 1.5rem auto 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.footer__base p { font-size: .78rem; color: var(--muted-dim); margin: 0; }

/* =========================================================
   LIGHTBOX + VIDEO MODAL
   ========================================================= */
.lightbox, .vmodal { position: fixed; inset: 0; z-index: 200; background: rgba(7,3,12,.96); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s; padding: 2rem; }
.lightbox.open, .vmodal.open { opacity: 1; pointer-events: auto; visibility: visible; }
.lightbox__img { max-width: 92vw; max-height: 88vh; border-radius: 10px; box-shadow: var(--shadow); }
.lightbox__close, .vmodal__close { position: absolute; top: .9rem; right: 1.2rem; width: 48px; height: 48px; display: grid; place-items: center; font-size: 2.4rem; color: var(--cream); line-height: 1; transition: color .3s; }
.lightbox__close:hover, .vmodal__close:hover { color: var(--gold); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 3rem; color: var(--cream); width: 60px; height: 60px; opacity: .7; transition: opacity .3s, color .3s; }
.lightbox__nav:hover { opacity: 1; color: var(--gold); }
.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }
.vmodal__inner { position: relative; width: min(1100px, 92vw); aspect-ratio: 16/9; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); background: #000; }
.vmodal__inner video, .vmodal__inner iframe { width: 100%; height: 100%; border: 0; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .intro__grid, .contact__inner { grid-template-columns: 1fr; }
  .intro__media { max-width: 460px; margin-inline: auto; position: static; }
  .contact__intro { position: static; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .press__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .proof__inner { gap: 2rem 1rem; }
}
@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__inner > .nav__cta { display: none; } /* header pill only — the mobile menu keeps its Book Jen */
  .nav__toggle { display: block; }
  /* no-JS: hamburger can't open the menu, so show wrapped nav links instead */
  .no-js .nav__links { display: flex; flex-wrap: wrap; gap: .9rem 1.1rem; justify-content: flex-end; }
  .no-js .nav__links a { font-size: .74rem; }
  .no-js .nav__toggle { display: none; }
  .cards, .press__grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .proof__inner { grid-template-columns: 1fr; }
  .stat:not(:last-child)::after { display: none; }
  .hero { min-height: 92vh; min-height: 92svh; }
  .hero__actions { flex-direction: column; align-items: center; width: 100%; }
  .hero__actions .btn { width: 100%; max-width: 340px; }
  /* mobile gallery: two columns; main.js builds only the first 10 tiles and
     adds the "View All" button (unbuilt images are never downloaded) */
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__more { display: flex; width: fit-content; margin: 2rem auto 0; }
}
@media (max-width: 460px) {
  .display--center { max-width: 100%; }
}

/* ---- a little hidden note ---- */
#jk-love { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 2rem;
  background: rgba(11,4,16,.72); backdrop-filter: blur(8px); opacity: 0; pointer-events: none;
  transition: opacity .6s var(--ease); }
#jk-love.show { opacity: 1; pointer-events: auto; }
.jk-love__card { text-align: center; max-width: 32rem; transform: translateY(14px) scale(.97);
  transition: transform .6s var(--ease); }
#jk-love.show .jk-love__card { transform: none; }
.jk-love__heart { display: block; font-size: 3rem; color: var(--gold); margin-bottom: 1rem;
  animation: jk-beat 1.3s ease-in-out infinite; }
.jk-love__card p { font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem,2.4vw,1.5rem);
  line-height: 1.6; color: var(--cream); margin: 0; }
@keyframes jk-beat { 0%,100%{transform:scale(1)} 14%{transform:scale(1.2)} 28%{transform:scale(1)} 42%{transform:scale(1.12)} 56%{transform:scale(1)} }
