/* ==========================================================================
   NORTHWOOD STADIUM — DESIGN TOKENS
   ========================================================================== */
:root {
  /* Colour */
  --c-black:       #0B0B0C;
  --c-black-soft:  #17171A;
  --c-white:       #FFFFFF;
  --c-red:         #C8102E;
  --c-red-dark:    #8C0000;
  --c-grey-light:  #F2F1F0;
  --c-grey-mid:    #6E6E72;
  --c-grey-line:   rgba(255,255,255,0.12);
  --c-grey-line-dark: rgba(11,11,12,0.10);

  /* Activity theme colours (per-activity accent, swap as needed) */
  --c-blue:      #1B4CB4;
  --c-blue-dark: #0D2F63;
  --c-purple:      #6B2FA8;
  --c-purple-dark: #3E1863;
  --c-charcoal:      #4A4A4E;
  --c-charcoal-dark: #222225;
  --c-fb-blue:      #1877F2;
  --c-fb-blue-dark: #0C3E8C;
  --c-ig-purple:    #6228D7;
  --c-ig-pink:      #C21975;

  /* Type */
  --f-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --f-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --header-h: 84px;
  --max-w: 1280px;
  --pad: clamp(20px, 5vw, 64px);

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET / BASE
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  color: var(--c-black);
  background: var(--c-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--c-red);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  /* Higher than #customerStatusBar's z-index (150) in index.html — the
     header is a fixed, positioned element, so it creates its own
     stacking context. That means a z-index set on something INSIDE the
     header (like .main-nav.is-open) can never rise above elements
     outside the header no matter how high it's set; only raising the
     header's own z-index actually lifts everything nested inside it,
     including the open mobile menu, above the status bar. */
  z-index: 200;
  background: rgba(11,11,12,0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-grey-line);
  transition: background 0.3s var(--ease);
}

.header-inner {
  max-width: var(--max-w);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--c-red);
  color: var(--c-white);
  font-family: var(--f-display);
  font-size: 15px;
  letter-spacing: 0.5px;
}

.logo-text {
  font-family: var(--f-display);
  color: var(--c-white);
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}

.logo-sub {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--c-grey-mid);
  margin-top: 2px;
}

.main-nav {
  display: flex;
  gap: 36px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  color: var(--c-white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  position: relative;
  padding: 6px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 2px;
  background: var(--c-red);
  transition: width 0.25s var(--ease);
}

.main-nav a:hover::after { width: 100%; }

.nav-cta {
  flex-shrink: 0;
  background: var(--c-red);
  color: var(--c-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 11px 22px;
  transition: background 0.2s var(--ease);
}

.nav-cta:hover { background: var(--c-red-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--c-white);
}

.nav-toggle span {
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background: var(--c-black);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  filter: saturate(1.5) contrast(1.05);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(11,11,12,0.55) 0%,
    rgba(11,11,12,0.35) 40%,
    rgba(11,11,12,0.92) 100%);
}

/* Signature motif: faint track-lane lines across the hero */
.hero-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.05) 0px,
    rgba(255,255,255,0.05) 1px,
    transparent 1px,
    transparent 120px
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 180px var(--pad) 90px;
  width: 100%;
}

.hero-eyebrow {
  color: var(--c-red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-left: 28px;
}

.hero-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 18px;
  height: 2px;
  background: var(--c-red);
  transform: translateY(-50%);
}

.hero-title {
  font-family: var(--f-display);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--c-white);
  font-size: clamp(40px, 6.5vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.5px;
  max-width: 900px;
  margin-bottom: 28px;
}

.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: clamp(16px, 1.6vw, 19px);
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  transition: all 0.2s var(--ease);
}

.btn-primary {
  background: var(--c-red);
  color: var(--c-white);
}

.btn-primary:hover {
  background: var(--c-red-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--c-white);
}

.btn-ghost:hover {
  border-color: var(--c-white);
  background: rgba(255,255,255,0.08);
}

.btn-black {
  background: var(--c-black);
  color: var(--c-white);
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-black:hover {
  background: var(--c-black-soft);
  transform: translateY(-1px);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 1;
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.3);
}

.hero-scroll span {
  position: absolute;
  top: 0; left: -3px;
  width: 7px;
  height: 7px;
  background: var(--c-red);
  border-radius: 50%;
  animation: scrollDot 2.2s var(--ease) infinite;
}

@keyframes scrollDot {
  0%   { top: 0; opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ==========================================================================
   GENERIC SECTION STUBS (to be built out one at a time)
   ========================================================================== */
.section {
  padding: 120px var(--pad);
  border-bottom: 1px solid var(--c-grey-line-dark);
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-eyebrow {
  color: var(--c-red);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--f-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
}

.section-note {
  color: var(--c-grey-mid);
  font-size: 15px;
}

.offer { background: var(--c-white); }
.activities, .find-us { background: var(--c-grey-light); }

/* ---- Find Us & Opening Times ---- */
.find-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  align-items: stretch;
}

.find-us-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.find-us-logo-wrap {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background: var(--c-black);
  padding: 14px 22px;
  border-radius: 10px;
}

.find-us-logo {
  height: 32px;
  width: auto;
  display: block;
}

.find-us-block {
  border-top: 1px solid var(--c-grey-line-dark);
  padding-top: 24px;
}

.find-us-heading {
  font-family: var(--f-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: var(--c-black);
  margin-bottom: 16px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  color: var(--c-grey-mid);
  padding: 8px 0;
  border-bottom: 1px solid var(--c-grey-line-dark);
}

.hours-row span:first-child {
  color: var(--c-black);
  font-weight: 600;
}

.find-us-address {
  color: var(--c-grey-mid);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.find-us-email {
  color: var(--c-red);
  font-weight: 700;
  font-size: 15px;
}

.find-us-map {
  min-height: 360px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(11,11,12,0.1);
}

.find-us-map iframe {
  display: block;
}

@media (max-width: 900px) {
  .find-us-grid {
    grid-template-columns: 1fr;
  }
  .find-us-map { min-height: 320px; }
}

/* ---- About (full-bleed banner block) ---- */
.about {
  position: relative;
  background: linear-gradient(135deg, var(--c-red-dark) 0%, var(--c-red) 50%, var(--c-red-dark) 100%);
  overflow: hidden;
}

.about.partner-grey {
  background: linear-gradient(135deg, var(--c-charcoal-dark) 0%, var(--c-charcoal) 50%, var(--c-charcoal-dark) 100%);
}

.about.fb-blue {
  background: linear-gradient(100deg,
    var(--c-fb-blue-dark) 0%,
    var(--c-fb-blue) 32%,
    #5A3FA6 55%,
    var(--c-ig-purple) 72%,
    var(--c-ig-pink) 100%);
}

/* ---- Follow Our Journey (social embeds) ---- */
.social-embeds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 8px;
}

.social-embed-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.social-link-card {
  justify-content: center;
  padding: 32px;
}

.social-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.facebook-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--c-fb-blue);
}

.facebook-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--c-white);
}

.instagram-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
}

.instagram-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--c-white);
}

.social-handle {
  display: block;
  color: var(--c-white);
  font-weight: 700;
  font-size: 16px;
}

.social-sub {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  letter-spacing: 0.5px;
}

.social-link-card p {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.btn-social-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  background: var(--c-white);
  color: var(--c-black);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
  padding: 14px 26px;
  border-radius: 6px;
  transition: transform 0.2s var(--ease);
}

.btn-social-link:hover { transform: translateY(-2px); }

@media (max-width: 800px) {
  .social-embeds { grid-template-columns: 1fr; }
  .social-link-card { padding: 28px; }
  .about.fb-blue {
    background: linear-gradient(180deg,
      var(--c-fb-blue-dark) 0%,
      var(--c-fb-blue) 32%,
      #5A3FA6 55%,
      var(--c-ig-purple) 72%,
      var(--c-ig-pink) 100%);
  }
}

.about-mark {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  max-width: 55vw;
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
}

.about-inner {
  position: relative;
  z-index: 1;
}

.about-label {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-title {
  font-family: var(--f-display);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--c-white);
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.05;
  max-width: 720px;
  margin-bottom: 16px;
}

.about-sub {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  max-width: 560px;
  margin-bottom: 40px;
}

.about-details {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.about-detail-label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.about-detail-val {
  display: block;
  color: var(--c-white);
  font-weight: 700;
  font-size: 15px;
}

.btn-about {
  display: inline-block;
  background: var(--c-black);
  color: var(--c-white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 6px;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn-about:hover {
  background: #000;
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .about-mark { width: 260px; opacity: 0.08; }
  .about-details { gap: 28px; }
}

/* ---- Activities (feature modules — one per live activity) ---- */
.activities-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 56px;
}

.activity-feature {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(11,11,12,0.12);
}

.activity-feature-media {
  flex: 1 1 45%;
  min-height: 320px;
}

.activity-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.activity-feature-content {
  flex: 1 1 55%;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--c-white);
}

.activity-feature-title {
  font-family: var(--f-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  margin-bottom: 20px;
}

.activity-feature-body {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.92;
  max-width: 520px;
  margin-bottom: 28px;
}

.activity-feature-link {
  font-weight: 700;
  font-size: 14px;
  color: var(--c-white);
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s var(--ease);
}

.activity-feature-link:hover { transform: translateX(4px); }

/* Theme colours — add a new modifier per activity as needed */
.activity-feature.blue {
  background: linear-gradient(135deg, var(--c-blue-dark) 0%, var(--c-blue) 60%, var(--c-blue-dark) 100%);
}

.activity-feature.red {
  background: linear-gradient(135deg, var(--c-red-dark) 0%, var(--c-red) 60%, var(--c-red-dark) 100%);
}

.activity-feature.purple {
  background: linear-gradient(135deg, var(--c-purple-dark) 0%, var(--c-purple) 60%, var(--c-purple-dark) 100%);
}

@media (max-width: 800px) {
  .activity-feature { flex-direction: column; }
  .activity-feature-media { min-height: 220px; }
  .activity-feature-content { padding: 32px 28px; }
}

.offer {
  position: relative;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(200,16,46,0.035) 0px,
    rgba(200,16,46,0.035) 1px,
    transparent 1px,
    transparent 90px
  );
}

/* ---- Offer grid (facility cards) ---- */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.offer-card {
  background: var(--c-white);
  border: 1px solid rgba(11,11,12,0.06);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(11,11,12,0.06);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(11,11,12,0.12);
}

.offer-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-grey-light);
  border-bottom: 3px solid var(--c-red);
}

.offer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.offer-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.offer-body h3 {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 19px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.offer-body p {
  font-size: 14px;
  color: var(--c-grey-mid);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

.btn-small {
  align-self: flex-start;
  background: var(--c-black);
  color: var(--c-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 11px 20px;
  transition: background 0.2s var(--ease);
}

.btn-small:hover { background: var(--c-red); }

@media (max-width: 1100px) {
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .offer-grid { grid-template-columns: 1fr; }
}

.site-footer {
  background: var(--c-black);
  color: var(--c-white);
  padding: 80px var(--pad) 32px;
}

.footer-inner-grid {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo {
  height: 34px;
  width: auto;
  align-self: flex-start;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s var(--ease);
}

.footer-social:hover {
  background: var(--c-red);
  border-color: var(--c-red);
  color: var(--c-white);
}

.footer-col h4 {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--c-white);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.2s var(--ease);
}

.footer-col a:hover { color: var(--c-white); }

.footer-hours {
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  line-height: 1.7;
}

.footer-phone {
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-top: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 13px;
}

.footer-credit img {
  height: 40px;
  width: auto;
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .main-nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--c-black);
    padding: 24px var(--pad) 32px;
    gap: 22px;
    border-bottom: 1px solid var(--c-grey-line);
    /* Sits above the "Signed in as..." status bar (z-index: 150 in
       index.html) so the open menu isn't hidden behind it — the bar
       simply reappears once the menu is closed. */
    z-index: 160;
  }

  .hero-content { padding-bottom: 70px; }
  .section { padding: 80px var(--pad); }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
}

/* ==========================================================================
   FACILITIES PAGE
   ========================================================================== */
.facilities-intro {
  background: var(--c-white);
  padding-top: calc(var(--header-h) + 64px);
}

.facilities-lede {
  color: var(--c-grey-mid);
  font-size: 17px;
  max-width: 640px;
  margin-bottom: 40px;
}

.facility-quicknav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.facility-quicknav a {
  background: var(--c-black);
  color: var(--c-white);
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 6px;
  transition: background 0.2s var(--ease);
}

.facility-quicknav a:hover {
  background: var(--c-red);
}

.facility-detail {
  padding: 100px var(--pad);
  background: var(--c-white);
}

.facility-detail.alt { background: var(--c-grey-light); }

.facility-detail-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 56px;
}

.facility-detail.alt .facility-detail-inner {
  flex-direction: row-reverse;
}

.facility-gallery {
  flex: 1 1 48%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(11,11,12,0.1);
}

.facility-gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.facility-content {
  flex: 1 1 52%;
}

.facility-title {
  font-family: var(--f-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(26px, 3.4vw, 40px);
  margin-bottom: 20px;
}

.facility-copy {
  color: var(--c-grey-mid);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.facility-features {
  list-style: none;
  margin-bottom: 36px;
}

.facility-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--c-black);
  font-weight: 500;
}

.facility-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 2px;
  background: var(--c-red);
}

@media (max-width: 860px) {
  .facility-detail-inner,
  .facility-detail.alt .facility-detail-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }
  .facility-detail { padding: 64px var(--pad); }
}

.about-note {
  margin-top: 20px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  max-width: 460px;
}

/* ============ PARTNER CONTACT MODAL ============ */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--pad);
}
.contact-modal.is-open { display: flex; }

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11,11,12,0.85);
}

.contact-modal-box {
  position: relative;
  background: var(--c-black-soft);
  border: 1px solid var(--c-grey-line);
  border-radius: 16px;
  padding: 36px 32px;
  max-width: 380px;
  width: 100%;
  text-align: center;
}

.contact-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--c-white);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.2s var(--ease);
}
.contact-modal-close:hover { opacity: 1; }

.contact-modal-box h3 {
  margin: 0 0 8px;
  color: var(--c-white);
  font-family: var(--f-display);
  font-size: 26px;
  letter-spacing: 0.3px;
}
.contact-modal-box p {
  margin: 0 0 24px;
  color: var(--c-grey-mid);
  font-size: 14px;
  font-family: var(--f-body);
}

.contact-modal-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-modal-btn {
  display: block;
  padding: 16px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--c-white);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.contact-modal-btn:hover { transform: translateY(-2px); }

.contact-modal-message {
  background: var(--c-charcoal);
}
.contact-modal-message:hover { background: var(--c-charcoal-dark); }

.contact-modal-call {
  background: var(--c-red);
}
.contact-modal-call:hover { background: var(--c-red-dark); }