/* ================== CSS RESET & NORMALIZE ================== */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*,*::before,*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Georgia', Times, 'Times New Roman', serif;
  background: #F9F9F6;
  color: #232629;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #16305C;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F4B324;
  outline: none;
  text-decoration: none;
}
ul, ol {
  padding-left: 1.25em;
  margin-bottom: 1em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: #16305C;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.18;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.375rem; margin-bottom: 12px; }
h4 { font-size: 1.125rem; margin-bottom: 8px; }
p, li, address, span, label {
  font-family: 'Georgia', Times, 'Times New Roman', serif;
  color: #232629;
  letter-spacing: 0.01em;
}
strong, b { font-weight: bold; }

/* legacy browser fallback font-families */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  src: local('Playfair Display'), local('PlayfairDisplay'),
    url('https://fonts.gstatic.com/s/playfairdisplay/v28/nuFiD-vYSZviVYUb_rj3ij__anPXDTjYjTLQK6Y.woff2') format('woff2');
  unicode-range: U+000-5FF;
}

/* ================== LAYOUT ================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(22,48,92,0.06);
}
@media (max-width: 900px) {
  section, .section { padding: 30px 8px; }
  .container { padding: 0 10px; }
}
@media (max-width: 600px) {
  section, .section { padding: 22px 0; margin-bottom: 40px; }
}

/* ================== HEADER & NAVIGATION ================== */
header {
  width: 100%;
  background: #E6EDF3;
  border-bottom: 1px solid #D4D7DC;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 18px;
}
header img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  text-decoration: none;
  font-family: 'Playfair Display', Georgia, serif;
  color: #16305C;
  font-size: 1.08rem;
  padding: 4px 0;
  transition: color 0.18s, border-bottom 0.2s;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F4B324;
  border-bottom: 2px solid #F4B324;
}
.cta-primary {
  background: #16305C;
  color: #FFF !important;
  font-family: 'Playfair Display', Georgia, serif;
  border: none;
  border-radius: 26px;
  padding: 12px 32px;
  margin-left: 18px;
  margin-right: 0;
  cursor: pointer;
  font-size: 1.16rem;
  font-weight: 600;
  box-shadow: 0 3px 14px rgba(22,48,92,0.09);
  text-decoration: none;
  display: inline-block;
  transition: background 0.18s, box-shadow 0.18s, color 0.17s;
}
.cta-primary:hover, .cta-primary:focus {
  background: #F4B324;
  color: #16305C !important;
  box-shadow: 0 4px 18px rgba(244,179,36,0.08);
  outline: none;
}
.cta-secondary {
  background: transparent;
  color: #16305C;
  border: 1px solid #16305C;
  border-radius: 24px;
  padding: 10px 26px;
  font-size: 1.08rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.17s, background 0.18s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #16305C;
  color: #FFF;
  outline: none;
}

/* =========== MOBILE NAVIGATION =========== */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #16305C;
  cursor: pointer;
  display: none;
  margin-left: 18px;
  z-index: 103;
  line-height: 1;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #F4B324;
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #F9F9F6;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.37s cubic-bezier(.87,.03,.21,.97);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  box-shadow: 0 0 32px rgba(22,48,92,0.19);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #16305C;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 28px 30px 12px 0;
  cursor: pointer;
  z-index: 1003;
  transition: color 0.18s;
}
.mobile-menu-close:focus { outline: 2px solid #F4B324; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
}
.mobile-nav a {
  font-family: 'Playfair Display', Georgia, serif;
  color: #16305C;
  font-size: 1.45rem;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid #E4E8ED;
  width: 80%;
  text-align: center;
  border-radius: 8px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: #E6EDF3;
  color: #F4B324;
  outline: none;
}

@media (max-width: 600px) {
  .mobile-menu-close {margin: 16px 20px 6px 0; font-size: 2rem;}
  .mobile-nav { gap: 20px; }
  .mobile-nav a { font-size: 1.1rem; width: 92%; }
}

/* =========== HERO & BANNER =========== */
.hero {
  background: #E6EDF3;
  margin-bottom: 60px;
  padding: 50px 0 50px 0;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 2px 14px rgba(22,48,92,0.07);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero .content-wrapper {
  gap: 20px;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.6rem;
  color: #16305C;
}
.hero p {
  font-size: 1.24rem;
  color: #373B40;
  max-width: 680px;
}
@media (max-width:600px){ .hero { padding: 26px 0 26px 0; border-radius: 0 0 18px 18px; } .hero h1{ font-size:1.5rem; } }

.cta-banner, .cta-offer {
  background: #F4B324;
  color: #16305C;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(244,179,36,0.08);
  text-align: center;
  margin-bottom: 60px;
  padding: 36px 16px;
}
.cta-banner h2, .cta-offer h2 { color: #16305C; }
.cta-banner p, .cta-offer p { color: #232629; }

.cta-banner a.cta-primary, .cta-offer a.cta-primary {
  margin-left: 0;
  margin-top: 12px;
}

/* ================== FEATURES & CARDS ================== */
.features .feature-grid, .services-overview .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  justify-content: flex-start;
}
.features .feature-grid li, .services-overview .service-list li {
  background: #FFF;
  border-radius: 15px;
  box-shadow: 0 2px 11px rgba(22,48,92,0.07);
  padding: 20px 26px;
  flex: 1 1 255px;
  min-width: 240px;
  max-width: 285px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  border: 1.5px solid #E6EDF3;
  transition: box-shadow 0.2s, border 0.2s;
}
.features .feature-grid li:hover, .services-overview .service-list li:hover {
  box-shadow: 0 6px 32px rgba(22,48,92,0.12);
  border: 1.5px solid #F4B324;
  z-index: 2;
}
.features .feature-grid img, .services-overview .service-list img {
  width: 45px;
  height: 45px;
}
.features .feature-grid h3, .services-overview .service-list h3 {
  color: #16305C;
  font-size: 1.18rem;
}
.features .feature-grid p, .services-overview .service-list p {
  color: #232629;
  font-size: 1rem;
}
@media (max-width:900px) {
  .features .feature-grid, .services-overview .service-list { gap: 18px; }
  .features .feature-grid li, .services-overview .service-list li {
    min-width: 170px; max-width: 100%;
  }
}
@media (max-width:600px) {
  .features .feature-grid, .services-overview .service-list {
    flex-direction: column;
    gap: 20px;
  }
}

.categories-grid .sports-categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.categories-grid .sports-categories-grid > div {
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(22,48,92,0.07);
  border: 1px solid #E6EDF3;
  padding: 18px 18px 14px 18px;
  flex: 1 1 240px;
  min-width: 190px;
  max-width: 255px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, border 0.18s;
}
.categories-grid .sports-categories-grid > div:hover {
  border: 1px solid #F4B324;
  box-shadow: 0 5px 25px rgba(244,179,36,0.08);
  z-index: 2;
}
.categories-grid img {
  width: 40px;
  height: 40px;
}
.categories-grid h3 {
  color: #16305C;
  font-size: 1.14rem;
  margin-bottom: 0;
}
.categories-grid .target-group {
  background: #E6EDF3;
  color: #16305C;
  border-radius: 8px;
  font-size: 0.93rem;
  padding: 4px 11px;
  margin-top: 8px;
  font-family: 'Roboto', 'Georgia', serif;
}
@media (max-width:700px) {
  .categories-grid .sports-categories-grid { flex-direction: column; gap:16px; }
}

.card,
.card-container > .card {
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(22,48,92,0.08);
  margin-bottom: 20px;
  padding: 24px;
  position: relative;
  transition: box-shadow 0.18s, border 0.14s;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card:hover {
  box-shadow: 0 5px 30px rgba(22,48,92,0.14);
  border-color: #F4B324;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 20px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ================ TESTIMONIALS ================ */
.testimonials {
  background: #E6EDF3;
  border-radius: 20px;
  box-shadow: 0 2px 18px rgba(22,48,92,0.07);
  padding: 38px 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: #FFF;
  border-radius: 13px;
  box-shadow: 0 2.5px 11px rgba(22,48,92,0.08);
  margin-bottom: 20px;
  border: 1px solid #E6EDF3;
  transition: box-shadow 0.16s, border 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px rgba(244,179,36,0.06);
  border: 1.5px solid #F4B324;
}
.testimonial-card p {
  color: #232629;
  font-size: 1.05rem;
  font-family: 'Georgia', serif;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
  color: #16305C;
}
.testimonial-meta span {
  font-weight: 600;
  color: #16305C;
}
.testimonial-meta img {
  width: 19px;
  margin-left: 2px;
}
@media (max-width:700px) {
  .testimonials { padding: 18px 2px; }
  .testimonial-card { padding: 15px 8px; }
}

/* ============== SCHEDULE / TABLES ============== */
.schedule-table, .membership-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 22px;
  margin-bottom: 30px;
  font-family: 'Georgia', serif;
  background: #FFF;
  border-radius: 14px;
  overflow: hidden;
  font-size: 1.04rem;
  box-shadow: 0 2px 8px rgba(22,48,92,0.045);
}
.schedule-table th,
.schedule-table td,
.membership-table th,
.membership-table td {
  padding: 12px 10px;
  text-align: left;
}
.schedule-table th, .membership-table th {
  background: #E6EDF3;
  color: #16305C;
  font-weight: 700;
  border-bottom: 2px solid #E6EDF3;
}
.schedule-table tr:nth-child(even), .membership-table tr:nth-child(even) {
  background: #F5F6FA;
}
.schedule-table tr, .membership-table tr {
  border-bottom: 1px solid #E6EDF3;
}

.alert { 
  display: flex;
  align-items: center; 
  background: #F4B324; 
  color: #16305C; 
  border-radius: 9px;
  padding: 13px 18px; 
  font-size: 1.08rem;
  gap: 13px;
}
.alert img { width: 22px; }

.alert-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  margin: 14px 0 0 0;
}
.alert-list li {
  background: #E6EDF3;
  color: #16305C;
  font-size: 1.05rem;
  border-radius: 7px;
  padding: 8px 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.alert-list img { width: 20px; }

.difficulty-key {
  background: #E6EDF3;
  border-radius: 9px;
  padding: 14px 18px;
  margin-top: 7px;
}
.difficulty-key ul {
  margin: 6px 0 0 18px;
  font-size: 1rem;
}

.messenger-link {
  background: none;
  color: #16305C;
  border: 1px solid #16305C;
  border-radius: 24px;
  padding: 9px 25px;
  margin-top: 9px;
  font-size: 1.04rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s, color 0.17s;
}
.messenger-link:hover, .messenger-link:focus {
  background: #16305C;
  color: #FFF;
}

/* ================ CONTACT PREVIEW & BUTTONS ================ */
.contact-preview, .contact-section, .cta-contact {
  background: #E6EDF3;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(22,48,92,0.06);
  padding: 26px 0;
}
.contact-button {
  background: #16305C;
  color: #FFF !important;
  font-family: 'Playfair Display', Georgia, serif;
  border: none;
  border-radius: 22px;
  padding: 11px 28px 11px 18px;
  margin-right: 0;
  margin-bottom: 12px;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.17s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(22,48,92,0.08);
  cursor: pointer;
}
.contact-button:hover, .contact-button:focus {
  background: #F4B324;
  color: #16305C !important;
}
.map-link {
  color: #16305C;
  background: transparent;
  border: 1px solid #16305C;
  border-radius: 21px;
  padding: 10px 25px 10px 18px;
  margin-top: 7px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.02rem;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  transition: background 0.14s, color 0.17s;
}
.map-link:hover, .map-link:focus {
  background: #16305C;
  color: #FFF;
  outline: none;
}
.location-map {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  background: #FFF;
  border-radius: 10px;
  box-shadow: 0 2px 11px rgba(22,48,92,0.07);
  padding: 13px 18px;
}
.location-map img { width: 27px; }
.contact-info-list {
  list-style: none;
  margin-bottom: 6px;
  padding-left: 0;
}
.contact-info-list li {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

/* ============= THANK YOU SCREEN ============= */
.thank-you-section {
  background: #E6EDF3;
  border-radius: 22px;
  box-shadow: 0 3px 14px rgba(22,48,92,0.07);
  text-align: center;
  padding: 46px 18px;
}
.thank-you-section ul {
  margin: 22px 0 22px 16px;
  text-align: left;
}

/* ============= LEGAL & TEXT SECTIONS ============= */
.legal-section {
  background: #FFF;
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(22,48,92,0.06);
}
.text-section h2, .text-section h3 {
  margin-top: 18px;
}
.text-section ul {
  margin-bottom: 1em;
  margin-top: 8px;
}
.text-section p, .text-section li {
  color: #373B40;
  font-size: 1rem;
}

/* ================ FOOTER =================*/
footer {
  background: #16305C;
  color: #FFF;
  padding: 26px 0 13px 0;
  font-size: 0.99rem;
  width: 100%;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}
.footer-nav {
  display: flex;
  gap: 32px;
  flex: 1 1 0%;
  align-items: flex-start;
}
.footer-nav a {
  color: #FFF;
  text-decoration: underline;
  border: none;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  transition: color 0.1s;
  padding: 4px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F4B324;
  text-decoration: none;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #FFF;
  flex: 2 1 0%;
}
.footer-contact address, .footer-contact span {
  color: #ECECF0;
  font-style: normal;
  font-size: 0.97rem;
}
.footer-logo {
  flex: 0 0 auto;
  align-self: flex-start;
}
.footer-logo img { width: 54px; }
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
  }
  .footer-nav { gap:16px; flex-wrap:wrap; }
  .footer-logo img { width: 38px; }
}

/* ================ COOKIE CONSENT BANNER ================ */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #16305C;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 28px 20px 26px 20px;
  z-index: 10000;
  box-shadow: 0 -1.5px 22px rgba(22,48,92,0.14);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.34s cubic-bezier(.87,.03,.21,.97), opacity 0.23s;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 740px;
  width: 100%;
  color: #FFF;
}
.cookie-banner__content p {
  color: white;
}
.cookie-banner__buttons {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}
.cookie-banner button {
  border: none;
  border-radius: 19px;
  padding: 7px 22px;
  font-size: 1.03rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
  margin-right: 0;
  margin-bottom: 0;
}
.cookie-banner .accept {
  background: #F4B324;
  color: #16305C;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #D49B1B;
}
.cookie-banner .reject {
  background: #E6EDF3;
  color: #16305C;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #C8D0DF;
}
.cookie-banner .settings {
  background: transparent;
  color: #FFF;
  border: 1px solid #FFF;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #FFF;
  color: #16305C;
}
@media (max-width: 700px) {
  .cookie-banner__content { max-width:97vw; }
  .cookie-banner__buttons { flex-direction: column; gap:7px; align-items: flex-start; }
  .cookie-banner { padding:17px 2vw; }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(35,38,41,0.48);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #FFF;
  color: #232629;
  padding: 36px 32px 22px 32px;
  border-radius: 16px;
  box-shadow: 0 8px 44px rgba(22,48,92,0.17);
  min-width: 320px;
  max-width: 96vw;
  width: 440px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.34rem;
  color: #16305C;
  margin-bottom: 6px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category label {
  font-size: 1.03rem;
  color: #232629;
  font-family: 'Georgia', serif;
}
.cookie-category input[type="checkbox"] {
  accent-color: #F4B324;
  width: 19px;
  height: 19px;
  border-radius: 5px;
  border: 1.5px solid #16305C;
  margin-right: 4px;
}
.cookie-category input[type="checkbox"][disabled] {
  accent-color: #B1B6BC;
  opacity: 0.75;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal .save {
  background: #16305C;
  color: #FFF;
}
.cookie-modal .save:hover, .cookie-modal .save:focus {
  background: #F4B324;
  color: #16305C;
}
.cookie-modal .cancel {
  background: #E6EDF3;
  color: #16305C;
}
.cookie-modal .cancel:hover, .cookie-modal .cancel:focus {
  background: #16305C;
  color: #FFF;
}
.cookie-modal .close-btn {
  background: none;
  border: none;
  color: #16305C;
  font-size: 2rem;
  position: absolute;
  right: 17px;
  top: 15px;
  cursor: pointer;
  z-index: 2;
}
@media (max-width: 600px) {
  .cookie-modal { padding:16px 4vw 14px 4vw; width:90vw; min-width: unset; }
}

/* ================= ANIMATION/MICRO-INTERACTIONS =================== */
.card, .testimonial-card, .feature-item, .categories-grid .sports-categories-grid > div {
  transition: box-shadow 0.18s, border 0.18s;
}
.cta-primary, .cta-secondary, .contact-button, .map-link, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner button {
  transition: background 0.14s, color 0.14s, box-shadow 0.16s;
}
.mobile-menu, .cookie-banner, .cookie-modal-overlay {
  will-change: transform, opacity;
}

/* =========== OTHER UTILITIES =========== */
::-webkit-scrollbar {width: 9px; background: #E6EDF3;}
::-webkit-scrollbar-thumb {background: #CCCCD4; border-radius: 7px;}
::selection { background: #F4B324; color: #FFF; }

/* =========== RESPONSIVE TYPOGRAPHY SCALE =========== */
@media (max-width: 900px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.14rem; }
}

/* =========== SPACING / SECTION RULES =========== */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.content-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.text-image-section { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* =========== ACCESSIBLE FOCUS OUTLINES =========== */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline: 2px solid #F4B324 !important;
  outline-offset: 2px;
}

/* Hide duplicated headings visually for screenreaders (if needed) */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}

/* =========== PRINT STYLES =========== */
@media print {
  header, footer, .cookie-banner, .mobile-menu, .mobile-menu-toggle { display: none !important; }
  section, .section { box-shadow:none; border-radius:0; }
}
