:root {
  --cream: #F5F1E8;
  --blush-rose: #D8B7B0;
  --honey-tan: #C29A6B;
  --sage-green: #8A9A82;
  --deep-sea-green: #365C5A;
  --espresso: #3A2F2A;
  --border-soft: rgba(138, 154, 130, 0.2);
  --card-surface: color-mix(in srgb, var(--blush-rose) 30%, #ffffff 70%);
  --shadow-soft: 0 16px 38px rgba(54, 92, 90, 0.1);
  --shadow-medium: 0 22px 48px rgba(54, 92, 90, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', 'Avenir Next', Avenir, sans-serif;
  color: var(--espresso);
  background:
    radial-gradient(circle at 6% 10%, rgba(194, 154, 107, 0.12), transparent 32%),
    radial-gradient(circle at 94% 0%, rgba(138, 154, 130, 0.22), transparent 30%),
    repeating-linear-gradient(165deg, rgba(216, 183, 176, 0.1) 0 18px, rgba(245, 241, 232, 0.6) 18px 36px),
    var(--cream);
}

a {
  color: var(--honey-tan);
  text-decoration: none;
  transition: color .2s ease;
}

a:hover { color: var(--blush-rose); }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--deep-sea-green) 94%, #ffffff 6%);
  border-bottom: 1px solid rgba(245, 241, 232, 0.16);
  backdrop-filter: blur(12px);
}

.header-inner { min-height: 94px; display: flex; align-items: center; justify-content: flex-start; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--cream); font-weight: 800; }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(148px, 18vw, 230px);
  height: 72px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.brand strong { font-family: 'Cormorant Garamond', Georgia, serif; letter-spacing: .01em; font-size: 1.48rem; }
.brand small { display: block; color: color-mix(in srgb, var(--cream) 75%, var(--honey-tan) 25%); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; }
nav { display: flex; gap: 22px; font-weight: 700; color: var(--cream); }
nav a { color: color-mix(in srgb, var(--cream) 86%, var(--blush-rose) 14%); }
nav a:hover { color: var(--blush-rose); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-11px);
}

.mobile-nav {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  background: color-mix(in srgb, var(--deep-sea-green) 96%, #000000 4%);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  padding-top: 94px;
  z-index: 40;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  max-height: calc(100vh - 94px);
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateY(0);
}

.mobile-nav a {
  padding: 16px 24px;
  color: color-mix(in srgb, var(--cream) 88%, var(--blush-rose) 12%);
  font-weight: 700;
  border-bottom: 1px solid rgba(245, 241, 232, 0.08);
  transition: all 0.2s ease;
  text-align: left;
}

.mobile-nav a:hover {
  background: rgba(245, 241, 232, 0.06);
  color: var(--blush-rose);
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 35;
  display: none;
  transition: background 0.3s ease;
  pointer-events: none;
}

.mobile-nav-overlay.active {
  display: block;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: auto;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease, color .2s ease;
}

.button:hover { transform: translateY(-1px); }
.primary {
  background: var(--honey-tan);
  color: var(--cream);
  box-shadow: 0 14px 30px rgba(194, 154, 107, 0.34);
}

.primary:hover { background: var(--sage-green); color: var(--cream); }
.light {
  background: color-mix(in srgb, var(--cream) 76%, #ffffff 24%);
  color: var(--deep-sea-green);
  border: 1px solid var(--border-soft);
}

.light:hover { background: var(--blush-rose); color: var(--deep-sea-green); }
.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 56px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--cream) 88%, #ffffff 12%) 0%, rgba(245, 241, 232, 0.6) 100%);
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/media/images/site/gg_logo_eagle_trans.png');
  background-repeat: no-repeat;
  background-position: right 2vw center;
  background-size: min(56vw, 560px);
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}

.hero:after {
  content: "";
  position: absolute;
  width: min(44vw, 540px);
  height: min(44vw, 540px);
  border-radius: 50%;
  right: -8vw;
  top: -25%;
  background: radial-gradient(circle, rgba(216, 183, 176, 0.56) 0%, rgba(216, 183, 176, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 54px; position: relative; z-index: 1; }
.badge {
  display: inline-flex;
  border-radius: 999px;
  padding: 10px 16px;
  background: color-mix(in srgb, var(--blush-rose) 36%, #ffffff 64%);
  color: var(--deep-sea-green);
  font-weight: 700;
  border: 1px solid var(--border-soft);
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--deep-sea-green);
  margin: 0;
  line-height: 1;
  letter-spacing: -.02em;
}

h1 { margin-top: 22px; font-size: clamp(3rem, 6vw, 5.75rem); line-height: .95; }
h1 span {
  color: var(--honey-tan);
  text-shadow: 0 5px 18px rgba(194, 154, 107, 0.22);
}

.hero-copy, .copy { max-width: 720px; color: color-mix(in srgb, var(--espresso) 84%, #000000 16%); font-size: 1.04rem; line-height: 1.75; font-weight: 500; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.chips a {
  padding: 10px 13px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--cream) 76%, #ffffff 24%);
  border: 1px solid var(--border-soft);
  color: var(--deep-sea-green);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.chips a:hover {
  background: var(--blush-rose);
  color: var(--deep-sea-green);
  transform: translateY(-2px);
}

.actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-card { position: relative; animation: float 6s ease-in-out infinite; }
.hero-card:before {
  content: "";
  position: absolute;
  inset: -16px;
  transform: rotate(2deg);
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(216, 183, 176, 0.44), rgba(194, 154, 107, 0.4), rgba(138, 154, 130, 0.36));
}

.hero-card img {
  position: relative;
  width: 100%;
  display: block;
  border: 8px solid color-mix(in srgb, var(--cream) 78%, #ffffff 22%);
  border-radius: 42px;
  box-shadow: 0 24px 70px rgba(54, 92, 90, 0.22);
}

@keyframes float { 50% { transform: translateY(-10px); } }
.player-profile {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
}

.player-profile:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/media/images/site/gg_logo_eagle_trans.png');
  background-repeat: no-repeat;
  background-position: left 2vw center;
  background-size: min(56vw, 560px);
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}

.player-profile > .container { position: relative; z-index: 1; }

.profile-heading {
  max-width: 760px;
  margin-bottom: 30px;
  scroll-margin-top: 112px;
  text-align: left;
}

.profile-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.profile-heading-row .profile-heading { margin-bottom: 0; }
.profile-year-picker {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px 6px 14px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, .55);
  box-shadow: var(--shadow-soft);
}

.profile-year-picker label {
  color: var(--deep-sea-green);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.profile-year-picker select {
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--deep-sea-green);
  color: var(--cream);
  font: inherit;
  font-size: .76rem;
  font-weight: 700;
  cursor: pointer;
}

.profile-heading h2 { margin-bottom: 18px; }
.profile-heading p:last-child {
  margin: 0;
  color: color-mix(in srgb, var(--espresso) 76%, #ffffff 24%);
  line-height: 1.8;
  font-weight: 500;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.profile-fact,
.profile-story {
  position: relative;
  overflow: hidden;
  background: var(--card-surface);
  border: 1px solid var(--border-soft);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.profile-fact {
  min-height: 190px;
  padding: 24px;
}

.profile-fact:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  right: -34px;
  bottom: -34px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--honey-tan) 24%, transparent);
}

.profile-icon { display: block; margin-bottom: 24px; font-size: 1.8rem; }
.profile-fact p,
.profile-story .story-label {
  margin: 0 0 9px;
  color: var(--honey-tan);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .68rem;
  font-weight: 800;
}

.profile-fact h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--deep-sea-green);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.2;
}

.profile-story {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr);
  gap: 28px;
  align-items: center;
  margin-top: 16px;
  padding: 30px;
  color: var(--cream);
  background: linear-gradient(135deg, var(--deep-sea-green), color-mix(in srgb, var(--deep-sea-green) 72%, var(--sage-green) 28%));
}

.profile-story .story-label { color: var(--honey-tan); }
.profile-story h3 { margin: 0 0 12px; color: var(--cream); font-size: 1.8rem; }
.profile-story-copy > p:last-child { margin: 0; color: rgba(245, 241, 232, .9); line-height: 1.75; font-weight: 500; }
.profile-story-video {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(245, 241, 232, .22);
  border-radius: 22px;
  background: rgba(17, 17, 17, .46);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .2);
}

.profile-story-video iframe,
.profile-story-video video { width: 100%; height: 100%; border: 0; display: block; }
.profile-story-video video { object-fit: contain; background: #111; }
.profile-story-video-placeholder { padding: 24px; color: rgba(245, 241, 232, .78); text-align: center; }
.profile-story-video-placeholder span { display: block; margin-bottom: 10px; font-size: 2.5rem; }
.profile-story-video-placeholder strong { display: block; margin-bottom: 5px; color: var(--cream); }
.media article, .event {
  background: var(--card-surface);
  border: 1px solid var(--border-soft);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.eyebrow {
  color: var(--honey-tan);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .72rem;
  font-weight: 800;
}
h2 { margin-top: 14px; font-size: clamp(2.35rem, 4.2vw, 4rem); line-height: 1; }
.schedule {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  background: linear-gradient(140deg, var(--deep-sea-green) 0%, color-mix(in srgb, var(--deep-sea-green) 72%, var(--sage-green) 28%) 100%);
  color: var(--cream);
}

.schedule:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/media/images/site/gg_logo_eagle_trans.png');
  background-repeat: no-repeat;
  background-position: right 2vw center;
  background-size: min(56vw, 560px);
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}

.schedule .container { position: relative; z-index: 1; }

.schedule h2 { color: var(--cream); }
.schedule-heading { scroll-margin-top: 112px; }
.schedule-head { display: flex; justify-content: space-between; align-items: end; gap: 18px; margin-bottom: 34px; flex-wrap: wrap; }
.light-text { color: color-mix(in srgb, var(--cream) 84%, var(--honey-tan) 16%); }
.date-note { color: color-mix(in srgb, var(--cream) 82%, var(--blush-rose) 18%); font-weight: 600; }
.controls, .filters {
  display: flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(245, 241, 232, 0.16);
  border: 1px solid rgba(245, 241, 232, 0.26);
}

.controls label { padding: 10px; color: var(--cream); font-weight: 700; text-transform: uppercase; font-size: .7rem; letter-spacing: .1em; }
.controls select, .filters a { border: 0; border-radius: 999px; padding: 10px 16px; font-weight: 700; background: transparent; color: var(--cream); text-transform: capitalize; }
.controls select { background: var(--cream); color: var(--deep-sea-green); }
.filters a.active { background: var(--cream); color: var(--deep-sea-green); }
.event-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.carousel-shell { position: relative; }
.carousel-toolbar {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-bottom: 18px;
}

.carousel-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(245, 241, 232, 0.26);
  background: rgba(245, 241, 232, 0.14);
  color: var(--cream);
  font-size: 1.15rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease, background-color .2s ease;
}

.media .carousel-arrow {
  border-color: var(--border-soft);
  background: color-mix(in srgb, var(--cream) 84%, #ffffff 16%);
  color: var(--deep-sea-green);
}

.light-carousel .carousel-arrow {
  border-color: var(--border-soft);
  background: color-mix(in srgb, var(--cream) 84%, #ffffff 16%);
  color: var(--deep-sea-green);
}

.carousel-arrow:hover:not(:disabled) { transform: translateY(-1px); }

.carousel-arrow:disabled {
  opacity: 0.38;
  cursor: default;
}

.carousel-viewport {
  overflow: visible;
}
.event { position: relative; overflow: hidden; padding: 22px; color: var(--espresso); }
.winner { border: 2px solid rgba(194, 154, 107, 0.74); }
.top-three { border-width: 2px; border-style: solid; }
.place-1, .place-2, .place-3 {
  border-color: rgba(194, 154, 107, 0.62);
  box-shadow: 0 18px 42px rgba(194, 154, 107, 0.2);
}
.event.place-1 {
  border-color: rgba(194, 154, 107, 0.9);
  box-shadow: 0 20px 54px rgba(194, 154, 107, 0.34), inset 0 0 0 1px rgba(245, 241, 232, 0.58);
}
.event.place-2 {
  border-color: rgba(138, 154, 130, 0.68);
  box-shadow: 0 16px 36px rgba(138, 154, 130, 0.2);
}
.event.place-3 {
  border-color: rgba(216, 183, 176, 0.68);
  box-shadow: 0 12px 28px rgba(216, 183, 176, 0.18);
}

.confetti { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.confetti i { position: absolute; top: -18px; width: 10px; height: 18px; border-radius: 4px; background: var(--honey-tan); animation: fall 3.2s linear infinite; }
.confetti i:nth-child(4n+2) { background: var(--blush-rose); }
.confetti i:nth-child(4n+3) { background: var(--sage-green); }
.confetti i:nth-child(4n+4) { background: color-mix(in srgb, var(--cream) 82%, #ffffff 18%); }
.confetti.place-1 i {
  width: 12px;
  height: 22px;
  border-radius: 5px;
  animation-name: fall-champion;
  animation-duration: 2.55s;
  opacity: .96;
}
.confetti.place-1 i:nth-child(3n+2) { width: 9px; height: 9px; border-radius: 50%; }
.confetti.place-1 i:nth-child(4n+1) { background: #f2c766; }
.confetti.place-1 i:nth-child(4n+2) { background: #f08ca3; }
.confetti.place-1 i:nth-child(4n+3) { background: #7fa579; }
.confetti.place-1 i:nth-child(4n+4) { background: #ffffff; }
.confetti.place-2 i {
  width: 9px;
  height: 16px;
  animation-duration: 3.55s;
  opacity: .78;
}
.confetti.place-3 i {
  width: 7px;
  height: 13px;
  animation-duration: 4.15s;
  opacity: .58;
}
.confetti i:nth-child(10n+1) { left: 3%; }
.confetti i:nth-child(10n+2) { left: 13%; }
.confetti i:nth-child(10n+3) { left: 23%; }
.confetti i:nth-child(10n+4) { left: 33%; }
.confetti i:nth-child(10n+5) { left: 43%; }
.confetti i:nth-child(10n+6) { left: 53%; }
.confetti i:nth-child(10n+7) { left: 63%; }
.confetti i:nth-child(10n+8) { left: 73%; }
.confetti i:nth-child(10n+9) { left: 83%; }
.confetti i:nth-child(10n) { left: 93%; }
.confetti i:nth-child(7n+2) { animation-delay: .24s; }
.confetti i:nth-child(7n+3) { animation-delay: .48s; }
.confetti i:nth-child(7n+4) { animation-delay: .72s; }
.confetti i:nth-child(7n+5) { animation-delay: .96s; }
.confetti i:nth-child(7n+6) { animation-delay: 1.2s; }
.confetti i:nth-child(7n) { animation-delay: 1.44s; }
.confetti i:nth-child(5n+2) { animation-duration: 3.4s; }
.confetti i:nth-child(5n+3) { animation-duration: 3.65s; }
.confetti i:nth-child(5n+4) { animation-duration: 3.9s; }
.confetti i:nth-child(5n) { animation-duration: 4.15s; }
.confetti.place-1 i:nth-child(5n+1) { animation-duration: 2.35s; }
.confetti.place-1 i:nth-child(5n+2) { animation-duration: 2.55s; }
.confetti.place-1 i:nth-child(5n+3) { animation-duration: 2.75s; }
.confetti.place-1 i:nth-child(5n+4) { animation-duration: 2.95s; }
.confetti.place-1 i:nth-child(5n) { animation-duration: 3.1s; }
.confetti.place-2 i:nth-child(5n+1) { animation-duration: 3.35s; }
.confetti.place-2 i:nth-child(5n+2) { animation-duration: 3.55s; }
.confetti.place-2 i:nth-child(5n+3) { animation-duration: 3.75s; }
.confetti.place-2 i:nth-child(5n+4) { animation-duration: 3.95s; }
.confetti.place-2 i:nth-child(5n) { animation-duration: 4.15s; }
.confetti.place-3 i:nth-child(5n+1) { animation-duration: 4.05s; }
.confetti.place-3 i:nth-child(5n+2) { animation-duration: 4.25s; }
.confetti.place-3 i:nth-child(5n+3) { animation-duration: 4.45s; }
.confetti.place-3 i:nth-child(5n+4) { animation-duration: 4.65s; }
.confetti.place-3 i:nth-child(5n) { animation-duration: 4.85s; }
@keyframes fall { 0% { transform: translate3d(0,-30px,0) rotate(0); opacity: 0; } 10% { opacity: 1; } 100% { transform: translate3d(18px,420px,0) rotate(540deg); opacity: 0; } }
@keyframes fall-champion { 0% { transform: translate3d(-10px,-36px,0) rotate(0) scale(.82); opacity: 0; } 8% { opacity: 1; } 58% { transform: translate3d(22px,230px,0) rotate(520deg) scale(1.1); } 100% { transform: translate3d(42px,460px,0) rotate(820deg) scale(.9); opacity: 0; } }
.event-top, .result { position: relative; z-index: 1; }
.event-top { display: flex; justify-content: space-between; gap: 18px; }
.event-date-row { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.event-top strong { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.45rem; color: var(--deep-sea-green); }
.event-name {
  margin: 8px 0 2px;
  color: color-mix(in srgb, var(--espresso) 94%, #ffffff 6%);
  font-weight: 700;
  line-height: 1.45;
}
.event-top p { color: color-mix(in srgb, var(--espresso) 84%, #ffffff 16%); font-weight: 600; }
.event-top span { border-radius: 999px; padding: 7px 11px; font-size: .7rem; font-weight: 700; letter-spacing: .08em; height: max-content; text-transform: uppercase; }
.event-status-media {
  display: grid;
  justify-items: end;
  align-content: start;
  gap: 9px;
  flex: 0 0 76px;
}
.event-tile-thumb {
  width: 72px;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--deep-sea-green) 22%, #ffffff 78%);
  background: color-mix(in srgb, var(--cream) 78%, #ffffff 22%);
  box-shadow: 0 10px 18px rgba(46, 60, 52, 0.12);
}
.event-tile-thumb img,
.event-tile-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.event-tile-thumb i {
  position: absolute;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  color: var(--deep-sea-green);
  font-style: normal;
  font-size: .72rem;
  padding-left: 2px;
}
.event-tile-thumb:hover,
.event-tile-thumb:focus-visible {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--honey-tan) 58%, #ffffff 42%);
}
.event-tile-thumb.is-map-placeholder {
  background:
    linear-gradient(135deg, rgba(138, 154, 130, 0.18) 0 25%, transparent 25% 50%, rgba(138, 154, 130, 0.15) 50% 75%, transparent 75%),
    linear-gradient(90deg, rgba(194, 154, 107, 0.28), rgba(255, 255, 255, 0.62)),
    color-mix(in srgb, var(--cream) 80%, #ffffff 20%);
  background-size: 24px 24px, 100% 100%, 100% 100%;
}
.event-tile-thumb.is-map-placeholder:before,
.event-tile-thumb.is-map-placeholder:after {
  content: "";
  position: absolute;
  background: rgba(46, 60, 52, 0.22);
}
.event-tile-thumb.is-map-placeholder:before {
  width: 1px;
  height: 100%;
  left: 50%;
}
.event-tile-thumb.is-map-placeholder:after {
  width: 100%;
  height: 1px;
  top: 52%;
}
.event-tile-thumb.is-map-placeholder b {
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--honey-tan);
  position: relative;
  z-index: 1;
}
.event-tile-thumb.is-map-placeholder b:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cream);
  left: 6px;
  top: 6px;
}
.event-tile-thumb.is-map-placeholder small {
  position: absolute;
  right: 6px;
  bottom: 5px;
  z-index: 1;
  color: var(--deep-sea-green);
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.past { background: rgba(216, 183, 176, 0.35); color: var(--espresso); }
.upcoming { background: rgba(138, 154, 130, 0.24); color: var(--deep-sea-green); }
.underway { background: rgba(194, 154, 107, 0.22); color: var(--deep-sea-green); }
.result { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.result p {
  border-radius: 18px;
  background: color-mix(in srgb, var(--cream) 78%, #ffffff 22%);
  border: 1px solid var(--border-soft);
  padding: 14px 16px;
  margin: 0;
  color: color-mix(in srgb, var(--espresso) 88%, #ffffff 12%);
  font-weight: 700;
}

.result p:last-child {
  background: color-mix(in srgb, var(--honey-tan) 18%, #ffffff 82%);
  color: var(--deep-sea-green);
}

.event-score-breakdown {
  margin-top: 10px;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  background: color-mix(in srgb, var(--cream) 88%, #ffffff 12%);
  padding: 10px 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.event-score-breakdown span {
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(194, 154, 107, 0.14);
  color: var(--deep-sea-green);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.event-place-breakdown {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px dashed var(--border-soft);
  padding-top: 8px;
  position: relative;
  z-index: 1;
}

.event-place-breakdown span {
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(216, 183, 176, 0.2);
  color: var(--espresso);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.event-media-meta { margin-top: 12px; display: flex; gap: 10px; flex-wrap: wrap; position: relative; z-index: 1; }
.event-media-link {
  border-radius: 999px;
  padding: 8px 12px;
  background: color-mix(in srgb, var(--cream) 88%, #ffffff 12%);
  border: 1px solid var(--border-soft);
  color: var(--deep-sea-green);
  font-size: .76rem;
  font-weight: 700;
}

.event-media-link:hover { background: rgba(216, 183, 176, 0.35); }
.empty { grid-column: 1 / -1; background: var(--card-surface); color: var(--deep-sea-green); border-radius: 30px; padding: 34px; }

/* ── Underway live-event glow ───────────────────────────────────── */
@keyframes underway-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(194, 154, 107, 0), var(--shadow-soft); border-color: var(--border-soft); }
  50%  { box-shadow: 0 0 28px 8px rgba(194, 154, 107, 0.38), var(--shadow-soft); border-color: rgba(194, 154, 107, 0.72); }
}
@keyframes underway-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}
.event.is-underway {
  animation: underway-glow 2.4s ease-in-out infinite, underway-float 2.4s ease-in-out infinite;
}
.event.is-underway .event-top > span {
  background: rgba(194, 154, 107, 0.9);
  color: #fff;
  box-shadow: 0 0 12px 2px rgba(194, 154, 107, 0.55);
}

/* ── Multi-day badge ──────────────────────────────────────────── */
.event-multiday-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(130deg, rgba(138, 154, 130, 0.18), rgba(194, 154, 107, 0.15));
  border: 1px solid rgba(138, 154, 130, 0.4);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--deep-sea-green);
}

.media {
  position: relative;
  overflow: hidden;
  padding: 84px 0 24px;
}
.media:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/media/images/site/gg_logo_eagle_trans.png');
  background-repeat: no-repeat;
  background-position: left 2vw center;
  background-size: min(56vw, 560px);
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}
.media > .container {
  position: relative;
  z-index: 1;
}
.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 42px; }
.media article {
  padding: 24px;
  border-radius: 26px;
  background: color-mix(in srgb, var(--cream) 84%, #ffffff 16%);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.media article .media-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(194, 154, 107, 0.35), rgba(216, 183, 176, 0.36));
  font-size: 1.55rem;
  margin-bottom: 16px;
}

.media p { color: color-mix(in srgb, var(--espresso) 80%, #ffffff 20%); line-height: 1.65; font-weight: 500; margin-bottom: 0; }
.hub-items { margin-top: 16px; display: grid; gap: 10px; }
.hub-item { border: 1px solid var(--border-soft); border-radius: 14px; overflow: hidden; background: color-mix(in srgb, var(--cream) 70%, #ffffff 30%); }
.hub-item img { width: 100%; height: 130px; object-fit: cover; display: block; }
.hub-item video, .hub-item iframe { width: 100%; height: 152px; border: 0; display: block; background: #000; }
.hub-item span {
  display: block;
  padding: 9px 10px;
  color: color-mix(in srgb, var(--espresso) 80%, #ffffff 20%);
  font-size: .8rem;
  line-height: 1.35;
  font-weight: 600;
  background: color-mix(in srgb, var(--cream) 76%, #ffffff 24%);
}

.hub-empty { color: color-mix(in srgb, var(--espresso) 65%, #ffffff 35%); font-size: .9rem; padding: 12px 2px 2px; }
.media-filter {
  margin: 24px 0 8px;
  padding: 20px;
  border-radius: 20px;
  background: color-mix(in srgb, var(--blush-rose) 32%, #ffffff 68%);
  border: 1px solid var(--border-soft);
}

.media-filter h3 { margin: 0; color: var(--deep-sea-green); font-size: 1.3rem; }
.media-filter-tabs { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.media-filter-tabs a {
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid var(--border-soft);
  color: var(--deep-sea-green);
  font-weight: 700;
  font-size: .76rem;
  background: color-mix(in srgb, var(--cream) 88%, #ffffff 12%);
}

.media-filter-tabs a.active { background: var(--honey-tan); color: var(--cream); border-color: transparent; }
.media-filter-controls { display: flex; align-items: center; gap: 16px; flex-wrap: nowrap; }
.media-filter-group { display: flex; align-items: center; gap: 7px; white-space: nowrap; }
.media-filter-group > span {
  display: block;
  color: color-mix(in srgb, var(--espresso) 68%, #ffffff 32%);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.media-filter-group .media-filter-tabs { margin-top: 0; flex-wrap: nowrap; }
.media-filter-group .media-filter-tabs a { padding: 6px 9px; font-size: .66rem; }
.media-filter-grid { margin-top: 14px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.media-filter-empty { margin-top: 12px; color: color-mix(in srgb, var(--espresso) 65%, #ffffff 35%); font-size: .9rem; }
.gallery-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 18px;
  margin-bottom: 20px;
}

.gallery-copy {
  max-width: 760px;
  color: color-mix(in srgb, var(--espresso) 78%, #ffffff 22%);
  line-height: 1.75;
  margin: 10px 0 0;
}

.gallery-summary {
  min-width: 138px;
  padding: 18px 16px;
  border-radius: 22px;
  text-align: center;
  background: linear-gradient(145deg, rgba(194, 154, 107, 0.16), rgba(216, 183, 176, 0.28));
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.gallery-header-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  justify-content: center;
  gap: 10px;
}

.gallery-header-actions .gallery-summary,
.gallery-header-actions .gallery-filter-toggle {
  flex: 0 0 auto;
}

.gallery-summary strong {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--deep-sea-green);
}

.gallery-summary span {
  display: block;
  margin-top: 6px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--espresso) 72%, #ffffff 28%);
}

.gallery-filter-bar {
  margin: 0 0 18px;
  border-radius: 24px;
  background: color-mix(in srgb, var(--blush-rose) 30%, #ffffff 70%);
  border: 1px solid var(--border-soft);
  overflow: hidden;
}

.gallery-filter-toggle {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 82px;
  min-height: 82px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(194, 154, 107, 0.16), rgba(216, 183, 176, 0.28));
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  color: var(--deep-sea-green);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.gallery-filter-toggle:hover { color: var(--honey-tan); transform: translateY(-1px); }
.gallery-filter-toggle span { pointer-events: none; }
.gallery-filter-toggle small {
  display: block;
  margin-top: 5px;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  pointer-events: none;
}

.gallery-filter-body {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding: 14px 18px 18px;
}

.gallery-filter-note {
  margin: 0;
  color: color-mix(in srgb, var(--espresso) 66%, #ffffff 34%);
  font-weight: 500;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.gallery-card {
  overflow: hidden;
  border-radius: 24px;
  background: color-mix(in srgb, var(--cream) 86%, #ffffff 14%);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: opacity .2s ease, transform .2s ease;
}
.gallery-card[hidden] { display: none; }

.gallery-thumb {
  position: relative;
  background: #111;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.gallery-media-trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #111;
  color: var(--cream);
  cursor: pointer;
  overflow: hidden;
}

.gallery-media-trigger:focus-visible {
  outline: 3px solid var(--honey-tan);
  outline-offset: -5px;
}

.gallery-thumb img,
.gallery-thumb video,
.gallery-thumb iframe {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border: 0;
}

.gallery-thumb video {
  object-fit: contain;
}

.gallery-thumb iframe {
  background: #111;
}

.gallery-media-trigger:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.58));
  opacity: 0;
  transition: opacity .2s ease;
}

.gallery-media-trigger:hover:after,
.gallery-media-trigger:focus-visible:after {
  opacity: 1;
}

.gallery-open-label {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(245, 241, 232, 0.92);
  color: var(--deep-sea-green);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease;
}

.gallery-media-trigger:hover .gallery-open-label,
.gallery-media-trigger:focus-visible .gallery-open-label {
  opacity: 1;
  transform: translateY(0);
}

.gallery-play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--cream) 88%, #ffffff 12%);
  color: var(--deep-sea-green);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%);
  font-size: 1.25rem;
  line-height: 1;
}

.gallery-embed-trigger {
  background:
    linear-gradient(135deg, rgba(54, 92, 90, 0.92), rgba(194, 154, 107, 0.72)),
    url('/media/images/site/gg_logo_eagle_trans.png') center / 58% auto no-repeat;
}

.gallery-meta {
  padding: 16px 16px 18px;
}

.gallery-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.gallery-meta-row > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(138, 154, 130, 0.16);
  color: var(--deep-sea-green);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gallery-date {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: -2px 0 9px;
  color: color-mix(in srgb, var(--espresso) 68%, #ffffff 32%);
  font-size: .76rem;
  font-weight: 700;
  line-height: 1.35;
}

.gallery-date span {
  color: var(--honey-tan);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gallery-meta h3 {
  margin: 0;
  color: var(--espresso);
  font-size: 1.02rem;
  line-height: 1.45;
}

.gallery-share-button,
.media-modal-share {
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: color-mix(in srgb, var(--cream) 86%, #ffffff 14%);
  color: var(--deep-sea-green);
  cursor: pointer;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.gallery-share-button {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  font-size: .94rem;
  line-height: 1;
  letter-spacing: 0;
}

.gallery-share-button span {
  display: block;
  transform: translateY(-1px);
}

.gallery-share-button:hover,
.gallery-share-button:focus-visible {
  background: rgba(216, 183, 176, 0.28);
  outline: none;
}

.gallery-pagination {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 22px;
}

.gallery-pagination a,
.gallery-pagination button {
  min-width: 42px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  text-align: center;
  background: color-mix(in srgb, var(--cream) 90%, #ffffff 10%);
  color: var(--deep-sea-green);
  font-weight: 800;
  font-size: .78rem;
  cursor: pointer;
}

.gallery-pagination a.active,
.gallery-pagination button.active {
  background: var(--honey-tan);
  color: var(--cream);
  border-color: transparent;
}

.gallery-pagination a.disabled,
.gallery-pagination button:disabled {
  pointer-events: none;
  opacity: 0.45;
}

.gallery-empty {
  margin-top: 18px;
  padding: 24px;
  border-radius: 22px;
  background: color-mix(in srgb, var(--cream) 88%, #ffffff 12%);
  border: 1px solid var(--border-soft);
  color: color-mix(in srgb, var(--espresso) 68%, #ffffff 32%);
}

.media-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.media-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.media-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(18, 21, 20, 0.78);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.media-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1060px, 100%);
  max-height: min(86vh, 820px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border-radius: 24px;
  background: color-mix(in srgb, var(--cream) 91%, #ffffff 9%);
  border: 1px solid rgba(245, 241, 232, 0.36);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.media-modal-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: color-mix(in srgb, var(--deep-sea-green) 94%, #ffffff 6%);
  color: var(--cream);
}

.media-modal-toolbar span {
  display: block;
  margin-bottom: 4px;
  color: color-mix(in srgb, var(--cream) 78%, var(--honey-tan) 22%);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.media-modal-toolbar h2 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.2;
}

.media-modal-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.media-modal-share {
  padding: 11px 14px;
  background: rgba(245, 241, 232, 0.1);
  border-color: rgba(245, 241, 232, 0.26);
  color: var(--cream);
}

.media-modal-share:hover,
.media-modal-share:focus-visible {
  background: var(--honey-tan);
  outline: none;
}

.media-modal-close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(245, 241, 232, 0.26);
  background: rgba(245, 241, 232, 0.1);
  color: var(--cream);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.media-modal-close:hover,
.media-modal-close:focus-visible {
  background: var(--honey-tan);
  outline: none;
}

.media-modal-stage {
  min-height: 240px;
  display: grid;
  place-items: center;
  background: #101010;
}

.media-modal-stage img,
.media-modal-stage video,
.media-modal-stage iframe {
  display: block;
  width: 100%;
  max-height: calc(min(86vh, 820px) - 82px);
  border: 0;
  background: #101010;
}

.media-modal-stage img,
.media-modal-stage video {
  height: auto;
  object-fit: contain;
}

.media-modal-stage iframe {
  aspect-ratio: 16 / 9;
  height: min(56vw, calc(min(86vh, 820px) - 82px));
}

.media-modal-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(245, 241, 232, 0.34);
  background: rgba(18, 21, 20, 0.66);
  color: var(--cream);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  transition: background-color .2s ease, opacity .2s ease, transform .2s ease;
}

.media-modal-nav-prev { left: 18px; }
.media-modal-nav-next { right: 18px; }

.media-modal-nav:hover:not(:disabled),
.media-modal-nav:focus-visible {
  background: var(--honey-tan);
  outline: none;
  transform: translateY(-50%) scale(1.04);
}

.media-modal-nav:disabled {
  opacity: 0.32;
  cursor: default;
}

.media-share-status {
  margin: 0;
  padding: 8px 16px 12px;
  background: #101010;
  color: rgba(245, 241, 232, 0.84);
  font-size: .78rem;
  font-weight: 700;
  text-align: right;
}

body.media-modal-open {
  overflow: hidden;
}
.logo-strip {
  padding: 12px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: color-mix(in srgb, var(--cream) 88%, #ffffff 12%);
  overflow: hidden;
}

.logo-marquee {
  display: flex;
  width: max-content;
  animation: logo-scroll 26s linear infinite;
}

.logo-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 16px;
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 252px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: color-mix(in srgb, var(--blush-rose) 28%, #ffffff 72%);
  box-shadow: 0 8px 20px rgba(54, 92, 90, 0.08);
}

.logo-pill a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-pill img {
  display: block;
  height: 37px;
  width: auto;
  max-width: 252px;
  object-fit: contain;
}

@keyframes logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.logo-strip:hover .logo-marquee { animation-play-state: paused; }
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 44px 0 100px;
}
.contact-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/media/images/site/gg_logo_eagle_trans.png');
  background-repeat: no-repeat;
  background-position: right 2vw center;
  background-size: min(56vw, 560px);
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}
.contact-section .container {
  position: relative;
  z-index: 1;
}

.hero:before,
.player-profile:before,
.schedule:before,
.media:before,
.contact-section:before {
  background-image:
    url('/media/images/site/gg_logo_eagle_trans.png'),
    url('/media/images/site/gg_logo_eagle_trans.png');
  background-repeat: no-repeat, no-repeat;
  background-position: left 10px center, right 10px center;
  background-size:
    clamp(240px, 25vw, 400px) auto,
    clamp(240px, 25vw, 400px) auto;
  opacity: 0.09;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: stretch;
}

.contact-visual,
.contact-form-panel {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-medium);
  background: color-mix(in srgb, var(--cream) 90%, #ffffff 10%);
}

.contact-visual {
  min-height: 100%;
  scroll-margin-top: 112px;
  background: linear-gradient(160deg, rgba(54, 92, 90, 0.96), rgba(54, 92, 90, 0.86));
  color: var(--cream);
}

.contact-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) contrast(1.03);
  opacity: 0.72;
}

.contact-visual-copy {
  position: absolute;
  inset: 0 0 auto 0;
  padding: 28px;
  background: linear-gradient(180deg, rgba(38, 61, 60, 0.96) 0%, rgba(38, 61, 60, 0.86) 52%, rgba(38, 61, 60, 0) 100%);
}

.contact-visual-copy h2 {
  margin: 8px 0 8px;
  color: var(--cream);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.contact-visual-copy p {
  margin: 0;
  max-width: 32ch;
  color: rgba(245, 241, 232, 0.92);
  line-height: 1.7;
  font-weight: 500;
}

.contact-tile-nav {
  display: none;
  position: absolute;
  z-index: 3;
}

.contact-visual .contact-tile-nav {
  top: 18px;
  right: 18px;
}

.contact-form-panel .contact-tile-nav {
  top: 18px;
  right: 18px;
}

.contact-form-panel {
  padding: 34px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--cream) 90%, #ffffff 10%), color-mix(in srgb, var(--cream) 82%, #ffffff 18%));
}

.contact-form-panel h2 {
  margin: 6px 0 0;
  color: var(--deep-sea-green);
  font-size: clamp(2rem, 2.8vw, 3rem);
}

.contact-form-panel .contact-copy {
  max-width: 64ch;
  margin: 14px 0 0;
  color: color-mix(in srgb, var(--espresso) 76%, #ffffff 24%);
  line-height: 1.8;
  font-size: 1rem;
  font-weight: 500;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.updates-signup {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: start;
  margin-top: 22px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--border-soft);
  background: color-mix(in srgb, var(--cream) 88%, #ffffff 12%);
  box-shadow: var(--shadow-soft);
}

.updates-copy h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.65rem, 2.4vw, 2.45rem);
}

.updates-copy p:last-child {
  margin: 0;
  color: color-mix(in srgb, var(--espresso) 76%, #ffffff 24%);
  line-height: 1.75;
  font-weight: 500;
}

.updates-form {
  display: grid;
  gap: 14px;
}

.updates-form input[name="website"] {
  position: absolute;
  left: -9999px;
}

.updates-grid,
.updates-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.updates-options label,
.updates-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: color-mix(in srgb, var(--espresso) 82%, #ffffff 18%);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.45;
}

.updates-options label {
  padding: 11px 12px;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  background: rgba(255, 255, 255, .58);
}

.updates-options input,
.updates-consent input {
  flex: 0 0 auto;
  margin-top: 2px;
}

.updates-consent {
  font-size: .76rem;
  font-weight: 600;
}

.updates-status {
  margin: 0;
  color: var(--deep-sea-green);
  font-size: .84rem;
  font-weight: 800;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: var(--deep-sea-green);
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 0.92rem;
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid rgba(54, 92, 90, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--espresso);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(58, 47, 42, 0.45);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--honey-tan);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 3px rgba(194, 154, 107, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 126px;
}

.security-check {
  margin-top: 4px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(54, 92, 90, 0.14);
  background: linear-gradient(145deg, rgba(245, 241, 232, 0.92), rgba(255, 255, 255, 0.74));
}

.security-check-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.security-check-head strong {
  display: block;
  color: var(--deep-sea-green);
  font-size: 1rem;
}

.security-check-head span {
  display: block;
  margin-top: 4px;
  color: color-mix(in srgb, var(--espresso) 68%, #ffffff 32%);
  font-size: .84rem;
}

.security-refresh {
  border: 1px solid rgba(54, 92, 90, 0.18);
  background: color-mix(in srgb, var(--cream) 86%, #ffffff 14%);
  color: var(--deep-sea-green);
  font-weight: 800;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
}

.security-check-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1fr;
  gap: 14px;
  align-items: center;
}

.security-check-image {
  min-height: 92px;
  padding: 10px;
  border-radius: 18px;
  border: 1px dashed rgba(54, 92, 90, 0.18);
  background: rgba(255, 255, 255, 0.72);
  display: grid;
  place-items: center;
}

.security-check-image img {
  width: 100%;
  max-width: 290px;
  display: block;
}

.security-input {
  margin: 0;
}

.contact-actions { display: flex; gap: 14px; margin-top: 4px; flex-wrap: wrap; }
.contact-section .button { font-weight: 700; }
.site-footer {
  background: var(--deep-sea-green);
  color: var(--cream);
  padding: 20px 0;
  border-top: 1px solid rgba(245, 241, 232, 0.16);
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: .85rem;
  color: rgba(245, 241, 232, 0.92);
}

.site-footer p {
  margin: 0;
}

.site-footer a { color: var(--cream); }
.site-footer a:hover { color: var(--blush-rose); }

.site-footer img {
  height: 24px;
  width: auto;
  display: block;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245, 241, 232, 0.28);
  border-radius: 50%;
  background: var(--deep-sea-green);
  color: var(--cream);
  box-shadow: 0 8px 22px rgba(31, 55, 54, 0.24);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, background-color .2s ease;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--espresso);
}

.back-to-top:focus-visible {
  outline: 3px solid var(--blush-rose);
  outline-offset: 3px;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top { transition: none; }
}

@media (max-width: 700px) {
  .logo-pill { min-height: 44px; min-width: 202px; padding: 8px 12px; }
  .logo-pill img { height: 30px; max-width: 196px; }
  .back-to-top { right: 14px; bottom: 14px; }
}
@media (max-width: 900px) {
  .header-inner { justify-content: space-between; }
  .hamburger { display: flex; }
  nav { display: none; }
  .header-inner > .button { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy-block { order: 2; }
  .hero-card { order: 1; margin-bottom: 14px; }
  .profile-heading-row { align-items: flex-start; flex-direction: column; }
  .profile-story { grid-template-columns: 1fr; }
  .media-grid, .media-filter-grid { grid-template-columns: 1fr; }
  .result { grid-template-columns: 1fr; }
  .event-score-breakdown,
  .event-place-breakdown {
    gap: 6px;
  }

  .event-score-breakdown span,
  .event-place-breakdown span {
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
    white-space: normal;
  }
  .gallery-hero {
    align-items: stretch;
    grid-template-columns: minmax(0, 1fr) 88px;
    gap: 12px;
  }
  .gallery-hero h2 br { display: none; }
  .gallery-filter-bar {
    border-radius: 20px;
  }

  .gallery-filter-body {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 12px 14px 14px;
  }
  .gallery-filter-body::-webkit-scrollbar { display: none; }
  .gallery-filter-note { flex: 0 0 auto; margin: 0; font-size: .7rem; white-space: nowrap; }
  .media-filter-controls { flex: 0 0 auto; gap: 12px; }
  .gallery-header-actions {
    align-self: center;
    justify-content: center;
  }
  .gallery-summary {
    min-width: 0;
    width: 76px;
    padding: 12px 8px;
  }
  .gallery-filter-toggle {
    width: 68px;
    min-height: 68px;
  }
  .media-filter-tabs {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 2px 0 5px;
  }

  .media-filter-tabs::-webkit-scrollbar { display: none; }
  .media-filter-tabs a {
    flex: 0 0 auto;
    min-width: 84px;
    padding: 10px 14px;
    text-align: center;
  }
  .contact-shell { grid-template-columns: 1fr; }
  .updates-signup { grid-template-columns: 1fr; }
  .security-check-body { grid-template-columns: 1fr; }
  .carousel-toolbar {
    display: flex;
    min-height: 44px;
    margin-top: -4px;
    margin-bottom: 12px;
  }

  .carousel-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }

  .carousel-viewport::-webkit-scrollbar {
    display: none;
  }

  .event-grid,
  .gallery-grid,
  .profile-grid,
  .contact-shell {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 14px;
    margin-top: 0;
  }

  .event-grid,
  .gallery-grid,
  .profile-grid {
    grid-auto-columns: minmax(84%, 84%);
  }

  .contact-shell {
    grid-auto-columns: minmax(88%, 88%);
  }

  .event,
  .gallery-card,
  .profile-fact,
  .contact-shell > * {
    scroll-snap-align: start;
  }

  .gallery-card {
    min-height: 100%;
  }

  .contact-tile-nav {
    display: inline-flex;
  }
}
@media (max-width: 560px) {
  .container { width: min(100% - 24px,1180px); }
  .header-inner > .button { display: none; }
  .brand-mark { width: clamp(126px, 36vw, 170px); height: 62px; }
  h1 { font-size: clamp(2.8rem,12vw,5rem); }
  .contact-form-panel { padding: 24px 18px; }
  .contact-visual-copy { padding: 20px; }
  .gallery-hero {
    grid-template-columns: minmax(0, 1fr) 76px;
    gap: 10px;
  }
  .gallery-summary strong { font-size: 2rem; }
  .gallery-summary span { font-size: .66rem; }
  .gallery-summary { width: 68px; }
  .gallery-filter-toggle { width: 62px; min-height: 62px; }
  .updates-signup { padding: 22px 16px; border-radius: 20px; }
  .updates-grid,
  .updates-options { grid-template-columns: 1fr; }
  .media-modal { padding: 12px; }
  .media-modal-dialog { max-height: 90vh; border-radius: 18px; }
  .media-modal-toolbar { gap: 10px; padding: 12px; }
  .media-modal-actions { gap: 7px; }
  .media-modal-share { padding: 10px 11px; }
  .media-modal-close,
  .media-modal-nav {
    width: 40px;
    height: 40px;
  }
  .media-modal-nav-prev { left: 8px; }
  .media-modal-nav-next { right: 8px; }
  .event-score-breakdown span, .event-place-breakdown span { flex: 1 1 calc(50% - 8px); min-width: 128px; justify-content: center; }
  .hero:before,
  .player-profile:before,
  .schedule:before,
  .media:before,
  .contact-section:before {
    background-position: left 10px center, right 10px center;
    background-size: 180px auto, 180px auto;
    opacity: 0.07;
  }
}
