/* ============================================================
   GYPSY REVERIE — Website Kit Styles (v2 wireframe build)
   ============================================================ */

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  /* Compensate for the fixed nav so anchor jumps don't land under it */
  scroll-padding-top: 90px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
a { color: inherit; text-decoration: none; }
body { background: var(--gr-obsidian); color: var(--fg-1); }

/* ---------- KEYFRAMES --------------------------------------- */
@keyframes gr-fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.gr-anim {
  opacity: 1;
  animation: gr-fade-up 1s var(--ease-candle) forwards;
}
@media (prefers-reduced-motion: reduce) {
  .gr-anim { animation: none; }
}

/* ---------- NAV --------------------------------------------- */
.gr-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center;
  padding: 22px 56px;
  transition: background var(--dur-3) var(--ease-candle), border-color var(--dur-3) var(--ease-candle), padding var(--dur-3) var(--ease-candle);
  border-bottom: 1px solid transparent;
}
.gr-nav--scrolled {
  background: rgba(21, 25, 29, 0.94);
  backdrop-filter: blur(8px);
  border-bottom-color: var(--border);
  padding: 14px 56px;
}
.gr-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.gr-nav__mark {
  height: 36px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(250, 199, 54, 0.25));
  transition: transform var(--dur-2) var(--ease-strike), filter var(--dur-2) var(--ease-candle);
}
.gr-nav--scrolled .gr-nav__mark { height: 30px; }
.gr-nav__brand:hover .gr-nav__mark {
  transform: translateY(-1px) rotate(-2deg);
  filter: drop-shadow(0 0 18px rgba(250, 199, 54, 0.5));
}
.gr-nav__brand .wordmark {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--accent);
}
.gr-nav__items {
  list-style: none; padding: 0; margin: 0 0 0 56px;
  display: flex; gap: 28px;
}
.gr-nav__items a {
  font-family: var(--font-portal);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--fg-1);
  transition: color var(--dur-1) var(--ease-candle);
}
.gr-nav__items a:hover { color: var(--accent); }

/* Ticket-stub CTA: gold hairline frame + perforated edges, tracked caps inside */
.gr-nav__cta {
  margin-left: 56px;
  position: relative;
  font-family: var(--font-portal);
  font-size: 12px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--accent);
  padding: 13px 22px 13px 28px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: color var(--dur-2) var(--ease-strike),
              background var(--dur-2) var(--ease-strike),
              box-shadow var(--dur-2) var(--ease-strike),
              transform var(--dur-2) var(--ease-strike);
  box-shadow: inset 0 0 0 0 var(--accent);
}
/* perforated ticket notches (left + right) */
.gr-nav__cta::before,
.gr-nav__cta::after {
  content: ""; position: absolute;
  width: 8px; height: 8px;
  top: 50%; transform: translateY(-50%);
  background: var(--gr-obsidian);
  border-radius: 50%;
  border: 1px solid var(--accent);
}
.gr-nav__cta::before { left: -5px; }
.gr-nav__cta::after  { right: -5px; }
.gr-nav__cta:hover {
  color: var(--gr-obsidian);
  background: var(--accent);
  box-shadow: 0 0 24px -4px rgba(250,199,54,0.55);
  transform: translateY(-1px);
}
.gr-nav__cta:hover::before,
.gr-nav__cta:hover::after { background: var(--accent); }
.gr-nav--scrolled .gr-nav__cta::before,
.gr-nav--scrolled .gr-nav__cta::after { background: rgba(21,25,29,0.94); }
.gr-nav__burger { display: none; background: transparent; border: 0; margin-left: auto; cursor: pointer; padding: 8px; }
.gr-nav__burger span { display: block; width: 24px; height: 1.5px; background: var(--accent); margin: 5px 0; }
.gr-mobile-menu { position: fixed; inset: 0; z-index: 200; background: var(--gr-obsidian); padding: 80px 32px; }
.gr-mobile-menu__close { position: absolute; top: 24px; right: 28px; background: transparent; border: 0; color: var(--accent); font-size: 36px; cursor: pointer; }
.gr-mobile-menu ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 24px; }
.gr-mobile-menu a { font-family: var(--font-display); font-size: 32px; color: var(--fg-1); }
.gr-mobile-menu a.cta { color: var(--accent); }

/* ---------- HERO — Cinematic Marquee ----------------------- */
.gr-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 980px;
  padding: 0 56px 56px;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
  background: var(--gr-obsidian);
}

/* Layer 1: band photo, full-bleed, tinted toward the brand palette */
.gr-hero__photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 50%;
  filter: saturate(1.05) contrast(1.05) brightness(0.92);
}

/* Layer 1b: ambient ember pulse — slow, faint amber glow that breathes */
.gr-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 85%, rgba(250,199,54,0.14) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  animation: gr-ember 7s ease-in-out infinite;
}
@keyframes gr-ember {
  0%, 100% { opacity: 0.55; transform: translateY(0) scale(1); }
  50%      { opacity: 1.0;  transform: translateY(-8px) scale(1.05); }
}

/* Layer 2: fire glow — screened over the photo so flames bloom around the band */
.gr-hero__fire {
  position: absolute; inset: auto -5% -10% -5%; height: 45%;
  background-size: cover;
  background-position: center 80%;
  mix-blend-mode: screen;
  opacity: 0.22;
  filter: saturate(1.1) hue-rotate(-8deg) blur(2px);
  pointer-events: none;
  /* fire only kisses the bottom edges — band stays untouched */
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 60%, #000 100%);
          mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 60%, #000 100%);
}

/* Layer 3: dark scrim — vignette + bottom gradient for type legibility */
.gr-hero__scrim {
  position: absolute; inset: 0;
  background:
    /* top fade for nav */
    linear-gradient(180deg, rgba(8,9,11,0.7) 0%, transparent 18%),
    /* bottom anchor for type */
    linear-gradient(180deg, transparent 35%, rgba(8,9,11,0.55) 60%, rgba(8,9,11,0.92) 100%),
    /* edge vignette */
    radial-gradient(ellipse 80% 70% at 50% 55%, transparent 0%, rgba(8,9,11,0.55) 100%);
  pointer-events: none;
}
.gr-hero__grain {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(245,239,230,0.06) 1px, transparent 1.2px);
  background-size: 3px 3px; mix-blend-mode: overlay;
}

/* Top-right meta */
.gr-hero__meta {
  position: absolute; top: 88px; right: 56px; z-index: 3;
  display: flex; align-items: center; gap: 28px;
}
.gr-hero__meta-item { text-align: right; }
.gr-hero__meta-item .label {
  display: block;
  font-family: var(--font-portal);
  font-size: 9px; letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.55);
}
.gr-hero__meta-item .value {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--fg-1);
  margin-top: 4px;
}
.gr-hero__meta-divider {
  width: 1px; height: 32px;
  background: rgba(250,199,54,0.35);
}

/* Bottom-left type stack */
.gr-hero__inner {
  position: relative; z-index: 3;
  max-width: 1200px;
  width: 100%;
}
.gr-hero__eyebrow {
  font-family: var(--font-portal);
  font-size: 12px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.gr-hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.1;
  letter-spacing: 0.005em;
  margin: 0;
  color: var(--fg-1);
  text-shadow: 0 0 50px rgba(0,0,0,0.55);
  text-wrap: balance;
}
.gr-hero__title span { display: block; padding: 2px 0; }
.gr-hero__title .italic {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

.gr-hero__bar {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 28px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(250,199,54,0.32);
}
.gr-hero__sub {
  font-family: var(--font-body); font-style: italic; font-weight: 400;
  font-size: 18px;
  line-height: 1.45;
  color: var(--fg-1);
  margin: 0;
  max-width: 56ch;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.gr-hero__sub .line-1 {
  color: var(--fg-1);
  font-style: italic;
}
.gr-hero__sub .line-2 {
  font-family: var(--font-portal);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: var(--tracking-mega);
  color: var(--accent);
  font-size: 18px;
  line-height: 1.45;
}
.gr-hero__sub .gold { color: var(--accent); font-style: italic; }
.gr-hero__cta {
  flex-shrink: 0;
  padding: 18px 40px;
  position: relative;
}
/* perforated ticket notches matching the nav CTA style */
.gr-hero__cta::before,
.gr-hero__cta::after {
  content: ""; position: absolute;
  width: 10px; height: 10px;
  top: 50%; transform: translateY(-50%);
  background: var(--gr-obsidian);
  border-radius: 50%;
  border: 1px solid var(--accent);
}
.gr-hero__cta::before { left: -6px; }
.gr-hero__cta::after  { right: -6px; }
.gr-hero__scroll {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-portal); font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(245,239,230,0.4);
  z-index: 3;
}

/* ---------- BUTTONS ----------------------------------------- */
/* Ticket-stub button: gold hairline frame with perforated notches on each side.
   Matches .gr-nav__cta. The notch dots track the current background of whatever
   section the button sits in via the --btn-stub-bg custom property. */
.gr-btn {
  --btn-stub-bg: var(--gr-obsidian);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-portal);
  font-size: 14px; letter-spacing: 0.20em; text-transform: uppercase;
  font-weight: 700;
  -webkit-text-stroke: 0.4px currentColor;
  padding: 18px 38px;
  cursor: pointer;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  transition: color var(--dur-2) var(--ease-strike),
              background var(--dur-2) var(--ease-strike),
              box-shadow var(--dur-2) var(--ease-strike),
              transform var(--dur-2) var(--ease-strike);
}
.gr-btn::before,
.gr-btn::after {
  content: ""; position: absolute;
  width: 10px; height: 10px;
  top: 50%; transform: translateY(-50%);
  background: var(--btn-stub-bg);
  border: 1px solid var(--accent);
  border-radius: 50%;
  transition: background var(--dur-2) var(--ease-strike);
}
.gr-btn::before { left: -6px; }
.gr-btn::after  { right: -6px; }

/* Outline (default) → fills with gold on hover */
.gr-btn--gold:hover { background: var(--accent); color: var(--gr-obsidian); }
.gr-btn--gold:hover::before,
.gr-btn--gold:hover::after { background: var(--accent); }

/* Solid gold variant */
.gr-btn--gold-solid { background: var(--accent); color: var(--gr-obsidian); }
.gr-btn--gold-solid::before,
.gr-btn--gold-solid::after { background: var(--btn-stub-bg); }
.gr-btn--gold-solid:hover { background: var(--accent-hot); border-color: var(--accent-hot); box-shadow: var(--glow-spark); }

.gr-btn:active { transform: scale(0.99); }
.gr-btn.disabled { opacity: 0.7; }
.gr-btn .soon { font-size: 10px; letter-spacing: 0.18em; opacity: 0.7; margin-left: 12px; }

/* Background-tracking: cream-section buttons need notches that match the cream */
.gr-testimonials .gr-btn,
.gr-starter .gr-btn { --btn-stub-bg: var(--gr-cream); }

/* ---------- SHARED TYPE ------------------------------------- */
.gr-h-display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: 1.35;
  letter-spacing: 0.005em;
  color: var(--fg-1);
  margin: 28px 0 0;
  text-wrap: balance;
}
.gr-h-display.center { text-align: center; }
.gr-sub-italic {
  font-family: var(--font-body); font-style: italic;
  font-size: clamp(18px, 1.4vw, 22px);
  color: var(--fg-2);
  margin-top: 12px;
}
.gr-sub-italic.center { text-align: center; }
.gr-body-serif {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-1);
  margin: 22px 0 0;
  max-width: 56ch;
}
.gr-body-serif.emphatic { font-style: italic; color: var(--accent); }
.gr-what__copy .gr-body-serif.emphatic { font-size: 20px; }
.gr-fine {
  font-family: var(--font-subhead);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg-3); margin-top: 14px;
}

/* ---------- CREDBAR — slim authority strip below hero ------ */
.gr-credbar {
  position: relative;
  padding: 18px 56px;
  background: linear-gradient(90deg,
    var(--gr-black-cherry) 0%,
    var(--gr-obsidian) 50%,
    var(--gr-black-cherry) 100%);
  border-top: 1px solid rgba(250,199,54,0.18);
  border-bottom: 1px solid rgba(250,199,54,0.10);
  overflow: hidden;
}
.gr-credbar::before,
.gr-credbar::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(250,199,54,0.35), transparent);
  pointer-events: none;
}
.gr-credbar::before { top: 0; }
.gr-credbar::after  { bottom: 0; }
.gr-credbar__inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; justify-content: center; align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  font-family: var(--font-subhead);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-1);
}
.gr-credbar__item {
  display: inline-flex; align-items: baseline; gap: 8px;
  white-space: nowrap;
}
.gr-credbar__lede   { color: var(--accent); font-weight: 500; }
.gr-credbar__sep    { color: var(--accent); opacity: 0.7; padding: 0 2px; }
.gr-credbar__detail { color: var(--fg-2); font-weight: 400; }
.gr-credbar__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(250,199,54,0.55);
  flex: 0 0 auto;
}
@media (max-width: 860px) {
  .gr-credbar { padding: 16px 24px; }
  .gr-credbar__inner { gap: 14px 20px; font-size: 10px; letter-spacing: 0.22em; }
  .gr-credbar__item { white-space: normal; }
}

/* ---------- HOOK -------------------------------------------- */
.gr-hook {
  padding: 160px 56px;
  position: relative;
  background: var(--gr-obsidian);
}
.gr-hook__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 96px;
  align-items: center;
}
.gr-hook__photo {
  margin: 0;
  position: relative;
}
.gr-hook__photo-frame {
  aspect-ratio: 4 / 5;
  width: 100%;
  background-color: #15191D;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.gr-hook__photo-frame::before {
  /* subtle warm vignette to anchor it to the page ground */
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 50%, rgba(16,21,24,0.5) 100%);
  pointer-events: none;
}
.gr-hook__photo-tag {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: var(--font-subhead);
  font-size: 10px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--fg-3);
  border: 1px dashed rgba(245,239,230,0.18);
  padding: 6px 10px;
  background: rgba(16,21,24,0.7);
}
.gr-hook__photo figcaption {
  font-family: var(--font-subhead);
  font-size: 11px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--fg-3);
  margin-top: 16px;
}
.gr-hook__inner {
  position: relative;
  font-family: var(--font-body);
  font-size: 24px;
  line-height: 1.5;
  color: var(--fg-1);
  text-align: left;
  max-width: 28ch;
}
.gr-hook__inner::before {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  background: var(--accent);
  margin: 0 0 32px;
  opacity: 0.55;
}
.gr-hook__inner p { margin: 0; }
.gr-hook__inner em { font-style: italic; color: var(--accent); }
.gr-hook__inner .gold { font-style: italic; color: var(--accent); }
.gr-hook__inner .break { margin-top: 1.5em; }
.gr-hook__inner .emphatic { margin-top: 1.5em; font-size: 34px; line-height: 1.25; }

/* ---------- WHAT THIS IS ------------------------------------ */
.gr-what {
  position: relative;
  padding: 140px 56px;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%,   rgba(250,199,54,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(250,199,54,0.10) 0%, transparent 65%),
    var(--bg);
  overflow: hidden;
}
.gr-what::before,
.gr-what::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}
.gr-what::before { top: 0; }
.gr-what::after  { bottom: 0; }
.gr-what__grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.gr-what__copy { max-width: 560px; }
.gr-what__art { position: relative; }
.gr-what__photo {
  aspect-ratio: 4/5;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(250,199,54,0.5) 0%, transparent 35%),
    radial-gradient(ellipse at 70% 40%, rgba(251,148,27,0.4) 0%, transparent 40%),
    linear-gradient(160deg, #25090E, #4A1528 50%, #101518);
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.gr-what__photo::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8,9,11,0.6) 100%);
}
.gr-what__photo::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(245,239,230,0.06) 1px, transparent 1px);
  background-size: 3px 3px;
}
.placeholder-tag {
  position: absolute; bottom: 14px; left: 14px;
  font-family: var(--font-subhead); font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg-2); opacity: 0.7;
  z-index: 2;
}
.gr-pullquote {
  position: absolute; bottom: -32px; left: -24px; right: 32px;
  background: var(--gr-obsidian);
  padding: 28px 30px;
  border-left: 2px solid var(--accent);
  font-family: var(--font-body); font-style: italic;
  margin: 0;
}
.gr-pullquote .mark {
  display: block;
  font-family: var(--font-display);
  font-size: 60px; line-height: 0.6;
  color: var(--accent);
  margin-bottom: 4px;
}
.gr-pullquote p { margin: 0; font-size: 17px; line-height: 1.5; color: var(--fg-1); }
.gr-pullquote cite {
  display: block; margin-top: 14px;
  font-family: var(--font-subhead); font-style: normal;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg-3);
}

/* ---------- TESTIMONIALS (deep wine) ------------------------ */
.gr-testimonials {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(140,29,24,0.35) 0%, transparent 65%),
    linear-gradient(180deg, var(--gr-black-cherry-d50) 0%, var(--gr-black-cherry) 50%, var(--gr-obsidian) 100%);
  color: var(--fg-1);
  padding: 140px 56px;
  border-top: 1px solid rgba(250,199,54,0.12);
  border-bottom: 1px solid rgba(250,199,54,0.12);
  position: relative;
}
.gr-testimonials::before,
.gr-testimonials::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}
.gr-testimonials::before { top: 60px; }
.gr-testimonials::after  { bottom: 60px; }
.gr-testimonials__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}
.gr-testimonial { margin: 0; position: relative; padding-left: 4px; }
.gr-testimonial .mark {
  display: block;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 110px; line-height: 0.6;
  color: var(--accent);
  margin-bottom: 12px;
  text-shadow: 0 0 32px rgba(250,199,54,0.35);
}
.gr-testimonial blockquote {
  font-family: var(--font-body);
  font-size: 20px; line-height: 1.6;
  color: var(--fg-1);
  margin: 0;
}
.gr-testimonial figcaption { margin-top: 24px; }
.gr-testimonial .name {
  display: block;
  font-family: var(--font-subhead);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  -webkit-text-stroke: 0.4px currentColor;
}
.gr-testimonial .loc {
  display: block; margin-top: 6px;
  font-family: var(--font-subhead);
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--fg-3);
}

/* ---------- EXPERIENCE -------------------------------------- */
.gr-experience { padding: 140px 56px; background: var(--bg); }
.gr-experience__head { text-align: center; max-width: 880px; margin: 0 auto; }
.gr-experience__cols {
  max-width: 1280px; margin: 80px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.gr-exp-col {
  position: relative;
  padding: 32px 28px 32px 32px;
  border-left: 1px solid var(--accent);
  overflow: hidden;
}
.gr-exp-col .bignum {
  position: absolute; top: 60px; right: 32px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 180px; line-height: 1;
  color: var(--accent);
  opacity: 0.10;
  pointer-events: none;
}
.gr-exp-col .text { position: relative; z-index: 2; }
.gr-exp-col p {
  font-family: var(--font-body); font-size: 18px; line-height: 1.6;
  color: var(--fg-1); margin: 14px 0 0;
}
.gr-experience__cta {
  margin-top: 80px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.gr-experience__cta p { font-family: var(--font-body); font-style: italic; color: var(--fg-2); margin: 0; max-width: 540px; }

/* ---------- AUTHORITY --------------------------------------- */
.gr-authority {
  padding: 140px 56px;
  background:
    radial-gradient(ellipse 50% 80% at 50% 50%, rgba(140,29,24,0.18) 0%, transparent 70%),
    var(--gr-obsidian);
  text-align: center;
}
.gr-authority__bar {
  display: flex; justify-content: center; align-items: center; gap: 28px;
  font-family: var(--font-subhead);
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--fg-2);
  flex-wrap: wrap;
}
.gr-authority__bar .div { width: 1px; height: 16px; background: var(--accent); }
.gr-authority__big {
  max-width: 980px; margin: 80px auto 0;
  position: relative;
  font-family: var(--font-display); font-style: italic;
}
.gr-authority__big .mark {
  display: block;
  font-size: 90px; line-height: 0.5;
  color: var(--accent);
  margin-bottom: 12px;
}
.gr-authority__big p {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.25;
  color: var(--fg-1);
  margin: 0;
}
.gr-authority__big cite {
  display: block; margin-top: 24px;
  font-family: var(--font-subhead); font-style: normal;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent);
}
.gr-authority__small {
  margin: 32px auto 0; max-width: 1080px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.gr-authority__small-eyebrow {
  margin: 80px auto 0;
  max-width: 1080px;
  text-align: center;
}
.gr-authority__small .rapid {
  font-family: var(--font-body); font-style: italic;
  font-size: 17px; line-height: 1.4;
  color: var(--fg-2);
}

/* ---------- HOW IT WORKS ------------------------------------ */
.gr-how { padding: 140px 56px; background: var(--bg); }
.gr-how__line {
  max-width: 1080px; height: 1px; background: var(--accent);
  margin: 80px auto 0; opacity: 0.5;
}
.gr-how__steps {
  max-width: 1080px; margin: -7px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
}
.gr-how-step { padding-top: 88px; position: relative; overflow: visible; }
.gr-how-step .num {
  position: absolute;
  top: 0;
  right: -8px;
  font-family: var(--font-display); font-style: italic;
  font-weight: 500;
  font-size: clamp(80px, 9vw, 120px);
  line-height: 0.85;
  color: var(--accent);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.gr-how-step > *:not(.num) { position: relative; z-index: 1; }
.gr-how-step .dot {
  position: absolute; top: 81px; left: 0;
  width: 13px; height: 13px;
  background: var(--accent); border: 3px solid var(--bg);
  border-radius: 50%;
}
.gr-how-step p {
  font-family: var(--font-body); font-size: 17px; line-height: 1.6;
  color: var(--fg-2); margin: 12px 0 18px;
}
.gr-how-step .gr-eyebrow { color: var(--fg-1); }

/* ---------- STARTER KIT ------------------------------------- */
.gr-starter {
  position: relative;
  padding: 140px 56px;
  background: var(--bg-wine);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
}
.gr-starter__photo {
  position: relative;
  aspect-ratio: 4/5;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(250,199,54,0.55) 0%, transparent 35%),
    radial-gradient(ellipse at 30% 70%, rgba(251,148,27,0.4) 0%, transparent 50%),
    linear-gradient(160deg, #25090E, #4A1528 60%, #101518);
  background-size: cover; background-position: center;
}
.gr-starter__photo::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(245,239,230,0.07) 1px, transparent 1.2px);
  background-size: 3px 3px;
}
.gr-starter__inner { max-width: 600px; justify-self: end; }
.gr-starter__inner .gr-h-display { color: var(--accent); }
.gr-starter__form {
  margin-top: 36px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.gr-starter__form .gr-btn { grid-column: 1 / -1; }
.gr-starter__form .gr-fine { grid-column: 1 / -1; }

/* ---------- FIELD (shared) ---------------------------------- */
.gr-field {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(245,239,230,0.3);
  color: var(--fg-1);
  font-family: var(--font-body);
  font-size: 17px;
  padding: 14px 0;
  transition: border-color var(--dur-2) var(--ease-candle);
}
.gr-field:focus { outline: none; border-bottom-color: var(--accent); }
.gr-field::placeholder { color: rgba(245,239,230,0.55); font-style: italic; }

/* ---------- SOCIETY ----------------------------------------- */
.gr-society {
  padding: 140px 56px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.gr-society__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 120%;
  width: auto;
  max-width: none;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 0 80px rgba(250, 199, 54, 0.4));
}
.gr-society__frame { position: relative; z-index: 1; }
.gr-society__frame {
  max-width: 980px; margin: 0 auto;
  border: 1px solid var(--accent);
  padding: 80px 72px;
  position: relative;
}
.gr-society__frame::before, .gr-society__frame::after {
  content: ""; position: absolute;
  width: 12px; height: 12px;
  background: var(--bg);
  border: 1px solid var(--accent);
}
.gr-society__frame::before { top: -6px; left: -6px; transform: rotate(45deg); }
.gr-society__frame::after { bottom: -6px; right: -6px; transform: rotate(45deg); }
.gr-society__gift {
  margin-top: 36px;
  padding: 28px 30px 26px;
  background: rgba(250,199,54,0.06);
  border: 1px solid rgba(250,199,54,0.32);
  border-left: 2px solid var(--accent);
  position: relative;
}
.gr-society__gift-tag {
  font-family: var(--font-portal);
  font-size: 10px; letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.gr-society__gift-head {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
  color: var(--fg-1);
  margin: 0 0 14px;
}
.gr-society__gift p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0 0 10px;
  max-width: 60ch;
}
.gr-society__gift-line {
  font-style: italic;
  color: var(--accent) !important;
}

/* ---------- ABOUT (Black Cherry editorial) ----------------- */
.gr-about {
  padding: 160px 56px;
  background:
    radial-gradient(ellipse 70% 50% at 20% 30%, rgba(250,199,54,0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--gr-black-cherry-d50, #25090E) 0%, var(--gr-black-cherry) 60%, var(--gr-obsidian) 100%);
  color: var(--fg-1);
  position: relative;
  overflow: hidden;
}
.gr-about__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: start;
}
.gr-about__photo {
  position: relative;
  margin: 0;
  border: 1px solid rgba(250,199,54,0.22);
  background: #000;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.gr-about__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: contrast(1.05) brightness(0.85);
}
.gr-about__photo figcaption {
  position: absolute; left: 16px; bottom: 14px;
  font-family: var(--font-subhead);
  font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--accent);
  z-index: 2;
}
.gr-about__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8,9,11,0.7) 100%);
  pointer-events: none;
}
.gr-about__copy { padding-top: 12px; }
.gr-about__eyebrow { color: var(--accent); }
.gr-about__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.08;
  margin: 22px 0 32px;
  color: var(--fg-1);
  letter-spacing: -0.01em;
}
.gr-about__copy .gr-body-serif { max-width: none; margin: 0 0 22px; }
.gr-about__copy em { font-style: italic; color: var(--accent); }
.gr-about__creed {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.4;
  color: var(--fg-1);
  margin: 32px 0 28px;
  padding: 22px 26px;
  border-left: 2px solid var(--accent);
  background: rgba(8,9,11,0.32);
}
@media (max-width: 980px) {
  .gr-about { padding: 100px 24px; }
  .gr-about__inner { grid-template-columns: 1fr; gap: 48px; }
  .gr-about__photo { position: static; aspect-ratio: 16 / 11; }
}
.gr-society__form {
  margin-top: 40px;
  display: grid; grid-template-columns: 1fr 1fr auto; gap: 20px;
  align-items: end;
  position: relative;
}
.gr-society__form .gr-btn[disabled] {
  opacity: 0.7;
  cursor: progress;
}
.gr-society__error {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  font-family: var(--font-subhead);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gr-vermillion);
}
  align-items: end;
}
.gr-society__thanks { margin-top: 40px; }
.gr-society__thanks p { font-family: var(--font-body); font-style: italic; color: var(--fg-2); margin: 8px 0 0; }

/* ---------- FAQ --------------------------------------------- */
.gr-faq {
  padding: 140px 56px;
  background: var(--gr-obsidian);
}
.gr-faq__list {
  max-width: 880px; margin: 64px auto 0;
}
.gr-faq-item {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  cursor: pointer;
  transition: padding var(--dur-2) var(--ease-candle);
}
.gr-faq-item:last-child { border-bottom: 1px solid var(--border); }
.gr-faq-item__q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.gr-faq-item__q .text {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--fg-1);
}
.gr-faq-item__q .toggle {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--accent);
}
.gr-faq-item__a {
  max-height: 0; overflow: hidden;
  transition: max-height var(--dur-3) var(--ease-candle);
}
.gr-faq-item__a p {
  font-family: var(--font-body); font-size: 17px; line-height: 1.6;
  color: var(--fg-2); margin: 18px 0 0; max-width: 64ch;
}
.gr-faq-item.is-open .gr-faq-item__a { max-height: 800px; }

/* ---------- FINAL CTA --------------------------------------- */
.gr-final {
  position: relative;
  padding: 160px 56px;
  overflow: hidden;
  text-align: center;
}
.gr-final__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(251,148,27,0.18) 0%, transparent 40%),
    radial-gradient(ellipse at 30% 80%, rgba(140,29,24,0.55) 0%, transparent 60%),
    linear-gradient(180deg, rgba(8,9,11,0.82), rgba(37,9,14,0.85) 50%, rgba(74,21,40,0.88));
}
.gr-final__photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.45;
  filter: saturate(1.05);
}
.gr-final__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(74,21,40,0.4) 0%, rgba(8,9,11,0.7) 100%);
}
.gr-final__inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }
.gr-final__head {
  font-family: var(--font-display);
  font-style: italic; font-weight: 500;
  font-size: clamp(44px, 5.5vw, 88px);
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--fg-1);
  margin: 0;
}
.gr-final__head span { display: block; }
.gr-final__head .italic { margin-top: 0.2em; }
.gr-final__head .italic { color: var(--accent); }
.gr-final .gr-body-serif { margin: 32px auto 0; }
.gr-final__ctas {
  margin-top: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}

/* ---------- LINK ARROW ------------------------------------- */
.gr-link-arrow {
  font-family: var(--font-subhead);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 12px;
  cursor: pointer;
}
.gr-link-arrow .arrow { transition: transform var(--dur-2) var(--ease-strike); display: inline-block; }
.gr-link-arrow:hover .arrow { transform: translateX(6px); }

/* ---------- FOOTER — monumental closing wordmark ------------ */
.gr-footer {
  background: var(--bg-wine);
  padding: 0 56px 48px;
  border-top: 1px solid var(--border);
  position: relative;
}
.gr-footer__hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 96px 0 64px;
  text-align: center;
  border-bottom: 1px solid rgba(250,199,54,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.gr-footer__mark {
  height: clamp(72px, 9vw, 128px);
  width: auto;
  display: block;
  filter: drop-shadow(0 0 48px rgba(250, 199, 54, 0.35));
  margin-bottom: 24px;
}
.gr-footer__tagline {
  font-family: var(--font-portal);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-mega);
  color: var(--fg-2);
  margin-top: 24px;
}
.gr-footer__wordmark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(56px, 11vw, 156px);
  line-height: 1.05;
  color: var(--accent);
  letter-spacing: -0.005em;
  text-shadow: 0 0 80px rgba(250,199,54,0.18);
  white-space: nowrap;
}
.gr-footer__cols-row {
  max-width: 1280px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}
.gr-footer__cols-row .col { display: flex; flex-direction: column; gap: 12px; }
.gr-footer__cols-row .col .gr-eyebrow { margin-bottom: 8px; color: var(--accent); }
.gr-footer__cols-row .col a {
  font-family: var(--font-body); font-size: 16px;
  color: var(--fg-2);
  transition: color var(--dur-1) var(--ease-candle);
  cursor: pointer;
}
.gr-footer__cols-row .col a:hover { color: var(--accent); }
.gr-footer__rule {
  max-width: 1280px; height: 1px;
  background: var(--border-strong);
  margin: 56px auto 24px;
}
.gr-footer__fine {
  max-width: 1280px; margin: 0 auto;
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  font-family: var(--font-subhead);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg-3);
}
.gr-footer__fine .dot { color: var(--accent); }

/* ---------- PHOTO BREAK — full-bleed cinematic interludes --- */
.gr-photobreak {
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.gr-photobreak--tall   { min-height: 80vh; }
.gr-photobreak--medium { min-height: 70vh; }
.gr-photobreak__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,9,11,0.35) 0%, transparent 30%, rgba(8,9,11,0.4) 60%, rgba(8,9,11,0.92) 100%),
    radial-gradient(ellipse 70% 55% at 50% 60%, transparent 0%, rgba(8,9,11,0.5) 100%);
  pointer-events: none;
  z-index: 1;
}
.gr-photobreak__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 56px 96px;
}
.gr-photobreak--right .gr-photobreak__inner { text-align: right; }
.gr-photobreak--right .gr-photobreak__inner > * { margin-left: auto; }
.gr-photobreak__line {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.08;
  color: var(--fg-1);
  margin: 32px 0 0;
  max-width: 18ch;
  letter-spacing: -0.005em;
  text-wrap: pretty;
  text-shadow: 0 2px 30px rgba(0,0,0,0.45);
}
.gr-photobreak--medium .gr-photobreak__line {
  font-size: clamp(36px, 4.6vw, 64px);
}
.gr-photobreak__line .italic {
  display: block;
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
  margin-top: 0.18em;
}
.gr-photobreak--right .gr-photobreak__line { max-width: 18ch; }
.gr-photobreak .gr-eyebrow { color: var(--accent); }

/* ---------- VIDEOS — full-width carousel ------------------- */
.gr-videos {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(140,29,24,0.28) 0%, transparent 70%),
    var(--gr-black-cherry);
  padding: 120px 56px 140px;
  overflow: hidden;
}
.gr-videos::before {
  /* faint top hairline rule */
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}
.gr-videos__inner {
  max-width: 1280px; margin: 0 auto;
  text-align: center;
}
.gr-videos__eyebrow { color: var(--accent); }
.gr-videos__head {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
  color: var(--fg-1);
  margin: 18px auto 0;
  max-width: 22ch;
  text-wrap: balance;
}

/* Stage = arrows + player */
.gr-videos__stage {
  margin-top: 56px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.gr-videos__player {
  position: relative;
  width: 100%;
}
.gr-videos__player-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(250,199,54,0.22);
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.7),
    0 0 0 1px rgba(0,0,0,0.6) inset,
    0 0 80px -10px rgba(140,29,24,0.4);
  overflow: hidden;
}
.gr-videos__player-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
}

/* Poster (thumbnail w/ play button) before iframe loads */
.gr-videos__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  background: #000 center / cover no-repeat;
  background-blend-mode: normal;
  border: 0; padding: 0; margin: 0;
  cursor: pointer;
  color: var(--accent);
  display: grid; place-items: center;
  transition: filter var(--dur-2) var(--ease-candle);
}
.gr-videos__poster::after {
  /* dark wash so the gold play icon reads cleanly over any thumbnail */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,9,11,0.15) 0%, rgba(8,9,11,0.55) 100%);
  pointer-events: none;
  transition: background var(--dur-2) var(--ease-candle);
}
.gr-videos__poster:hover { filter: brightness(1.08); }
.gr-videos__poster:hover::after { background: linear-gradient(180deg, rgba(8,9,11,0.05) 0%, rgba(8,9,11,0.45) 100%); }
.gr-videos__play {
  position: relative; z-index: 2;
  display: grid; place-items: center;
  filter: drop-shadow(0 0 24px rgba(250,199,54,0.45));
  transition: transform var(--dur-2) var(--ease-strike);
}
.gr-videos__poster:hover .gr-videos__play { transform: scale(1.06); }

/* Caption beneath the player */
.gr-videos__caption {
  margin-top: 20px;
  font-family: var(--font-subhead);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fg-2);
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.gr-videos__title { color: var(--fg-1); font-weight: 500; }
.gr-videos__sep   { color: var(--accent); opacity: 0.7; }
.gr-videos__meta  { color: var(--fg-2); }

/* Side arrows */
.gr-videos__nav {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(250,199,54,0.4);
  background: rgba(8,9,11,0.55);
  color: var(--accent);
  cursor: pointer;
  display: grid; place-items: center;
  transition: background var(--dur-2) var(--ease-strike),
              border-color var(--dur-2) var(--ease-strike),
              color var(--dur-2) var(--ease-strike),
              transform var(--dur-2) var(--ease-strike),
              box-shadow var(--dur-2) var(--ease-strike);
}
.gr-videos__nav-arrow {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  margin-top: -4px; /* optical center */
}
.gr-videos__nav:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--gr-obsidian);
  transform: scale(1.04);
  box-shadow: 0 0 24px -4px rgba(250,199,54,0.6);
}

/* Thumbnail strip */
.gr-videos__thumbs {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: 1080px;
  margin-left: auto; margin-right: auto;
}
.gr-videos__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(245,239,230,0.12);
  background: #000 center / cover no-repeat;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  opacity: 0.55;
  transition: opacity var(--dur-2) var(--ease-candle),
              border-color var(--dur-2) var(--ease-candle),
              transform var(--dur-2) var(--ease-candle);
}
.gr-videos__thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,9,11,0.85) 100%);
  pointer-events: none;
}
.gr-videos__thumb:hover { opacity: 0.85; transform: translateY(-2px); }
.gr-videos__thumb.is-active {
  opacity: 1;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 0 24px -6px rgba(250,199,54,0.5);
}
.gr-videos__thumb-meta {
  position: absolute; left: 12px; right: 12px; bottom: 10px;
  z-index: 2;
  display: flex; flex-direction: column; gap: 2px;
  text-align: left;
  pointer-events: none;
}
.gr-videos__thumb-title {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--fg-1);
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gr-videos__thumb-sub {
  font-family: var(--font-subhead);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-3);
}

@media (max-width: 860px) {
  .gr-videos { padding: 80px 24px 100px; }
  .gr-videos__stage { grid-template-columns: 1fr; gap: 16px; }
  .gr-videos__nav { display: none; }
  .gr-videos__caption { font-size: 10px; letter-spacing: 0.2em; gap: 6px; }
  .gr-videos__thumbs { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .gr-videos__thumb-meta { display: none; }
}

/* ---------- BRAND MARQUEE — ferocious. elegant. alive. ----- */
.gr-marquee {
  background: var(--gr-obsidian);
  padding: 120px 56px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(250,199,54,0.12);
  border-bottom: 1px solid rgba(250,199,54,0.12);
}
.gr-marquee::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(250,199,54,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.gr-marquee__inner {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.gr-marquee__line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 56px);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(56px, 10vw, 156px);
  line-height: 1;
  color: var(--fg-1);
  letter-spacing: -0.01em;
}
.gr-marquee__line .italic {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.gr-marquee__line .dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
  box-shadow: 0 0 28px rgba(250,199,54,0.6);
}

/* ---------- gold italic emphasis (HowItWorks heading) ------- */
.gold-italic {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

/* ============================================================
   SHOWS PAGE
   Used on /shows.html — built from Shows.jsx
   ============================================================ */

/* Active nav state */
.gr-nav__items a.is-active { color: var(--accent); }

.gr-shows-page {
  /* Pad bottom so the sticky join bar never hides real content */
  padding-bottom: 140px;
}

/* ---- Shows hero (small) ---- */
.gr-shows-hero {
  position: relative;
  padding: 180px 56px 80px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(140,29,24,0.35) 0%, transparent 60%),
    linear-gradient(180deg, var(--gr-black-cherry-d50, #25090E) 0%, var(--gr-obsidian) 80%);
  border-bottom: 1px solid rgba(250,199,54,0.18);
  overflow: hidden;
  isolation: isolate;
}
.gr-shows-hero::before {
  /* Subtle photo layer beneath the gradients */
  content: "";
  position: absolute; inset: 0;
  z-index: -2;
  background-image: url("../../assets/photo-shows-hero-violin.png");
  background-size: cover;
  background-position: center 40%;
  opacity: 0.32;
  filter: saturate(1.05) contrast(1.05);
}
.gr-shows-hero::after {
  /* Vignette + bottom fade so type stays readable */
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, transparent 0%, rgba(8,9,11,0.55) 100%),
    linear-gradient(180deg, rgba(8,9,11,0.35) 0%, transparent 35%, rgba(8,9,11,0.6) 100%);
  pointer-events: none;
}
.gr-shows-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.gr-shows-hero__eyebrow { color: var(--accent); }
.gr-shows-hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 84px);
  line-height: 1.05;
  margin: 18px 0 18px;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.gr-shows-hero__sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0 auto;
  max-width: 60ch;
}

/* ---- Upcoming list ---- */
.gr-shows-up {
  padding: 100px 56px 100px;
  max-width: 1180px;
  margin: 0 auto;
}
.gr-shows-up__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  border-bottom: 1px solid rgba(250,199,54,0.22);
  padding-bottom: 22px;
  margin-bottom: 18px;
}
.gr-shows-up__bit {
  font-family: var(--font-subhead);
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--fg-3);
  text-decoration: none;
  transition: color var(--dur-1) var(--ease-candle);
}
.gr-shows-up__bit:hover { color: var(--accent); }
.gr-shows-up__empty {
  padding: 64px 0;
  text-align: center;
  font-family: var(--font-body); font-style: italic;
  font-size: 18px;
  color: var(--fg-2);
}
.gr-shows-up__list {
  list-style: none; padding: 0; margin: 0;
}

/* Single show row */
.gr-show {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(245,239,230,0.10);
  transition: background var(--dur-2) var(--ease-candle);
}
.gr-show:hover { background: rgba(250,199,54,0.025); }
.gr-show.is-soldout { opacity: 0.75; }
.gr-show.is-past    { opacity: 0.55; }

.gr-show__date {
  display: flex; flex-direction: column; align-items: flex-start;
  line-height: 1;
}
.gr-show__day {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.gr-show.is-soldout .gr-show__day { color: var(--fg-2); text-decoration: line-through; text-decoration-thickness: 2px; }
.gr-show__month {
  font-family: var(--font-subhead);
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--accent);
  margin-top: 8px;
}
.gr-show__dow {
  font-family: var(--font-subhead);
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--fg-3);
  margin-top: 4px;
}

.gr-show__main { min-width: 0; }
.gr-show__venue {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.15;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.gr-show__meta {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 6px 10px;
  font-family: var(--font-subhead);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg-2);
}
.gr-show__sep   { color: var(--accent); opacity: 0.55; }
.gr-show__price { color: var(--fg-1); font-weight: 500; }
.gr-show__set   { color: var(--accent); }
.gr-show__note {
  font-family: var(--font-body); font-style: italic;
  font-size: 14px; line-height: 1.4;
  color: var(--fg-2);
  margin: 8px 0 0;
}

.gr-show__cta-wrap { display: flex; align-items: center; }
.gr-show__cta {
  --btn-stub-bg: var(--gr-obsidian);
  white-space: nowrap;
}
.gr-show__soldout {
  font-family: var(--font-subhead);
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 10px 16px;
  white-space: nowrap;
}
.gr-show__past {
  font-family: var(--font-subhead);
  color: var(--fg-3);
  letter-spacing: 0.3em;
}

/* ---- Past highlights ---- */
.gr-shows-past {
  padding: 80px 56px 120px;
  max-width: 1280px;
  margin: 0 auto;
}
.gr-shows-past__head {
  text-align: center;
  margin-bottom: 56px;
}
.gr-shows-past__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  margin: 14px 0 0;
  letter-spacing: -0.01em;
}
.gr-shows-past__grid {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.gr-past-card {
  border: 1px solid rgba(245,239,230,0.10);
  background: rgba(8,9,11,0.45);
  display: flex; flex-direction: column;
}
.gr-past-card__photo {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--gr-black-cherry-d50, #25090E) 0%, var(--gr-obsidian) 100%);
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(245,239,230,0.08);
  position: relative;
}
.gr-past-card__photo.is-empty::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 100%, rgba(250,199,54,0.12) 0%, transparent 60%);
}
.gr-past-card__body {
  padding: 24px 26px 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.gr-past-card__meta {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-subhead);
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--fg-3);
}
.gr-past-card__tag {
  color: var(--accent);
  border: 1px solid rgba(250,199,54,0.5);
  padding: 3px 8px;
  font-size: 9px;
  letter-spacing: 0.32em;
}
.gr-past-card__venue {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.2;
  margin: 4px 0 0;
}
.gr-past-card__city {
  font-family: var(--font-subhead);
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--fg-2);
}
.gr-past-card__quote {
  margin: 14px 0 0;
  font-family: var(--font-body); font-style: italic;
  font-size: 15px; line-height: 1.5;
  color: var(--fg-1);
  position: relative;
  padding-top: 14px;
  border-top: 1px solid rgba(250,199,54,0.18);
}
.gr-past-card__quote .mark {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--accent);
  margin-right: 4px;
  line-height: 0;
  vertical-align: -2px;
}
.gr-past-card__quote p { margin: 0; display: inline; }
.gr-past-card__quote cite {
  display: block; margin-top: 12px;
  font-family: var(--font-subhead); font-style: normal;
  font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--fg-3);
}

/* ---- Sticky join bar ---- */
.gr-shows-sticky {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(21, 25, 29, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(250,199,54,0.35);
  transform: translateY(100%);
  transition: transform var(--dur-3) var(--ease-candle);
  pointer-events: none;
}
.gr-shows-sticky.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.gr-shows-sticky__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 56px;
  display: flex; align-items: center; gap: 28px;
}
.gr-shows-sticky__copy {
  display: flex; flex-direction: column; gap: 2px;
  flex: 1; min-width: 0;
}
.gr-shows-sticky__eyebrow {
  font-family: var(--font-subhead);
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--accent);
}
.gr-shows-sticky__line {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 15px;
  color: var(--fg-1);
}
.gr-shows-sticky__cta {
  --btn-stub-bg: var(--gr-obsidian);
  flex: 0 0 auto;
  padding: 14px 28px;
  font-size: 11px;
}
.gr-shows-sticky__close {
  flex: 0 0 auto;
  background: transparent;
  border: 0;
  color: var(--fg-3);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  padding: 4px 6px;
  transition: color var(--dur-1) var(--ease-candle);
}
.gr-shows-sticky__close:hover { color: var(--accent); }

/* ---- Shows page responsive ---- */
@media (max-width: 860px) {
  .gr-shows-hero { padding: 140px 24px 64px; }
  .gr-shows-up { padding: 64px 24px; }
  .gr-shows-up__head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .gr-show {
    grid-template-columns: 84px 1fr;
    gap: 18px;
    padding: 22px 0;
  }
  .gr-show__cta-wrap {
    grid-column: 1 / -1;
    margin-top: 6px;
  }
  .gr-show__day { font-size: 44px; }
  .gr-shows-past { padding: 48px 24px 80px; }
  .gr-shows-past__grid { grid-template-columns: 1fr; gap: 20px; }
  .gr-shows-sticky__inner { padding: 12px 20px; gap: 14px; }
  .gr-shows-sticky__copy .gr-shows-sticky__line { display: none; }
  .gr-shows-page { padding-bottom: 100px; }
}

/* ============================================================
   PRESS PAGE
   Used on /press.html — built from Press.jsx
   ============================================================ */

.gr-press-page {
  background: var(--gr-obsidian);
  padding-bottom: 120px;
}

/* ---- Hero ---- */
.gr-press-hero {
  position: relative;
  padding: 200px 56px 120px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(250,199,54,0.18);
}
.gr-press-hero__photo {
  position: absolute; inset: 0;
  z-index: -2;
  background-image: url("../../assets/photo-press-hero.jpg");
  background-size: cover;
  background-position: center 40%;
  filter: saturate(1.05) contrast(1.05) brightness(0.85);
}
.gr-press-hero__scrim {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, transparent 0%, rgba(8,9,11,0.65) 100%),
    linear-gradient(180deg, rgba(8,9,11,0.5) 0%, transparent 30%, rgba(8,9,11,0.85) 100%);
}
.gr-press-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative; z-index: 1;
}
.gr-press-hero__eyebrow { color: var(--accent); }
.gr-press-hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px, 5.8vw, 88px);
  line-height: 1.05;
  margin: 18px 0 20px;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.gr-press-hero__title span { display: block; padding: 2px 0; }
.gr-press-hero__title .italic {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}
.gr-press-hero__sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0 auto;
  max-width: 56ch;
}

/* ---- Section scaffolding (shared) ---- */
.gr-press-kit,
.gr-press-bio,
.gr-press-quotes,
.gr-press-photos,
.gr-press-venues,
.gr-press-booking {
  padding: 80px 56px;
  max-width: 1180px;
  margin: 0 auto;
}

/* ---- Press kit CTA ---- */
.gr-press-kit {
  padding-top: 96px;
  padding-bottom: 96px;
  text-align: center;
  border-bottom: 1px solid rgba(245,239,230,0.08);
}
.gr-press-kit__head {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.05;
  margin: 32px 0 28px;
  letter-spacing: -0.01em;
}
.gr-press-kit__sub {
  font-family: var(--font-body); font-style: italic;
  font-size: 18px; line-height: 1.5;
  color: var(--fg-2);
  margin: 0 auto 32px;
  max-width: 52ch;
}
.gr-press-kit__btn {
  --btn-stub-bg: var(--gr-obsidian);
  font-size: 13px;
  padding: 20px 44px;
}
.gr-press-kit__fine {
  margin-top: 22px;
  font-family: var(--font-subhead);
  font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--fg-3);
}

/* ---- Bio ---- */
.gr-press-bio { border-bottom: 1px solid rgba(245,239,230,0.08); }
.gr-press-bio__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(250,199,54,0.22);
  padding-bottom: 18px;
  margin-bottom: 30px;
}
.gr-press-bio__count {
  font-family: var(--font-subhead);
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--fg-3);
}
.gr-press-bio__copy {
  max-width: 68ch;
}
.gr-press-bio__copy p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-1);
  margin: 0 0 18px;
}
.gr-press-bio__copy strong {
  color: var(--accent);
  font-weight: 500;
}

/* ---- Quotes ---- */
.gr-press-quotes { border-bottom: 1px solid rgba(245,239,230,0.08); }
.gr-press-quotes__head {
  border-bottom: 1px solid rgba(250,199,54,0.22);
  padding-bottom: 18px;
  margin-bottom: 30px;
}
.gr-press-quotes__list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.gr-press-quote {
  position: relative;
  padding: 28px 26px 24px;
  border: 1px solid rgba(245,239,230,0.10);
  background: rgba(8,9,11,0.45);
}
.gr-press-quote__mark {
  display: block;
  font-family: var(--font-display);
  font-size: 64px; line-height: 0.4;
  color: var(--accent);
  margin-bottom: 14px;
}
.gr-press-quote blockquote {
  margin: 0 0 18px;
  font-family: var(--font-body); font-style: italic;
  font-size: 17px; line-height: 1.5;
  color: var(--fg-1);
}
.gr-press-quote cite {
  display: flex; flex-direction: column; gap: 3px;
  border-top: 1px solid rgba(250,199,54,0.18);
  padding-top: 14px;
  font-style: normal;
}
.gr-press-quote .name {
  font-family: var(--font-subhead);
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  -webkit-text-stroke: 0.4px currentColor;
}
.gr-press-quote .role {
  font-family: var(--font-subhead);
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--fg-3);
}

/* ---- Photos ---- */
.gr-press-photos { border-bottom: 1px solid rgba(245,239,230,0.08); }
.gr-press-photos__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(250,199,54,0.22);
  padding-bottom: 18px;
  margin-bottom: 32px;
}
.gr-press-photos__count {
  font-family: var(--font-subhead);
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--fg-3);
}
.gr-press-photos__grid {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gr-press-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(245,239,230,0.10);
  background: #000;
}
.gr-press-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-3) var(--ease-candle), filter var(--dur-3) var(--ease-candle);
  filter: brightness(0.92);
}
.gr-press-photo:hover img {
  transform: scale(1.03);
  filter: brightness(1.02);
}
.gr-press-photo__credit {
  position: absolute; left: 10px; bottom: 8px;
  font-family: var(--font-subhead);
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(245,239,230,0.7);
  opacity: 0;
  transition: opacity var(--dur-2) var(--ease-candle);
  pointer-events: none;
}
.gr-press-photo:hover .gr-press-photo__credit { opacity: 1; }
.gr-press-photos__credit {
  margin: 28px 0 0;
  font-family: var(--font-body);
  font-size: 14px; line-height: 1.5;
  color: var(--fg-2);
  letter-spacing: 0.02em;
}
.gr-press-photos__credit em {
  font-style: normal;
  color: var(--accent);
}
.gr-press-photos__note {
  margin: 10px 0 0;
  font-family: var(--font-body); font-style: italic;
  font-size: 14px; line-height: 1.5;
  color: var(--fg-3);
  max-width: 60ch;
}

/* ---- Venues ---- */
.gr-press-venues { border-bottom: 1px solid rgba(245,239,230,0.08); }
.gr-press-venues__head {
  border-bottom: 1px solid rgba(250,199,54,0.22);
  padding-bottom: 18px;
  margin-bottom: 24px;
}
.gr-press-venues__list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 48px;
}
.gr-press-venues__list li {
  display: flex; align-items: baseline;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(245,239,230,0.06);
  font-family: var(--font-subhead);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
}
.gr-press-venues__list .venue { color: var(--fg-1); font-weight: 500; }
.gr-press-venues__list .sep   { color: var(--accent); opacity: 0.6; }
.gr-press-venues__list .city  { color: var(--fg-2); }
.gr-press-venues__list .note  {
  margin-left: auto;
  color: var(--accent);
  font-size: 9px;
  letter-spacing: 0.3em;
  border: 1px solid rgba(250,199,54,0.4);
  padding: 3px 8px;
}

/* ---- Booking ---- */
.gr-press-booking {
  padding-top: 96px;
  padding-bottom: 80px;
  text-align: center;
}
.gr-press-booking__inner {
  max-width: 800px;
  margin: 0 auto;
}
.gr-press-booking__head {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
  margin: 14px 0 24px;
  letter-spacing: -0.01em;
}
.gr-press-booking__head span { display: block; padding: 2px 0; }
.gr-press-booking__head .italic {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
  font-size: 0.55em;
  margin-top: 14px;
}
.gr-press-booking__mail {
  display: inline-block;
  font-family: var(--font-body);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--accent);
  border-bottom: 1px solid rgba(250,199,54,0.5);
  padding-bottom: 4px;
  transition: color var(--dur-1) var(--ease-candle), border-color var(--dur-1) var(--ease-candle);
}
.gr-press-booking__mail:hover {
  color: var(--accent-hot);
  border-color: var(--accent-hot);
}
.gr-press-booking__line {
  margin: 18px 0 36px;
  font-family: var(--font-body); font-style: italic;
  font-size: 15px;
  color: var(--fg-3);
}
.gr-press-booking__ctas {
  display: flex; justify-content: center; gap: 18px; flex-wrap: wrap;
}
.gr-press-booking__ctas .gr-btn { --btn-stub-bg: var(--gr-obsidian); }

/* ---- Press page responsive ---- */
@media (max-width: 980px) {
  .gr-press-hero { padding: 140px 24px 80px; }
  .gr-press-kit,
  .gr-press-bio,
  .gr-press-quotes,
  .gr-press-photos,
  .gr-press-venues,
  .gr-press-booking { padding: 64px 24px; }
  .gr-press-quotes__list { grid-template-columns: 1fr; gap: 18px; }
  .gr-press-photos__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gr-press-venues__list { grid-template-columns: 1fr; gap: 0; }
  .gr-press-booking__ctas { flex-direction: column; align-items: center; }
}

/* ---------- RESPONSIVE -------------------------------------- */
@media (max-width: 980px) {
  .gr-nav, .gr-hero, .gr-hook, .gr-what, .gr-testimonials, .gr-experience,
  .gr-authority, .gr-how, .gr-starter, .gr-society, .gr-faq, .gr-final, .gr-footer {
    padding-left: 24px; padding-right: 24px;
  }
  .gr-nav__items, .gr-nav__cta { display: none; }
  .gr-nav__burger { display: block; }
  .gr-what__grid, .gr-starter, .gr-hook__grid { grid-template-columns: 1fr; gap: 48px; }
  .gr-experience__cols, .gr-how__steps, .gr-testimonials__inner, .gr-authority__small, .gr-footer__cols-row {
    grid-template-columns: 1fr;
  }
  .gr-photobreak__inner { padding: 0 24px 64px; }
  .gr-photobreak--medium { min-height: 50vh; }
  .gr-marquee { padding: 80px 24px; }
  .gr-society__frame { padding: 48px 28px; }
  .gr-society__form { grid-template-columns: 1fr; }
  .gr-pullquote { position: static; margin-top: 24px; }
  .gr-weddings__grid { grid-template-columns: 1fr; gap: 48px; }
  .gr-weddings__details { grid-template-columns: 1fr; gap: 28px; }
  .gr-weddings__featured { padding: 32px 28px; }
}

/* ---------- WEDDINGS & PRIVATE EVENTS (Black Cherry) -------- */
.gr-weddings {
  position: relative;
  padding: 160px 56px 140px;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(140,29,24,0.32) 0%, transparent 60%),
    linear-gradient(180deg, var(--gr-black-cherry) 0%, var(--gr-black-cherry-d50, #2a0a0c) 100%);
  color: var(--fg-1);
  overflow: hidden;
  isolation: isolate;
}
.gr-weddings__bg {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
}
.gr-weddings__bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.18;
  filter: grayscale(0.5) contrast(1.1) brightness(0.7);
  mix-blend-mode: luminosity;
}
.gr-weddings__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, var(--gr-black-cherry) 0%, transparent 18%, transparent 82%, var(--gr-black-cherry) 100%);
}
.gr-weddings__inner {
  position: relative;
  max-width: 1280px; margin: 0 auto;
}
.gr-weddings__head { text-align: center; margin-bottom: 96px; }
.gr-weddings__eyebrow { color: var(--accent); }
.gr-weddings__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(56px, 7vw, 112px);
  line-height: 1;
  margin: 22px 0 22px;
  letter-spacing: -0.01em;
}
.gr-weddings__sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.45;
  color: var(--fg-2);
  margin: 0 auto;
  max-width: 56ch;
}

.gr-weddings__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 100px;
}
.gr-weddings__copy .gr-body-serif { max-width: none; margin: 0 0 22px; }
.gr-weddings__copy em { font-style: italic; color: var(--accent); }

.gr-weddings__featured {
  position: relative;
  background: var(--gr-black-cherry-d50, #2a0a0c);
  border: 1px solid rgba(250,199,54,0.22);
  padding: 56px 48px 44px;
}
.gr-weddings__featured-mark {
  position: absolute; top: -8px; left: 24px;
  font-family: var(--font-display);
  font-size: 140px; line-height: 1;
  color: var(--accent);
  text-shadow: 0 0 32px rgba(250,199,54,0.4);
}
.gr-weddings__featured blockquote {
  font-family: var(--font-body); font-style: italic;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.55;
  margin: 0;
  color: var(--fg-1);
}
.gr-weddings__featured figcaption {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(250,199,54,0.28);
  display: flex; flex-direction: column; gap: 4px;
}
.gr-weddings__featured .name {
  font-family: var(--font-subhead);
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  -webkit-text-stroke: 0.4px currentColor;
}
.gr-weddings__featured .loc {
  font-family: var(--font-subhead);
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--fg-3);
}

.gr-weddings__video {
  max-width: 880px;
  margin: 0 auto 100px;
}
.gr-weddings__video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(250,199,54,0.18);
  overflow: hidden;
}
.gr-weddings__video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.gr-weddings__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  border: 0;
  color: var(--accent);
  display: grid; place-items: center;
  transition: filter var(--dur-2) var(--ease-candle);
}
.gr-weddings__poster::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,9,11,0.15) 0%, rgba(8,9,11,0.55) 100%);
  transition: background var(--dur-2) var(--ease-candle);
}
.gr-weddings__poster:hover { filter: brightness(1.08); }
.gr-weddings__play {
  position: relative; z-index: 2;
  display: grid; place-items: center;
  color: var(--accent);
  transition: transform var(--dur-2) var(--ease-strike);
}
.gr-weddings__poster:hover .gr-weddings__play { transform: scale(1.06); }
.gr-weddings__video-caption {
  margin-top: 18px;
  text-align: center;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 16px;
  color: var(--fg-2);
}

.gr-weddings__details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-bottom: 88px;
}
.gr-weddings__detail .gr-eyebrow { color: var(--accent); margin-bottom: 14px; }
.gr-weddings__detail p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
}
.gr-weddings__detail-rule {
  width: 32px; height: 1px;
  background: var(--accent);
  opacity: 0.6;
  margin-bottom: 22px;
}

.gr-weddings__cta {
  display: flex; flex-direction: column; align-items: center;
  gap: 18px;
  text-align: center;
}
.gr-weddings__cta .gr-btn { --btn-stub-bg: var(--gr-black-cherry); }
.gr-weddings__email {
  font-family: var(--font-subhead);
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--fg-3);
  transition: color var(--dur-1) var(--ease-candle);
}
.gr-weddings__email:hover { color: var(--accent); }

/* ---------- SWING DANCE (Obsidian + Vermillion) ------------ */
.gr-swing {
  position: relative;
  padding: 160px 56px 160px;
  background:
    radial-gradient(ellipse 70% 50% at 85% 20%, rgba(185,42,28,0.32) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(185,42,28,0.18) 0%, transparent 65%),
    linear-gradient(180deg, var(--gr-obsidian) 0%, #0a0c0e 100%);
  color: var(--fg-1);
  overflow: hidden;
  isolation: isolate;
}
.gr-swing__bg {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
}
.gr-swing__bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.22;
  filter: contrast(1.1) saturate(0.7) hue-rotate(-10deg);
  mix-blend-mode: screen;
}
.gr-swing__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, var(--gr-obsidian) 0%, transparent 20%, transparent 80%, var(--gr-obsidian) 100%),
    linear-gradient(90deg, var(--gr-obsidian) 0%, transparent 25%, transparent 75%, var(--gr-obsidian) 100%);
}
.gr-swing__inner {
  position: relative;
  max-width: 1280px; margin: 0 auto;
}
.gr-swing__head { margin-bottom: 80px; }
.gr-swing__eyebrow { color: var(--accent); }
.gr-swing__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 6.2vw, 96px);
  line-height: 1.2;
  margin: 22px 0 0;
  letter-spacing: -0.01em;
  max-width: 18ch;
}
.gr-swing__title .hot {
  display: block;
  margin-top: 0.22em;
  color: var(--gr-vermillion);
  font-style: italic;
}

.gr-swing__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.gr-swing__copy .gr-body-serif { max-width: none; margin: 0 0 22px; }
.gr-swing__copy em { font-style: italic; color: var(--accent); }
.gr-swing__copy .gr-body-serif.emphatic {
  font-style: italic;
  color: var(--accent);
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.4;
  margin-top: 8px;
}

.gr-swing__bullets {
  list-style: none;
  padding: 0;
  margin: 40px 0 36px;
  display: flex; flex-direction: column;
  gap: 14px;
  border-top: 1px solid rgba(185,42,28,0.35);
  padding-top: 32px;
}
.gr-swing__bullets li {
  display: flex; gap: 16px; align-items: flex-start;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.45;
  color: var(--fg-1);
}
.gr-swing__arrow {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 20px;
  flex: 0 0 auto;
  line-height: 1.45;
}

.gr-swing__cta .gr-btn { --btn-stub-bg: var(--gr-obsidian); }

.gr-swing__video {
  position: sticky;
  top: 80px;
}
.gr-swing__video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(185,42,28,0.4);
  box-shadow: 0 0 0 1px rgba(185,42,28,0.15), 0 20px 60px -20px rgba(185,42,28,0.4);
  overflow: hidden;
}
.gr-swing__video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.gr-swing__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  border: 0;
  color: var(--accent);
  display: grid; place-items: center;
  transition: filter var(--dur-2) var(--ease-candle);
}
.gr-swing__poster::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,9,11,0.15) 0%, rgba(8,9,11,0.55) 100%);
  transition: background var(--dur-2) var(--ease-candle);
}
.gr-swing__poster:hover { filter: brightness(1.08); }
.gr-swing__play {
  position: relative; z-index: 2;
  display: grid; place-items: center;
  color: var(--accent);
  transition: transform var(--dur-2) var(--ease-strike);
}
.gr-swing__poster:hover .gr-swing__play { transform: scale(1.06); }
.gr-swing__video-caption {
  margin-top: 18px;
  text-align: center;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 16px;
  color: var(--fg-2);
}

@media (max-width: 980px) {
  .gr-swing { padding: 100px 24px; }
  .gr-swing__grid { grid-template-columns: 1fr; gap: 56px; }
  .gr-swing__video { position: static; }
}

/* ---------- MOBILE OVERRIDES (must stay last in file) -------- */
/* Earlier @media blocks lose to later base rules with same specificity.
   These trailing overrides win the cascade at narrow viewports. */
@media (max-width: 980px) {
  /* Weddings: collapse grid + shrink padding so testimonial fills width */
  .gr-weddings { padding: 80px 24px; }
  .gr-weddings__inner { padding: 0; }
  .gr-weddings__head { margin-bottom: 56px; }
  .gr-weddings__grid { grid-template-columns: 1fr; gap: 48px; margin-bottom: 64px; }
  .gr-weddings__copy .gr-body-serif { max-width: none; }
  .gr-weddings__featured { padding: 48px 24px 28px; }
  .gr-weddings__featured-mark { font-size: 96px; left: 16px; }
  .gr-weddings__featured blockquote { font-size: 18px; }

  /* Reduce vertical padding on all major sections — base values are 140-160px
     vertical, which creates huge blank space on phones. */
  .gr-what, .gr-experience, .gr-final, .gr-testimonials, .gr-hook,
  .gr-faq, .gr-society, .gr-how, .gr-starter, .gr-about, .gr-marquee {
    padding-top: 72px; padding-bottom: 72px;
  }

  /* About photo: keep the portrait frame on mobile (the earlier 16:11
     landscape override cropped most of the violinist out). 4:5 matches
     the source image proportions better; show the upper portion so the
     face and violin both land in frame. */
  .gr-about__photo { aspect-ratio: 4 / 5; }
  .gr-about__photo img { object-position: center 8%; }

  /* Weddings details: same source-order bug as the main grid — the base
     repeat(3, 1fr) rule lives later in the file and overrides the earlier
     @media collapse. */
  .gr-weddings__details { grid-template-columns: 1fr; gap: 32px; }

  /* Footer wordmark: allow wrap, scale down */
  .gr-footer__wordmark { white-space: normal; font-size: clamp(48px, 12vw, 88px); line-height: 1.05; }
  .gr-footer { padding: 0 24px 32px; }
  .gr-footer__hero { padding: 64px 0 48px; }

  /* Portal font legibility on mobile: Portal-in-caps reads like a thin
     serif and many labels were 9-13px on phones. Bump size + spacing
     across the small-caps elements the brand uses everywhere. */
  .gr-eyebrow { font-size: 20px; letter-spacing: 0.08em; }
  .gr-hero__eyebrow { font-size: 14px; letter-spacing: 0.18em; }
  .gr-hero__sub .line-2 { font-size: 15px; letter-spacing: 0.22em; }
  .gr-credbar__inner { font-size: 13px; letter-spacing: 0.2em; }
  /* Credbar items: drop flex layout on mobile so lede + sep + detail
     flow as one inline text block and wrap naturally. Default
     inline-flex was wrapping the lede to 2 lines and pushing the
     separator + detail to the right edge of the banner. */
  .gr-credbar__item {
    display: block;
    text-align: center;
    white-space: normal;
  }
  .gr-credbar__lede,
  .gr-credbar__sep,
  .gr-credbar__detail { display: inline; }
  .gr-btn { font-size: 17px; letter-spacing: 0.18em; padding: 20px 32px; }
  .gr-society__gift-tag { font-size: 14px; letter-spacing: 0.22em; }
  .gr-about__photo figcaption { font-size: 12px; letter-spacing: 0.22em; }
  .gr-footer__tagline { font-size: 14px; letter-spacing: 0.22em; }
  .gr-weddings__featured .name { font-size: 13px; letter-spacing: 0.24em; }
  .gr-weddings__featured .loc  { font-size: 12px; letter-spacing: 0.22em; }
  .gr-testimonial .name { font-size: 13px; letter-spacing: 0.24em; }
  .gr-testimonial .loc  { font-size: 12px; letter-spacing: 0.22em; }
  .gr-videos__title { font-size: 14px; letter-spacing: 0.16em; }
  .gr-press-quote .name { font-size: 13px; letter-spacing: 0.24em; }
  .gr-press-quote .role { font-size: 12px; letter-spacing: 0.22em; }
  .gr-link-arrow { font-size: 14px; letter-spacing: 0.2em; }

  /* Press page caps labels */
  .gr-press-venues__list > * { font-size: 13px; letter-spacing: 0.18em; }
  .gr-press-bio__count       { font-size: 12px; letter-spacing: 0.22em; }
  .gr-press-photos__count    { font-size: 12px; letter-spacing: 0.22em; }

  /* Shows page caps labels */
  .gr-shows-up__bit        { font-size: 13px; letter-spacing: 0.2em; }
  .gr-show__month          { font-size: 13px; letter-spacing: 0.22em; }
  .gr-show__dow            { font-size: 12px; letter-spacing: 0.2em; }
  .gr-show__soldout        { font-size: 12px; letter-spacing: 0.22em; }
  .gr-show__past           { font-size: 12px; letter-spacing: 0.22em; }
  .gr-past-card__city      { font-size: 12px; letter-spacing: 0.2em; }
  .gr-shows-sticky__eyebrow { font-size: 13px; letter-spacing: 0.22em; }

  /* Hero background: anchor to right side on mobile so the violinist
     (right of frame) stays visible. Default center crop hid him on
     narrow screens and centered the guitarist instead. */
  .gr-hero__photo { background-position: right 50%; }
}

@media (max-width: 480px) {
  .gr-footer__wordmark { font-size: clamp(40px, 13vw, 64px); }
  .gr-footer__cols-row { gap: 32px; margin-top: 32px; }
  .gr-press-photos__grid { grid-template-columns: 1fr; }
}
