/* ═══════════════════════════════════════════════════════════
   G9 GREMAW — Frontend Styles (Mobile-First)
   v3 — Cinematic edition pages, poster-forward hero
═══════════════════════════════════════════════════════════ */

:root {
  --gr-green:       #1a6b3c;
  --gr-green-dark:  #145530;
  --gr-green-mid:   #1e7d45;
  --gr-green-dim:   rgba(26,107,60,0.15);
  --gr-dark:        #0a1f15;
  --gr-dark-alt:    #0d2a1a;
  --gr-white:       #ffffff;
  --gr-off-white:   #f8f9f4;
  --gr-gray:        #6b7280;
  --gr-text:        #1a2e1f;
  --gr-gold:        #c9a84c;
  --gr-gold-dim:    rgba(201,168,76,0.2);
  --gr-radius:      10px;
  --gr-radius-sm:   6px;
  --gr-shadow:      0 4px 20px rgba(0,0,0,0.10);
  --gr-shadow-lg:   0 8px 40px rgba(0,0,0,0.18);
  --gr-shadow-xl:   0 16px 60px rgba(0,0,0,0.35);
  --gr-transition:  all 0.3s ease;
}

/* ── Shared Utilities ── */
.gr-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.gr-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gr-green);
  margin-bottom: 8px;
}
.gr-label--light { color: rgba(255,255,255,0.5); }

.gr-divider {
  width: 44px;
  height: 3px;
  background: var(--gr-green);
  border-radius: 2px;
  margin: 12px 0 24px;
}
.gr-divider--light { background: rgba(255,255,255,0.4); }

.gr-section-title {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.75rem;
  color: var(--gr-text);
  margin: 0 0 24px;
  line-height: 1.2;
}
.gr-section-title--light { color: var(--gr-white); }

.gr-section      { padding: 32px 0; }
.gr-section--white    { background: var(--gr-white); }
.gr-section--gray     { background: var(--gr-off-white); }
.gr-section--dark     { background: var(--gr-dark); }
.gr-section--dark-alt { background: var(--gr-dark-alt); }
.gr-section--slim     { padding: 28px 0; }

.gr-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--gr-transition);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.gr-back-link:hover { color: var(--gr-white); }

.gr-count {
  display: inline-block;
  background: var(--gr-green-dim);
  color: var(--gr-green);
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 3px 13px;
  margin-left: 10px;
  vertical-align: middle;
  position: relative;
  top: -3px;
}
.gr-count--light {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

/* ══════════════════════════════════════════════════════
   HUB HERO
══════════════════════════════════════════════════════ */
.gr-hero {
  background: linear-gradient(160deg, var(--gr-dark) 0%, #0f3320 60%, #1a6b3c 100%);
  padding: 64px 20px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.gr-hero__inner {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gr-hero__title {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gr-white);
  letter-spacing: 0.06em;
  margin: 6px 0 16px;
  line-height: 1;
}
.gr-hero__sub {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  margin: 0;
}
.gr-tag { color: #a8f0c0; font-weight: 700; }

/* ══════════════════════════════════════════════════════
   STORY SECTION (hub)
══════════════════════════════════════════════════════ */
.gr-story {
  position: relative;
  padding: 64px 20px;
  background: var(--gr-white);
}
.gr-story__bg {
  position: absolute;
  inset: 0;
  background-image: var(--gr-cover, none);
  background-size: cover;
  background-position: center;
  filter: blur(2px) brightness(0.35);
  transform: scale(1.04);
}
.gr-story:has(.gr-story__bg) { background: var(--gr-dark); }
.gr-story__body {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.gr-story__title {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.85rem;
  color: var(--gr-text);
  margin: 0 0 4px;
}
.gr-story__title--light { color: var(--gr-white); }
.gr-story__text p {
  color: var(--gr-gray);
  line-height: 1.85;
  font-size: 1rem;
  margin: 0 0 20px;
}
.gr-story__text--light p { color: rgba(255,255,255,0.78); }

/* ══════════════════════════════════════════════════════
   EDITIONS GRID (hub)
══════════════════════════════════════════════════════ */
.gr-editions {
  padding: 64px 0 80px;
  background: var(--gr-off-white);
}
.gr-editions__header {
  margin-bottom: 36px;
  padding: 0 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════════════════════
   EDITIONS GRID  — v4 landscape photo cards
══════════════════════════════════════════════════════ */
.gr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card shell */
.gr-card {
  display: block;
  text-decoration: none;
  border-radius: var(--gr-radius);
  overflow: hidden;
  box-shadow: var(--gr-shadow);
  transition: var(--gr-transition);
  background: var(--gr-dark);
  position: relative;
}
.gr-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gr-shadow-lg);
}

/* Landscape photo wrapper */
.gr-card__photo {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: var(--gr-dark);
}
.gr-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gr-card:hover .gr-card__photo img { transform: scale(1.06); }

/* Placeholder when no photo */
.gr-card__nophoto {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #0a1f15 0%, #16402a 50%, #0e2d1d 100%);
}
.gr-card__nophoto span {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: rgba(255,255,255,0.12);
  letter-spacing: 0.06em;
}

/* Edition badge — top left */
.gr-card__badge {
  position: absolute;
  top: 11px;
  left: 11px;
  background: var(--gr-green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 3px;
  line-height: 1.3;
  z-index: 2;
}

/* Gradient overlay — always visible, info at bottom */
.gr-card__info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(5,20,12,0.88) 0%,
    rgba(5,20,12,0.45) 40%,
    transparent 70%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px 13px;
  z-index: 1;
}
.gr-card__info-year {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.gr-card__info-venue {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.68);
  margin-top: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 92%;
}

/* Hover CTA — slides up */
.gr-card__cta-wrap {
  position: absolute;
  top: 11px;
  right: 11px;
  z-index: 3;
  opacity: 0;
  transform: translateY(-4px);
  transition: var(--gr-transition);
}
.gr-card:hover .gr-card__cta-wrap {
  opacity: 1;
  transform: translateY(0);
}
.gr-card__cta {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 11px;
  border-radius: 3px;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════
   EDITION HERO  — v3 poster-forward split layout
══════════════════════════════════════════════════════ */
.gr-ed-hero {
  position: relative;
  background: var(--gr-dark);
  overflow: hidden;
}

/* Blurred poster backdrop */
.gr-ed-hero__bg {
  position: absolute;
  inset: 0;
  background-image: var(--gr-poster, none);
  background-size: cover;
  background-position: center top;
  filter: blur(10px) brightness(0.18);
  transform: scale(1.1);
}

/* Default (no poster): centred single-column */
.gr-ed-hero__inner {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 20px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 36px;
}

/* Split layout when poster is present */
.gr-ed-hero--split .gr-ed-hero__inner {
  text-align: left;
  align-items: flex-start;
}

.gr-ed-hero__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
/* No-poster: centre the info */
.gr-ed-hero:not(.gr-ed-hero--split) .gr-ed-hero__info {
  align-items: center;
  text-align: center;
}
/* Tighter bottom padding on no-poster hero */
.gr-ed-hero:not(.gr-ed-hero--split) .gr-ed-hero__inner {
  padding-bottom: 20px;
}

.gr-ed-hero__ordinal {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0 0 8px;
}

.gr-ed-hero__title {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gr-white);
  margin: 0 0 18px;
  line-height: 1;
  letter-spacing: 0.02em;
}
.gr-ed-hero__num { color: #a8f0c0; }

/* Year + venue stats row */
.gr-ed-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-bottom: 20px;
}
.gr-ed-stat {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.gr-ed-stat svg { color: rgba(255,255,255,0.4); flex-shrink: 0; }

/* Highlight inside hero — white card on dark background */
.gr-ed-hero__highlight {
  border-left: 3px solid #4ade80;
  padding: 14px 18px;
  margin-top: 14px;
  background: rgba(255,255,255,0.93);
  border-radius: 0 10px 10px 0;
  backdrop-filter: blur(4px);
}
.gr-ed-hero__highlight p {
  margin: 0;
  color: #1a2e22;
  font-size: 0.88rem;
  line-height: 1.65;
  font-style: italic;
}

/* ── Poster card (in hero) ── */
.gr-ed-hero__poster-col {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-top: 4px;
  order: -1; /* mobile: poster floats above info column */
}

.gr-ed-hero__poster-card {
  position: relative;
  display: inline-block;
  margin: 0;
  border-radius: var(--gr-radius);
  overflow: hidden;
  box-shadow:
    var(--gr-shadow-xl),
    0 0 60px rgba(26,107,60,0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  max-width: 260px;
  width: 100%;
}
.gr-ed-hero__poster-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 24px 80px rgba(0,0,0,0.5),
    0 0 80px rgba(26,107,60,0.4);
}

.gr-ed-hero__poster-img {
  width: 100%;
  display: block;
  border-radius: var(--gr-radius);
}

/* "View Full Poster" overlay — appears on hover */
.gr-ed-hero__poster-view {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 20px;
  gap: 6px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  text-decoration: none;
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--gr-radius);
}
.gr-ed-hero__poster-card:hover .gr-ed-hero__poster-view { opacity: 1; }

/* ══════════════════════════════════════════════════════
   TICKETS  (slim section)
══════════════════════════════════════════════════════ */
.gr-tickets-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.gr-tickets-grid a {
  display: block;
  border-radius: var(--gr-radius-sm);
  overflow: hidden;
  box-shadow: var(--gr-shadow);
  max-width: 180px;
  transition: var(--gr-transition);
}
.gr-tickets-grid a:hover { transform: scale(1.02); }
.gr-tickets-grid img { width: 100%; display: block; }

/* ══════════════════════════════════════════════════════
   VIDEOS  — dark section, thumbnail cards
══════════════════════════════════════════════════════ */
.gr-videos {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.gr-video-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* YouTube / Vimeo thumbnail wrapper */
.gr-video-thumb-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;   /* 16:9 */
  background: #000;
  border-radius: var(--gr-radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--gr-shadow-lg);
}
.gr-video-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.gr-video-thumb-wrap:hover .gr-video-thumb-img {
  transform: scale(1.03);
  filter: brightness(0.75);
}

/* Play button overlay */
.gr-video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  transition: background 0.3s ease;
}
.gr-video-thumb-wrap:hover .gr-video-play-overlay { background: rgba(0,0,0,0.15); }

.gr-video-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--gr-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.2s ease, background 0.2s ease;
  padding-left: 4px; /* optical centering for play triangle */
}
.gr-video-thumb-wrap:hover .gr-video-play-btn,
.gr-video-ext-card:hover .gr-video-play-btn {
  transform: scale(1.1);
  background: var(--gr-white);
}
.gr-video-play-btn--lg {
  width: 80px;
  height: 80px;
}

/* Replaced embed container */
.gr-video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--gr-radius);
  background: var(--gr-dark);
  box-shadow: var(--gr-shadow-lg);
}
.gr-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--gr-radius);
  border: none;
}

/* External / non-embeddable video card */
.gr-video-ext-card {
  display: block;
  text-decoration: none;
  border-radius: var(--gr-radius);
  overflow: hidden;
  box-shadow: var(--gr-shadow-lg);
  aspect-ratio: 16 / 9;
  position: relative;
}
.gr-video-ext-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d2a1a 0%, #1a4a2e 50%, #0d2a1a 100%);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: var(--gr-transition);
  position: relative;
}
/* Dark overlay so play button stays legible over photo thumbnails */
.gr-video-ext-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  transition: background 0.3s ease;
}
.gr-video-ext-bg > * { position: relative; z-index: 1; }
.gr-video-ext-card:hover .gr-video-ext-bg {
  background-size: cover;
}
.gr-video-ext-card:hover .gr-video-ext-bg::before {
  background: rgba(0, 0, 0, 0.35);
}
.gr-video-ext-cta {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gr-video-card-label {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.45;
  margin: 0;
}
.gr-video-card-label--small {
  font-size: 0.75rem;
  opacity: 0.6;
}
/* Promo panel — credits + disclaimer beneath promotional video cards */
.gr-video-promo-panel {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 10px 12px 8px;
  background: rgba(255,255,255,0.03);
  border-radius: 0 0 8px 8px;
  margin-top: -8px;
}
.gr-video-promo-credits__label {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}
.gr-video-promo-credits p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin: 0 0 8px;
  white-space: pre-line;
}
.gr-video-promo-disclaimer {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.25);
  font-style: italic;
  margin: 0;
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════
   EVENT PHOTOS  — hero shots + album CTA
══════════════════════════════════════════════════════ */
.gr-photos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-bottom: 24px;
}
/* Hero layout: up to 5 shots — first photo spans full width on mobile,
   desktop uses a 2-col left + 3-col right asymmetric grid */
.gr-photos-grid--hero {
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.gr-album-cta {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.gr-album-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 40px;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.gr-album-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  color: #fff;
  text-decoration: none;
}
.gr-photo-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--gr-radius-sm);
  background: #000;
  aspect-ratio: 4 / 3;
}
.gr-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.gr-photo-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.7);
}
.gr-photo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
}
.gr-photo-item:hover .gr-photo-overlay { opacity: 1; }

/* ══════════════════════════════════════════════════════
   EXTERNAL LINKS
══════════════════════════════════════════════════════ */
.gr-ext-title {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.2rem;
  color: var(--gr-text);
  margin: 4px 0 20px;
}
.gr-ext-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.gr-ext-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--gr-transition);
  border: 2px solid transparent;
}
.gr-ext-btn--facebook  { background: #1877F2; color: #fff; }
.gr-ext-btn--facebook:hover { background: #1464d0; }
.gr-ext-btn--instagram { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.gr-ext-btn--instagram:hover { opacity: 0.9; }
.gr-ext-btn--youtube   { background: #FF0000; color: #fff; }
.gr-ext-btn--youtube:hover { background: #cc0000; }
.gr-ext-btn--link,
.gr-ext-btn--drive     { background: var(--gr-off-white); color: var(--gr-text); border-color: #ddd; }
.gr-ext-btn--link:hover,
.gr-ext-btn--drive:hover { background: var(--gr-green); color: white; border-color: var(--gr-green); }

/* ══════════════════════════════════════════════════════
   EDITION NAVIGATION
══════════════════════════════════════════════════════ */
.gr-edition-nav { background: var(--gr-dark); padding: 24px 0; }
.gr-edition-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.gr-nav-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  padding: 10px 14px;
  border-radius: var(--gr-radius-sm);
  transition: var(--gr-transition);
  flex: 1;
  max-width: 200px;
}
.gr-nav-btn:hover { background: rgba(255,255,255,0.08); color: white; }
.gr-nav-btn--next { justify-content: flex-end; text-align: right; }
.gr-nav-dir {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2px;
}
.gr-nav-name {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.gr-nav-all {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  white-space: nowrap;
  transition: var(--gr-transition);
}
.gr-nav-all:hover { border-color: rgba(255,255,255,0.4); color: white; }

/* ══════════════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════════════ */
.gr-lb {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gr-lb[hidden] { display: none; }
.gr-lb__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.93);
}
.gr-lb__stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 94vw;
  max-height: 88vh;
  z-index: 2;
}
.gr-lb__stage img {
  max-width: 94vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.gr-lb__caption {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  text-align: center;
  margin: 10px 0 0;
  padding: 0 20px;
}
.gr-lb__close,
.gr-lb__prev,
.gr-lb__next {
  position: fixed;
  background: rgba(255,255,255,0.12);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
  z-index: 3;
}
.gr-lb__close  { top: 16px; right: 16px; width: 44px; height: 44px; }
.gr-lb__close:hover,
.gr-lb__prev:hover,
.gr-lb__next:hover { background: rgba(255,255,255,0.25); }
.gr-lb__prev { left: 8px; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; }
.gr-lb__next { right: 8px; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; }
.gr-lb__counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  z-index: 3;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — TABLET 560px+
══════════════════════════════════════════════════════ */
@media (min-width: 560px) {
  .gr-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .gr-card__info-venue { max-width: 80%; }
  .gr-hero__title { font-size: 4.5rem; }

  .gr-ed-hero__title { font-size: 3.6rem; }

  .gr-videos { flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .gr-video-card { flex: 1; min-width: 260px; }
  /* Promo productions grid */
  .gr-videos--promo { justify-content: center; gap: 20px; }
  .gr-video-card--promo { flex: 0 1 220px; min-width: 160px; max-width: 220px; }

  .gr-photos-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .gr-photos-grid--hero { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — DESKTOP 900px+
══════════════════════════════════════════════════════ */
@media (min-width: 900px) {
  .gr-hero { padding: 96px 40px 80px; }
  .gr-hero__title { font-size: 6rem; }
  .gr-story { padding: 96px 40px; }
  .gr-story__title { font-size: 2.2rem; }
  .gr-editions { padding: 80px 0 96px; }
  .gr-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .gr-section { padding: 44px 0; }
  .gr-section--slim { padding: 32px 0; }

  /* Edition hero: two columns on desktop */
  .gr-ed-hero--split .gr-ed-hero__inner {
    flex-direction: row;
    align-items: center;
    padding: 72px 40px 80px;
    gap: 60px;
  }
  .gr-ed-hero--split .gr-ed-hero__info {
    flex: 1 1 0;
  }
  .gr-ed-hero--split .gr-ed-hero__poster-col {
    flex: 0 0 auto;
    width: 280px;
    justify-content: flex-end;
    order: 0;
  }
  .gr-ed-hero__poster-card { max-width: 280px; }

  /* No-poster: centred, taller */
  .gr-ed-hero:not(.gr-ed-hero--split) .gr-ed-hero__inner {
    padding: 96px 40px 96px;
  }
  .gr-ed-hero__title { font-size: 5.5rem; }

  .gr-photos-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  /* Hero grid: max 5 photos — first photo larger on desktop */
  .gr-photos-grid--hero { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .gr-photos-grid--hero .gr-photo-item:first-child:nth-last-child(n+3) { grid-column: span 2; grid-row: span 2; }

  .gr-edition-nav__inner { padding: 0 40px; }
  .gr-nav-btn { max-width: 280px; }

  .gr-lb__prev { left: 20px; }
  .gr-lb__next { right: 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   T16-01 — GREMAW JOURNEY TIMELINE (Zigzag Vertical, Option B)
   Pure CSS — no JS. Alternating left/right cards on a vertical
   centre line. Mobile: all cards stack on the left.
═══════════════════════════════════════════════════════════════ */

.gr-journey {
  background: #f7faf8;
  padding: 72px 0 80px;
  overflow: hidden;
}

.gr-journey__header {
  text-align: center;
  margin-bottom: 56px;
}

/* ── Vertical centre line ── */
.gr-journey__line {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px;
}
.gr-journey__line::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green,#016936) 0%, rgba(1,105,54,0.15) 100%);
  transform: translateX(-50%);
}

/* ── Each node ── */
.gr-journey__node {
  display: flex;
  align-items: flex-start;
  margin-bottom: 48px;
  position: relative;
  width: 50%;
  padding-bottom: 4px;
}
.gr-journey__node--left {
  justify-content: flex-end;
  padding-right: 44px;
  margin-left: 0;
}
.gr-journey__node--right {
  justify-content: flex-start;
  padding-left: 44px;
  margin-left: 50%;
}

/* ── Dot on the line ── */
.gr-journey__dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green,#016936);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--green,#016936);
  top: 18px;
  z-index: 1;
}
.gr-journey__node--left  .gr-journey__dot { right: -7px; }
.gr-journey__node--right .gr-journey__dot { left: -7px; }

/* ── Card ── */
.gr-journey__card {
  display: flex;
  gap: 14px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 18px 18px 16px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  max-width: 340px;
  width: 100%;
}
.gr-journey__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 22px rgba(1,105,54,0.13);
}

/* ── Thumbnail ── */
.gr-journey__thumb-wrap {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  background: #e8f0eb;
}
.gr-journey__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Info ── */
.gr-journey__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.gr-journey__meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.gr-journey__numeral {
  font-family: var(--font-serif,'Libre Baskerville',Georgia,serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green,#016936);
  line-height: 1;
}
.gr-journey__year {
  font-size: 1rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.03em;
}
.gr-journey__venue {
  font-size: 0.75rem;
  color: #999;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.gr-journey__venue svg { flex-shrink: 0; opacity: 0.7; }
.gr-journey__summary {
  font-size: 0.82rem;
  color: #3d5245;
  line-height: 1.5;
  margin: 0;
}
.gr-journey__cta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green,#016936);
  margin-top: 4px;
  opacity: 0;
  transition: opacity 0.15s;
}
.gr-journey__card:hover .gr-journey__cta { opacity: 1; }

/* ── Mobile: single-column left-rail — straight line, all cards to the right ── */
@media (max-width: 680px) {
  /* Straight vertical spine at the left edge */
  .gr-journey__line::before {
    left: 18px; right: auto; width: 2px;
  }
  .gr-journey__line { padding: 0; }

  /* All nodes: full width, indented right of the rail */
  .gr-journey__node--left,
  .gr-journey__node--right {
    width: 100%;
    margin-left: 0;
    padding-left: 44px;
    padding-right: 0;
    justify-content: flex-start;
  }

  /* All dots sit on the left rail */
  .gr-journey__node--left  .gr-journey__dot,
  .gr-journey__node--right .gr-journey__dot {
    left: 11px; right: auto; top: 18px;
  }

  /* Card: horizontal row with thumbnail */
  .gr-journey__card {
    flex-direction: row; gap: 10px;
    padding: 10px 12px; max-width: 100%; width: 100%;
  }
  .gr-journey__thumb-wrap {
    display: block; width: 54px; height: 54px;
    border-radius: 6px; flex-shrink: 0;
  }

  /* Typography — year prominent on mobile */
  .gr-journey__numeral { font-size: 1.05rem; }
  .gr-journey__year    { font-size: 0.88rem; font-weight: 700; color: #64748b; letter-spacing: 0.03em; }
  .gr-journey__venue,
  .gr-journey__summary { font-size: 0.7rem; }
  .gr-journey__cta     { display: none; }
}


/* ═══════════════════════════════════════════════════════════════
   EVENT PHOTOS — Ken Burns collage  (g9-gremaw v7)
════════════════════════════════════════════════════════════════ */

/* Section wrapper — dark charcoal (NOT dark-green) to break monotony */
.gr-collage-section {
  background: #0c0c0c;
  padding: 0;
}

/* Outer: max-width card container */
.gr-collage-outer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 10px 0;
}

/* 5-slot diagonal magazine grid — same structure as About page */
.gr-collage {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  grid-template-rows: 256px 256px;
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #0c0c0c;
}

/* ── Diagonal clip-path per slot ── */
.gr-cslot {
  position: relative;
  overflow: hidden;
  background: #141414;
}
.gr-cslot:nth-child(1) {
  grid-row: 1 / 3;
  clip-path: polygon(0 0, 100% 0, calc(100% - 28px) 100%, 0 100%);
  z-index: 2;
}
.gr-cslot:nth-child(2) {
  clip-path: polygon(26px 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
  z-index: 1;
}
.gr-cslot:nth-child(3) {
  clip-path: polygon(14px 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}
.gr-cslot:nth-child(4) {
  clip-path: polygon(26px 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
  z-index: 1;
}
.gr-cslot:nth-child(5) {
  clip-path: polygon(14px 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

/* ── Two-layer crossfade images ── */
.gr-cimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  will-change: transform, opacity;
}
.gr-cimg--on  { opacity: 1; }
.gr-cimg--out { opacity: 0; transition: opacity 1.2s ease; }

/* ── Ken Burns keyframes — unique pan/zoom per slot ── */
@keyframes g9gkb1 { 0% { transform: scale(1)    translate(0%,0%)   } 100% { transform: scale(1.14) translate(-2%,-2%)  } }
@keyframes g9gkb2 { 0% { transform: scale(1.11) translate(1.5%,0%) } 100% { transform: scale(1)    translate(-1%,1.5%) } }
@keyframes g9gkb3 { 0% { transform: scale(1)    translate(-1%,1%)  } 100% { transform: scale(1.13) translate(2%,-1%)   } }
@keyframes g9gkb4 { 0% { transform: scale(1.09) translate(0%,-1%)  } 100% { transform: scale(1)    translate(1.5%,2%)  } }
@keyframes g9gkb5 { 0% { transform: scale(1)    translate(1%,0%)   } 100% { transform: scale(1.12) translate(-1.5%,-1.5%) } }
@keyframes g9gkbf { 0% { opacity: 0 } 100% { opacity: 1 } }

.gr-cslot:nth-child(1) .gr-cimg--on { animation: g9gkb1 10s ease-in-out forwards, g9gkbf .9s ease forwards; }
.gr-cslot:nth-child(2) .gr-cimg--on { animation: g9gkb2  8s ease-in-out forwards, g9gkbf .9s ease forwards; }
.gr-cslot:nth-child(3) .gr-cimg--on { animation: g9gkb3 11s ease-in-out forwards, g9gkbf .9s ease forwards; }
.gr-cslot:nth-child(4) .gr-cimg--on { animation: g9gkb4  9s ease-in-out forwards, g9gkbf .9s ease forwards; }
.gr-cslot:nth-child(5) .gr-cimg--on { animation: g9gkb5  8s ease-in-out forwards, g9gkbf .9s ease forwards; }

/* Cinematic vignette on each slot */
.gr-cslot::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 45%, rgba(5,5,5,.55));
}

/* Placeholder when no photo available */
.gr-cslot-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gr-cslot-ph span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.18);
  font-size: 1.2rem;
}

/* ── Album CTA row — sits below the collage grid ── */
.gr-collage-cta-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 14px 20px 18px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Pill button — ghost style on dark background */
.gr-collage-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  border-radius: 30px;
  border: 1.5px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
}
.gr-collage-cta-btn:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.6);
  color: #fff;
}

/* ── Mobile: stack to 2-row single-column collage ── */
@media (max-width: 640px) {
  .gr-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px 160px;
  }
  .gr-cslot:nth-child(1) {
    grid-row: 1 / 1;
    grid-column: 1 / 3;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), 0 100%);
  }
  .gr-cslot:nth-child(2) { clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%); }
  .gr-cslot:nth-child(3) { clip-path: polygon(12px 0, 100% 0, 100% 100%, 0 100%); }
  .gr-cslot:nth-child(4) { clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%); }
  .gr-cslot:nth-child(5) { clip-path: polygon(12px 0, 100% 0, 100% 100%, 0 100%); }
}


/* ═══════════════════════════════════════════════════════════════
   TOP PREV/NEXT STRIP  (g9-gremaw v8)
════════════════════════════════════════════════════════════════ */

.gr-ed-topnav {
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.gr-ed-topnav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 44px;
}
.gr-topnav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: color .18s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gr-topnav-btn:hover { color: #fff; }
.gr-topnav-btn svg  { flex-shrink: 0; }
.gr-topnav-btn--next { justify-content: flex-end; }
.gr-topnav-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gr-topnav-all {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  color: rgba(255,255,255,.4);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 14px;
  white-space: nowrap;
  transition: color .18s;
}
.gr-topnav-all:hover { color: rgba(255,255,255,.8); }

/* Mobile — keep it minimal, no overflow on small screens */
@media (max-width: 480px) {
  .gr-topnav-label { display: none; } /* arrows only on very small screens */
  .gr-topnav-btn   { padding: 0 4px; }
  .gr-topnav-btn svg { width: 18px; height: 18px; }
  .gr-ed-topnav__inner { padding: 0 10px; height: 40px; }
}


/* ═══════════════════════════════════════════════════════════════
   TICKETS INSIDE HERO POSTER CARD  (g9-gremaw v8)
════════════════════════════════════════════════════════════════ */

.gr-ed-hero__tickets {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.gr-ed-hero__tickets-label {
  display: block;
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 7px;
}
.gr-ed-hero__tickets-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.gr-ed-hero__ticket-thumb {
  display: block;
  flex: 0 0 auto;
  width: 80px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  transition: border-color .2s, transform .2s;
}
.gr-ed-hero__ticket-thumb:hover {
  border-color: rgba(255,255,255,.5);
  transform: translateY(-2px);
}
.gr-ed-hero__ticket-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ═══════════════════════════════════════════════════════════════
   INLINE HTML5 VIDEO PLAYER  (g9-gremaw v8)
════════════════════════════════════════════════════════════════ */

.gr-video-local {
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
}
.gr-video-local__player {
  width: 100%;
  height: auto;
  max-height: 70vh;
  display: block;
  object-fit: contain;
}

/* External video card now looks clickable (cursor pointer) */
.gr-video-modal-trigger {
  cursor: pointer;
}
.gr-video-modal-trigger .gr-video-ext-bg {
  background-image: var(--thumb);
}


/* ═══════════════════════════════════════════════════════════════
   VIDEO MODAL  (g9-gremaw v8)
════════════════════════════════════════════════════════════════ */

.gr-vmodal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gr-vmodal[hidden] { display: none; }

.gr-vmodal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.88);
  cursor: pointer;
}
.gr-vmodal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background .18s;
}
.gr-vmodal__close:hover { background: rgba(255,255,255,.22); }

.gr-vmodal__stage {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: min(90vw, 960px);
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gr-vmodal__video {
  width: auto;
  max-width: 100%;
  max-height: 85vh;
  border-radius: 10px;
  background: #000;
  display: block;
  margin: 0 auto;
}


/* Empty state styles moved to v10 block below */

/* ═══════════════════════════════════════════════════════════════
   v9 — Ordinal demotion, green nav, intro strip, cinematic video cards
════════════════════════════════════════════════════════════════ */

/* ── 1. Ordinal — demoted to muted caption ── */
.gr-ed-hero__ordinal { display: none; }
.gr-ed-hero__ordinal-muted {
  display: block;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.32);
  margin-bottom: 8px;
}

/* ── 2. Top nav strip — green accent ── */
.gr-topnav-btn {
  color: rgba(255,255,255,.55);
}
.gr-topnav-btn:hover {
  color: #4ade80;
}
.gr-topnav-btn svg {
  color: #4ade80;
}
.gr-ed-topnav {
  border-bottom-color: rgba(74,222,128,.15);
}
/* Show edition labels on mobile too (abbreviated) */
@media (max-width: 480px) {
  .gr-topnav-label { display: inline; font-size: .65rem; }
}

/* ── 3. Editorial intro strip ── */
.gr-section--intro {
  background: #fff;
  padding: 28px 0 32px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.gr-intro-body {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
  font-style: italic;
  padding: 0 24px;
  position: relative;
}
.gr-intro-body::before {
  content: '"';
  font-size: 3rem;
  color: #2d6a4f;
  line-height: 1;
  display: block;
  margin-bottom: -8px;
  font-family: Georgia, serif;
  opacity: .5;
}

/* ── 4. Cinematic video cards — thumbnail-first ── */
/* Hoverable: subtle thumbnail zoom on hover */
.gr-video-hoverable .gr-video-thumb-img {
  transition: transform .45s ease;
}
.gr-video-hoverable:hover .gr-video-thumb-img {
  transform: scale(1.04);
}

/* Play button: circular ghost style (replace the simple square btn) */
.gr-video-thumb-wrap .gr-video-play-overlay {
  background: transparent;
}
.gr-video-thumb-wrap .gr-video-play-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 2px solid rgba(255,255,255,.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s, border-color .2s;
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
}
.gr-video-hoverable:hover .gr-video-play-btn {
  background: rgba(255,255,255,.28);
  border-color: #fff;
  transform: scale(1.08);
}
/* Play icon slight right-offset for optical centering */
.gr-video-play-btn svg {
  margin-left: 3px;
}

/* Local video player that replaces the card after click */
.gr-video-local {
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
}
.gr-video-local__player {
  width: 100%;
  height: 100%;
  display: block;
}

/* External video modal trigger — background via CSS var */
.gr-video-modal-trigger .gr-video-ext-bg {
  background-image: var(--thumb);
  background-size: cover;
  background-position: center;
}


/* ═══════════════════════════════════════════════════════════════
   EMPTY STATE  (v10 — elevated)
════════════════════════════════════════════════════════════════ */
.gr-ed-empty {
  background: linear-gradient(135deg, #0a1a0f 0%, #0d2618 50%, #0a1a0f 100%);
  padding: 72px 0 80px;
}
.gr-ed-empty__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 680px;
  margin: 0 auto;
}
.gr-ed-empty__badge {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid rgba(74,222,128,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74,222,128,.06);
}
.gr-ed-empty__num {
  font-family: var(--font-serif,'Libre Baskerville',Georgia,serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: #4ade80;
  line-height: 1;
}
.gr-ed-empty__text-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gr-ed-empty__title {
  font-family: var(--font-serif,'Libre Baskerville',Georgia,serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.gr-ed-empty__sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
  margin: 0;
  line-height: 1.6;
}
.gr-ed-empty__venue {
  font-size: 0.8rem;
  color: rgba(74,222,128,.7);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
.gr-ed-empty__cta {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #4ade80;
  text-decoration: none;
  opacity: .75;
  transition: opacity .15s;
}
.gr-ed-empty__cta:hover { opacity: 1; }
@media (max-width: 520px) {
  .gr-ed-empty__inner { flex-direction: column; gap: 24px; text-align: center; }
  .gr-ed-empty__venue { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   YOUTUBE UNAVAILABLE OVERLAY  (v10)
════════════════════════════════════════════════════════════════ */
.gr-yt-unavail {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(0,0,0,.55);
  border-radius: 8px;
  color: rgba(255,255,255,.6);
  font-size: 0.75rem;
  letter-spacing: .04em;
  text-align: center;
  padding: 12px;
}

/* ═══════════════════════════════════════════════════════════════
   v18 — UX audit #19: empty-thumb placeholder on journey timeline
═══════════════════════════════════════════════════════════════ */
.gr-journey__thumb-wrap--empty {
  background: linear-gradient(135deg, #f4f6f4 0%, #eaefea 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gr-journey__thumb-ph {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  color: #8a918e;
  text-align: center;
  padding: 8px;
}
.gr-journey__thumb-ph svg { stroke: #8a918e; }
.gr-journey__thumb-ph-label {
  font-size: .68rem;
  font-style: italic;
  letter-spacing: .02em;
}
