/* ==========================================================================
   AALBORG KANGAROOS — design system
   Palette: bottle green + guernsey gold on grass-tinted paper
   Type:    Big Shoulders Display (athletic condensed) + Archivo (grotesque)
   ========================================================================== */

:root {
  /* sampled from the club crest: green #036603, yellow #F9E013 */
  --pine-deep: #023f06;
  --pine: #036603;
  --grass: #0c8a14;
  --gold: #f9e013;
  --gold-deep: #d9c303;
  --paper: #f1f2e9;
  --cream: #f5f4ec;
  --field-line: rgba(241, 242, 233, 0.38);

  --font-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --font-body: "Archivo", "Helvetica Neue", sans-serif;

  --wrap: min(1240px, 92vw);
  --pad: max(4vw, calc((100vw - 1240px) / 2));
  --radius: 10px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--pine);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.join :focus-visible { outline-color: var(--pine); }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}

/* ---------- shared bits ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 0.9em;
  height: 0.9em;
  background: var(--gold);
  border-radius: 2px;
  flex: none;
}
.eyebrow--gold::before { background: var(--pine); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.95em 1.9em;
  border: 2px solid var(--pine);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(2, 63, 6, 0.2); }
.btn:active { transform: translateY(-1px); }

.btn--pine { background: var(--pine); color: var(--paper); }
.btn--pine:hover { background: var(--pine-deep); }
.btn--gold { background: var(--gold); color: var(--pine-deep); border-color: var(--pine-deep); }
.btn--gold:hover { background: var(--gold-deep); }
.btn--ghost { background: transparent; color: var(--pine); }
.btn--ghost:hover { background: var(--pine); color: var(--paper); }
.btn--big { font-size: 1.05rem; padding: 1.15em 2.6em; }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem var(--pad);
  /* always-on solid bar — never fades */
  background: var(--pine);
  color: var(--cream);
  box-shadow: 0 1px 0 rgba(2, 40, 8, 0.25);
  transition: padding 0.35s ease, box-shadow 0.35s ease;
}
.nav.is-scrolled {
  padding-block: 0.55rem;
  box-shadow: 0 6px 20px rgba(2, 40, 8, 0.25);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.nav__crest { display: grid; place-items: center; }
.nav__crest img { display: block; width: 46px; height: 46px; border-radius: 50%; }
.nav__wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 0.92;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav__links { display: flex; gap: 1.9rem; }
.nav__links a {
  position: relative;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding-block: 0.3em;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__actions { display: flex; align-items: center; gap: 1.1rem; }

.lang { display: flex; align-items: center; gap: 0.15rem; font-size: 0.82rem; }
.lang__btn {
  border: 0;
  background: none;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: inherit;
  opacity: 0.45;
  cursor: pointer;
  padding: 0.25em 0.35em;
  border-radius: 4px;
  transition: opacity 0.2s ease;
}
.lang__btn:hover { opacity: 0.8; }
.lang__btn.is-active { opacity: 1; box-shadow: inset 0 -3px 0 var(--gold); }
.lang__sep { opacity: 0.35; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  padding: 0 9px;
  color: inherit;
}
.burger span { display: block; height: 2px; background: currentColor; transition: transform 0.3s ease; }
.burger.is-open span:first-child { transform: translateY(4.5px) rotate(45deg); }
.burger.is-open span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

/* Mobile menu */
.mmenu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 6rem var(--pad) 3rem;
  background: var(--pine-deep);
  visibility: hidden;
  opacity: 0;
}
.mmenu.is-open { visibility: visible; opacity: 1; }
.mmenu__links { display: flex; flex-direction: column; gap: 0.4rem; }
.mmenu__links a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 10vw, 4rem);
  line-height: 1.05;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--paper);
}
.mmenu__links a:hover { color: var(--gold); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 7.5rem var(--pad) 3.5rem;
  overflow: clip;
  /* the kangaroo on its home turf: crest green over the team photo */
  background-color: var(--pine);
  background-image:
    linear-gradient(165deg, rgba(3, 102, 3, 0.96) 0%, rgba(3, 102, 3, 0.88) 55%, rgba(2, 63, 6, 0.94) 100%),
    url("../assets/img/hero-bg.webp");
  background-size: cover;
  background-position: center 30%;
  color: var(--cream);
}

.hero__eyebrow {
  position: relative;
  z-index: 2;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: auto;
  padding-top: 1.5rem;
}

.hero__title {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4.6rem, 16.5vw, 15.5rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin-block: 2.5rem 2.2rem;
}
/* each line is its own reveal mask: tall enough not to clip glyph tops,
   pulled together with negative margins to keep the stack tight */
.hero__line { display: block; overflow: hidden; line-height: 1.04; }
.hero__line + .hero__line { margin-top: -0.18em; }
.hero__word { display: inline-block; }
.hero__line--gold .hero__word { color: var(--gold); }

/* the crest kangaroo rests right of the headline and flies IN FRONT of the
   text (z-index above the title) on its way in */
.hero__roo {
  position: absolute;
  z-index: 3;
  right: 4vw;
  top: 16vh;
  width: clamp(300px, 33vw, 520px);
  filter: drop-shadow(0 14px 24px rgba(2, 40, 8, 0.4));
  will-change: transform;
}
.hero__roo img { display: block; width: 100%; height: auto; }

/* ghost button flips to cream on the green hero */
.hero .btn--ghost { color: var(--cream); border-color: var(--cream); }
.hero .btn--ghost:hover { background: var(--cream); color: var(--pine); }

.hero__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero__sub {
  max-width: 36ch;
  font-size: 1.15rem;
  font-weight: 500;
}
.hero__cta { display: flex; gap: 0.9rem; flex-wrap: wrap; }

.hero__scrollcue {
  position: absolute;
  left: var(--pad);
  bottom: 3.5rem;
  display: none;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero__scrollline {
  width: 2px;
  height: 52px;
  background: linear-gradient(var(--cream), transparent);
}
@media (min-height: 800px) {
  .hero__scrollcue { display: flex; }
  .hero { padding-left: calc(var(--pad) + 3rem); }
}

/* ==========================================================================
   RIBBON (marquee)
   ========================================================================== */
.ribbon {
  overflow: clip;
  background: var(--gold);
  border-block: 3px solid var(--pine-deep);
  padding-block: 0.75rem;
}
.ribbon__track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.ribbon__item {
  white-space: nowrap;
  padding-right: 0.6em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pine-deep);
}

/* ==========================================================================
   SPORTEN — pinned field explainer (dark)
   ========================================================================== */
.sport {
  background: var(--pine-deep);
  color: var(--cream);
}
.sport__pin {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
  padding: 5rem var(--pad) 4rem;
}
.is-enhanced .sport__pin { min-height: 100vh; }

.sport__head { display: flex; flex-direction: column; gap: 1.2rem; }
.sport .eyebrow { color: var(--gold); }
.sport__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 7.5vw, 6.5rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.sport__stage {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) 1.25fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

/* facts: normal flow by default (no-JS / reduced motion) */
.sport__facts { display: flex; flex-direction: column; gap: 2.8rem; }
.is-enhanced .sport__facts { display: grid; min-height: 340px; align-items: center; }
.is-enhanced .fact { grid-area: 1 / 1; }

.fact__num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--gold);
  border-bottom: 3px solid var(--gold);
  padding-bottom: 0.15em;
  margin-bottom: 1rem;
}
.fact h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.6vw, 3.1rem);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.fact p { max-width: 46ch; color: rgba(245, 244, 236, 0.82); }

.sport__field svg { display: block; }

.sport__progress {
  height: 4px;
  background: rgba(241, 242, 233, 0.15);
  border-radius: 999px;
  overflow: hidden;
  display: none;
}
.is-enhanced .sport__progress { display: block; }
.sport__bar {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

/* ==========================================================================
   KLUBBEN
   ========================================================================== */
.club { padding: clamp(5rem, 10vw, 9rem) var(--pad); }

.club__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 13vw, 12rem);
  line-height: 0.85;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2.5px var(--pine);
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.club__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.club__text { display: flex; flex-direction: column; gap: 1.4rem; max-width: 58ch; }
.club__lede { font-size: clamp(1.25rem, 2vw, 1.55rem); font-weight: 500; line-height: 1.45; }

.club__stats {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem 2rem;
}
.stat { border-top: 3px solid var(--pine); padding-top: 1.1rem; }
.stat__big {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
}
.stat__label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(2, 63, 6, 0.75);
}

.club__history {
  margin-top: clamp(3rem, 6vw, 5rem);
  max-width: 780px;
}
.club__history img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
}
.club__history figcaption {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(2, 63, 6, 0.7);
}

/* ==========================================================================
   TRÆNING (gold)
   ========================================================================== */
.join {
  background: var(--gold);
  color: var(--pine-deep);
  border-block: 3px solid var(--pine-deep);
}
.join__inner { padding: clamp(5rem, 9vw, 8rem) var(--pad); }

.join__head { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.join__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 11vw, 10rem);
  line-height: 0.85;
  text-transform: uppercase;
  margin-top: 1rem;
}

.join__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.join__info { display: flex; flex-direction: column; }
.join__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.2rem;
  padding-block: 1.3rem;
  border-top: 2px solid var(--pine-deep);
}
.join__row:last-child { border-bottom: 2px solid var(--pine-deep); }
.join__row dt {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-top: 0.3em;
}
.join__row dd { font-size: 1.1rem; font-weight: 500; }
.join__row dd a { text-decoration-thickness: 2px; text-underline-offset: 3px; }
.join__row dd a:hover { color: var(--pine); }

.steps { list-style: none; display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.2rem;
  padding-block: 1.6rem;
  border-top: 2px solid var(--pine-deep);
}
.step:last-child { border-bottom: 2px solid var(--pine-deep); }
.step__num {
  grid-row: 1;
  grid-column: 1;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--pine-deep);
}
.step h3 {
  grid-row: 1;
  grid-column: 2;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.step p { grid-row: 2; grid-column: 1 / -1; max-width: 65ch; color: rgba(2, 63, 6, 0.85); }

/* ==========================================================================
   MEDLEMSKAB
   ========================================================================== */
.membership { padding: clamp(5rem, 10vw, 9rem) var(--pad); background: var(--pine-deep); color: var(--cream); }
.membership .eyebrow { color: var(--gold); }
.membership__head { max-width: 62ch; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.membership__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  line-height: 0.9;
  text-transform: uppercase;
  margin-top: 1rem;
}
.membership__sub { margin-top: 1rem; font-size: 1.1rem; font-weight: 500; color: rgba(245, 244, 236, 0.82); }

.tiers {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.tier {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 2rem 1.8rem;
  border: 2px solid rgba(245, 244, 236, 0.35);
  border-radius: var(--radius);
}
.tier--featured { background: var(--pine); color: var(--paper); border-color: var(--gold); }
.tier__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 244, 236, 0.7);
}
.tier--featured .tier__label { color: var(--gold); }
.tier__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  line-height: 1;
  text-transform: uppercase;
}
.tier__unit {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  opacity: 0.7;
}
.tier__desc { font-size: 0.98rem; color: rgba(245, 244, 236, 0.82); }
.tier--featured .tier__desc { color: rgba(241, 242, 233, 0.85); }


/* ==========================================================================
   GALLERI
   ========================================================================== */
.gallery { padding: clamp(5rem, 10vw, 9rem) var(--pad); }
.gallery__head { margin-bottom: clamp(2rem, 5vw, 4rem); }
.gallery__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 8vw, 7rem);
  line-height: 0.9;
  text-transform: uppercase;
  margin-top: 1rem;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 90px;
  grid-auto-flow: dense;
  gap: 1rem;
}
.tile { border-radius: var(--radius); overflow: hidden; background: var(--pine); }
.tile--a { grid-column: span 6; grid-row: span 4; }
.tile--b { grid-column: span 3; grid-row: span 4; }
.tile--c { grid-column: span 3; grid-row: span 4; }
.tile--d { grid-column: span 7; grid-row: span 4; }
.tile--e { grid-column: span 5; grid-row: span 4; }
.tile--f { grid-column: span 4; grid-row: span 4; }
.tile--g { grid-column: span 4; grid-row: span 4; }
.tile--h { grid-column: span 4; grid-row: span 4; }

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.tile:hover img { transform: scale(1.045); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { padding: 0 var(--pad) clamp(5rem, 10vw, 9rem); }
.faq__head { max-width: 900px; margin: 0 auto clamp(2rem, 4vw, 3.5rem); }
.faq__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.9;
  text-transform: uppercase;
  margin-top: 1rem;
}
.faq__list { max-width: 900px; margin-inline: auto; }

.qa { border-top: 2px solid var(--pine); }
.qa:last-child { border-bottom: 2px solid var(--pine); }
.qa summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.35rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  text-transform: uppercase;
  line-height: 1.05;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--grass); }
.qa__icon {
  flex: none;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--gold-deep);
  transition: transform 0.3s ease;
}
.qa[open] .qa__icon { transform: rotate(45deg); }
.qa p { padding: 0 0 1.5rem; max-width: 62ch; color: rgba(2, 63, 6, 0.85); }

/* ==========================================================================
   KONTAKT
   ========================================================================== */
.contact {
  padding: clamp(5rem, 10vw, 9rem) var(--pad) clamp(6rem, 11vw, 10rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  background: var(--pine);
  color: var(--cream);
}
.contact .eyebrow { color: var(--gold); }
.contact .btn--pine { background: var(--gold); color: var(--pine-deep); border-color: var(--gold-deep); }
.contact .btn--pine:hover { background: var(--gold-deep); }
.contact .btn--ghost { color: var(--cream); border-color: var(--cream); }
.contact .btn--ghost:hover { background: var(--cream); color: var(--pine); }
.contact__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 14vw, 13rem);
  line-height: 1;
  text-transform: uppercase;
}
.contact__line { display: block; overflow: hidden; line-height: 1.04; }
.contact__line + .contact__line { margin-top: -0.18em; }
.contact__line--gold {
  color: var(--gold);
  -webkit-text-stroke: 3px var(--pine);
  paint-order: stroke fill;
}
.contact__sub { max-width: 44ch; font-size: 1.1rem; font-weight: 500; }
.contact__links { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.contact__addr { font-size: 0.95rem; color: rgba(245, 244, 236, 0.8); }
.contact__addr a { font-weight: 600; text-underline-offset: 3px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--pine-deep);
  color: var(--cream);
  padding: clamp(3.5rem, 7vw, 6rem) var(--pad) 0;
  overflow: clip;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  padding-bottom: 3rem;
}
.footer__brand { display: flex; align-items: center; gap: 1.2rem; }
.footer__logo { width: 96px; height: auto; }
.footer__brandtext { display: flex; flex-direction: column; gap: 0.4rem; }
.footer__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  text-transform: uppercase;
  line-height: 1;
}
.footer__est { font-size: 0.85rem; color: rgba(245, 244, 236, 0.65); }

.footer__social { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__social a {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(245, 244, 236, 0.85);
}
.footer__social a:hover { color: var(--gold); }

.footer__meta {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-block: 1.4rem;
  border-top: 1px solid rgba(245, 244, 236, 0.18);
  font-size: 0.82rem;
  color: rgba(245, 244, 236, 0.6);
}

.footer__watermark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5rem, 19vw, 19rem);
  line-height: 0.72;
  text-transform: uppercase;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 2px rgba(245, 244, 236, 0.14);
  transform: translateY(0.12em);
  user-select: none;
  pointer-events: none;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .is-enhanced .sport__pin { justify-content: flex-start; padding-top: 6.5rem; gap: 1.8rem; }
  .sport__title { font-size: clamp(2.4rem, 6.5vw, 4.5rem); }
  .sport__stage { grid-template-columns: 1fr; gap: 1.8rem; }
  .sport__field { order: -1; justify-self: center; }
  .sport__field svg { width: auto; max-width: 100%; height: min(36vh, 52vw); }
  .is-enhanced .sport__facts { min-height: 250px; align-items: start; }
}

@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .burger { display: flex; }

  .hero__eyebrow { max-width: 52vw; }

  .club__grid, .join__grid { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .gallery__grid { grid-auto-rows: 80px; }
  .tile--a, .tile--b, .tile--c, .tile--d, .tile--e, .tile--f, .tile--g, .tile--h { grid-column: span 6; }
}

@media (max-width: 640px) {
  .hero { padding-bottom: 2.5rem; }
  .hero__roo { right: 2vw; top: 12vh; width: min(56vw, 300px); }
  .hero__eyebrow { max-width: 48vw; }
  .hero__foot { flex-direction: column; align-items: flex-start; }

  .join__row { grid-template-columns: 1fr; gap: 0.3rem; }
  .step { grid-template-columns: 64px 1fr; }

  .gallery__grid { grid-auto-rows: 70px; gap: 0.7rem; }
  .tile--a, .tile--b, .tile--c, .tile--d, .tile--e, .tile--f, .tile--g, .tile--h { grid-column: span 12; grid-row: span 4; }

  .footer__top { flex-direction: column; gap: 2rem; }
  .is-enhanced .sport__facts { min-height: 300px; }
}
