/* GOOGLE FONTS IMPORT */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400&display=swap");

/* CSS CUSTOM PROPERTIES — DESIGN TOKENS */
:root {
  --color-eggplant: #3b1e2b;
  --color-eggplant-deep: #271020;
  --color-eggplant-mid: #4f2a3c;
  --color-eggplant-light: #6b3a52;
  --color-pink: #d4848f;
  --color-pink-light: #e4a8b1;
  --color-pink-pale: #f5dde0;
  --color-gold: #e3b423;
  --color-gold-light: #f0c94a;
  --color-pale-yellow: #f2d974;

  /* --- Neutral Colors --- */
  --color-white: #ffffff;
  --color-off-white: #faf7f5;
  --color-cream: #f4ede8;
  --color-light-gray: #e8e1dc;
  --color-mid-gray: #9b8a8f;
  --color-dark-gray: #4a3d42;
  --color-black: #0d0608;

  /* --- Semantic Colors --- */
  --color-bg-primary: var(--color-eggplant);
  --color-bg-secondary: var(--color-eggplant-deep);
  --color-bg-light: var(--color-off-white);
  --color-bg-cream: var(--color-cream);
  --color-text-primary: var(--color-eggplant);
  --color-text-light: var(--color-off-white);
  --color-text-muted: var(--color-mid-gray);
  --color-accent: var(--color-pink);
  --color-accent-gold: var(--color-gold);
  --color-border: rgba(59, 30, 43, 0.12);
  --color-border-light: rgba(255, 255, 255, 0.12);

  /* --- Typography --- */
  /* --font-display: "Bebas Neue", sans-serif; */
  --font-display: "Bebas Neue", sans-serif;
  --font-serif: "Cormorant Garamond", serif;
  --font-body: "DM Sans", sans-serif;

  /* --- Font Sizes (clamp for fluid type) --- */
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: clamp(2rem, 4vw, 3rem);
  --fs-4xl: clamp(2.5rem, 5vw, 4rem);
  --fs-hero: clamp(3.5rem, 9vw, 8rem);

  /* --- Spacing Scale --- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* --- Border Radius --- */
  /* --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px; */
  --radius-sm: 4px;
  --radius-md: 4px;
  --radius-lg: 4px;
  --radius-xl: 4px;
  --radius-full: 4px;

  /* --- Shadows --- */
  --shadow-sm: 0 2px 8px rgba(59, 30, 43, 0.08);
  --shadow-md: 0 4px 20px rgba(59, 30, 43, 0.14);
  --shadow-lg: 0 8px 40px rgba(59, 30, 43, 0.2);
  --shadow-xl: 0 16px 60px rgba(59, 30, 43, 0.28);
  --shadow-gold: 0 0 24px rgba(227, 180, 35, 0.35);

  /* --- Transitions --- */
  --transition-fast: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* --- Layout --- */
  --header-height: 80px;
  --header-top-height: 40px;
  --header-total: calc(var(--header-height) + var(--header-top-height));
  --container-max: 1320px;
  --section-padding: var(--space-20);
}

/* CSS RESET & BASE */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  scroll-padding-top: 120px;
}

body.maracuja-body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text-primary);
  background-color: var(--color-eggplant);
  /* overflow-x removed — موجود على html كـ clip علشان sticky يشتغل */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

::selection {
  background-color: var(--color-pink);
  color: var(--color-white);
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: var(--color-eggplant-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--color-pink);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-pink-light);
}

/* Site wrapper */
.site-wrapper {
  /* overflow-x removed — كان بيكسر position:sticky على كل العناصر الداخلية */
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 400;
  /* Bebas Neue is naturally bold */
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--color-eggplant);
}

/* Override heading color inside dark sections */
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.vip-section h1,
.vip-section h2,
.vip-section h3 {
  color: var(--color-white);
}

p {
  line-height: 1.7;
}

strong {
  font-weight: 600;
}

/* Serif utility */
.font-serif {
  font-family: var(--font-serif);
}

.font-display {
  font-family: var(--font-display);
}

.inline-search-panel__inner ul {
  margin-bottom: 0 !important;
}

/* UTILITY CLASSES */

/* Buttons — base */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Primary button — pink fill */
.btn-primary,
.hero-section__cta-primary,
.resort-section__feature-link,
.academy-section__cta,
.matchday-section__all-fixtures,
.section__view-all-link {
  background-color: var(--color-pink);
  color: var(--color-white);
  border-color: var(--color-pink);
}

.btn-primary:hover,
.hero-section__cta-primary:hover,
.resort-section__feature-link:hover,
.academy-section__cta:hover,
.matchday-section__all-fixtures:hover,
.section__view-all-link:hover {
  background-color: var(--color-eggplant);
  border-color: var(--color-eggplant);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Ghost / outline button */
.hero-section__cta-secondary {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
}

.hero-section__cta-secondary:hover {
  background-color: var(--color-white);
  color: var(--color-eggplant);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

/* Pill button */
.btn-pill {
  border-radius: var(--radius-full);
}

/* Dark section buttons */
.section--dark .btn,
.vip-section .btn {
  background-color: var(--color-pink);
  color: var(--color-white);
  border-color: var(--color-pink);
}

.section--dark .btn:hover,
.vip-section .btn:hover {
  background-color: var(--color-white);
  color: var(--color-eggplant);
  border-color: var(--color-white);
}

/* Shimmer effect on buttons */
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.18),
      transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.btn:hover::after {
  left: 150%;
}

/* ANIMATIONS & KEYFRAMES */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulseGold {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(227, 180, 35, 0.4);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(227, 180, 35, 0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(8px);
    opacity: 0.5;
  }
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes navSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Page load animation — hero elements */
.hero-section__eyebrow {
  animation: fadeInDown 0.6s ease both;
  animation-delay: 0.2s;
}

.hero-section__heading {
  animation: fadeInUp 0.8s ease both;
  animation-delay: 0.4s;
}

.hero-section__subtitle {
  animation: fadeInUp 0.8s ease both;
  animation-delay: 0.6s;
}

.hero-section__cta {
  animation: fadeInUp 0.8s ease both;
  animation-delay: 0.8s;
}

.hero-section__scroll-indicator {
  animation:
    fadeIn 1s ease both,
    scrollBounce 2s ease-in-out 1.5s infinite;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger>* {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-stagger.revealed>*:nth-child(1) {
  transition-delay: 0.05s;
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.revealed>*:nth-child(2) {
  transition-delay: 0.12s;
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.revealed>*:nth-child(3) {
  transition-delay: 0.19s;
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.revealed>*:nth-child(4) {
  transition-delay: 0.26s;
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.revealed>*:nth-child(5) {
  transition-delay: 0.33s;
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.revealed>*:nth-child(6) {
  transition-delay: 0.4s;
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.revealed>*:nth-child(7) {
  transition-delay: 0.47s;
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.revealed>*:nth-child(8) {
  transition-delay: 0.54s;
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.revealed>*:nth-child(n + 9) {
  transition-delay: 0.6s;
  opacity: 1;
  transform: translateY(0);
}

/* SITE HEADER / NAVBAR */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  margin-bottom: -1%;
  z-index: 1000;
  overflow: visible;
  /* allow mega menu to overflow below */
  transition: var(--transition-base);
}

/* Topbar */
.site-header__topbar {
  background-color: var(--color-eggplant-deep);
  height: var(--header-top-height);
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.06); */
  overflow: hidden;
}

.site-header__topbar .container-fluid {
  height: 100%;
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
}

.site-header__topbar .row {
  height: 100%;
}

.site-header__topbar-social-link {
  color: var(--color-mid-gray);
  font-size: var(--fs-sm);
  transition: var(--transition-fast);
}

.site-header__topbar-social-link:hover {
  color: var(--color-pink);
}

.site-header__topbar-ticker-text {
  font-size: var(--fs-xs);
  color: var(--color-mid-gray);
  letter-spacing: 0.04em;
}

.site-header__topbar-ticker-link {
  color: var(--color-gold);
  font-weight: 600;
}

.site-header__topbar-ticker-link:hover {
  color: var(--color-gold-light);
  text-decoration: underline;
}

/* Language Buttons */
.site-header__lang-btn {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-mid-gray);
  background: none;
  border: none;
  padding: 0.1rem 0.3rem;
  transition: var(--transition-fast);
  cursor: pointer;
}

.site-header__lang-btn--active,
.site-header__lang-btn:hover {
  color: var(--color-gold);
}

.site-header__lang-divider {
  color: rgba(255, 255, 255, 0.15);
  font-size: var(--fs-xs);
}

/* Scrolled state — topbar collapses */
.site-header--scrolled .site-header__topbar {
  height: 0;
  opacity: 0;
  pointer-events: none;
}

/* SEARCH MODAL — Full-width bar under navbar */
.site-search-modal {
  padding: 0 !important;
  align-items: flex-start !important;
}

.site-search-modal~.modal-backdrop,
.modal-backdrop {
  z-index: 999 !important;
}

.site-search-modal {
  z-index: 1001 !important;
}

.site-search-modal .modal-dialog {
  max-width: 100%;
  width: 100%;
  margin: 0;
  transform: translateY(-100%) !important;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.site-search-modal.show .modal-dialog {
  transform: translateY(0) !important;
}

.site-search-modal .modal-content,
.site-search-modal__content {
  background: var(--color-eggplant, #3b1e2b);
  border: none;
  border-bottom: 1px solid rgba(212, 132, 143, 0.18);
  border-radius: 0;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.site-search-modal__header {
  display: none;
}

.site-search-modal__body {
  padding: 1.5rem clamp(1rem, 5vw, 3rem) 1.75rem !important;
  display: block !important;
  align-items: unset !important;
  justify-content: unset !important;
}

.site-search-modal__form-wrap {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.site-search-modal__label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 700;
  display: block;
  margin-bottom: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-search-modal__input-group {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.site-search-modal__input-group:focus-within {
  border-color: rgba(212, 132, 143, 0.55);
  box-shadow: 0 0 0 4px rgba(212, 132, 143, 0.08);
}

.site-search-modal__input-group::before {
  content: "";
  display: block;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' fill='rgba(255,255,255,0.35)' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.099zm-5.242 1.656a5.5 5.5 0 1 1 0-11 5.5 5.5 0 0 1 0 11z'/%3E%3C/svg%3E") center/15px no-repeat;
}

.site-search-modal__input {
  background: transparent;
  border: none;
  color: var(--color-white);
  font-size: 1rem;
  font-family: var(--font-body);
  padding: 0.8rem 0.5rem 0.8rem 0;
  outline: none;
  box-shadow: none !important;
  flex: 1;
  min-width: 0;
}

.site-search-modal__input::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.site-search-modal__input:focus {
  background: transparent;
  color: var(--color-white);
  box-shadow: none !important;
}

.site-search-modal__submit {
  background: var(--color-pink);
  color: var(--color-white);
  border: none;
  padding: 0.6rem 1.25rem;
  margin: 5px 5px 5px 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 7px;
  transition: background 0.15s ease;
  flex-shrink: 0;
  white-space: nowrap;
}

.site-search-modal__submit:hover {
  background: var(--color-pink-light);
  color: var(--color-white);
}

/* Quick links — below the search bar */
.site-search-modal__quick-links {
  margin-top: 0.9rem !important;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.site-search-modal__quick-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-right: 0.15rem;
  flex-shrink: 0;
}

.site-search-modal__quick-link {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 0.22rem 0.65rem;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.site-search-modal__quick-link:hover {
  color: var(--color-white);
  background: rgba(212, 132, 143, 0.15);
  border-color: rgba(212, 132, 143, 0.3);
}

/* INLINE SEARCH PANEL — drops below navbar, full width */
.inline-search-panel {
  background: var(--color-eggplant, #3b1e2b);
  border-bottom: 1px solid rgba(212, 132, 143, 0.18);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition:
    max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s ease;
}

.inline-search-panel.is-open {
  max-height: 200px;
  opacity: 1;
  pointer-events: auto;
}

.inline-search-panel__inner {
  position: relative;
  padding: 1.4rem clamp(1rem, 5vw, 3rem) 1.6rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.inline-search-panel__form-wrap {
  flex: 1;
  max-width: 760px;
  margin: 0 auto;
}

.inline-search-panel__close {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
  margin-top: 2.1rem;
  font-size: 0.95rem;
}

.inline-search-panel__close:hover {
  background: rgba(212, 132, 143, 0.2);
  border-color: rgba(212, 132, 143, 0.4);
  color: var(--color-white);
}

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-section__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.05);
  animation: scaleIn 1.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
      rgba(39, 16, 32, 0.9) 0%,
      rgba(59, 30, 43, 0.75) 50%,
      rgba(59, 30, 43, 0.35) 100%);
}

.hero-section__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.08;
  pointer-events: none;
}

.hero-section__container {
  position: relative;
  z-index: 1;
}

.hero-section__row {
  padding: var(--space-32) 0 0 0;
}

.hero-section__eyebrow {
  margin-bottom: var(--space-5);
}

.hero-section__eyebrow-badge {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid rgba(227, 180, 35, 0.4);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(227, 180, 35, 0.08);
}

.hero-section__heading {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  line-height: 0.9;
  letter-spacing: 0.01em;
  margin-bottom: var(--space-6);
  color: var(--color-white);
  display: block;
}

.hero-section__heading-line {
  display: block;
}

.hero-section__heading-line--primary {
  color: var(--color-white);
}

.hero-section__heading-line--accent {
  color: var(--color-pink);
  /* Shimmer effect on accent text */
  background: linear-gradient(90deg,
      var(--color-pink) 0%,
      var(--color-pink-light) 40%,
      var(--color-gold) 60%,
      var(--color-pink) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.hero-section__subtitle {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin-bottom: var(--space-8);
  font-weight: 300;
  line-height: 1.7;
}

.hero-section__scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--fs-xl);
}

/* Hero Section  */
/* ── SECTION BASE ── */
.h2-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #0d0608;
  cursor: grab;
  user-select: none;
}

.h2-hero:active {
  cursor: grabbing;
}

/* ── TICKER ── */
.h2-ticker {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: 38px;
  display: flex;
  align-items: stretch;
  background: rgba(10, 4, 8, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(227, 180, 35, 0.25);
  overflow: hidden;
}

.h2-ticker__badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  background: var(--color-gold);
  color: #0d0608;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.18em;
}

.h2-ticker__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c0392b;
  animation: h2pulse 1.2s infinite;
}

@keyframes h2pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.7);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(192, 57, 43, 0);
  }
}

.h2-ticker__runway {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.h2-ticker__belt {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  animation: h2scroll 30s linear infinite;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.h2-ticker__belt b {
  color: var(--color-gold);
  font-weight: 800;
}

.h2-ticker__div {
  color: rgba(227, 180, 35, 0.3);
}

@keyframes h2scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── BACKGROUND SWIPER ── */
.h2-bg-swiper {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
}

.h2-bg-swiper .swiper-wrapper {
  width: 100% !important;
  height: 100% !important;
}

.h2-bg-swiper .swiper-slide {
  width: 100% !important;
  height: 100% !important;
  position: relative !important;
  overflow: hidden !important;
}

.h2-bg-slide {
  position: absolute !important;
  inset: 0 !important;
  background-size: cover !important;
  background-position: center !important;
  animation: h2ken 12s ease-in-out infinite alternate;
}

.h2-bg-video {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

@keyframes h2ken {
  from {
    transform: scale(1) translateX(0) translateY(0);
  }

  to {
    transform: scale(1.15) translateX(-2%) translateY(-1.5%);
  }
}

.h2-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg,
      rgb(13 6 8 / 65%) 0%,
      rgba(39, 16, 32, 0.82) 45%,
      rgba(59, 30, 43, 0.25) 100%),
    linear-gradient(to top, rgb(13 6 8 / 65%) 0%, transparent 40%),
    linear-gradient(to bottom, rgba(13, 6, 8, 0.6) 0%, transparent 18%);
}

/* ── PLAYER IMAGE ── */
.h2-player {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-85%);
  z-index: 2;
  width: min(30vw, 420px);
  height: 88%;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}

.h2-player__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 0 60px rgba(39, 16, 32, 0.9));
  -webkit-mask-image:
    linear-gradient(to right,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.95) 25%,
      rgba(0, 0, 0, 0.95) 75%,
      rgba(0, 0, 0, 0) 100%),
    linear-gradient(to top, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.95) 25%,
      rgba(0, 0, 0, 0.95) 75%,
      rgba(0, 0, 0, 0) 100%),
    linear-gradient(to top, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
  mask-composite: intersect;
  animation: h2float 7s ease-in-out infinite;
  opacity: 0.75;
}

@keyframes h2float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ── MAIN LAYOUT ── */
.h2-layout {
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: calc(var(--header-total) + 16px) clamp(1rem, 4vw, 60px) 60px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  left: 0;
  right: 0;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Bootstrap row inside layout */
.h2-layout .row {
  flex-direction: row-reverse;
  width: 100%;
  flex-shrink: 0;
  margin-left: 0;
  margin-right: 0;
}

.h2-layout .row>* {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

/* ── LEFT COLUMN ── */
.h2-left {
  gap: 0;
}

.h2-season-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.h2-season-tag__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  animation: h2pulse 2s infinite;
}

.h2-heading {
  margin: 0 0 22px;
  line-height: 0.88;
}

.h2-heading__line1 {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  color: #ffffff;
  letter-spacing: 0.01em;
}

.h2-heading__line2 {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  letter-spacing: 0.01em;
  background: linear-gradient(90deg,
      var(--color-pink) 0%,
      #f0c0c8 40%,
      var(--color-gold) 70%,
      var(--color-pink) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: h2shimmer 4s linear infinite;
}

@keyframes h2shimmer {
  to {
    background-position: 200% center;
  }
}

.h2-sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 440px;
}

/* CTAs */
.h2-ctas {
  gap: 14px;
  margin-bottom: 40px;
}

.h2-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.h2-btn--primary {
  background: var(--color-gold);
  color: #0d0608;
  border: 2px solid var(--color-gold);
}

.h2-btn--primary:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(227, 180, 35, 0.4);
  color: #0d0608;
}

.h2-btn--ghost {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.h2-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Sponsors */
.h2-sponsors {
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.h2-sponsors__lbl {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  white-space: nowrap;
}

.h2-sponsors__row {
  display: flex;
  align-items: center;
  gap: 22px;
}

.h2-sponsors__row img {
  height: 20px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.35;
  transition: opacity 0.2s;
}

.h2-sponsors__row img:hover {
  opacity: 0.85;
}

/* ── RIGHT COLUMN ── */
.h2-right {
  gap: 14px;
}

/* Stats strip */
.h2-stats-strip {
  display: flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg,
      rgba(59, 30, 43, 0.85) 0%,
      rgba(39, 16, 32, 0.92) 100%);
  border: 1px solid rgba(212, 132, 143, 0.22);
  border-radius: 10px;
  padding: 14px 20px;
  backdrop-filter: blur(14px);
  box-shadow:
    0 4px 24px rgba(39, 16, 32, 0.5),
    inset 0 1px 0 rgba(212, 132, 143, 0.12);
  width: 100%;
  box-sizing: border-box;
}

.h2-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.h2-stat-item__n {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-pink-light);
  line-height: 1;
  text-shadow: 0 0 20px rgba(212, 132, 143, 0.4);
}

.h2-stat-item__l {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212, 132, 143, 0.55);
  margin-top: 3px;
}

.h2-stat-sep {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom,
      transparent,
      rgba(212, 132, 143, 0.25),
      transparent);
  margin: 0 6px;
}

.h2-form-strip {
  flex-direction: row;
  gap: 5px;
}

.h2-form-dot {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

.h2-w {
  background: rgba(39, 174, 96, 0.18);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.28);
}

.h2-d {
  background: rgba(227, 180, 35, 0.18);
  color: var(--color-gold-light);
  border: 1px solid rgba(227, 180, 35, 0.28);
}

.h2-l {
  background: rgba(212, 132, 143, 0.18);
  color: var(--color-pink);
  border: 1px solid rgba(212, 132, 143, 0.28);
}

/* ── MATCH CARD ── */
/* ── NEW MATCH CARD ── */
.h2-match-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(160deg,
      rgba(59, 30, 43, 0.92) 0%,
      rgba(27, 12, 22, 0.96) 60%,
      rgba(39, 16, 32, 0.98) 100%);
  border: 1px solid rgba(212, 132, 143, 0.2);
  backdrop-filter: blur(28px);
  box-shadow:
    0 24px 64px rgba(27, 12, 22, 0.7),
    0 0 0 1px rgba(212, 132, 143, 0.06) inset;
  width: 100%;
  box-sizing: border-box;
}

/* diagonal stripe texture */
.h2-match-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg,
      rgba(212, 132, 143, 0.025) 0px,
      rgba(212, 132, 143, 0.025) 1px,
      transparent 1px,
      transparent 28px);
  pointer-events: none;
  z-index: 0;
}

/* pink glow from top */
.h2-match-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: radial-gradient(ellipse at 50% -10%,
      rgba(212, 132, 143, 0.14) 0%,
      rgba(227, 180, 35, 0.04) 50%,
      transparent 75%);
  pointer-events: none;
  z-index: 0;
}

/* Header badge row */
.h2-match-card__header {
  position: relative;
  z-index: 1;
  padding: 14px 20px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

@media (min-width: 992px) {
  .h2-match-card__header {
    justify-content: space-between;
    gap: 10px;
  }
}

/* live badge pill */
.h2-match-card__header .h2-mc-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(212, 132, 143, 0.12);
  border: 1px solid rgba(212, 132, 143, 0.32);
  border-radius: 10px;
  padding: 5px 13px;
}

.h2-mc-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-pink);
  animation: h2-dot-pulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(212, 132, 143, 0.6);
}

@keyframes h2-dot-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.35;
    transform: scale(0.65);
  }
}

.h2-mc-badge-text {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-pink-light);
}

.h2-mc-league {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(212, 132, 143, 0.4);
}

/* Body: three-column matchup */
.h2-match-card__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 18px 22px 20px;
}

/* Clubs */
.h2-club {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
}

/* spinning crest ring wrapper */
.h2-club__crest {
  position: relative;
  width: 84px;
  height: 84px;
  flex-shrink: 0;
}

.h2-club__crest-ring {
  display: none;
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(212, 132, 143, 0.35);
  animation: h2-spin-cw 9s linear infinite;
}

.h2-club__crest-ring::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-pink);
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(212, 132, 143, 0.7);
}

.h2-club--away .h2-club__crest-ring {
  border-color: rgba(227, 180, 35, 0.35);
  animation-direction: reverse;
}

.h2-club--away .h2-club__crest-ring::before {
  background: var(--color-gold);
  box-shadow: 0 0 8px rgba(227, 180, 35, 0.7);
}

@keyframes h2-spin-cw {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.h2-club__crest-inner {
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.h2-club__crest img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.h2-club__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  line-height: 1.15;
  letter-spacing: 0.05em;
}

.h2-club__side-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212, 132, 143, 0.7);
  margin-top: -6px;
}

.h2-club--away .h2-club__side-label {
  color: rgba(227, 180, 35, 0.7);
}

/* Center VS block */
.h2-match-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.h2-match-vs {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: rgba(255, 255, 255, 0.06);
  letter-spacing: 0.1em;
  line-height: 1;
}

.h2-match-date {
  background: rgba(212, 132, 143, 0.08);
  border: 1px solid rgba(212, 132, 143, 0.18);
  border-radius: 10px;
  padding: 10px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.h2-match-date__day {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-pink-light);
}

.h2-match-date__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: #ffffff;
  line-height: 1;
}

.h2-match-date__month {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(212, 132, 143, 0.45);
}

.h2-match-time {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-gold-light);
  letter-spacing: 0.08em;
}

.h2-match-venue {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(212, 132, 143, 0.35);
  display: flex;
  align-items: center;
  gap: 3px;
}

/* pink-gold divider */
.h2-match-card__divider {
  position: relative;
  z-index: 1;
  height: 1px;
  margin: 0 22px;
  background: linear-gradient(90deg,
      transparent,
      rgba(212, 132, 143, 0.25),
      rgba(227, 180, 35, 0.2),
      rgba(212, 132, 143, 0.25),
      transparent);
}

/* Countdown footer */
.h2-match-card__footer {
  position: relative;
  z-index: 1;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
  justify-content: space-between;
}

@media (min-width: 992px) and (max-width: 1399.9px) {
  .h2-match-card__ticket-btn {
    display: none !important;
  }
}

.h2-cd-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(212, 132, 143, 0.4);
  white-space: nowrap;
}

.h2-cd {
  display: flex;
  align-items: center;
  gap: 5px;
  flex: 1;
  justify-content: center;
}

.h2-cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(59, 30, 43, 0.6);
  border: 1px solid rgba(212, 132, 143, 0.15);
  border-radius: 8px;
  padding: 7px 9px;
  min-width: 44px;
}

.h2-cd-n {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: #ffffff;
  line-height: 1;
  min-width: 2ch;
  text-align: center;
}

.h2-cd-u {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212, 132, 143, 0.45);
  margin-top: 2px;
}

.h2-cd-sep {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-pink);
  opacity: 0.5;
  margin-bottom: 10px;
}

.h2-match-card__ticket-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 18px;
  background: linear-gradient(135deg,
      var(--color-eggplant-mid) 0%,
      var(--color-eggplant) 100%);
  border: 1px solid rgba(212, 132, 143, 0.45);
  color: var(--color-pink-light);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(39, 16, 32, 0.5);
}
/* ===========================
   RIGHT COLUMN
=========================== */

.h2-right{
    gap: 10px;
}

/* ===========================
   STATS STRIP
=========================== */

.h2-stats-strip{
    padding: 10px 16px;
    border-radius: 8px;
    width: 80%;
    margin: 0 auto;
}

.h2-stat-item__n{
    font-size: 1.3rem;
}

.h2-stat-item__l{
    font-size: 9px;
    margin-top: 2px;
}

.h2-stat-sep{
    height: 28px;
}

.h2-form-dot{
    width: 24px;
    height: 24px;
    font-size: 10px;
}

/* ===========================
   MATCH CARD
=========================== */

.h2-match-card{
    border-radius: 8px;
    width: 80%;
    margin: 0 auto;
}

.h2-match-card__header{
    padding: 10px 16px 8px;
}

.h2-match-card__body{
    padding: 12px 16px 14px;
    gap: 8px;
}

.h2-match-card__divider{
    margin: 0 16px;
}

.h2-match-card__footer{
    padding: 10px 16px;
}

/* ===========================
   TEAMS
=========================== */

.h2-club__crest{
    width: 85px;
    height: 76px;
}

.h2-club__crest-inner{
    width: 67px;
    height: 67px;
}

.h2-club__crest-inner img{
    /* width: 50px; */
    /* height: 50px; */
}

.h2-club__name{
    font-size: 13px;
    line-height: 1.3;
}

.h2-club__side-label{
    font-size: 10px;
}

/* ===========================
   CENTER
=========================== */

.h2-match-vs{
    font-size: 18px;
}

.h2-match-date__day{
    font-size: 10px;
}

.h2-match-date__num{
    font-size: 24px;
}

.h2-match-date__month{
    font-size: 10px;
}

.h2-match-time{
    font-size: 14px;
}

.h2-match-venue{
    font-size: 11px;
}

/* ===========================
   COUNTDOWN
=========================== */

.h2-cd-label{
    font-size: 10px;
}

.h2-cd-n{
    font-size: 16px;
}

.h2-cd-u{
    font-size: 9px;
}

.h2-cd-sep{
    font-size: 14px;
}
@media (min-width:992px){
    .h2-right{
        max-width: 430px;
        margin-inline-start: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-self: stretch;
        min-height: 100%;
    }
}

.h2-match-card__ticket-btn:hover {
  background: linear-gradient(135deg,
      var(--color-pink) 0%,
      var(--color-eggplant-mid) 100%);
  border-color: rgba(212, 132, 143, 0.7);
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 8px 24px rgba(212, 132, 143, 0.25);
}

/* Scroll hint */
.h2-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.h2-scroll-hint span {
  display: block;
  width: 2px;
  height: 8px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 1px;
  animation: h2scrollbounce 1.5s infinite;
}

.h2-scroll-hint span:nth-child(2) {
  animation-delay: 0.15s;
  opacity: 0.6;
}

.h2-scroll-hint span:nth-child(3) {
  animation-delay: 0.3s;
  opacity: 0.3;
}

@keyframes h2scrollbounce {

  0%,
  100% {
    transform: scaleY(1);
  }

  50% {
    transform: scaleY(1.6);
  }
}

/* Common: stacked layout tweaks (< 992px — Bootstrap lg breakpoint) */
@media (max-width: 1000px) {
  .h2-hero {
    height: auto;
    min-height: 100svh;
    overflow: hidden;
  }

  .h2-layout {
    position: relative;
    inset: auto;
    padding-top: calc(var(--header-total, 112px) + 8px);
    padding-bottom: 32px;
    padding-left: clamp(1rem, 4vw, 32px);
    padding-right: clamp(1rem, 4vw, 32px);
    overflow: visible;
    justify-content: center;
    min-height: 100svh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }

  .h2-layout .row {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .h2-layout .row>.col-12 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding-left: 0;
    padding-right: 0;
  }

  /* Right column — full width, no offset */
  .h2-right {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    gap: 12px;
    box-sizing: border-box;
    position: relative;
  }

  @keyframes h2chevron {

    0%,
    100% {
      transform: rotate(45deg) translateY(0);
      opacity: 0.7;
    }

    50% {
      transform: rotate(45deg) translateY(5px);
      opacity: 1;
    }
  }

  .h2-stats-strip {
    width: 100% !important;
    box-sizing: border-box !important;
    display: none !important;
  }

  .h2-match-card {
    width: 92% !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  /* Left column */
  .h2-left {
    gap: 14px;
  }

  .h2-heading {
    margin: 0;
    line-height: 0.9;
  }

  .h2-heading__line1,
  .h2-heading__line2 {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
  }

  .h2-season-tag {
    margin-bottom: 0;
  }

  .h2-sub {
    margin: 0;
    max-width: 100%;
  }

  .h2-ctas {
    margin-bottom: 0;
  }

  .h2-cd-hide-mobile {
    display: flex !important;
  }

  .h2-player {
    display: none;
  }

  /* Stats strip — scrollable on small tablets */
  .h2-stats-strip {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .h2-stats-strip::-webkit-scrollbar {
    display: none;
  }

  .h2-stat-item__n {
    font-size: 1.4rem;
  }

  .h2-stat-item__l {
    font-size: 9.5px;
  }

  /* Match card responsive */
  .h2-match-card__header {
    padding: 10px 14px 8px;
  }

  .h2-mc-league {
    display: block;
    font-size: 10px;
    letter-spacing: 0.06em;
    opacity: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 250px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
  }

  .h2-match-card__body {
    padding: 14px 14px 16px;
    gap: 8px;
  }

  .h2-club__crest {
    width: 75px;
    height: 75px;
  }

  .h2-club__crest-inner {
    inset: 7px;
  }

  .h2-club__name {
    font-size: 0.82rem;
  }

  .h2-club__side-label {
    display: none;
  }

  .h2-match-vs {
    font-size: 1.8rem;
  }

  .h2-match-date {
    padding: 8px 12px;
  }

  .h2-match-date__num {
    font-size: 2rem;
  }

  .h2-match-date__day,
  .h2-match-date__month {
    font-size: 8px;
  }

  .h2-match-time {
    font-size: 0.85rem;
  }

  .h2-match-venue {
    font-size: 8px;
  }

  .h2-match-card__divider {
    margin: 0 14px;
  }

  /* Countdown */
  .h2-match-card__footer {
    padding: 12px 14px;
    gap: 8px;
  }

  .h2-cd-label {
    font-size: 9px;
  }

  .h2-cd-unit {
    padding: 6px 8px;
    min-width: 38px;
  }

  .h2-cd-n {
    font-size: 1.3rem;
  }

  .h2-cd-u {
    font-size: 7.5px;
  }

  .h2-cd-sep {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .h2-match-card__ticket-btn {
    padding: 8px 14px;
    font-size: 11px;
  }

  /* Ticker */
  .h2-ticker {
    height: 34px;
  }

  .h2-ticker__badge {
    font-size: 12px;
  }

  .h2-ticker__belt {
    font-size: 12px;
  }
}

/* Mobile-only overrides (< 576px — Bootstrap sm breakpoint) */
@media (max-width: 400px) {
  .h2-hero {
    min-height: 100svh;
  }

  .h2-layout {
    padding-bottom: 24px;
    justify-content: center;
    min-height: 100svh;
  }

  /* gap between left (text) and right (match card) */
  .h2-layout .row {
    gap: 0;
    row-gap: 32px !important;
  }

  .h2-left {
    gap: 10px;
  }

  /* Full width right column on mobile */
  .h2-right {
    width: 100%;
    gap: 10px;
    padding: 0;
  }

  .h2-stats-strip {
    display: none !important;
  }

  .h2-match-card {
    width: 94%;
    margin: 0 auto;
    box-sizing: border-box;
    border-radius: 12px;
  }

  .h2-season-tag {
    font-size: 9px;
    letter-spacing: 0.13em;
  }

  .h2-season-tag__dot {
    width: 6px;
    height: 6px;
  }

  .h2-heading {
    line-height: 0.92;
  }

  .h2-heading__line1,
  .h2-heading__line2 {
    font-size: clamp(1.9rem, 9vw, 3.2rem);
  }

  .h2-sub {
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .h2-ctas {
    gap: 8px;
    flex-wrap: nowrap;
  }

  .h2-btn {
    padding: 10px 14px;
    font-size: 11.5px;
    flex: 1;
    justify-content: center;
  }

  .h2-stats-strip {
    padding: 8px 12px;
  }

  .h2-stat-item {
    min-width: 54px;
  }

  .h2-stat-item__n {
    font-size: 1.15rem;
  }

  .h2-stat-item__l {
    font-size: 8px;
  }

  .h2-stat-sep {
    height: 28px;
  }

  .h2-match-card {
    border-radius: 10px;
  }

  .h2-match-card__header {
    padding: 8px 11px 6px;
  }

  .h2-match-card__body {
    padding: 10px 10px 12px;
    gap: 4px;
  }

  .h2-club {
    gap: 5px;
  }

  .h2-club--home,
  .h2-club--away {
    align-items: center;
    text-align: center;
  }

  .h2-club__crest {
    width: 46px;
    height: 46px;
  }

  .h2-club__crest-inner {
    inset: 5px;
  }

  .h2-club__name {
    font-size: 0.86rem;
  }

  .h2-match-center {
    flex: 0 0 auto;
    padding: 0 4px;
  }

  .h2-match-vs {
    font-size: 1.4rem;
  }

  .h2-match-date {
    padding: 6px 10px;
  }

  .h2-match-date__day,
  .h2-match-date__month {
    font-size: 7.5px;
  }

  .h2-match-date__num {
    font-size: 1.5rem;
    line-height: 1;
  }

  .h2-match-time {
    font-size: 0.72rem;
  }

  .h2-match-venue {
    font-size: 7.5px;
  }

  .h2-match-card__divider {
    margin: 0 11px;
  }

  .h2-match-card__footer {
    padding: 10px 11px;
    gap: 6px;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }

  .h2-cd-label {
    display: none;
  }

  .h2-cd {
    gap: 3px;
    flex: 0 0 auto;
  }

  .h2-cd-unit {
    padding: 5px 7px;
    min-width: 32px;
  }

  .h2-cd-n {
    font-size: 1.05rem;
  }

  .h2-cd-u {
    font-size: 7px;
  }

  .h2-cd-sep {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .h2-match-card__ticket-btn {
    padding: 7px 11px;
    font-size: 10px;
    flex-shrink: 0;
  }

  .h2-ticker {
    height: 30px;
  }

  .h2-ticker__badge {
    padding: 0 10px;
    font-size: 10px;
  }

  .h2-ticker__belt {
    font-size: 10.5px;
  }

  .h2-scroll-hint {
    display: none;
  }
}

/* Extra small (< 400px) */
@media (max-width: 400px) {

  .h2-heading__line1,
  .h2-heading__line2 {
    font-size: clamp(1.7rem, 8.5vw, 2.4rem);
  }

  .h2-btn {
    padding: 8px 10px;
    font-size: 10.5px;
  }

  .h2-layout {
    padding-left: 12px;
    padding-right: 12px;
  }

  .h2-club__crest {
    width: 72px !important;
    height: 72px !important;
  }
}

/* ── منع horizontal scroll عام على الموبايل ── */
@media (max-width: 767px) {

  html,
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .site-wrapper {
    max-width: 100vw;
    /* overflow-x removed — كان بيكسر sticky */
  }

  /* الناف بار يبدأ من أعلى الشاشة مباشرة */
  .site-header {
    top: 0 !important;
    transform: none !important;
    position: fixed;
    margin-bottom: 0;
  }
}



/* ============================================================
   11. STATS BAR
   ============================================================ */
.stats-bar {
  background-color: var(--color-eggplant-deep);
  padding: var(--space-8) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 3;
}

.stats-bar__row {
  justify-content: center;
}

.stats-bar__item {
  text-align: center;
  padding: var(--space-4);
  position: relative;
}

.stats-bar__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.stats-bar__number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  color: var(--color-pink);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.stats-bar__label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* ============================================================
   12. SECTION SHARED STYLES
   ============================================================ */
.section {
  padding: var(--space-24) 0;
  position: relative;
}

.section--dark {
  background-color: var(--color-eggplant);
  color: var(--color-off-white);
}

.section--light {
  background-color: var(--color-cream);
}

.section--accent {
  background-color: var(--color-eggplant-deep);
  color: var(--color-off-white);
  position: relative;
  overflow: hidden;
}

.section--accent::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
      rgba(212, 132, 143, 0.12),
      transparent 70%);
  pointer-events: none;
}

/* Section header */
.section__header {
  margin-bottom: var(--space-12);
}

.section__eyebrow {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-pink);
  margin-bottom: var(--space-2);
  display: block;
}

.section__eyebrow--gold {
  color: var(--color-gold);
}

.section--dark .section__eyebrow {
  color: var(--color-pink-light);
}

.section__heading {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  color: var(--color-eggplant);
  margin-bottom: var(--space-3);
  line-height: 1;
}

.section--dark .section__heading,
.vip-section .section__heading,
.acad2-section .section__heading {
  color: var(--color-white);
}

.acad2-section .section__eyebrow {
  color: var(--color-gold-light);
}

.acad2-section .section__subheading {
  color: rgba(255, 255, 255, 0.6);
}

.section__subheading {
  font-size: var(--fs-md);
  color: var(--color-mid-gray);
  max-width: 540px;
  line-height: 1.7;
  font-weight: 300;
}

.section--dark .section__subheading {
  color: rgba(255, 255, 255, 0.55);
}

.section__subheading--centered {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section__view-all-link {
  flex-shrink: 0;
  font-size: var(--fs-xs);
}

/* ============================================================
   13. FIRST TEAM SECTION · PLAYER CARDS
   ============================================================ */
.first-team-section {
  background-color: var(--color-off-white);
}

/* Decorative top border */
.first-team-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
      var(--color-pink),
      var(--color-eggplant),
      var(--color-gold));
}

/* Player Card */
.player-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.player-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(59, 30, 43, 0.15);
}

.player-card__image-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(160deg,
      var(--color-eggplant-mid),
      var(--color-eggplant-deep));
}

.player-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.player-card:hover .player-card__image {
  transform: scale(1.06);
}

/* Hover overlay */
.player-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(59, 30, 43, 0.85), transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: var(--space-5);
  opacity: 0;
  transition: var(--transition-base);
}

.player-card:hover .player-card__overlay {
  opacity: 1;
}

.player-card__profile-link {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
  pointer-events: none;
  /* Prevented; stretched-link handles click */
}

/* Jersey number badge */
.player-card__number {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Captain badge */
.player-card__badge {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--color-gold);
  color: var(--color-eggplant);
  font-size: var(--fs-xs);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  animation: pulseGold 3s ease-in-out infinite;
}

/* Card info */
.player-card__info {
  padding: var(--space-4);
  background: var(--color-white);
}

.player-card__name {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  color: var(--color-eggplant);
  margin-bottom: var(--space-1);
  line-height: 1.2;
}

.player-card__position {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-pink);
  margin: 0;
}

/* Featured card */
.player-card--featured {
  box-shadow:
    0 0 0 2px var(--color-gold),
    var(--shadow-lg);
}

.player-card--featured .player-card__info {
  background: linear-gradient(135deg,
      var(--color-eggplant),
      var(--color-eggplant-mid));
}

.player-card--featured .player-card__name {
  color: var(--color-white);
}

.player-card--featured .player-card__position {
  color: var(--color-gold);
}

/* Stretched link */
.player-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ============================================================
   14. RESORT & ESTATE SECTION
   ============================================================ */
/* ============================================================
   14. RESORT & ESTATE SECTION — rebuilt
   ============================================================ */

/* ── Section shell ── */
.resort-section {
  position: relative;
  background: var(--color-eggplant-deep);
  overflow: hidden;
}

/* Subtle geometric grid overlay */
.resort-bg-grid {
  position: absolute;
  inset: 0;
  /* background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); */
  background-size: 60px 60px;
  pointer-events: none;
}

.resort-section__container {
  position: relative;
  z-index: 1;
}

/* ── Section header ── */
.resort-section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-16);
}

.resort-section__header-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.resort-section__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
}

.resort-section__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.05;
  margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
}

.resort-section__title em {
  font-style: italic;
  color: var(--color-pink);
}

.resort-section__subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--fs-base);
  font-weight: 300;
  line-height: 1.7;
}

/* ── Hero feature (Stadium) ── */
.resort-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 15px;
  min-height: 520px;
}

@media (max-width: 991px) {
  .resort-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

.resort-hero__media {
  position: relative;
  overflow: hidden;
}

.resort-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.resort-hero:hover .resort-hero__image {
  transform: scale(1.04);
}

.resort-hero__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(39, 16, 32, 0.35), transparent 60%);
}

/* Floating stat badge */
.resort-hero__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(39, 16, 32, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.resort-hero__badge-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-gold);
}

.resort-hero__badge-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

.resort-hero__body {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: none;
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 991px) {
  .resort-hero__body {
    border-left: 1px solid rgba(255, 255, 255, 0.07);
    border-top: none;
  }
}

/* shared text styles used in both hero and split */
.resort-hero__eyebrow {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

.resort-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  /* font-weight: 800; */
  color: var(--color-white);
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.resort-hero__text {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: var(--space-6);
  font-size: var(--fs-sm);
}

/* ── Checklist ── */
.resort-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.resort-checklist__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.75);
}

.resort-checklist__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg,
      var(--color-pink),
      var(--color-eggplant-light));
  position: relative;
}

.resort-checklist__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* checkmark via clip */
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat;
}

/* ── CTA button ── */
.resort-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--color-white);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s;
  align-self: flex-start;
}

.resort-cta-btn:hover {
  background: var(--color-pink);
  border-color: var(--color-pink);
  color: var(--color-white);
}

/* ── Split feature (Estate Hotel) ── */
.resort-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--space-4);
  min-height: 460px;
}

@media (max-width: 991px) {
  .resort-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

/* image on right side */
.resort-split__media {
  position: relative;
  overflow: hidden;
  order: 2;
}

@media (max-width: 991px) {
  .resort-split__media {
    order: 0;
  }
}

.resort-split__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.resort-split:hover .resort-split__image {
  transform: scale(1.04);
}

.resort-split__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(240deg, rgba(39, 16, 32, 0.3), transparent 60%);
}

.resort-split__body {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-right: none;
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 1;
}

@media (max-width: 991px) {
  .resort-split__body {
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    border-top: none;
    order: 2;
  }
}

/* ── Facility Tiles (4-col grid with real images) ── */
.resort-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

@media (max-width: 991px) {
  .resort-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .resort-tiles {
    grid-template-columns: 1fr;
  }
}

.resort-tile {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  cursor: pointer;
}

.resort-tile__img-wrap {
  position: absolute;
  inset: 0;
}

.resort-tile__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.resort-tile:hover .resort-tile__img {
  transform: scale(1.08);
}

.resort-tile__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(23, 8, 18, 0.92) 30%,
      rgba(23, 8, 18, 0.35) 100%);
  transition: background 0.4s ease;
}

.resort-tile:hover .resort-tile__img-overlay {
  background: linear-gradient(to top,
      rgba(23, 8, 18, 0.96) 35%,
      rgba(59, 30, 43, 0.6) 100%);
}

.resort-tile__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  z-index: 1;
}

.resort-tile__icon {
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.resort-tile:hover .resort-tile__icon {
  transform: translateY(-4px);
}

.resort-tile__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  /* font-weight: 700; */
  color: var(--color-white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.resort-tile__text {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  margin-bottom: 16px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    opacity 0.4s ease;
  opacity: 0;
}

.resort-tile:hover .resort-tile__text {
  max-height: 80px;
  opacity: 1;
}

.resort-tile__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-decoration: none;
  transition:
    gap 0.25s,
    color 0.25s;
}

.resort-tile__link:hover {
  gap: 14px;
  color: var(--color-gold-light);
}

/* thin gold accent line on hover */
.resort-tile::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-pink), var(--color-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
}

.resort-tile:hover::after {
  transform: scaleX(1);
}

/* ============================================================
   15. ACADEMY SECTION
   ============================================================ */
/* ============================================================
   ACADEMY SECTION — PREMIUM REBUILD (acad2-)
   ============================================================ */

.acad2-section {
  background: var(--color-eggplant-deep);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  font-family: var(--font-body);
}

/* Ambient background layers */
.acad2-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.acad2-bg__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 15% 30%,
      rgba(212, 132, 143, 0.07) 0%,
      transparent 60%),
    radial-gradient(ellipse 55% 70% at 85% 75%,
      rgba(79, 42, 60, 0.5) 0%,
      transparent 65%),
    radial-gradient(ellipse 35% 35% at 50% 10%,
      rgba(59, 30, 43, 0.6) 0%,
      transparent 70%);
}

.acad2-bg__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212, 132, 143, 0.06);
}

.acad2-bg__ring--1 {
  width: 700px;
  height: 700px;
  top: -200px;
  right: -200px;
  animation: acad2Spin 50s linear infinite;
}

.acad2-bg__ring--2 {
  width: 450px;
  height: 450px;
  bottom: -150px;
  left: -150px;
  border-color: rgba(227, 180, 35, 0.04);
  animation: acad2Spin 35s linear infinite reverse;
}

.acad2-bg__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.025) 1px,
      transparent 1px);
  background-size: 32px 32px;
}

@keyframes acad2Spin {
  to {
    transform: rotate(360deg);
  }
}

/* Container */
.acad2-container {
  position: relative;
  z-index: 1;
}

/* Section header */
.acad2-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 56px;
}

@media (min-width: 768px) {
  .acad2-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

/* Hero feature block */
.acad2-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 64px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 2px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .acad2-hero {
    grid-template-columns: 1fr 1fr;
  }
}

.acad2-hero__media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.acad2-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.acad2-hero:hover .acad2-hero__image {
  transform: scale(1.04);
}

.acad2-hero__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(59, 30, 43, 0.45) 0%,
      rgba(39, 16, 32, 0.2) 100%);
}

.acad2-hero__badge {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(39, 16, 32, 0.85);
  border: 1px solid rgba(212, 132, 143, 0.3);
  border-radius: 20px;
  padding: 6px 14px;
  backdrop-filter: blur(8px);
}

.acad2-hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d4848f;
  animation: acad2Pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes acad2Pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.acad2-hero__badge-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #e4a8b1;
}

.acad2-hero__body {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 991px) {
  .acad2-hero__body {
    padding: 32px 28px;
  }
}

.acad2-hero__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-pink-light);
  margin-bottom: 12px;
}

.acad2-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 16px;
}

.acad2-hero__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Checklist */
.acad2-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.acad2-checklist__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 300;
}

.acad2-checklist__item:last-child {
  border-bottom: none;
}

.acad2-checklist__icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(212, 132, 143, 0.15);
  border: 1px solid rgba(212, 132, 143, 0.3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.acad2-checklist__icon::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4848f;
}

/* CTA button */
.acad2-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid rgba(212, 132, 143, 0.4);
  color: #e4a8b1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-body);
  border-radius: 1px;
  text-decoration: none;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s;
  width: fit-content;
}

.acad2-cta-btn:hover {
  background: rgba(212, 132, 143, 0.12);
  border-color: #d4848f;
  color: #fff;
}

/* Stats strip */
.acad2-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.025);
  margin-bottom: 48px;
  overflow: hidden;
}

.acad2-stat {
  flex: 1 1 120px;
  text-align: center;
  padding: 32px 20px;
  position: relative;
  transition: background 0.25s;
}

.acad2-stat:hover {
  background: rgba(212, 132, 143, 0.05);
}

.acad2-stat__sep {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  align-self: center;
}

.acad2-stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.acad2-stat__label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

/* Programme tiles */
.acad2-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

@media (min-width: 992px) {
  .acad2-tiles {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 575px) {
  .acad2-tiles {
    grid-template-columns: 1fr;
  }
}

.acad2-tile {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  position: relative;
}

.acad2-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4848f, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.acad2-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5);
  border-color: rgba(212, 132, 143, 0.2);
}

.acad2-tile:hover::before {
  opacity: 1;
}

.acad2-tile__img-wrap {
  position: relative;
  overflow: hidden;
  display: flex;
  aspect-ratio: 4/3;
}

.acad2-tile__img {
  width: 100%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  transition: transform 0.6s ease;
}

.acad2-tile:hover .acad2-tile__img {
  transform: scale(1.07);
}

.acad2-tile__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 40%,
      rgba(39, 16, 32, 0.85) 100%);
}

.acad2-tile__body {
  padding: 24px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #271020;
}

.acad2-tile__icon {
  width: 36px;
  height: 36px;
  background: rgba(212, 132, 143, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #d4848f;
  font-size: 15px;
}

.acad2-tile__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 10px;
}

.acad2-tile__text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}

.acad2-tile__link {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d4848f;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition:
    gap 0.2s,
    color 0.2s;
  margin-top: auto;
}

.acad2-tile__link:hover {
  color: #e4a8b1;
  gap: 10px;
}

/* Trials banner */
.acad2-trials-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 2px;
  padding: 36px 40px;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .acad2-trials-banner {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    gap: 24px;
  }
}

.acad2-trials-banner__left-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #d4848f, transparent);
}

.acad2-trials-banner__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.acad2-trials-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d4848f;
  width: fit-content;
}

.acad2-trials-banner__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d4848f;
  animation: acad2Pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.acad2-trials-banner__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.acad2-trials-banner__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
  line-height: 1.65;
  margin: 0;
}

.acad2-trials-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid rgba(212, 132, 143, 0.4);
  color: #e4a8b1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-body);
  background: transparent;
  border-radius: 1px;
  text-decoration: none;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s;
  white-space: nowrap;
}

.acad2-trials-banner__btn:hover {
  background: rgba(212, 132, 143, 0.12);
  border-color: #d4848f;
  color: #fff;
}

/* Keep old academy classes from breaking anything else */
.academy-section {
  display: none;
}

.academy-card,
.academy-stat {
  display: none;
}

/* ============================================================
   16. VIP & HOSPITALITY SECTION
   ============================================================ */
.vip-section {
  position: relative;
  color: var(--color-white);
  padding: var(--space-24) 0;
  overflow: hidden;
}

.vip-section__bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vip-section__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(0.5);
}

.vip-section__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(39, 16, 32, 0.92) 0%,
      rgba(59, 30, 43, 0.85) 100%);
}

.vip-section__container {
  position: relative;
  z-index: 1;
}

.vip-section__heading {
  color: var(--color-white) !important;
}

/* VIP Package Cards */
.vip-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.vip-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-pink), transparent);
  transition: var(--transition-base);
}

.vip-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(212, 132, 143, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

/* Featured VIP card */
.vip-card--featured {
  border-color: rgba(227, 180, 35, 0.4);
  background: rgba(227, 180, 35, 0.06);
}

.vip-card--featured::before {
  background: linear-gradient(90deg,
      var(--color-gold),
      var(--color-gold-light));
}

.vip-card--featured:hover {
  border-color: rgba(227, 180, 35, 0.6);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.4),
    var(--shadow-gold);
}

/* Popular badge */
.vip-card__popular-badge {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-eggplant);
  background: var(--color-gold);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.vip-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-5);
}

.vip-card__tier {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-pink-light);
}

.vip-card__tier--platinum {
  color: var(--color-gold);
}

.vip-card__tier--founders {
  color: var(--color-pale-yellow);
}

.vip-card__icon {
  font-size: var(--fs-2xl);
  color: rgba(255, 255, 255, 0.2);
}

.vip-card--featured .vip-card__icon {
  color: rgba(227, 180, 35, 0.3);
}

.vip-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.vip-card__description {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.vip-card__features {
  flex: 1;
  margin-bottom: var(--space-6);
}

.vip-card__features li {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
}

.vip-card__features li i {
  color: var(--color-pink);
  flex-shrink: 0;
}

.vip-card--featured .vip-card__features li i {
  color: var(--color-gold);
}

/* VIP Enquiry Banner */
.vip-section__enquiry-banner {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-10);
  margin-top: var(--space-4) !important;
}

.vip-section__enquiry-heading {
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.vip-section__enquiry-body {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--fs-sm);
  margin: 0;
}

.vip-section__enquiry-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--color-white);
}

.vip-section__enquiry-btn:hover {
  background: var(--color-pink);
  border-color: var(--color-pink);
  color: var(--color-white);
}

/* ============================================================
   17. MATCHDAY SECTION · FIXTURE CARDS
   ============================================================ */
.matchday-section {
  background-color: var(--color-white);
}

.matchday-section__tab-nav {
  flex-shrink: 0;
}

.matchday-section__tab {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-mid-gray);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  transition: var(--transition-fast);
  background: none;
}

.matchday-section__tab--active,
.matchday-section__tab:hover {
  color: var(--color-white);
  background: var(--color-eggplant);
  border-color: var(--color-eggplant);
}

/* Fixture Cards */
/* Fixture Cards — Rebuilt with consistent 3-column grid */
.matchday-section__fixtures {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.fixture-card {
  background: var(--color-off-white);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
  position: relative;
  margin-bottom: 10px;
}

.fixture-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-eggplant);
  transition: var(--transition-fast);
  z-index: 1;
}

.fixture-card--away::before {
  background: var(--color-mid-gray);
}

.fixture-card:hover {
  border-color: var(--color-pink);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.fixture-card:hover::before {
  background: var(--color-pink);
}

/* 3-column grid: competition | match | meta */
.fixture-card__inner {
  display: grid;
  grid-template-columns: 190px 1fr 200px;
  align-items: center;
  padding: var(--space-5) var(--space-6) var(--space-5) calc(var(--space-6) + 4px);
  min-height: 90px;
}

/* Competition column */
.fixture-card__competition-col {
  display: flex;
  align-items: center;
  padding-right: var(--space-4);
  min-width: 0;
  overflow: hidden;
}

.fixture-card__competition-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-eggplant);
  background: rgba(59, 30, 43, 0.07);
  padding: 0.3rem 0.65rem 0.3rem 0.3rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(59, 30, 43, 0.15);
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.fixture-card__competition-badge--league {
  background: rgba(59, 30, 43, 0.07);
  color: var(--color-eggplant);
  border-color: rgba(59, 30, 43, 0.15);
}

.fixture-card__competition-badge--continental {
  background: rgba(227, 180, 35, 0.1);
  color: #7a5e00;
  border-color: rgba(227, 180, 35, 0.3);
}

/* Logo inside badge */
.fixture-card__competition-badge .fixture-card__crest {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: contain;
}

/* Badge text — truncate if too long */
.fixture-card__competition-badge span,
.fixture-card__competition-badge {
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Match column: home | score-box | away — equal 3 sub-columns */
.fixture-card__match-col {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-4);
  padding: 0 var(--space-5);
  border-left: 1px solid var(--color-light-gray);
  border-right: 1px solid var(--color-light-gray);
}

.fixture-card__team {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.fixture-card__team--home {
  justify-content: flex-end;
}

.fixture-card__team--away {
  justify-content: flex-start;
}

.fixture-card__team-name {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--color-eggplant);
  white-space: nowrap;
  line-height: 1;
}

.fixture-card__crest {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  display: block;
}

/* Score / VS center block */
.fixture-card__score-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 90px;
}

.fixture-card__vs {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  color: var(--color-eggplant);
  line-height: 1;
}

.fixture-card__datetime {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fixture-card__date-day {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--color-mid-gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

.fixture-card__date-time {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  color: var(--color-eggplant);
  line-height: 1.2;
}

/* Meta column */
.fixture-card__meta-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  padding-left: var(--space-4);
}

.fixture-card__venue {
  font-size: var(--fs-xs);
  color: var(--color-mid-gray);
  white-space: nowrap;
}

.fixture-card__ticket-btn {
  display: inline-flex;
  align-items: center;
  font-size: var(--fs-xs) !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--color-eggplant);
  color: var(--color-white) !important;
  border: 1.5px solid var(--color-eggplant);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: var(--transition-fast);
  text-decoration: none;
}

.fixture-card__ticket-btn:hover {
  background: var(--color-pink);
  border-color: var(--color-pink);
  color: var(--color-white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 132, 143, 0.35);
}

.fixture-card__ticket-btn--away {
  background: transparent;
  color: var(--color-eggplant) !important;
  border-color: var(--color-eggplant);
}

.fixture-card__ticket-btn--away:hover {
  background: var(--color-eggplant);
  color: var(--color-white) !important;
  box-shadow: 0 4px 12px rgba(59, 30, 43, 0.25);
}

/* Result variants */
.fixture-card__result-score {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  color: var(--color-eggplant);
  line-height: 1;
}

.fixture-card__result-score span {
  color: var(--color-mid-gray);
  margin: 0 4px;
}

.fixture-card__result-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-mid-gray);
}

.fixture-card__date-played {
  font-size: var(--fs-xs);
  color: var(--color-mid-gray);
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 991px) {
  .fixture-card__inner {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-5) var(--space-5) calc(var(--space-5) + 4px);
  }

  .fixture-card__match-col {
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--color-light-gray);
    border-bottom: 1px solid var(--color-light-gray);
    padding: var(--space-4) 0;
  }

  .fixture-card__competition-col {
    padding-right: 0;
  }

  .fixture-card__meta-col {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 991.9px) {
  .fixture-card__match-col {
    border-top: none !important;
    border-bottom: none !important;
  }
}

@media (max-width: 575px) {
  .fixture-card__team-name {
    font-size: var(--fs-lg);
  }

  .fixture-card__crest {
    width: 32px;
    height: 32px;
  }

  .fixture-card__score-box {
    min-width: 70px;
  }
}

/* ============================================================
   18. SHOP SECTION · PRODUCT CARDS
   ============================================================ */
.shop-section {
  background-color: var(--color-cream);
}

/* Category tabs */
.shop-section__category-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

@media (max-width: 991.9px) {
  .shop-section__category-list {
    justify-content: center;
  }
}

.shop-section__category-btn {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-mid-gray);
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-full);
  background: var(--color-white);
  transition: var(--transition-fast);
}

.shop-section__category-btn--active,
.shop-section__category-btn:hover {
  background: var(--color-eggplant);
  color: var(--color-white);
  border-color: var(--color-eggplant);
}

/* ── Product Card — Editorial Overlay Style ── */
.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--color-eggplant-deep);
  cursor: pointer;
}

/* Image fills the whole card */
.product-card__image-wrap {
  position: relative;
  aspect-ratio: 3 / 5;
  overflow: hidden;
  width: 100%;
  flex: 1;
}

@media (max-width: 991.9px) {
  .product-card__image-wrap {
    /* aspect-ratio: 1 / 1; */
    flex: none;
  }
}

.product-card__image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.88);
}

.product-card:hover .product-card__image {
  transform: scale(1.08);
  filter: brightness(0.65);
}

/* Dark gradient overlay at bottom */
.product-card__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(15, 5, 10, 0.95) 0%,
      rgba(15, 5, 10, 0.5) 42%,
      transparent 68%);
  pointer-events: none;
  z-index: 1;
}

/* Badges */
.product-card__badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  z-index: 3;
}

.product-card__badge--new {
  background: var(--color-gold);
  color: var(--color-eggplant-deep);
}

.product-card__badge--sale {
  background: var(--color-pink);
  color: var(--color-white);
}

/* Wishlist */
.product-card__wishlist {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-fast);
  z-index: 3;
}

.product-card__wishlist:hover {
  background: var(--color-pink);
  border-color: var(--color-pink);
  color: var(--color-white);
  transform: scale(1.1);
}

/* Info overlaid at bottom of image */
.product-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-5);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.product-card__category {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-pink-light);
  margin-bottom: 0;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--color-white);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.product-card__pricing {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.product-card__price {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  color: var(--color-gold-light);
  letter-spacing: 0.04em;
}

.product-card__price-original {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
}

/* CTA — always visible, smooth hover */
.product-card__cta {
  font-size: 0.65rem !important;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white) !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  transition:
    background 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  display: block;
  text-align: center;
}

.product-card:hover .product-card__cta {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.product-card__cta:hover {
  background: var(--color-gold) !important;
  border-color: var(--color-gold);
  color: var(--color-eggplant) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(227, 180, 35, 0.35);
}

/* ============================================================
   19. NEWS SECTION
   ============================================================ */

/* Section background */
.news-section {
  background-color: var(--color-eggplant-deep);
  position: relative;
}

/* Subtle texture line */
.news-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(212, 132, 143, 0.4),
      transparent);
}

/* ── Featured Card — full bleed image with bold text overlay ── */
.news-card--featured {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  min-height: 460px;
}

.news-card--featured .news-card__image-wrap {
  position: absolute;
  inset: 0;
}

.news-card--featured .news-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.7);
}

.news-card--featured:hover .news-card__image {
  transform: scale(1.06);
  filter: brightness(0.55);
}

/* Gradient from bottom */
.news-card--featured .news-card__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(15, 5, 10, 0.98) 0%,
      rgba(15, 5, 10, 0.6) 50%,
      rgba(15, 5, 10, 0.1) 100%);
  z-index: 1;
}

.news-card--featured .news-card__body {
  position: relative;
  z-index: 2;
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.news-card--featured .news-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: var(--color-white);
  margin: 0;
  flex: unset;
}

.news-card--featured .news-card__excerpt {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--fs-sm);
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
}

.news-card--featured .news-card__read-more {
  color: var(--color-pink-light);
  margin-top: var(--space-2);
  font-size: var(--fs-xs);
}

.news-card--featured .news-card__read-more:hover {
  color: var(--color-white);
}

/* ── Horizontal cards — dark glass style ── */
.news-card--horizontal {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
  align-items: flex-start;
}

.news-card--horizontal:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 132, 143, 0.35);
  transform: translateX(4px);
}

.news-card__image-wrap--sm {
  width: 88px;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.news-card--horizontal .news-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.85) saturate(0.9);
}

.news-card--horizontal:hover .news-card__image {
  transform: scale(1.07);
  filter: brightness(1) saturate(1);
}

.news-card--horizontal .news-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

/* ── Tile cards — dark bordered ── */
.news-card--tile {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-base);
  cursor: pointer;
}

.news-card--tile:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 132, 143, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.news-card__image-wrap--tile {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

.news-card--tile .news-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.8) saturate(0.85);
}

.news-card--tile:hover .news-card__image {
  transform: scale(1.06);
  filter: brightness(0.9) saturate(1);
}

.news-card__body--tile {
  padding: var(--space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

/* ── Shared card elements ── */
.news-card__tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-pink-light);
  background: rgba(212, 132, 143, 0.15);
  border: 1px solid rgba(212, 132, 143, 0.25);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
}

.news-card__tag--manager {
  color: var(--color-gold-light);
  background: rgba(227, 180, 35, 0.12);
  border-color: rgba(227, 180, 35, 0.25);
}

.news-card__tag--academy {
  color: #c9aedc;
  background: rgba(180, 140, 220, 0.12);
  border-color: rgba(180, 140, 220, 0.25);
}

.news-card__tag--tickets {
  color: #86d9b0;
  background: rgba(0, 160, 90, 0.1);
  border-color: rgba(0, 160, 90, 0.2);
}

.news-card__date {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}

.news-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  line-height: 1.05;
  color: var(--color-white);
  letter-spacing: 0.02em;
  margin: 0;
  flex: 1;
}

.news-card__title--sm {
  font-size: var(--fs-md);
  line-height: 1.25;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 0;
}

.news-card__title-link {
  color: var(--color-white);
  transition: var(--transition-fast);
}

.news-card__title-link:hover {
  color: var(--color-pink-light);
}

.news-card__excerpt {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: var(--space-3);
}

.news-card__read-more {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-pink);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  transition: var(--transition-fast);
  margin-top: auto;
}

.news-card__read-more:hover {
  color: var(--color-white);
  gap: var(--space-2);
}

.news-card__read-more--sm {
  font-size: 0.65rem;
}

/* Shop empty state */
.shop-section__empty {
  text-align: center;
  padding: var(--space-10) var(--space-4);
  color: var(--color-mid-gray);
}

.shop-section__empty-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: var(--space-3);
  opacity: 0.4;
}

.shop-section__empty-text {
  font-size: var(--fs-md);
  font-weight: 500;
}

/* Shop item transition */
.shop-item {
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

/* ============================================================
   20. MEMBERSHIP CTA BANNER
   ============================================================ */
.membership-cta {
  position: relative;
  background-color: var(--color-eggplant-mid);
  overflow: hidden;
}

/* Diagonal stripe overlay */
.membership-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-55deg,
      transparent,
      transparent 38px,
      rgba(255, 255, 255, 0.025) 38px,
      rgba(255, 255, 255, 0.025) 39px);
  pointer-events: none;
  z-index: 0;
}

/* Radial glow top-right */
.membership-cta::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle,
      rgba(212, 132, 143, 0.18) 0%,
      transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.membership-cta .container {
  position: relative;
  z-index: 1;
}

.membership-cta__eyebrow {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-pink-light);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.membership-cta__eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--color-pink);
  flex-shrink: 0;
}

.membership-cta__heading {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  color: var(--color-white);
  margin-bottom: var(--space-4);
  line-height: 1.05;
}

.membership-cta__body {
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--fs-md);
  font-weight: 300;
  max-width: 560px;
  margin: 0;
  line-height: 1.75;
}

.membership-cta__btn-primary {
  background: var(--color-pink);
  color: var(--color-white);
  border-color: var(--color-pink);
  box-shadow: 0 4px 20px rgba(212, 132, 143, 0.35);
}

.membership-cta__btn-primary:hover {
  background: var(--color-white);
  color: var(--color-eggplant);
  border-color: var(--color-white);
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.2);
}

.membership-cta__btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.2);
}

.membership-cta__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--color-white);
}

/* ============================================================
   21. NEWSLETTER SECTION
   ============================================================ */
.newsletter-section {
  background-color: var(--color-cream);
  position: relative;
  overflow: hidden;
}

/* Subtle warm gradient */
.newsletter-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%,
      rgba(212, 132, 143, 0.12) 0%,
      transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.newsletter-section::after {
  display: none;
}

.newsletter-section .container {
  position: relative;
  z-index: 1;
}

.newsletter-section__icon {
  font-size: 2.5rem;
  color: var(--color-pink);
  margin-bottom: var(--space-5);
  display: block;
  opacity: 0.85;
}

.newsletter-section__heading {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  color: var(--color-eggplant);
  margin-bottom: var(--space-4);
}

.newsletter-section__subheading {
  color: var(--color-dark-gray);
  font-size: var(--fs-md);
  font-weight: 300;
  margin-bottom: var(--space-8);
  line-height: 1.75;
}

.newsletter-section__input-group {
  background: var(--color-white);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-light-gray);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(59, 30, 43, 0.08);
  transition: var(--transition-fast);
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch;
}

.newsletter-section__input-group:focus-within {
  border-color: var(--color-pink);
  box-shadow:
    0 0 0 3px rgba(212, 132, 143, 0.18),
    0 4px 20px rgba(59, 30, 43, 0.08);
}

.newsletter-section__input {
  border: none;
  background: transparent;
  padding: 0.9rem 1.5rem;
  font-size: var(--fs-base);
  color: var(--color-eggplant);
  box-shadow: none;
  outline: none;
  min-width: 0;
  width: 100%;
}

.newsletter-section__input:focus {
  background: transparent;
  color: var(--color-eggplant);
  box-shadow: none;
}

.newsletter-section__input::placeholder {
  color: var(--color-mid-gray);
}

.newsletter-section__submit {
  background: var(--color-eggplant);
  color: var(--color-white);
  border: none;
  padding: 0.9rem 1.75rem;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.newsletter-section__submit:hover {
  background: var(--color-pink);
  color: var(--color-white);
}

.newsletter-section__disclaimer {
  color: var(--color-mid-gray);
}

.newsletter-section__disclaimer-link {
  color: var(--color-pink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.newsletter-section__disclaimer-link:hover {
  color: var(--color-eggplant);
}

/* ============================================================
   22. FOOTER
   ============================================================ */
footer {
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 4px;
  background: linear-gradient(90deg,
      var(--color-pink),
      #d4848f,
      var(--color-eggplant),
      var(--color-gold));
}

.site-footer {
  background-color: var(--color-eggplant-deep);
  color: rgba(255, 255, 255, 0.55);
}

/* Footer Top */
.site-footer__top {
  padding: var(--space-16) 0 var(--space-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Footer Logo */
.site-footer__logo {
  display: inline-block;
  text-decoration: none;
}

.site-footer__crest {
  color: var(--color-pink);
}

.site-footer__logo-name {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  color: var(--color-white);
  letter-spacing: 0.06em;
  line-height: 1;
}

.site-footer__logo-inner {
  width: 120px;
}

.site-footer__logo-club {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-pink);
  line-height: 1;
}

.site-footer__tagline {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
  margin: 0;
}

/* Social Links */
.site-footer__social-list {
  margin: 0;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.45);
  font-size: var(--fs-base);
  transition: var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__social-link:hover {
  background: var(--color-pink);
  color: var(--color-white);
  border-color: var(--color-pink);
  transform: translateY(-3px);
}

/* Footer Nav */
.site-footer__nav-heading {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--space-5);
}

.site-footer__nav-list li {
  margin-bottom: var(--space-3);
}

.site-footer__nav-link {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.45);
  transition: var(--transition-fast);
  display: inline-block;
}

.site-footer__nav-link:hover {
  color: var(--color-pink-light);
  transform: translateX(3px);
}

/* Footer Sponsors */
.site-footer__sponsors {
  padding: var(--space-8) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__sponsors-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  margin-bottom: var(--space-5);
}

.site-footer__sponsor-logo img {
  opacity: 0.35;
  filter: brightness(0) invert(1);
  transition: var(--transition-fast);
  max-height: 20px;
  width: auto;
}

.site-footer__sponsor-logo:hover img {
  opacity: 0.7;
}

/* Footer Bottom */
.site-footer__bottom {
  padding: var(--space-5) 0;
}

@media (max-width: 767.9px) {
  .site-footer__copyright-text {
    text-align: center;
  }

  .site-footer__legal-list {
    display: flex;
    justify-content: center !important;
    align-items: center;
    text-align: center;
  }

  .site-footer__lang-switch {
    justify-content: center !important;
  }
}

.site-footer__copyright-text {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.3);
}

.site-footer__legal-list {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem 1.25rem;
  padding: 0;
  margin: 0;
}

.site-footer__legal-list .list-inline-item {
  margin: 0;
}

.site-footer__powered-link {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition:
    color 0.25s ease,
    letter-spacing 0.25s ease;
}

.site-footer__powered-link:hover {
  color: var(--color-pink-light);
  /* letter-spacing: 0.04em; */
  text-decoration: none;
}

.site-footer__legal-link {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.3);
  transition: var(--transition-fast);
}

.site-footer__legal-link:hover {
  color: var(--color-pink-light);
}

.site-footer__lang-btn {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  padding: 0;
  transition: var(--transition-fast);
}

.site-footer__lang-btn--active,
.site-footer__lang-btn:hover {
  color: var(--color-gold);
}

.site-footer__lang i {
  color: rgba(255, 255, 255, 0.25);
  font-size: var(--fs-sm);
}

/* ============================================================
   23. BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-eggplant);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-lg);
  z-index: 999;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--color-pink);
  transition: var(--transition-base);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--color-pink);
  border-color: var(--color-pink);
  color: var(--color-white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* ============================================================
   24. MEDIA QUERIES
   ============================================================ */

/* XL+ */
@media (min-width: 1400px) {
  .hero-section__content {
    padding-left: var(--space-8);
  }
}

/* LG */
@media (max-width: 1199px) {
  :root {
    --header-height: 64px;
  }

  .hero-section__heading {
    font-size: clamp(3rem, 8vw, 7rem);
  }
}

/* MD */
@media (max-width: 991px) {
  :root {
    --section-padding: var(--space-16);
    --header-top-height: 0px;
    /* hide topbar on mobile */
  }

  .site-header__topbar {
    display: none;
  }

  .site-main {
    padding-top: 30px;
    /* الهيرو بتاخد full height — الناف بار fixed فوقيها */
  }

  .section {
    padding: var(--space-16) 0;
  }

  .section__heading {
    font-size: var(--fs-3xl);
  }

  .hero-section__row {
    padding: var(--space-16) 0 var(--space-12);
  }

  .resort-section__feature {
    flex-direction: column;
  }

  .resort-section__image {
    height: 320px;
  }

  .vip-section {
    padding: var(--space-16) 0;
  }

  .fixture-card__team-name {
    font-size: var(--fs-lg);
  }

  .stats-bar__number {
    font-size: var(--fs-2xl);
  }

  .back-to-top {
    bottom: var(--space-5);
    right: var(--space-5);
    width: 42px;
    height: 42px;
  }
}

/* SM */
@media (max-width: 767px) {
  .hero-section__heading {
    font-size: clamp(2.8rem, 12vw, 5rem);
  }

  .hero-section__subtitle {
    font-size: var(--fs-base);
  }

  .hero-section::after {
    height: 40px;
  }

  .section__heading {
    font-size: var(--fs-2xl);
  }

  .newsletter-section__input-group {
    flex-direction: column !important;
    border-radius: var(--radius-lg);
  }

  .newsletter-section__input {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    text-align: center;
    width: 100% !important;
    flex: none !important;
  }

  .newsletter-section__submit {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 0.75rem;
  }

  .fixture-card {
    padding: var(--space-4);
  }

  .fixture-card__team-name {
    font-size: var(--fs-base);
  }

  .fixture-card__score {
    min-width: 70px;
  }

  .fixture-card__vs {
    font-size: var(--fs-xl);
  }

  .vip-card {
    padding: var(--space-6);
  }

  .stats-bar__item {
    padding: var(--space-3) var(--space-2);
  }

  .site-footer__top {
    padding: var(--space-10) 0 var(--space-8);
  }
}

/* XS */
@media (max-width: 575px) {
  .hero-section__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-section__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .fixture-card__meta {
    justify-content: flex-start !important;
  }

  .membership-cta__actions {
    flex-direction: column;
  }

  .membership-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .site-footer__legal-list {
    text-align: left;
  }

  .site-footer__legal-list .list-inline-item {
    display: block;
    margin: var(--space-2) 0;
  }

  /* Fix 3: News card horizontal image full width */
  .news-card--horizontal {
    flex-direction: column;
  }

  .news-card__image-wrap--sm {
    width: 100%;
    aspect-ratio: 16 / 7;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }

  .news-card--horizontal .news-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Fix 2: VIP bespoke banner stack on small screens */
@media (max-width: 767px) {
  .vip2-enquiry-banner {
    grid-template-columns: 1fr !important;
  }

  .vip2-enquiry-banner a.vip2-enquiry-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Print */
@media print {

  .site-header,
  .back-to-top,
  .hero-section__cta,
  .newsletter-section,
  .site-footer__social,
  .site-footer__sponsors {
    display: none !important;
  }

  .site-main {
    padding-top: 0;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-section__heading-line--accent {
    animation: none;
    background: none;
    -webkit-text-fill-color: var(--color-pink);
  }
}

/* ============================================================
   27. HEADER HIDE ON SCROLL DOWN
   ============================================================ */
.site-header {
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.28s ease,
    box-shadow 0.28s ease;
}

.site-header--hidden {
  transform: translateY(-100%);
}

/* ============================================================
   28. FIXTURE RESULT STYLES
   ============================================================ */
.fixture-card__result-score {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  color: var(--color-eggplant);
  line-height: 1;
  letter-spacing: 0.05em;
}

.fixture-card__result-score span {
  color: var(--color-mid-gray);
  font-size: var(--fs-xl);
}

.fixture-card__result-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-mid-gray);
  text-align: center;
}

.fixture-card__date-played {
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--color-mid-gray);
  white-space: nowrap;
}

.fixture-card__crest--placeholder {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg,
      var(--color-eggplant-mid),
      var(--color-eggplant-deep));
  border: 1px solid var(--color-border);
  display: inline-flex;
  flex-shrink: 0;
}

/* ============================================================
   29. FIXTURES FADE TRANSITION
   ============================================================ */
.matchday-section__fixtures {
  transition: opacity 0.22s ease;
}

.fixtures--fading {
  opacity: 0;
  pointer-events: none;
}

/* ============================================================
   30. NEWSLETTER SUCCESS STATE
   ============================================================ */
.newsletter-success {
  text-align: center;
  padding: var(--space-10) 0;
}

.newsletter-success__icon {
  font-size: 4rem;
  color: var(--color-pink);
  display: block;
  margin-bottom: var(--space-5);
}

.newsletter-success__heading {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  color: var(--color-eggplant);
  margin-bottom: var(--space-3);
}

.newsletter-success__body {
  font-size: var(--fs-md);
  color: var(--color-dark-gray);
  font-weight: 300;
}

.newsletter-input--error {
  border-color: #cc3333 !important;
  box-shadow: 0 0 0 3px rgba(204, 51, 51, 0.15) !important;
}

/* ============================================================
   31. GENERAL CSS IMPROVEMENTS
   ============================================================ */

/* Crest placeholder — handled in fixture card CSS above */

/* Hero section — improve on mobile bottom */
@media (max-width: 575px) {
  .hero-section::after {
    display: none;
  }
}

/* Smooth section entry */
.section {
  overflow: hidden;
}

/* Better focus ring for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

/* Fixture & shop tab nav polish */
.matchday-section__tab,
.shop-section__category-btn {
  cursor: pointer;
}

/* VIP card CTA button fix */
.vip-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-sm);
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition-base);
  margin-top: auto;
}

.vip-card__cta:hover {
  background-color: var(--color-pink);
  border-color: var(--color-pink);
  color: var(--color-white);
  transform: translateY(-2px);
}

.vip-card--featured .vip-card__cta {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.vip-card--featured .vip-card__cta:hover {
  background: var(--color-gold);
  color: var(--color-eggplant);
  border-color: var(--color-gold);
}

/* Section heading font fix — sharper */
.section__heading {
  font-weight: 400;
  text-rendering: optimizeLegibility;
}

/* ============================================================
   29. NAVBAR — Enhanced smooth scroll transitions
   ============================================================ */

/* Ensure topbar height collapses smoothly */
.site-header__topbar {
  transition:
    height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.28s ease,
    padding 0.35s ease;
}

/* Prevent flicker: always use transform transition on the header */
.site-header {
  will-change: transform;
}

/* Footer nav links — hover */
.site-footer__nav-link:hover {
  color: var(--color-gold);
  padding-left: var(--space-2);
}

/* All btn elements — ensure pointer cursor */
.btn,
button,
[role="button"] {
  cursor: pointer;
}

/* Image loading — fade in when loaded */
img {
  transition: opacity 0.3s ease;
}

img[src^="data:image/svg"] {
  opacity: 0.85;
}

/* ============================================================
   NEW NAVBAR (mnav) — CSS-only Mega Menu + Full Responsive
   ============================================================ */

/* ── Base shell ── */
.mnav {
  /* Sits inside .site-header which is position:fixed */
  position: relative;
  overflow: visible;
  background-color: var(--color-eggplant);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    background-color 0.28s ease,
    box-shadow 0.28s ease;
  padding: 5px;
}

/* Scrolled — site-header handles transform; mnav handles bg */
.site-header--scrolled .mnav,
.mnav--scrolled {
  background-color: rgba(39, 16, 32, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
}

/* When scrolled, topbar collapses — mega menu top adjusts to navbar only */
/* When scrolled, topbar is gone — mega stays at navbar height (already set above) */

/* ── Inner row ── */
.mnav__inner {
  display: flex;
  align-items: center;
  gap: 0;
  height: var(--header-height, 72px);
  /* padding: 0 clamp(1rem, 3vw, 2rem); */
  position: static;
}

/* ── Logo ── */
.mnav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  margin-right: auto;
  /* pushes everything else to the right */
}

.mnav__logo-mark {
  width: 60px;
  height: 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Hidden checkbox — powers mobile drawer ── */
.mnav__checkbox {
  display: none;
}

/* ── Hamburger (mobile only) ── */
.mnav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 8px;
  transition: background 0.2s;
}

.mnav__hamburger:hover {
  background: rgba(212, 132, 143, 0.18);
}

.mnav__hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white, #fff);
  border-radius: 2px;
  transition:
    transform 0.28s ease,
    opacity 0.2s ease;
}

/* Animate to X when open */
.mnav__checkbox:checked~.mnav__hamburger .mnav__hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mnav__checkbox:checked~.mnav__hamburger .mnav__hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mnav__checkbox:checked~.mnav__hamburger .mnav__hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Desktop nav list ── */
.mnav__menu {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 0 1 auto;
  /* don't grow, just wrap naturally */
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ── Nav item wrapper ── */
.mnav__item {
  position: relative;
  /* needed for bridge ::after pseudo-element */
  display: flex;
  align-items: stretch;
}

.ms-lg-3 {
  margin-left: 0 !important;
}

/* ── Nav link ── */
.mnav__link {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-body, sans-serif);
  font-size: var(--fs-xs, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.mnav__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--color-pink, #d4848f);
  transition:
    left 0.22s ease,
    right 0.22s ease;
}

.mnav__link:hover,
.mnav__link:focus {
  color: #fff;
}

.mnav__link:hover::after {
  left: 0.8rem;
  right: 0.8rem;
}

/* Shop link accent */
.mnav__link--shop {
  color: var(--color-gold, #e3b423) !important;
}

.mnav__link--shop:hover {
  color: var(--color-gold-light, #f0c840) !important;
}

.mnav__link--shop::after {
  background: var(--color-gold, #e3b423);
}

/* Hide chevron arrow on mobile for items with no dropdown */
.mnav__item--no-dropdown .mnav__link::after {
  display: none !important;
}

/* ── MEGA MENU ── */
.mnav__mega {
  /* Full-width relative to viewport */
  position: fixed;
  top: var(--header-height, 72px);
  /* directly below navbar — topbar scrolls away */
  left: 0;
  right: 0;
  z-index: 1049;
  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 0.26s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.26s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear 0.26s;
}

/* When topbar is visible, push mega below it too */
.site-header:not(.site-header--scrolled) .mnav__mega {
  top: 50px;
}

/* Bridge pseudo-element: fills the gap between nav link and mega panel */
.mnav__item::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: -20px;
  right: -20px;
  height: 8px;
  background: transparent;
  z-index: 1048;
}

/* Open on hover of parent item (desktop) — driven by JS class */
.mnav__item--open .mnav__mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity 0.26s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.26s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear 0s;
}

/* Mega inner panel */
.mnav__mega-inner {
  display: flex;
  background: var(--color-eggplant-deep, #1a0a14);
  border-bottom: 3px solid var(--color-pink, #d4848f);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
  max-width: 100vw;
  overflow: hidden;
}

/* Featured panel — left side */
.mnav__mega-featured {
  flex-shrink: 0;
  width: 280px;
  background: linear-gradient(160deg,
      var(--color-eggplant-mid, #2d0f22),
      var(--color-eggplant-deep, #1a0a14));
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.mnav__mega-featured::before {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(212, 132, 143, 0.12),
      transparent 70%);
  pointer-events: none;
}

.mnav__mega-featured-icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  /* background: rgba(212, 132, 143, 0.13); */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--color-pink, #d4848f);
}

.mnav__mega-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold, #e3b423);
  display: block;
  margin-bottom: 0.5rem;
}

.mnav__mega-title {
  font-family: var(--font-display, serif);
  font-size: 1.3rem;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.6rem;
}

.mnav__mega-body {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}

.mnav__mega-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-pink-light, #e8a4ad);
  text-decoration: none;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(212, 132, 143, 0.25);
  width: fit-content;
  transition:
    color 0.18s ease,
    gap 0.18s ease,
    border-color 0.18s ease;
}

.mnav__mega-cta:hover {
  color: #fff;
  gap: 0.7rem;
  border-color: rgba(255, 255, 255, 0.35);
}

/* Columns area */
.mnav__mega-cols {
  flex: 1;
  display: flex;
  padding: 2rem 2.5rem;
  gap: 2.5rem;
}

.mnav__mega-col {
  flex: 1;
  min-width: 150px;
}

.mnav__mega-col-heading {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mnav__mega-col-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mnav__mega-col-list li {
  margin-bottom: 0.1rem;
}

.mnav__mega-col-link {
  display: block;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.58);
  padding: 0.35rem 0;
  text-decoration: none;
  position: relative;
  padding-left: 0;
  transition:
    color 0.18s ease,
    padding-left 0.18s ease;
}

.mnav__mega-col-link::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 1px;
  background: var(--color-pink, #d4848f);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.mnav__mega-col-link:hover {
  color: #fff;
  padding-left: 12px;
}

.mnav__mega-col-link:hover::before {
  opacity: 1;
}

/* Backdrop overlay */
.mnav__mega-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  /* background: rgba(0, 0, 0, 0.38); */
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* ── Right Actions ── */
.mnav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  margin-right: 0.5rem !important;
  margin-left: 0 !important;
}

.mnav__hamburger {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mnav__search-btn {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  transition:
    color 0.2s ease,
    background 0.2s ease;
  cursor: pointer;
}

.mnav__search-btn:hover {
  color: #fff;
  background: rgba(212, 132, 143, 0.2);
}

/* Mobile search btn — hidden on desktop, shown on mobile */
.mnav__search-btn--mobile {
  display: none;
}

.mnav__cta-btn {
  font-family: var(--font-body, sans-serif);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white, #fff) !important;
  background: var(--color-pink, #d4848f);
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    transform 0.15s ease;
}

.mnav__cta-btn:hover {
  background: var(--color-pink-light, #e8a4ad);
  transform: translateY(-1px);
}

/* Mobile-only elements hidden on desktop */
.mnav__item--mobile-only,
.mnav__mobile-footer,
.mnav__close-btn {
  display: none;
}

.mnav__mega{
    position: absolute;
    top: 100%;
    right: auto;
    left: 0;
    width: max-content;
    min-width: 220px;
    max-width: 350px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: .3s ease;
    z-index: 999;
}.mnav__mega-inner{
    display: block;
    width: fit-content;
    background: #23111d;
    border-radius: 8px;
    border-bottom: none;
    box-shadow: 0 15px 35px rgba(0,0,0,.35);
    padding: 15px 30px;
}.mnav__mega-featured{
    display: none;
}.mnav__mega-cols{
    display: block;
    padding: 0;
}

.mnav__mega-col{
    min-width: auto;
}

.mnav__mega-col-list{
    padding: 0;
    margin: 0;
}

/* ============================================================
   RESPONSIVE — Navbar breakpoints
   ============================================================ */

/* ── Tablet / Small Desktop (< 1200px) — shrink font sizes ── */
@media (max-width: 1199px) {
  .mnav__link {
    padding: 0.5rem 0.55rem;
    font-size: 0.68rem;
  }

  .mnav__cta-btn {
    padding: 0.45rem 0.75rem;
    font-size: 0.65rem;
  }

  .mnav__mega-featured {
    width: 240px;
    padding: 1.5rem;
  }

  .mnav__mega-cols {
    padding: 1.5rem;
    gap: 1.5rem;
  }
}

/* ── Mobile (< 992px) — Drawer nav ── */
@media (max-width: 991px) {

  .mnav__menu .mnav__item:nth-child(2) .mnav__link::after,
  .mnav__menu .mnav__item:nth-child(3) .mnav__link::after,
  .mnav__menu .mnav__item:nth-child(4) .mnav__link::after,
  .mnav__menu .mnav__item:nth-child(5) .mnav__link::after,
  .mnav__menu .mnav__item:nth-child(6) .mnav__link::after,
  .mnav__menu .mnav__item:nth-child(7) .mnav__link::after {
    display: none;
  }

  /* Show hamburger */
  .mnav__hamburger {
    display: flex;
  }

  /* Show mobile search btn */
  .mnav__search-btn--mobile {
    display: flex;
    margin-left: auto;
    margin-right: 0.5rem;
    order: 2;
  }

  /* Push hamburger after search btn */
  .mnav__hamburger {
    order: 3;
    margin-left: 0;
  }

  /* Hide right CTA on mobile (shown inside drawer instead) */
  .mnav__actions {
    display: block;
  }

  /* Overlay — separate element via label after trick (use body:has) */
  .mnav__checkbox:checked~.mnav__menu::before {
    content: "";
    position: fixed;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.65); */
    z-index: -1;
    pointer-events: none;
  }

  /* Dark overlay on page behind drawer */
  .mnav__checkbox:checked~.mnav__hamburger {
    z-index: 10000;
  }

  /* Drawer panel */
  .mnav__menu {
    /* Override desktop flex */
    display: block !important;
    position: fixed;
    /* top: var(--drawer-top, var(--header-total, 112px)); */
    top: 75px;
    left: 0;
    bottom: 0;
    height: calc(100dvh - var(--drawer-top, var(--header-total, 112px)));
    width: min(320px, 88vw);
    background: linear-gradient(175deg,
        #3d1f2e 0%,
        #311628 18%,
        #261220 50%,
        #1a0c19 100%);
    border-top: 1px solid rgba(212, 132, 143, 0.18);
    box-shadow:
      6px 0 60px rgba(0, 0, 0, 0.7),
      inset -1px 0 0 rgba(212, 132, 143, 0.05);
    z-index: 9999;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0.5rem 0 2rem;
    transform: translateX(-110%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 6px 0 48px rgba(0, 0, 0, 0.6);
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  /* When scrolled, topbar collapses so drawer top adjusts */
  body:has(.site-header--scrolled) .mnav__menu {
    top: 75px;
    height: calc(100dvh - var(--header-height, 72px));
  }

  .mnav__menu::-webkit-scrollbar {
    display: none;
  }

  /* Open state */
  .mnav__checkbox:checked~.mnav__menu {
    transform: translateX(0) !important;
  }

  /* Each nav item */
  .mnav__item {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  /* Active link highlight */
  .mnav__item--open>.mnav__link {
    color: var(--color-pink-light, #e4a8b1);
    background: rgba(212, 132, 143, 0.1);
    padding-left: 1.8rem;
  }

  /* Nav links inside drawer */
  .mnav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.9rem 1.5rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.08em;
    transition: all 0.18s ease;
  }

  .mnav__link:hover {
    color: #fff;
    background: rgba(212, 132, 143, 0.07);
    padding-left: 1.8rem;
  }

  .mnav__link::after {
    display: none;
    /* no underline on mobile */
  }

  /* Chevron indicator for items with mega */
  .mnav__item:not(.mnav__item--mobile-only) .mnav__link::after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-right: 2px solid rgba(255, 255, 255, 0.4);
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    transform: rotate(-45deg);
    transition:
      transform 0.25s ease,
      border-color 0.18s ease;
    position: static;
    background: transparent;
    flex-shrink: 0;
  }

  /* Rotate chevron when open */
  .mnav__item--open .mnav__link::after {
    transform: rotate(45deg) !important;
    border-color: var(--color-pink, #d4848f);
  }

  /* Mega menu — inside drawer as collapsible sub-panel */
  .mnav__mega {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    /* Collapsed by default on mobile */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.2);
    border-left: 2px solid rgba(212, 132, 143, 0.3);
    margin-left: 1.5rem;
    margin-right: 1rem;
    border-radius: 0 0 4px 4px;
  }

  /* Open sub-menu via JS class (click/tap on mobile only) */
  .mnav__item--open .mnav__mega {
    max-height: 900px;
    margin-right: 0.3rem;
    margin-left: 0.3rem;
  }

  .mnav__mega  {
    width:  auto;
    min-width: 100%;
    max-width: 100%;
    margin-right: 0.3rem !important;
    margin-left: 0.3rem !important;
  }

  /* Mega inner becomes vertical stack */
  .mnav__mega-inner {
    flex-direction: column;
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    padding: 0;
  }

  /* Hide featured panel on mobile */
  .mnav__mega-featured {
    display: none;
  }

  /* Columns stack vertically */
  .mnav__mega-cols {
    flex-direction: column;
    padding: 0.5rem 1.5rem 1rem;
    gap: 1.25rem;
  }

  .mnav__mega-col-heading {
    font-size: 0.58rem;
    margin-bottom: 0.6rem;
    color: var(--color-gold, #e3b423);
    opacity: 0.7;
    letter-spacing: 0.12em;
  }

  .mnav__mega-col-link {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    padding: 0.28rem 0;
    transition:
      color 0.15s ease,
      padding-left 0.15s ease;
  }

  .mnav__mega-col-link:hover {
    padding-left: 0.4rem;
    color: var(--color-pink-light, #e8a4ad);
  }

  /* Hide backdrop on mobile */
  .mnav__mega-backdrop {
    display: none;
  }

  /* Close button inside drawer */
  /* Close button — hidden (navbar handles logo + close via hamburger toggle) */
  .mnav__close-btn {
    display: none !important;
  }

  .mnav__close-brand,
  .mnav__close-logo,
  .mnav__close-name {
    display: none;
  }

  /* Show mobile-only items */
  .mnav__item--mobile-only {
    display: block;
  }

  .mnav__mobile-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.5rem 0;
    border-top: 1px solid rgba(212, 132, 143, 0.12);
    margin-top: 0.5rem;
  }

  .mnav__mobile-lang {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .mnav__mobile-lang-btn {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.45);
    background: none;
    border: none;
    padding: 0.1rem 0.2rem;
    cursor: pointer;
    transition: color 0.18s ease;
  }

  .mnav__mobile-lang-btn--active,
  .mnav__mobile-lang-btn:hover {
    color: var(--color-gold, #e3b423);
  }

  .mnav__mobile-lang-divider {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.7rem;
  }

  .mnav__mobile-social {
    display: flex;
    gap: 1rem;
  }

  .mnav__mobile-social a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 1rem;
    transition: color 0.18s ease;
  }

  .mnav__mobile-social a:hover {
    color: var(--color-pink, #d4848f);
  }
}

/* ── Small Mobile (< 480px) ── */
@media (max-width: 479px) {
  .mnav__inner {
    padding: 0 1rem;
  }

  .mnav__logo-mark {
    width: 36px;
    height: 36px;
  }
}

/* Active state for new nav links */
.mnav__link--active {
  color: var(--color-gold) !important;
}

.mnav__link--active::after {
  left: 0.8rem !important;
  right: 0.8rem !important;
}

/* Close drawer when clicking a link inside it (smooth scroll handles this via JS) */
@media (max-width: 991px) {

  /* Ensure body doesn't scroll when drawer is open */
  body:has(.mnav__checkbox:checked) {
    overflow: hidden;
  }
}

/* ── First Team Swiper ─────────────────────────────────── */
.first-team-swiper {
  position: relative;
  padding-bottom: 48px;
  /* overflow: visible !important; */
  overflow: hidden !important;
}

/* clip horizontally only so cards don't bleed outside the section */
.first-team-section .container {
  overflow-x: clip;
}

.first-team-swiper .swiper-wrapper {
  padding-top: 8px;
  padding-bottom: 8px;
}

.first-team-swiper .swiper-slide {
  height: auto;
}

/* Navigation buttons */
.first-team-swiper__prev,
.first-team-swiper__next {
  color: var(--color-eggplant);
  background: var(--color-white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(59, 30, 43, 0.18);
  transition:
    background 0.2s,
    color 0.2s;
  top: 40%;
}

.first-team-swiper__prev:after,
.first-team-swiper__next:after {
  font-size: 16px;
  font-weight: 700;
}

.first-team-swiper__prev:hover,
.first-team-swiper__next:hover {
  background: var(--color-eggplant);
  color: var(--color-white);
}

/* Pagination dots */
.first-team-swiper__pagination {
  bottom: 8px !important;
}

.first-team-swiper__pagination .swiper-pagination-bullet {
  background: var(--color-eggplant-light);
  opacity: 0.45;
  width: 8px;
  height: 8px;
  transition:
    opacity 0.2s,
    background 0.2s;
}

.first-team-swiper__pagination .swiper-pagination-bullet-active {
  background: var(--color-pink);
  opacity: 1;
  width: 22px;
  border-radius: 4px;
}

.list-inline-item:not(:last-child) {
  margin: 0 !important;
}

.teamsAr .section--dark .player-card:not(.player-card--featured) .player-card__name {
  color: var(--color-eggplant-light);
}

.teamsAr .section--dark .player-card:not(.player-card--featured) {
  border: 1px solid #fff;
}

.teams-hero {
  position: relative;
  padding: clamp(120px, 18vw, 190px) 0 clamp(90px, 13vw, 125px);
  overflow: hidden;
}

.teams-hero__bg-swiper,
.teams-hero__bg-swiper .swiper-wrapper,
.teams-hero__bg-swiper .swiper-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.teams-hero__bg-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
}

.teams-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(120deg,
      rgba(8, 4, 6, 0.78) 0%,
      rgba(24, 13, 20, 0.64) 55%,
      rgba(6, 3, 5, 0.85) 100%),
    radial-gradient(circle at 18% 35%,
      rgba(212, 132, 143, 0.25),
      transparent 42%),
    radial-gradient(circle at 80% 20%,
      rgba(227, 180, 35, 0.22),
      transparent 38%);
}

.teams-hero__content {
  position: relative;
  z-index: 2;
}

.teams-hero__eyebrow {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

.teams-hero__eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: #e3b423;
}

.teams-hero__title {
  margin-top: 1rem;
  color: #fff;
  font-size: clamp(2.1rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
}

.teams-hero__sub {
  max-width: 760px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.age-stages {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.9rem;
}

.age-stages__item {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  font-weight: 600;
}

.teams-slider-section {
  position: relative;
}

.teams-slider {
  padding-bottom: 46px;
}

.teams-slider .swiper-slide {
  height: auto;
}

.teams-slider-card {
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #1f1118;
}

.teams-slider-card__image {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.teams-slider-card__body {
  padding: 1rem 1rem 1.15rem;
}

.teams-slider-card__name {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.teams-slider-card__meta {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.teams-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(18, 9, 14, 0.75);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.teams-slider-nav--prev {
  right: -12px;
}

.teams-slider-nav--next {
  left: -12px;
}

.teams-slider-pagination {
  bottom: 0 !important;
}

.teams-slider-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.55);
  opacity: 1;
}

.teams-slider-pagination .swiper-pagination-bullet-active {
  background: #d4848f;
}

@media (max-width: 991px) {
  .teams-slider-nav {
    display: none;
  }
}

.main-page-hero .shop-hero__sub {
  max-width: 100% !important;
}

.main-page-hero.shop-hero {
  padding: 220px 0 0 !important;
}

/* ═══════════════════════════════════════════════
       MATCHES PAGE — CUSTOM STYLES
       ═══════════════════════════════════════════════ */

/* ── Section base ── */
.matches-section {
  padding: 80px 0;
}

.matches-section--dark {
  background: var(--color-eggplant-deep, #271020);
  color: #fff;
}

.matches-section--light {
  background: var(--color-off-white, #faf7f5);
}

/* ── Quick Nav Tabs (جدول / نتائج / ترتيب / مركز) ── */
.matches-quicknav {
  background: var(--color-eggplant, #3b1e2b);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 91px;
  z-index: 100;
}

.matches-quicknav__list {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
  flex-wrap: wrap;
}

.matches-quicknav__list li {
  flex: 1;
}

.matches-quicknav__list li button {
  margin: auto;
}

.matches-quicknav__list::-webkit-scrollbar {
  height: 4px;
}

.matches-quicknav__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition:
    color 0.25s,
    border-color 0.25s;
  white-space: nowrap;
  width: 100%;
}

.matches-quicknav__btn:hover {
  color: rgba(255, 255, 255, 0.85);
}

.matches-quicknav__btn.active {
  color: var(--color-gold, #e3b423);
  border-bottom-color: var(--color-gold, #e3b423);
}

.matches-quicknav__btn i {
  font-size: 1rem;
}

/* ── Section panels (shown/hidden) ── */
.matches-panel {
  display: none;
}

.matches-panel.active {
  display: block;
}

/* ── Section header ── */
.matches-section__header {
  margin-bottom: 40px;
}

.matches-eyebrow {
  display: inline-block;
  background: rgba(212, 132, 143, 0.15);
  border: 1px solid rgba(212, 132, 143, 0.35);
  color: var(--color-pink, #d4848f);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.matches-heading {
  font-family: var(--font-display, "Bebas Neue", sans-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 6px;
}

.matches-heading--dark {
  color: var(--color-eggplant, #3b1e2b);
}

.matches-subheading {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
}

.matches-subheading--dark {
  color: var(--color-mid-gray, #9b8a8f);
}

/* ── Fixture Cards ── */
.matchesAr .fixture-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  margin-bottom: 12px;
  transition: all 0.25s;
}

.matchesAr .fixture-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 132, 143, 0.2);
}

.matchesAr .fixture-card--away {
  border-right: 3px solid var(--color-pink, #d4848f);
}

.matchesAr .fixture-card--home {
  border-right: 3px solid var(--color-gold, #e3b423);
}

.matchesAr .fixture-card--result {
  border-right: 3px solid rgba(255, 255, 255, 0.2);
}

.matchesAr .fixture-card__inner {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
}

@media (max-width: 767px) {
  .matchesAr .fixture-card__inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }
}


.matchesAr .fixture-card__competition-col {
  min-width: 0;
  overflow: hidden;
}

.matchesAr .fixture-card__competition-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px 5px 5px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  box-sizing: border-box;
}

.matchesAr .fixture-card__competition-badge .fixture-card__crest {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: contain;
}

.matchesAr .fixture-card__competition-badge--league {
  background: rgba(212, 132, 143, 0.15);
  color: var(--color-pink-light, #e4a8b1);
  border-color: rgba(212, 132, 143, 0.2);
}

.matchesAr .fixture-card__competition-badge--continental {
  background: rgba(227, 180, 35, 0.15);
  color: var(--color-gold-light, #f0c94a);
  border-color: rgba(227, 180, 35, 0.25);
}

.matchesAr .fixture-card__match-col {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}

.matchesAr .fixture-card__team {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.matchesAr .fixture-card__team--home {
  flex-direction: row;
  text-align: right;
}

.matchesAr .fixture-card__team--away {
  text-align: left;
}

.matchesAr .fixture-card__team-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.matchesAr .fixture-card__crest {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.matchesAr .fixture-card__score-box {
  text-align: center;
  flex-shrink: 0;
}

.matchesAr .fixture-card__vs {
  display: block;
  font-family: var(--font-display, "Bebas Neue", sans-serif);
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.1em;
}

.matchesAr .fixture-card__datetime {
  text-align: center;
}

.matchesAr .fixture-card__date-day {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
}

.matchesAr .fixture-card__date-time {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-gold, #e3b423);
}

.matchesAr .fixture-card__result-score {
  font-family: var(--font-display, "Bebas Neue", sans-serif);
  font-size: 2rem;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1;
}

.matchesAr .fixture-card__result-score span {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 4px;
}

.matchesAr .fixture-card__result-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-top: 2px;
}

.matchesAr .fixture-card__meta-col {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.matchesAr .fixture-card__venue {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

.matchesAr .fixture-card__venue--away {
  color: var(--color-pink-light, #e4a8b1);
}

.matchesAr .fixture-card__ticket-btn {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(212, 132, 143, 0.15);
  border: 1px solid rgba(212, 132, 143, 0.3);
  color: var(--color-pink-light, #e4a8b1);
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.matchesAr .fixture-card__ticket-btn:hover {
  background: rgba(212, 132, 143, 0.3);
  border-color: var(--color-pink, #d4848f);
  color: #fff;
}

.matchesAr .fixture-card__ticket-btn--away {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6) !important;
}

.matchesAr .fixture-card__date-played {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ── matchesEn — mirrors matchesAr (LTR version) ── */
.matchesEn .fixture-card { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 4px; margin-bottom: 12px; transition: all 0.25s; }
.matchesEn .fixture-card:hover { background: rgba(255, 255, 255, 0.07); border-color: rgba(212, 132, 143, 0.2); }
.matchesEn .fixture-card--away { border-left: 3px solid var(--color-pink, #d4848f); }
.matchesEn .fixture-card--home { border-left: 3px solid var(--color-gold, #e3b423); }
.matchesEn .fixture-card--result { border-left: 3px solid rgba(255, 255, 255, 0.2); }
.matchesEn .fixture-card__inner { display: grid; grid-template-columns: 200px 1fr auto; align-items: center; gap: 16px; padding: 18px 24px; }
@media (max-width: 767px) { .matchesEn .fixture-card__inner { grid-template-columns: 1fr; gap: 12px; padding: 16px; } }
.matchesEn .fixture-card__competition-col { min-width: 0; overflow: hidden; }
.matchesEn .fixture-card__competition-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px 5px 5px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; background: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.75); border: 1px solid rgba(255, 255, 255, 0.1); max-width: 100%; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; box-sizing: border-box; }
.matchesEn .fixture-card__competition-badge .fixture-card__crest { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; object-fit: contain; }
.matchesEn .fixture-card__competition-badge--league { background: rgba(212, 132, 143, 0.15); color: var(--color-pink-light, #e4a8b1); border-color: rgba(212, 132, 143, 0.2); }
.matchesEn .fixture-card__competition-badge--continental { background: rgba(227, 180, 35, 0.15); color: var(--color-gold-light, #f0c94a); border-color: rgba(227, 180, 35, 0.25); }
.matchesEn .fixture-card__match-col { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; justify-content: center; gap: var(--space-4); }
.matchesEn .fixture-card__team { display: flex; align-items: center; gap: 10px; min-width: 0; }
.matchesEn .fixture-card__team--home { justify-content: flex-end; }
.matchesEn .fixture-card__team--away { justify-content: flex-start; }
.matchesEn .fixture-card__team-name { font-family: var(--font-display, "Bebas Neue", sans-serif); font-size: 1.1rem; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.matchesEn .fixture-card__crest { width: 36px; height: 36px; object-fit: contain; border-radius: 4px; flex-shrink: 0; }
.matchesEn .fixture-card__score-box { display: flex; flex-direction: column; align-items: center; gap: 2px; min-width: 80px; }
.matchesEn .fixture-card__vs { font-family: var(--font-display); font-size: 1.6rem; color: rgba(255,255,255,0.5); line-height: 1; }
.matchesEn .fixture-card__result-score { font-family: var(--font-display); font-size: 1.6rem; color: #fff; line-height: 1; }
.matchesEn .fixture-card__result-score span { color: rgba(255,255,255,0.35); margin: 0 4px; }
.matchesEn .fixture-card__result-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.matchesEn .fixture-card__meta-col { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; white-space: nowrap; padding-left: var(--space-4); }
.matchesEn .fixture-card__date-played { font-size: 0.75rem; color: rgba(255, 255, 255, 0.4); }
.matchesEn .fixture-card__ticket-btn { display: inline-flex; align-items: center; font-size: 0.7rem !important; font-weight: 700 !important; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.75) !important; border: 1px solid rgba(255,255,255,0.15); padding: 0.4rem 1rem; border-radius: 4px; white-space: nowrap; transition: var(--transition-fast); }
.matchesEn .fixture-card__ticket-btn:hover { background: var(--color-pink); border-color: var(--color-pink); color: #fff !important; }

/* Month group divider */
.fixtures-month-header {
  padding: 10px 0 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 10px;
  margin-top: 24px;
}

.fixtures-month-header:first-of-type {
  margin-top: 0;
}

/* ── Standings Table ── */
.standings-table {
  width: 100%;
  border-collapse: collapse;
}

.standings-table thead tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.standings-table th {
  padding: 10px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

.standings-table th:first-child,
.standings-table th:nth-child(2) {
  text-align: right;
}

.standings-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s;
}

.standings-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

.standings-table tbody tr.standings__row--highlight {
  background: rgba(212, 132, 143, 0.07);
  border-right: 3px solid var(--color-pink, #d4848f);
}

.standings-table td {
  padding: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}

.standings-table td:first-child {
  text-align: right;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
}

.standings-table td:nth-child(2) {
  text-align: right;
}

.standings__club {
  display: flex;
  align-items: center;
  gap: 10px;
}

.standings__club-crest {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.standings__club-name {
  font-weight: 600;
  color: #fff;
  font-size: 0.85rem;
}

.standings__pts {
  font-weight: 800;
  color: #fff;
}

.standings__form {
  display: flex;
  align-items: center;
  gap: 3px;
  justify-content: center;
}

.standings__form-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 0.58rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.standings__form-dot--w {
  background: #2da44e;
}

.standings__form-dot--d {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(0, 0, 0, 0.7);
}

.standings__form-dot--l {
  background: #d4484f;
}

/* ── Match Center ── */
.match-center-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 767px) {
  .match-center-grid {
    grid-template-columns: 1fr;
  }
}

.mc-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.25s;
}

.mc-card:hover {
  border-color: rgba(212, 132, 143, 0.25);
}

.mc-card--featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg,
      rgba(59, 30, 43, 0.9),
      rgba(39, 16, 32, 0.95));
  border-color: rgba(227, 180, 35, 0.2);
}

.mc-card__header {
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mc-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-gold, #e3b423);
}

.mc-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold, #e3b423);
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.mc-league {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
}

.mc-card__body {
  padding: 24px 20px;
}

.mc-matchup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.mc-club {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mc-club__crest {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.mc-club__name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.mc-vs {
  font-family: var(--font-display, "Bebas Neue", sans-serif);
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.1em;
}

.mc-info {
  text-align: center;
}

.mc-info__date {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.mc-info__time {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold, #e3b423);
  display: block;
}

.mc-info__venue {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

.mc-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mc-cd-unit {
  text-align: center;
}

.mc-cd-n {
  display: block;
  font-family: var(--font-display, "Bebas Neue", sans-serif);
  font-size: 1.6rem;
  color: #fff;
  line-height: 1;
}

.mc-cd-u {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mc-cd-sep {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.2);
  align-self: flex-start;
  margin-top: 4px;
}

.mc-card__footer {
  padding: 12px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mc-ticket-btn {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 20px;
  background: var(--color-gold, #e3b423);
  color: var(--color-eggplant-deep, #271020);
  text-decoration: none;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mc-ticket-btn:hover {
  background: var(--color-gold-light, #f0c94a);
  color: var(--color-eggplant-deep, #271020);
}

.mc-card--sm .mc-club__crest {
  width: 40px;
  height: 40px;
}

.mc-card--sm .mc-vs {
  font-size: 1.3rem;
}

.mc-card--sm .mc-info__time {
  font-size: 1.1rem;
}

/* ── Filter chips ── */
.filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

@media (max-width: 767.9px) {
  .filter-chips button {
    width: 49%;
    margin: auto;
  }
}

.filter-chip {
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-chip:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
}

.filter-chip.active {
  background: var(--color-pink, #d4848f);
  border-color: var(--color-pink, #d4848f);
  color: #fff;
}

.filter-chip--dark {
  border-color: rgba(59, 30, 43, 0.2);
  color: rgba(59, 30, 43, 0.5);
}

.filter-chip--dark:hover {
  border-color: var(--color-eggplant, #3b1e2b);
  color: var(--color-eggplant, #3b1e2b);
}

.filter-chip--dark.active {
  background: var(--color-eggplant, #3b1e2b);
  border-color: var(--color-eggplant, #3b1e2b);
  color: #fff;
}

/* ── View all button ── */
.matches-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
}

.matches-view-all:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.matches-view-all--dark {
  border-color: rgba(59, 30, 43, 0.15);
  color: rgba(59, 30, 43, 0.6);
}

.matches-view-all--dark:hover {
  background: rgba(59, 30, 43, 0.05);
  border-color: var(--color-eggplant, #3b1e2b);
  color: var(--color-eggplant, #3b1e2b);
}

/* ── Responsive table ── */
.standings-wrap {
  overflow-x: auto;
  border-radius: 4px;
}

@media (max-width: 575px) {
  .standings-hide-sm {
    display: none;
  }
}

/* ═══════════════════════════════════════════════
         FACILITIES PAGE — CUSTOM STYLES
═══════════════════════════════════════════════ */

/* Quick nav */
.facilities-quicknav {
  background: var(--color-eggplant, #3b1e2b);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 91px;
  z-index: 100;
}

.facilities-quicknav__list {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;

  flex-wrap: wrap;
}

.facilities-quicknav__list li {
  flex: 1;
}

.facilities-quicknav__list li button {
  margin: auto;
}

.facilities-quicknav__list::-webkit-scrollbar {
  height: 4px;
}

.facilities-quicknav__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition:
    color 0.25s,
    border-color 0.25s;
  white-space: nowrap;
  width: 100%;
}

.facilities-quicknav__btn:hover {
  color: rgba(255, 255, 255, 0.85);
}

.facilities-quicknav__btn.active {
  color: var(--color-gold, #e3b423);
  border-bottom-color: var(--color-gold, #e3b423);
}

.facilities-quicknav__btn i {
  font-size: 1rem;
}

/* Panels */

.facilities-panel.active {
  display: block;
}

/* Section base */
.facilities-section {
  padding: 80px 0;
}

.facilities-section--dark {
  background: var(--color-eggplant-deep, #271020);
  color: #fff;
}

.facilities-section--light {
  background: var(--color-off-white, #faf7f5);
}

/* Section header */
.facilities-section__header {
  margin-bottom: 40px;
}

.facilities-eyebrow {
  display: inline-block;
  background: rgba(212, 132, 143, 0.15);
  border: 1px solid rgba(212, 132, 143, 0.35);
  color: var(--color-pink, #d4848f);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.facilities-heading {
  font-family: var(--font-display, "Bebas Neue", sans-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 6px;
}

.facilities-heading--dark {
  color: var(--color-eggplant, #3b1e2b);
}

.facilities-subheading {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
}

.facilities-subheading--dark {
  color: var(--color-mid-gray, #9b8a8f);
}

/* ── Facility Hero Card (Stadium / Training) ── */
.fac-hero-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 32px;
}

.fac-hero-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.fac-hero-card:hover .fac-hero-card__img {
  transform: scale(1.04);
}

.fac-hero-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(39, 16, 32, 0.92) 0%,
      rgba(39, 16, 32, 0.3) 60%,
      transparent 100%);
}

.fac-hero-card__body {
  position: relative;
  z-index: 2;
  padding: 32px 28px;
  width: 100%;
}

.fac-hero-card__tag {
  display: inline-block;
  background: rgba(227, 180, 35, 0.18);
  border: 1px solid rgba(227, 180, 35, 0.4);
  color: var(--color-gold, #e3b423);
  padding: 3px 12px;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.fac-hero-card__title {
  font-family: var(--font-display, "Bebas Neue", sans-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  line-height: 1.05;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.fac-hero-card__desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 20px;
}

.fac-hero-card__stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.fac-hero-card__stat {
  text-align: center;
}

.fac-hero-card__stat-num {
  font-family: var(--font-display, "Bebas Neue", sans-serif);
  font-size: 1.8rem;
  color: var(--color-gold, #e3b423);
  line-height: 1;
}

.fac-hero-card__stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.fac-hero-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-pink, #d4848f);
  color: #fff;
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    background 0.25s,
    transform 0.2s;
  text-decoration: none;
}

.fac-hero-card__cta:hover {
  background: var(--color-eggplant-mid, #4f2a3c);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Facility Info Cards (Museum, Hotel, etc.) ── */
.fac-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.28s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fac-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 132, 143, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.fac-card__img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.fac-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

/* .fac-card:hover .fac-card__img {
  transform: scale(1.06);
} */

.fac-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(39, 16, 32, 0.7) 0%,
      transparent 60%);
}

.fac-card__body {
  padding: 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fac-card__icon {
  width: 42px;
  height: 42px;
  background: rgba(212, 132, 143, 0.12);
  border: 1px solid rgba(212, 132, 143, 0.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-pink, #d4848f);
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.fac-card__title {
  font-family: var(--font-display, "Bebas Neue", sans-serif);
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.fac-card__desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}

.fac-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.fac-card__meta {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fac-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-gold, #e3b423);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap 0.2s;
}

.fac-card__link:hover {
  color: var(--color-gold-light, #f0c94a);
  gap: 10px;
}

/* ── Facilities Overview Grid ── */
.fac-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 48px;
}

.fac-overview-stat {
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
  transition: background 0.2s;
}

.fac-overview-stat:hover {
  background: rgba(255, 255, 255, 0.05);
}

.fac-overview-stat__num {
  font-family: var(--font-display, "Bebas Neue", sans-serif);
  font-size: 2.2rem;
  color: #fff;
  line-height: 1;
}

.fac-overview-stat__num--gold {
  color: var(--color-gold, #e3b423);
}

.fac-overview-stat__num--pink {
  color: var(--color-pink, #d4848f);
}

.fac-overview-stat__label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── Info Row (detail rows with icon) ── */
.fac-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fac-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.fac-info-list li:last-child {
  border-bottom: none;
}

.fac-info-list li i {
  color: var(--color-gold, #e3b423);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.fac-info-list li strong {
  color: #fff;
  display: block;
  margin-bottom: 2px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Feature Highlight Box ── */
.fac-highlight-box {
  background: rgba(227, 180, 35, 0.06);
  border: 1px solid rgba(227, 180, 35, 0.2);
  border-radius: 4px;
  padding: 24px 22px;
  margin-top: 28px;
}

.fac-highlight-box__title {
  font-family: var(--font-display, "Bebas Neue", sans-serif);
  font-size: 1.1rem;
  color: var(--color-gold, #e3b423);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.fac-highlight-box__text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0;
}

/* ── View All link ── */
.facilities-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-gold, #e3b423);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 24px;
  border: 1px solid rgba(227, 180, 35, 0.3);
  border-radius: 4px;
  transition: all 0.25s;
}

.facilities-view-all:hover {
  background: rgba(227, 180, 35, 0.08);
  border-color: var(--color-gold, #e3b423);
  color: var(--color-gold-light, #f0c94a);
  transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .fac-overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fac-hero-card {
    min-height: 320px;
  }

  .fac-hero-card__stats {
    gap: 18px;
  }
}

@media (max-width: 576px) {
  .fac-overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facilities-quicknav__btn {
    padding: 10px 14px;
    font-size: 0.78rem;
  }
}

/* ═══════════════════════════════════════════
         PRIVACY POLICY PAGE — CUSTOM STYLES
═══════════════════════════════════════════ */

/* ── Page Layout ── */
.privacy-page {
  background: var(--color-off-white, #faf7f5);
  padding: 80px 0 100px;
}

/* ── Sidebar TOC ── */
.privacy-toc {
  position: sticky;
  top: 120px;
  background: #fff;
  border: 1px solid var(--color-border, rgba(59, 30, 43, 0.12));
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(59, 30, 43, 0.07);
}

.privacy-toc__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-mid-gray, #9b8a8f);
  margin-bottom: 16px;
}

.privacy-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.privacy-toc__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none !important;
  color: var(--color-dark-gray, #4a3d42) !important;
  font-size: 0.83rem;
  font-weight: 500;
  transition:
    background 0.2s,
    color 0.2s;
  border-right: 3px solid transparent;
}

.privacy-toc__link:hover {
  background: var(--color-cream, #f4ede8);
  color: var(--color-eggplant, #3b1e2b) !important;
}

.privacy-toc__link.active {
  background: rgba(212, 132, 143, 0.1);
  color: var(--color-eggplant, #3b1e2b) !important;
  border-right-color: var(--color-pink, #d4848f);
  font-weight: 700;
}

.privacy-toc__link i {
  font-size: 0.9rem;
  color: var(--color-pink, #d4848f);
  flex-shrink: 0;
}

.privacy-toc__updated {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border, rgba(59, 30, 43, 0.1));
  font-size: 0.75rem;
  color: var(--color-mid-gray, #9b8a8f);
  text-align: center;
}

.privacy-toc__updated strong {
  color: var(--color-eggplant, #3b1e2b);
}

/* ── Content Area ── */
.privacy-content {
  min-height: 80vh;
}

.privacy-section {
  margin-bottom: 64px;
  scroll-margin-top: calc(var(--header-total, 120px) + 56px + 24px);
}

.privacy-section:last-child {
  margin-bottom: 0;
}

.privacy-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-pink, #d4848f);
  margin-bottom: 10px;
}

.privacy-section__title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--color-eggplant-deep, #271020);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-light-gray, #e8e1dc);
  line-height: 1.3;
}

.privacy-section__title span {
  color: var(--color-pink, #d4848f);
}

.privacy-body {
  color: var(--color-dark-gray, #4a3d42);
  line-height: 1.85;
  font-size: 0.96rem;
}

.privacy-body p {
  margin-bottom: 16px;
}

.privacy-body p:last-child {
  margin-bottom: 0;
}

.privacy-body strong {
  color: var(--color-eggplant, #3b1e2b);
  font-weight: 700;
}

/* ── Info Cards ── */
.privacy-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.privacy-card {
  background: #fff;
  border: 1px solid var(--color-border, rgba(59, 30, 43, 0.1));
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.privacy-card:hover {
  box-shadow: 0 4px 20px rgba(59, 30, 43, 0.1);
  transform: translateY(-2px);
}

.privacy-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(212, 132, 143, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-pink, #d4848f);
  flex-shrink: 0;
}

.privacy-card__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-eggplant, #3b1e2b);
  margin: 0;
}

.privacy-card__text {
  font-size: 0.83rem;
  color: var(--color-mid-gray, #9b8a8f);
  line-height: 1.6;
  margin: 0;
}

/* ── Data Table ── */
.privacy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.88rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(59, 30, 43, 0.07);
}

.privacy-table thead tr {
  background: var(--color-eggplant, #3b1e2b);
  color: #fff;
}

.privacy-table thead th {
  padding: 14px 18px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-align: right;
}

.privacy-table tbody tr {
  border-bottom: 1px solid var(--color-light-gray, #e8e1dc);
  background: #fff;
  transition: background 0.15s;
}

.privacy-table tbody tr:last-child {
  border-bottom: none;
}

.privacy-table tbody tr:hover {
  background: var(--color-cream, #f4ede8);
}

.privacy-table tbody td {
  padding: 13px 18px;
  color: var(--color-dark-gray, #4a3d42);
  vertical-align: top;
}

.privacy-table tbody td:first-child {
  font-weight: 600;
  color: var(--color-eggplant, #3b1e2b);
  /* white-space: nowrap; */
}

/* ── List Styles ── */
.privacy-list {
  list-style: none;
  margin: 16px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.privacy-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--color-dark-gray, #4a3d42);
  line-height: 1.6;
}

.privacy-list li strong {
  min-width: 270px;
}

.privacy-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-pink, #d4848f);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ── Rights Cards ── */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.rights-card {
  background: linear-gradient(135deg,
      var(--color-eggplant, #3b1e2b) 0%,
      var(--color-eggplant-mid, #4f2a3c) 100%);
  border-radius: 12px;
  padding: 20px 18px;
  color: #fff;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.rights-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(59, 30, 43, 0.25);
}

.rights-card__icon {
  font-size: 1.4rem;
  color: var(--color-pink, #d4848f);
  margin-bottom: 10px;
  display: block;
}

.rights-card__title {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.rights-card__text {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  margin: 0;
}

/* ── Alert Box ── */
.privacy-alert {
  background: linear-gradient(135deg,
      rgba(227, 180, 35, 0.1) 0%,
      rgba(240, 201, 74, 0.06) 100%);
  border: 1px solid rgba(227, 180, 35, 0.3);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 24px 0;
}

.privacy-alert__icon {
  font-size: 1.3rem;
  color: var(--color-gold, #e3b423);
  flex-shrink: 0;
  margin-top: 2px;
}

.privacy-alert__body {
  flex: 1;
}

.privacy-alert__title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-eggplant-deep, #271020);
  margin-bottom: 6px;
}

.privacy-alert__text {
  font-size: 0.86rem;
  color: var(--color-dark-gray, #4a3d42);
  line-height: 1.65;
  margin: 0;
}

/* ── Contact CTA ── */
.privacy-contact-cta {
  background: linear-gradient(135deg,
      var(--color-eggplant-deep, #271020) 0%,
      var(--color-eggplant, #3b1e2b) 100%);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  color: #fff;
  margin-top: 64px;
}

.privacy-contact-cta__icon {
  font-size: 2.5rem;
  color: var(--color-pink, #d4848f);
  margin-bottom: 16px;
  display: block;
}

.privacy-contact-cta__title {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.privacy-contact-cta__title span {
  color: var(--color-pink, #d4848f);
}

.privacy-contact-cta__text {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.privacy-contact-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-pink, #d4848f);
  color: #fff !important;
  text-decoration: none !important;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  transition:
    background 0.2s,
    transform 0.2s;
}

.privacy-contact-cta__btn:hover {
  background: var(--color-pink-light, #e4a8b1);
  transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .privacy-toc {
    display: none;
  }

  .privacy-page {
    padding: 48px 0 80px;
  }

  .privacy-contact-cta {
    padding: 28px 20px;
  }
}

@media (max-width: 575px) {
  .privacy-card-grid {
    grid-template-columns: 1fr;
  }

  .rights-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ═══ MEDIA PAGE — CUSTOM STYLES ═══ */

/* ── Quick Nav ── */
.media-quicknav {
  background: var(--color-eggplant, #3b1e2b);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 91px;
  z-index: 100;
}

.media-quicknav__list {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
  flex-wrap: wrap;
}

.media-quicknav__list::-webkit-scrollbar {
  display: none;
}

.media-quicknav__list li {
  flex: 1;
}

.media-quicknav__list li button {
  margin: auto;
}

.media-quicknav__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition:
    color 0.25s,
    border-color 0.25s;
  white-space: nowrap;
  width: 100%;
}

.media-quicknav__btn:hover {
  color: rgba(255, 255, 255, 0.85);
}

.media-quicknav__btn.active {
  /* color: #fff; */
  /* border-bottom-color: var(--color-pink, #d4848f); */

  color: var(--color-gold, #e3b423);
  border-bottom-color: var(--color-gold, #e3b423);
}

/* ── Panels (same pattern as facilities) ── */
.media-panel {
  display: none;
}

.media-panel.active {
  display: block;
}

/* ── Section base (reuse facilities pattern) ── */
.media-section {
  padding: 80px 0;
}

.media-section--dark {
  background: var(--color-eggplant-deep, #271020);
  color: #fff;
}

.media-section--light {
  background: var(--color-off-white, #faf7f5);
}

.media-section--cream {
  background: var(--color-cream, #f4ede8);
}

/* ── Section Headers (same as facilities) ── */
.media-section__header {
  margin-bottom: 40px;
}

.media-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-pink, #d4848f);
  margin-bottom: 8px;
}

.media-section--dark .media-eyebrow {
  color: var(--color-pink-light, #e4a8b1);
}

.media-heading {
  font-family: var(--font-display, "Bebas Neue", sans-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1;
}

.media-section--light .media-heading,
.media-section--cream .media-heading {
  color: var(--color-eggplant, #3b1e2b);
}

.media-subheading {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 560px;
  line-height: 1.65;
}

.media-section--light .media-subheading,
.media-section--cream .media-subheading {
  color: var(--color-mid-gray, #9b8a8f);
}

/* ── Filter Chips (same as facilities/matches) ── */
.filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.filter-chip {
  padding: 7px 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.22s;
}

.filter-chip:hover,
.filter-chip.active {
  background: var(--color-pink, #d4848f);
  border-color: var(--color-pink, #d4848f);
  color: #fff;
}

.media-section--light .filter-chip,
.media-section--cream .filter-chip {
  background: #fff;
  border-color: rgba(59, 30, 43, 0.15);
  color: var(--color-eggplant, #3b1e2b);
}

.media-section--light .filter-chip:hover,
.media-section--light .filter-chip.active,
.media-section--cream .filter-chip:hover,
.media-section--cream .filter-chip.active {
  background: var(--color-eggplant, #3b1e2b);
  border-color: var(--color-eggplant, #3b1e2b);
  color: #fff;
}

/* ── NEWS CARDS ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.mediaAr .news-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.28s;
  display: flex;
  flex-direction: column;
}

.mediaAr .news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  border-color: rgba(212, 132, 143, 0.3);
}

.mediaAr .news-card--featured {
  grid-column: span 2;
  flex-direction: row;
}

.mediaAr .news-card--featured .news-card__img-wrap {
  flex: 0 0 52%;
}

.mediaAr .news-card--featured .news-card__body {
  padding: 28px;
}

.mediaAr .news-card--featured .news-card__title {
  font-size: 1.15rem;
}

@media (max-width: 767px) {
  .mediaAr .news-card--featured {
    grid-column: span 2;
    flex-direction: column;
  }

  .mediaAr .news-card--featured .news-card__img-wrap {
    flex: none;
  }
}

.mediaAr .news-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.mediaAr .news-card--featured .news-card__img-wrap {
  aspect-ratio: auto;
  min-height: 220px;
}

.mediaAr .news-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.mediaAr .news-card:hover .news-card__img {
  transform: scale(1.06);
}

.mediaAr .news-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-pink, #d4848f);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 3px;
}

.mediaAr .news-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mediaAr .news-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.mediaAr .news-card__meta i {
  color: var(--color-pink, #d4848f);
}

.mediaAr .news-card__title {
  font-size: 0.95rem;
  /* font-weight: 700; */
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.45;
  margin-bottom: 8px;
}

.mediaAr .news-card__excerpt {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 14px;
}

.mediaAr .news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-pink-light, #e4a8b1);
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: auto;
  transition:
    gap 0.2s,
    color 0.2s;
}

.mediaAr .news-card__link:hover {
  gap: 10px;
  color: #fff;
}

/* ── PHOTO GALLERY ── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

@media (max-width: 991px) {
  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.photo-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--color-eggplant-mid, #4f2a3c);
}

.photo-item--wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.photo-item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

@media (max-width: 575px) {
  .photo-item--wide {
    grid-column: span 2;
  }

  .photo-item--tall {
    grid-row: span 1;
    aspect-ratio: 1;
  }
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s ease;
}

.photo-item:hover img {
  transform: scale(1.08);
}

.photo-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(39, 16, 32, 0.85) 0%,
      transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
}

.photo-item:hover .photo-item__overlay {
  opacity: 1;
}

.photo-item__caption {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.photo-item__zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-eggplant, #3b1e2b);
  font-size: 16px;
  opacity: 0;
  transition:
    opacity 0.3s,
    transform 0.3s;
}

.photo-item:hover .photo-item__zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.open {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 3px;
}

.lightbox__close {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #fff;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox__close:hover {
  background: var(--color-pink, #d4848f);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox__nav:hover {
  background: var(--color-pink, #d4848f);
}

.lightbox__nav--prev {
  right: 18px;
}

.lightbox__nav--next {
  left: 18px;
}

.lightbox__caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 6px 18px;
  border-radius: 3px;
  white-space: nowrap;
}

/* ── VIDEO GALLERY ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

.video-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.28s;
}

.video-card:hover {
  border-color: rgba(212, 132, 143, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.video-embed-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-eggplant-mid, #4f2a3c);
}

.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-card__body {
  padding: 16px;
}

.video-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 7px;
}

.video-card__meta i {
  color: var(--color-pink, #d4848f);
}

.video-card__title {
  font-size: 0.9rem;
  /* font-weight: 700; */
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
}

.video-card__duration {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--color-gold, #e3b423);
  font-weight: 700;
}

/* ── PRESS RELEASES ── */
.press-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.press-item {
  background: #fff;
  border: 1.5px solid rgba(59, 30, 43, 0.08);
  border-radius: 4px;
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all 0.25s;
  cursor: pointer;
}

.press-item:hover {
  border-color: rgba(212, 132, 143, 0.3);
  box-shadow: 0 4px 20px rgba(59, 30, 43, 0.12);
  transform: translateX(-4px);
}

.press-item__date-box {
  flex-shrink: 0;
  width: 56px;
  text-align: center;
  background: var(--color-eggplant, #3b1e2b);
  color: #fff;
  border-radius: 3px;
  padding: 8px 4px;
}

.press-item__date-day {
  display: block;
  font-family: var(--font-display, "Bebas Neue", sans-serif);
  font-size: 1.7rem;
  line-height: 1;
  color: var(--color-gold, #e3b423);
}

.press-item__date-mon {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.55;
}

.press-item__content {
  flex: 1;
}

.press-item__category {
  display: inline-block;
  background: var(--color-pink-pale, #f5dde0);
  color: var(--color-eggplant, #3b1e2b);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  padding: 3px 9px;
  border-radius: 3px;
  margin-bottom: 7px;
}

.press-item__title {
  font-size: 0.92rem;
  /* font-weight: 700; */
  color: var(--color-eggplant, #3b1e2b);
  line-height: 1.4;
  margin-bottom: 5px;
}

.press-item__excerpt {
  font-size: 0.8rem;
  color: var(--color-mid-gray, #9b8a8f);
  line-height: 1.6;
}

.press-item__arrow {
  flex-shrink: 0;
  color: var(--color-mid-gray, #9b8a8f);
  font-size: 17px;
  margin-top: 2px;
  transition:
    color 0.2s,
    transform 0.2s;
}

.press-item:hover .press-item__arrow {
  color: var(--color-pink, #d4848f);
  transform: translateX(-4px);
}

/* ── Load More / View All (same as facilities) ── */
.media-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  font-family: var(--font-body, "DM Sans", sans-serif);
}

.media-view-all:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.media-section--light .media-view-all,
.media-section--cream .media-view-all {
  border-color: rgba(59, 30, 43, 0.2);
  color: var(--color-eggplant, #3b1e2b);
}

.media-section--light .media-view-all:hover,
.media-section--cream .media-view-all:hover {
  background: var(--color-eggplant, #3b1e2b);
  color: #fff;
  border-color: var(--color-eggplant, #3b1e2b);
}

@media (max-width: 991.9px) {

  div[role="navigation"],
  .shop-filter {
    position: static !important;
    padding-top: 50px;
  }
}

@media (min-width: 992px) and (max-width: 1199.9px) {
  div[role="navigation"] {
    top: 75px;
  }
}

/* ═══════════════════════════════════════════
         ABOUT US PAGE — CUSTOM STYLES
         ═══════════════════════════════════════════ */

/* ── Quick Nav ── */
.about-quicknav {
  background: var(--color-eggplant, #3b1e2b);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 91px;
  z-index: 100;
}

.about-quicknav__list {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
  flex-wrap: wrap;
}

.about-quicknav__list::-webkit-scrollbar {
  display: none;
}

.about-quicknav__list li {
  flex: 1;
}

.about-quicknav__list li a {
  margin: auto;
}

.about-quicknav__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    color 0.25s,
    border-color 0.25s,
    background 0.25s;
  white-space: nowrap;
  width: 100%;
  text-decoration: none !important;
}

.about-quicknav__btn:hover {
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: none !important;
  background: rgba(255, 255, 255, 0.04);
}

.about-quicknav__btn.active {
  color: #ffffff !important;
  border-bottom: 3px solid #d4848f !important;
  background: rgba(212, 132, 143, 0.08) !important;
  text-decoration: none !important;
}

/* ── Section Base ── */
.about-section {
  padding: 90px 0;
}

.about-section--dark {
  background: var(--color-eggplant-deep, #271020);
  color: #fff;
}

.about-section--eggplant {
  background: var(--color-eggplant, #3b1e2b);
  color: #fff;
}

.about-section--light {
  background: var(--color-off-white, #faf7f5);
}

/* ── Section Eyebrow / Heading ── */
.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 132, 143, 0.15);
  border: 1px solid rgba(212, 132, 143, 0.35);
  color: #e4a8b1 !important;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about-heading {
  font-family: var(--font-display, "Bebas Neue", sans-serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  color: #ffffff !important;
}

.about-heading span {
  color: #e4a8b1 !important;
}

.about-heading--gold span {
  color: #e3b423 !important;
}

.about-subheading {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75) !important;
  max-width: 600px;
}

.about-subheading--dark {
  color: var(--color-dark-gray, #4a3d42) !important;
}

/* ── Overview Section ── */
.about-overview__img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.about-overview__img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.about-overview__img-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--color-eggplant-deep, #271020);
  border: 1px solid rgba(212, 132, 143, 0.3);
  border-radius: 6px;
  padding: 16px 22px;
  text-align: center;
}

.about-overview__img-badge .num {
  font-family: var(--font-display, "Bebas Neue", sans-serif);
  font-size: 2.5rem;
  color: var(--color-gold, #e3b423);
  line-height: 1;
  display: block;
}

.about-overview__img-badge .lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.about-overview__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 32px;
}

.about-stat {
  padding: 22px 20px;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.about-stat__num {
  font-family: var(--font-display, "Bebas Neue", sans-serif);
  font-size: 2.2rem;
  color: var(--color-gold, #e3b423);
  line-height: 1;
  display: block;
}

.about-stat__lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.about-divider {
  width: 48px;
  height: 3px;
  background: var(--color-pink, #d4848f);
  margin: 18px 0;
  border-radius: 2px;
}

/* ── Vision & Mission ── */
.vm-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 36px 32px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.vm-card:hover {
  border-color: rgba(212, 132, 143, 0.3);
}

.vm-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle,
      rgba(212, 132, 143, 0.08) 0%,
      transparent 70%);
  pointer-events: none;
}

.vm-card--gold::before {
  background: radial-gradient(circle,
      rgba(227, 180, 35, 0.1) 0%,
      transparent 70%);
}

.vm-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(212, 132, 143, 0.15);
  border: 1px solid rgba(212, 132, 143, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-pink, #d4848f);
  margin-bottom: 20px;
}

.vm-card--gold .vm-card__icon {
  background: rgba(227, 180, 35, 0.12);
  border-color: rgba(227, 180, 35, 0.3);
  color: var(--color-gold, #e3b423);
}

.vm-card__title {
  font-family: var(--font-display, "Bebas Neue", sans-serif);
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  color: #ffffff !important;
  margin-bottom: 12px;
}

.vm-card__body {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ── Chairman Message ── */
.chairman-card {
  background: var(--color-eggplant, #3b1e2b);
  border: 1px solid rgba(212, 132, 143, 0.18);
  border-radius: 6px;
  overflow: hidden;
}

.chairman-card__img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.chairman-card__body {
  padding: 36px 32px;
}

.chairman-card__quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--color-pink, #d4848f);
  line-height: 0.8;
  opacity: 0.4;
  margin-bottom: 12px;
  display: block;
}

.chairman-card__quote {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85) !important;
  font-style: italic;
  margin-bottom: 24px;
}

.chairman-card__name {
  font-family: var(--font-display, "Bebas Neue", sans-serif);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: #ffffff !important;
  display: block;
}

.chairman-card__title-txt {
  font-size: 0.8rem;
  color: #e4a8b1 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

/* ── Chairman Message ── */

.chairman-card {
    position: relative;
    background: var(--color-eggplant, #3b1e2b);
    border-radius: 28px;
    overflow: visible;
    border: 1px solid rgba(212,132,143,.18);
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
    margin-top: 70px;
}

.chairman-card__img {
    width: 170px !important;
    height: 170px !important;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    position: absolute;
    top: -115px;
    z-index: 2;
    min-height: 170px !important;
    border: 6px solid #784753;
    outline: 8px solid var(--color-eggplant-deep, #271020);
    outline-offset: 0;
}

.chairman-card__body {
    padding: 110px 45px 45px;
}

.chairman-card .col-md-4 {
  width:0;
}

.chairman-card .col-md-8 {
  width:100%;
}

.chairman-card__quote {
    color: rgba(255,255,255,.85) !important;
    font-size: 18px;
    line-height: 2;
    font-style: normal;
}


.chairman-card__name {
    color: var(--color-pink,#d4848f) !important;
    font-size: 28px;
    font-weight: 700;
}

.chairman-card__title-txt {
    color: #e4a8b1 !important;
}

.chairman-card__img {
    right:35px;
    left:auto;
}

.chairman-card__body {
    text-align:left;
}


/* ── Mobile ── */
@media(max-width:768px){

    .chairman-card {
        margin-top:80px;
    }


    .chairman-card__img {width:130px !important;height:130px !important;top:-65px;left: auto !important;right: 25% !important;transform: translateX(50%);min-height: 130px !important;}


    .chairman-card__body {
        padding:90px 25px 35px;
    }

}


/* ── Management ── */
.mgmt-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s;
}

.mgmt-card:hover {
  border-color: rgba(212, 132, 143, 0.3);
  transform: translateY(-4px);
}

.mgmt-card__img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  object-position: top;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.3s;
}

.mgmt-card:hover .mgmt-card__img {
  filter: grayscale(0%);
}

.mgmt-card__body {
  padding: 20px;
}

.mgmt-card__name {
  font-family: var(--font-display, "Bebas Neue", sans-serif);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: #ffffff !important;
  margin-bottom: 4px;
}

.mgmt-card__role {
  font-size: 0.78rem;
  color: #e4a8b1 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ── Strategic Goals ── */
.goal-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 28px 24px;
  height: 100%;
  transition:
    border-color 0.3s,
    background 0.3s;
  position: relative;
  overflow: hidden;
}

.goal-card:hover {
  border-color: rgba(227, 180, 35, 0.3);
  background: rgba(227, 180, 35, 0.04);
}

.goal-card__number {
  font-family: var(--font-display, "Bebas Neue", sans-serif);
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(227, 180, 35, 0.15);
  position: absolute;
  top: 12px;
  right: 20px;
}

.goal-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(227, 180, 35, 0.1);
  border: 1px solid rgba(227, 180, 35, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-gold, #e3b423);
  margin-bottom: 16px;
}

.goal-card__title {
  font-family: var(--font-display, "Bebas Neue", sans-serif);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: #ffffff !important;
  margin-bottom: 10px;
}

.goal-card__body {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.7;
}

/* ── Partners / Sponsors ── */
.partner-logo-wrap {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  transition:
    border-color 0.3s,
    background 0.3s;
}

.partner-logo-wrap:hover {
  border-color: rgba(212, 132, 143, 0.3);
  background: rgba(212, 132, 143, 0.05);
}

.partner-logo-wrap img {
  max-width: 110px;
  max-height: 50px;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.3s;
  object-fit: contain;
}

.partner-logo-wrap:hover img {
  opacity: 0.9;
}

.partner-category-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* ── CTA Button ── */
.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #d4848f;
  color: #ffffff !important;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 16px 48px;
  border-radius: 3px;
  text-decoration: none !important;
  border: 2px solid #d4848f;
  transition:
    background 0.25s,
    color 0.25s;
  cursor: pointer;
}

.about-cta-btn:hover {
  background: transparent;
  color: #e4a8b1 !important;
  text-decoration: none !important;
}

/* ============================================================
   OWNERS PAGE
   ============================================================ */

/* ── Investor Cards ── */
.owners-investor-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 28px 24px;
  height: 100%;
  transition:
    border-color 0.3s,
    background 0.3s;
  position: relative;
  overflow: hidden;
}

.owners-investor-card:hover {
  border-color: rgba(212, 132, 143, 0.3);
  background: rgba(212, 132, 143, 0.04);
}

.owners-investor-card--featured {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(227, 180, 35, 0.2);
  padding: 0;
  overflow: hidden;
}

.owners-investor-card--featured:hover {
  border-color: rgba(227, 180, 35, 0.45);
}

.owners-investor-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(212, 132, 143, 0.12);
  border: 1px solid rgba(212, 132, 143, 0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--color-pink, #d4848f);
  margin-bottom: 18px;
}

.owners-investor-name {
  font-family: var(--font-display, "Bebas Neue", sans-serif);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: #ffffff !important;
  margin-bottom: 10px;
}

.owners-investor-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65) !important;
  line-height: 1.7;
  margin-bottom: 14px;
}

.owners-investor-share {
  font-size: 0.82rem;
  color: var(--color-gold-light, #f0c94a) !important;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.owners-investor-share strong {
  color: var(--color-gold, #e3b423) !important;
}

/* ── Badges ── */
.owners-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.owners-badge--gold {
  background: rgba(227, 180, 35, 0.15);
  border: 1px solid rgba(227, 180, 35, 0.35);
  color: var(--color-gold-light, #f0c94a) !important;
}

.owners-badge--pink {
  background: rgba(212, 132, 143, 0.15);
  border: 1px solid rgba(212, 132, 143, 0.35);
  color: var(--color-pink-light, #e4a8b1) !important;
}

/* ── Owner Cards ── */
.owners-owner-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
  transition:
    border-color 0.3s,
    transform 0.3s;
}

.owners-owner-card:hover {
  border-color: rgba(212, 132, 143, 0.35);
  transform: translateY(-5px);
}

.owners-owner-card__img-wrap {
  position: relative;
  overflow: hidden;
}

.owners-owner-card__img-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: grayscale(15%);
  transition:
    filter 0.35s,
    transform 0.35s;
}

.owners-owner-card:hover .owners-owner-card__img-wrap img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.owners-owner-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(212, 132, 143, 0.9);
  color: #fff !important;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 4px;
  backdrop-filter: blur(4px);
}

.owners-owner-card__badge--gold {
  background: rgba(227, 180, 35, 0.88) !important;
  color: #271020 !important;
}

.owners-owner-card__badge--teal {
  background: rgba(60, 180, 160, 0.88) !important;
  color: #fff !important;
}

.owners-owner-card__body {
  padding: 22px 20px;
}

.owners-owner-card__name {
  font-family: var(--font-display, "Bebas Neue", sans-serif);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: #fff !important;
  margin-bottom: 4px;
}

.owners-owner-card__role {
  font-size: 0.75rem;
  color: var(--color-pink-light, #e4a8b1) !important;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.owners-owner-card__bio {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.65) !important;
  line-height: 1.7;
  margin-bottom: 16px;
}

.owners-owner-card__share {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5) !important;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.owners-owner-card__share strong {
  color: var(--color-gold-light, #f0c94a) !important;
}

/* ── Board Cards ── */
.owners-board-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
  position: relative;
  transition:
    border-color 0.3s,
    transform 0.3s;
}

.owners-board-card:hover {
  border-color: rgba(212, 132, 143, 0.3);
  transform: translateY(-4px);
}

.owners-board-card--chairman {
  border-color: rgba(227, 180, 35, 0.3);
}

.owners-board-card--chairman:hover {
  border-color: rgba(227, 180, 35, 0.55);
}

.owners-board-card__rank {
  position: absolute;
  top: 12px;
  left: 14px;
  font-family: var(--font-display, "Bebas Neue", sans-serif);
  font-size: 2.2rem;
  line-height: 1;
  color: rgba(227, 180, 35, 0.18);
  letter-spacing: 0.02em;
  z-index: 1;
}

.owners-board-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.3s;
}

.owners-board-card:hover .owners-board-card__img {
  filter: grayscale(0%);
}

.owners-board-card__body {
  padding: 18px 18px 20px;
}

.owners-board-card__tag {
  display: inline-block;
  background: rgba(212, 132, 143, 0.12);
  border: 1px solid rgba(212, 132, 143, 0.28);
  color: var(--color-pink-light, #e4a8b1) !important;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}

.owners-board-card--chairman .owners-board-card__tag {
  background: rgba(227, 180, 35, 0.12);
  border-color: rgba(227, 180, 35, 0.3);
  color: var(--color-gold-light, #f0c94a) !important;
}

.owners-board-card__name {
  font-family: var(--font-display, "Bebas Neue", sans-serif);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: #fff !important;
  margin: 8px 0;
  display: block;
}

.owners-board-card__bio {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.6) !important;
  line-height: 1.65;
  margin: 0;
}

.shop-hero__content {
  margin-bottom: 50px;
}


.privacy-toc__link {
  border-left: 3px solid transparent;
  border-right:none;
  border-radius: 3px;
}

.privacy-toc__link.active {
  border-left-color: var(--color-pink, #d4848f);
  border-right-color:none;
}
@media (max-width: 768px) {
    .mnav__mega-cols {
        display: block;
    }

    .mnav__mega-col {
        width: 100%;
        border: 0;
        margin: 0;
        padding: 0;
    }

        .mnav__mega-col + .mnav__mega-col {
            border-top: none;
            margin-top: 0;
            padding-top: 0;
        }
}
@media (max-width: 991px) {
    .fixture-card__match-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-2);
    }

    .fixture-card__team {
        justify-content: center;
        width: 100%;
    }

    .fixture-card__team-name {
        white-space: normal;
    }
}

/* .mnav__mega-col {
  flex: 1;
  min-width: 50px;
}

.mnav__mega-cols {
  flex: 0 0 auto;   
  transform: translateX(var(--mega-col-offset, 0px));
}

.mnav__mega-col {
  flex: 0 0 100px;  
} */

.fac-hero-card{
    display: block;
    overflow: visible;
    min-height: auto;
    background: transparent;
    position: relative;
    overflow: hidden;
}


.fac-hero-card__img{
    position: relative;
    display: block;
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 4px 4px 0 0;
}


.fac-hero-card__overlay{
    top: 0;
    left: 0;
    width: 100%;
    height: 560px;
    z-index: 1;
    pointer-events: none;
}


.fac-hero-card__body{
    position: static;
    padding: 30px;
    border-radius: 0 0 4px 4px;
}

@media (max-width: 768px) {
    .mnav__cta-btn {
      display: none;
    }
}