/* =======================================================
   RESET & NORMALIZE
======================================================= */
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; margin: 0; padding: 0; border: 0; outline: none; }
body { min-height: 100vh; background: #F2F2F2; color: #1D223A; font-family: 'Roboto', Arial, sans-serif; font-size: 16px; line-height: 1.6; font-weight: 400; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { padding-left: 1.2em; margin-bottom: 16px; }
li { margin-bottom: 8px; }
h1, h2, h3, h4, h5, h6 { font-family: 'Oswald', Arial, sans-serif; font-weight: 700; color: #1D223A; letter-spacing: 0.02em; }
h1 { font-size: 2.4rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.4rem; margin-bottom: 15px; }
h4 { font-size: 1.25rem; margin-bottom: 12px; }
p { margin-bottom: 18px; }
table { border-collapse: collapse; width: 100%; margin-bottom: 24px; }
th, td { padding: 12px 14px; border-bottom: 2px solid #E6E6E6; text-align: left; font-size: 1em; }
th { background: #F2F2F2; font-family: 'Oswald', Arial, sans-serif; font-weight: 600; letter-spacing: 0.02em; color: #1D223A; }

/* =======================================================
   BRAND COLORS & FONTS
======================================================= */
:root {
  --primary: #1D223A;
  --secondary: #E62429;
  --accent: #F2F2F2;
  --white: #fff;
  --black: #121212;
  --card-radius: 18px;
  --card-shadow: 0 3px 18px rgba(29,34,58,0.08);
  --focus-ring: 0 0 0 3px rgba(230,36,41,0.14);
}

body { background: var(--accent); color: var(--primary); }

/* Ensure font load from Google Fonts if not loaded elsewhere */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;700&family=Roboto:wght@400;500;700&display=swap');

/* =======================================================
   CONTAINER, LAYOUT, GRID STRUCTURE (Flex Only)
======================================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
}

.section:last-child,
section:last-child { margin-bottom: 0; }

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 24px;
  min-width: 260px;
  flex: 1 1 260px;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 6px 26px rgba(29,34,58,0.13); }

.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;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F8F9FA;
  border-left: 6px solid var(--secondary);
  box-shadow: 0 2px 8px rgba(29,34,58,0.05);
  border-radius: 14px;
  margin-bottom: 20px;
  font-size: 1rem;
  transition: box-shadow 0.15s;
}
.testimonial-card p {
  color: #232A41;
  font-weight: 500;
  margin-bottom: 0;
}
.testimonial-card span {
  color: #5B5D6C;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(29,34,58,0.13);
}

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

/* Feature grid (custom, per /) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  width: 100%;
  padding-left: 0;
  list-style: none;
}
.feature-grid li {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 300px;
  background: var(--accent);
  border-radius: 14px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 20px;
  margin-bottom: 0;
}
.feature-grid li img {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
}
.feature-grid li h3 {
  font-size: 1.1rem;
  margin-bottom: 7px;
}

/* News preview (index) */
.news-list-preview,
.news-article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
  margin-bottom: 24px;
}
.news-list-preview li,
.news-article-list li {
  background: #fff;
  box-shadow: var(--card-shadow);
  border-radius: 12px;
  padding: 16px 18px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news-list-preview li h3,
.news-article-list li h3 {
  font-size: 1.05rem;
  margin-bottom: 7px;
}

.teams-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-left: 0;
  list-style-type: none;
  margin-top: 24px;
  margin-bottom: 24px;
}
.teams-grid li {
  flex: 1 1 220px;
  min-width: 220px;
  background: var(--white);
  box-shadow: var(--card-shadow);
  border-radius: 13px;
  padding: 14px 18px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.05rem;
  margin-bottom: 0;
}

.calendar-filter,
.news-filters,
.team-filters {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.calendar-filter input[type=date],
.news-filters input[type=search],
.team-filters input[type=search],
.news-filters select,
.team-filters select {
  padding: 8px 14px;
  border-radius: 7px;
  border: 1.5px solid #CBD3E8;
  background: var(--accent);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}

.table-switcher {
  display: flex;
  gap: 12px;
  margin: 18px 0;
}
.table-switcher button {
  font-family: 'Oswald', Arial, sans-serif;
  padding: 7px 18px;
  border-radius: 7px;
  background: var(--accent);
  border: 2px solid var(--secondary);
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.19s, color 0.19s, box-shadow 0.19s;
}
.table-switcher button:hover,
.table-switcher button:focus { color: #fff; background: var(--secondary); box-shadow: 0 2px 10px rgba(230,36,41,0.08); }

/* ================================================
   TYPOGRAPHY HIERARCHY
================================================ */
::-webkit-input-placeholder { color: #676B88; opacity: 0.99; }
::-moz-placeholder { color: #676B88; opacity: 0.99; }
:-ms-input-placeholder { color: #676B88; opacity: 0.99; }
::placeholder { color: #676B88; opacity: 0.99; }

h1, .logo, .footer-brand p {
  font-family: 'Oswald', Arial, sans-serif;
  letter-spacing: 0.01em;
}

h1 { font-size: 2.4rem; line-height: 1.13; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.4rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.08rem; }
}

.btn-primary, .btn-secondary, .newsletter button, .content-wrapper button[type="submit"] {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 13px 32px;
  cursor: pointer;
  border: none;
  min-width: 170px;
  transition: background 0.19s, color 0.19s, box-shadow 0.17s;
  margin: 10px 0 0 0;
  box-shadow: 0 2px 10px rgba(29,34,58,0.10);
}
.btn-primary {
  background: var(--secondary);
  color: #fff;
  border: 2px solid var(--secondary);
}
.btn-primary:hover, .btn-primary:focus {
  background: #bc1d1c;
  border-color: #a11a19;
  color: #fff;
  box-shadow: 0 4px 20px rgba(230,36,41,0.13);
}
.btn-secondary {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #15182A;
  border-color: #15182A;
  color: #fff;
  box-shadow: 0 4px 20px rgba(29,34,58,0.12);
}

a.btn-primary, a.btn-secondary { text-decoration: none; }

.newsletter input[type=email],
.newsletter input[type=text] {
  padding: 13px 18px;
  border-radius: 7px;
  border: 1.5px solid #CBD3E8;
  font-size: 1rem;
  margin-right: 14px;
  font-family: 'Roboto', Arial, sans-serif;
}
.newsletter button {
  background: var(--secondary);
  color: #fff;
  border: 2px solid var(--secondary);
}
.newsletter button:hover { background: #bc1d1c; border-color: #a11a19; }

/* =======================================================
   HEADER & NAVIGATION
======================================================= */
header {
  background: var(--primary);
  color: #fff;
  padding: 0;
  margin-bottom: 0;
  min-height: 70px;
  box-shadow: 0 2px 12px rgba(29,34,58,0.07);
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: relative;
}
.logo img, .footer-brand img { height: 42px; width: auto; display: block; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  padding: 0 8px;
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: relative;
  transition: color 0.13s;
}
.main-nav a:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2.5px;
  background: var(--secondary);
  border-radius: 2.5px;
  transition: width 0.22s;
}
.main-nav a:hover,.main-nav a:focus {
  color: var(--secondary);
}
.main-nav a:hover:after, .main-nav a:focus:after { width: 100%; }

.btn-primary { margin-left: 20px; }

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #fff;
  background: none;
  cursor: pointer;
  outline: none;
  margin-left: 20px;
  transition: color 0.15s;
}
.mobile-menu-toggle:focus { color: var(--secondary); }

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(29,34,58,0.97);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.9,.03,.69,.94);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  color: #fff;
  background: none;
  margin: 20px 24px 14px;
  border: none;
  cursor: pointer;
  transition: color 0.14s;
}
.mobile-menu-close:focus { color: var(--secondary); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 24px 36px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 8px 4px;
  border-radius: 8px;
  transition: background 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
  background: #22263E;
}

@media (max-width: 1024px) {
  .container {
    max-width: 97vw;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 960px) {
  .main-nav { gap: 16px; }
  .btn-primary { min-width: 120px; font-size: 1rem; padding: 11px 20px; margin-left: 10px; }
  header .container { padding-right: 8px; }
}
@media (max-width: 880px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: inline-flex; }
  .btn-primary { display: none; }
}

@media (max-width: 660px) {
  .mobile-nav { font-size: 1.2rem; gap: 18px; padding: 18px 18px; }
  .mobile-menu-close { font-size: 1.5rem; margin: 13px 12px 10px; }
}

/* =======================================================
   HERO / CTA / SPECIAL BLOCKS
======================================================= */
.hero {
  background: linear-gradient(112deg,#fff 81%,var(--secondary) 200%);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 68px;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
}
.hero .container { padding-top: 40px; padding-bottom: 40px; }
.hero .content-wrapper { max-width: 670px; }
.hero h1 { font-size: 2.7rem; color: var(--primary); margin-bottom: 22px; }
@media (max-width: 960px) {
  .hero { min-height: 220px; }
  .hero h1 { font-size: 2.1rem; }
}
@media (max-width: 680px) {
  .hero { padding: 20px 0; }
  .hero h1 { font-size: 1.3rem; }
}

.cta, .call-to-action {
  background: var(--secondary);
  color: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.cta h2, .call-to-action h2 { color: #fff; font-size: 1.7rem; }
.cta p, .call-to-action p { color: #fff; }
.cta .btn-primary, .call-to-action .btn-primary, .call-to-action .btn-secondary { background: #fff; color: var(--secondary); border: 2px solid #fff; }
.cta .btn-primary:hover, .call-to-action .btn-primary:hover, .call-to-action .btn-secondary:hover { background: #fff; color: #bc1d1c; border-color: #fff; }

/* =======================================================
   TABLES, SPECIAL TABLES
======================================================= */
.next-matches-table, .fixtures-table {
  background: #F6F7FB;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 1.5px 6px rgba(29,34,58,0.07);
  width: 100%;
  margin-bottom: 28px;
}
.next-matches-table th, .next-matches-table td,
.fixtures-table th, .fixtures-table td {
  padding: 11px 12px;
  font-size: 1rem;
  border-bottom: 1.5px solid #E2E6EE;
  background: transparent;
}
.next-matches-table th, .fixtures-table th { background: #F2F2F2; font-weight: 600; }

@media (max-width: 600px) {
  .next-matches-table, .fixtures-table {
    font-size: 0.93rem;
  }
  .next-matches-table th, .next-matches-table td,
  .fixtures-table th, .fixtures-table td { padding: 8px 8px; }
}

/* =======================================================
   FOOTER
======================================================= */
footer {
  background: var(--primary);
  color: #fff;
  margin-top: 70px;
  padding: 48px 0 32px 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 240px;
}
.footer-brand p {
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.13rem;
  letter-spacing: 0.01em;
  margin-top: 8px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-width: 176px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.9;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 1.01rem;
  transition: color 0.12s, opacity 0.11s;
  padding: 2px 0;
}
.footer-nav a:hover { color: var(--secondary); opacity: 1; }
.contact-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.96rem;
  color: #DADFE8;
  min-width: 200px;
}
.contact-footer img { height: 18px; width: auto; margin-right: 8px; vertical-align: middle; }
.contact-footer p { display: flex; align-items: center; gap: 7px; margin-bottom: 0; }

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}

/* =======================================================
   MISC. CLASSES & HELPERS (SPACING, UTILITY, ETC.)
======================================================= */
.thank-you-subtext { font-size: 1.15rem; font-weight: 500; color: #44465C; margin-bottom: 22px; }

/* Responsive spacing for section, utility classes */
@media (max-width: 660px) {
  .section, section, .cta, .call-to-action {
    margin-bottom: 36px;
    padding: 24px 5px;
  }
}

/* =======================================================
   COOKIE CONSENT BANNER + MODAL
======================================================= */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1D223A;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 24px;
  z-index: 2000;
  box-shadow: 0 -2px 19px rgba(29,34,58,0.11);
  font-size: 1.01rem;
  border-radius: 20px 20px 0 0;
  animation: cookie-banner-in 0.5s 1;
  width: calc(100% - 12px);
  margin: 6px auto;
  max-width: 1170px;
}
@keyframes cookie-banner-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p { color: #fff; margin: 0 0 8px 0; flex: 2 1 260px; }
.cookie-banner-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-consent-banner button {
  font-family: 'Oswald', Arial, sans-serif;
  border-radius: 8px;
  font-size: 1.04rem;
  font-weight: 700;
  padding: 9px 22px;
  cursor: pointer;
  border: 2px solid var(--secondary);
  background: var(--secondary);
  color: #fff;
  margin-top: 0;
  transition: background 0.2s, color 0.2s;
}
.cookie-consent-banner .reject-btn {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}
.cookie-consent-banner .reject-btn:hover,
.cookie-consent-banner .reject-btn:focus {
  background: var(--secondary);
  color: #fff;
}
.cookie-consent-banner .settings-btn {
  background: var(--primary);
  color: #fff;
  border-color: #fff;
}
.cookie-consent-banner .settings-btn:hover,
.cookie-consent-banner .settings-btn:focus {
  background: #22263E;
  border-color: var(--secondary);
}

@media(max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 14px;
    padding: 24px 6px;
    font-size: 0.99rem;
  }
  .cookie-banner-actions { flex-direction: row; justify-content: flex-start; }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(29,34,58,0.59);
  z-index: 3200;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.active { opacity: 1; pointer-events: all; }
.cookie-modal {
  background: #fff;
  color: var(--primary);
  border-radius: 16px;
  box-shadow: 0 6px 38px rgba(29,34,58,0.19);
  min-width: 340px;
  max-width: 430px;
  padding: 37px 34px 30px 34px;
  position: relative;
  animation: cookie-modal-in 0.3s 1;
}
@keyframes cookie-modal-in {
  from { transform: scale(0.95) translateY(30px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 { font-size: 1.4rem; margin-bottom: 12px; font-family: 'Oswald', Arial, sans-serif; }
.cookie-modal .cookie-prefs-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.cookie-modal label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.01rem;
  color: #22253d;
  font-weight: 500;
}
.cookie-toggle {
  margin-left: auto;
  min-width: 42px;
  position: relative;
  display: inline-flex;
}
.cookie-toggle input { display: none; }
.cookie-switch {
  display: inline-block;
  width: 38px; height: 22px;
  background: #dbdbdb;
  border-radius: 22px;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-switch:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: var(--primary);
  border-radius: 50%;
  transition: 0.18s left, background 0.18s;
}
.cookie-toggle input:checked + .cookie-switch { background: var(--secondary); }
.cookie-toggle input:checked + .cookie-switch:before { left: 19px; background: #fff; }
.cookie-modal .essential { opacity: 0.56; }

.cookie-modal-close {
  position: absolute;
  top: 13px; right: 18px;
  background: none;
  font-size: 1.3rem;
  color: var(--primary);
  border: none;
  cursor: pointer;
  opacity: 0.65;
  padding: 3px;
  transition: opacity 0.15s, color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  opacity: 1;
  color: var(--secondary);
}

.cookie-modal-btns {
  display: flex;
  gap: 14px;
  margin-top: 19px;
  justify-content: flex-end;
}
.cookie-modal-btns button {
  font-family: 'Oswald', Arial, sans-serif;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  padding: 9px 18px;
  border: 2px solid var(--secondary);
  background: var(--secondary);
  color: #fff;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-modal-btns .reject-btn {
  background: transparent;
  color: var(--secondary); border-color: var(--secondary);
}
.cookie-modal-btns .reject-btn:hover { background: var(--secondary); color: #fff; }
.cookie-modal-btns .accept-btn:hover, .cookie-modal-btns .accept-btn:focus {
  background: #bc1d1c;
  border-color: #a11a19;
}

@media (max-width: 499px) {
  .cookie-modal { min-width: 0; max-width: 97vw; padding: 22px 7px 17px 9px; }
}

/* =======================================================
   ANIMATIONS & MICRO-INTERACTIONS
======================================================= */
.btn-primary, .btn-secondary, .newsletter button, .content-wrapper button[type="submit"] {
  transition: background .18s, color .18s, box-shadow .19s;
}
.card, .feature-grid li, .teams-grid li, .testimonial-card {
  transition: box-shadow .18s, transform .17s;
}
.card:hover, .feature-grid li:hover, .teams-grid li:hover, .testimonial-card:hover {
  box-shadow: 0 5px 20px rgba(29,34,58,0.18);
  transform: translateY(-2px) scale(1.018);
}

input, select, textarea {
  transition: border .13s, box-shadow .13s;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--secondary);
  box-shadow: var(--focus-ring);
}

/* =======================================================
   ACCESSIBILITY & UTILITY CLASSES
======================================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Focus ring */
a:focus, button:focus, input:focus, select:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* =======================================================
   GEOMETRIC/STRUCTURED: SHAPE ELEMENTS (OPTIONAL)
======================================================= */
/* Example geometric decorative elements if desired:
.add-geometric {
  position: absolute;
  top: -20px; right: -20px;
  width: 60px; height: 60px;
  background: var(--secondary);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 40% 100%, 0 100%);
  opacity: 0.15;
  z-index: 1;
}
*/

/* =======================================================
   PRINT
======================================================= */
@media print {
  header, footer, .btn-primary, .btn-secondary, .mobile-menu, .cookie-consent-banner { display: none !important; }
  .container { padding: 0 !important; }
  html, body { background: #fff; color: #000; }
}
