/* ===================================================================
   Crimson Vista Sportclub | LUXURY PREMIUM CSS
   Author: Senior CSS Dev | All layouts are Flexbox only
   Brand: Crimson Vista Sportclub
   =================================================================== */

/* =====================
   0. RESET & NORMALIZE
   ===================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F4F6F8;
  color: #212329;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  border: none;
  background: none;
}


/* =============================================
   1. BRAND COLORS AND FONT CLASSES (FALLBACKS)
   ============================================= */
:root {
  --brand-primary: #93001A;
  --brand-secondary: #1C232B;
  --brand-accent: #F4F6F8;
  --lux-gold: #D6B076;
  --lux-gold-soft: #EFE1C6;
  --gray-100: #F7F7F7;
  --gray-200: #EDEDED;
  --gray-300: #CFCFCF;
  --gray-800: #232426;
  --header-height: 88px;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: var(--brand-secondary);
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: #eee;
}


/* ========================
   2. TYPOGRAPHY—PREMIUM
   ======================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,600,700&display=swap');

h1, .h1 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
@media (max-width: 768px) {
  h1, .h1 { font-size: 2rem; }
}

h2, .h2 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--brand-secondary);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  h2, .h2 { font-size: 1.6rem; }
}

h3, .h3 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--brand-primary);
  margin-bottom: 8px;
}
h4, .h4 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

p, li {
  font-size: 1rem;
  color: var(--brand-secondary);
}
.subheadline {
  font-size: 1.25rem;
  color: var(--gray-800);
  margin-bottom: 32px;
}
strong {
  font-weight: 600;
}


/* ======================
   3. PAGE LAYOUT STRUCTURE
   ====================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 32px 0 rgba(30,40,60, 0.10);
}

@media (max-width: 950px) {
  .container { padding-left: 14px; padding-right: 14px; }
}
@media (max-width: 768px) {
  .container { padding-left: 6px; padding-right: 6px; }
  .section { padding: 26px 5px; margin-bottom: 32px; }
}

main section {
  margin-bottom: 60px;
}

/* ==========================
   4. HEADER & NAVIGATION
   ========================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(30,40,60, 0.03);
  position: sticky;
  top: 0;
  z-index: 101;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 22px;
}
.logo-link img {
  height: 48px;
  width: auto;
  display: block;
  transition: transform .18s;
}
.logo-link:hover img {
  transform: scale(1.09);
  filter: drop-shadow(0 2px 8px #E8D6B2);
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  padding: 4px 4px 2px 4px;
  color: var(--brand-secondary);
  font-weight: 600;
  letter-spacing: 0.01em;
  border-bottom: 2px solid transparent;
  transition: color .13s, border-color .18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--brand-primary);
  border-bottom: 2px solid var(--lux-gold);
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 32px;
  padding: 12px 36px;
  font-size: 1.1rem;
  min-width: 48px;
  background: var(--lux-gold);
  color: var(--brand-secondary);
  border: none;
  box-shadow: 0 1px 7px 0 rgba(30,40,60, 0.09);
  cursor: pointer;
  transition: background .18s, color .11s, box-shadow .2s, transform .11s;
  margin-left: 18px;
  margin-right: 0px;
  text-shadow: 0 1px 1px #fff8c6cc;
  position: relative;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 2px 18px 0 rgba(146,0,26,0.12), 0 0px 0 2px var(--lux-gold-soft);
  transform: translateY(-1px) scale(1.035);
}
.btn-secondary {
  background: transparent;
  color: var(--brand-primary);
  border: 2px solid var(--lux-gold);
  box-shadow: none;
  margin-top: 12px;
  margin-bottom: 0;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--lux-gold);
  color: var(--brand-secondary);
  border-color: var(--brand-primary);
  transform: translateY(-1px) scale(1.025);
}


/* ==============================
   5. MOBILE NAVIGATION BURGER
   ============================== */
.mobile-menu-toggle {
  display: none;
  background: var(--lux-gold);
  color: var(--brand-secondary);
  font-size: 2rem;
  border-radius: 18px;
  padding: 6px 20px;
  margin-left: 10px;
  cursor: pointer;
  border: none;
  transition: background .2s, color .2s, box-shadow .14s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 2px 16px #D6B07633;
}
@media (max-width: 1080px) {
  .main-nav, .btn-primary {
    display: none!important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  bottom: 0;
  background: rgba(28,35,43,0.97);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100vw;
  height: 100vh;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.8,.12,.3,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  border: none;
  font-size: 2.3rem;
  margin: 20px 0 30px 20px;
  align-self: flex-end;
  cursor: pointer;
  transition: color .17s;
}
.mobile-menu-close:hover { color: var(--lux-gold); }
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 16px 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
  transition: color .2s;
  border-bottom: 2px solid transparent;
  padding: 7px 0;
  width: 100%;
  display: block;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--lux-gold);
  border-bottom: 2px solid var(--lux-gold);
}

@media (min-width: 1081px) {
 .mobile-menu, .mobile-menu-toggle { display: none!important; }
}


/* =====================
   6. HERO SECTION
   ===================== */
.hero, .hero-probetraining {
  background: linear-gradient(92deg,#fff 60%, #F7F0E7 100%);
  padding: 54px 0 56px 0;
  margin-bottom: 0px;
}
.hero .container, .hero-probetraining .container {
  align-items: flex-start;
  justify-content: center;
  min-height: 350px;
}
.hero .content-wrapper, .hero-probetraining .content-wrapper {
  max-width: 750px;
  margin: 0 auto;
  align-items: flex-start;
  gap: 24px;
}
.hero h1, .hero-probetraining h1 {
  color: var(--brand-primary);
  text-shadow: 0 2px 24px #EDEDED77;
  font-size: 2.8rem;
}
.hero p, .hero-probetraining p {
  color: var(--brand-secondary);
}

@media (max-width: 768px) {
  .hero, .hero-probetraining {
    padding: 32px 0 24px 0;
  }
  .hero .content-wrapper, .hero-probetraining .content-wrapper {
    max-width: unset; padding-left: 0; padding-right: 0;
  }
}


/* =====================================
   7. FLEXBOX LAYOUTS—Section Patterns
   ===================================== */
.features, .feature-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.feature-grid {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.feature-item {
  background: #fff;
  border: 1.5px solid var(--lux-gold-soft);
  border-radius: 18px;
  padding: 28px 20px 20px 20px;
  min-width: 220px;
  flex: 1 1 225px;
  box-shadow: 0 6px 28px 0 rgba(30,30,30,0.045);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow .19s, border-color .14s, transform .15s;
  position: relative;
}
.feature-item img {
  width: 42px; height: 42px;
  filter: drop-shadow(0 1px 4px #E0D2B2);
  margin-bottom: 7px;
}
.feature-item:hover, .feature-item:focus {
  border-color: var(--lux-gold);
  box-shadow: 0 10px 32px 0 rgba(214,176,118,0.12),0 1px 1px 0 var(--lux-gold-soft);
  transform: translateY(-3px) scale(1.03);
}

@media (max-width: 900px) {
  .feature-grid { flex-direction: column; gap: 18px; }
  .feature-item { min-width: 0; }
}


/* ================================
   8. LISTS & GENERAL SECTIONS
   ================================ */
.usp-list, .service-list, .news-snippet-list, .news-items, .faq-list, .update-list, .benefit-points, .benefit-list, .facility-highlights, .sport-types-list {
  margin-top: 0;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.usp-list li:before, .service-list li:before, .benefit-list li:before, .benefit-points li:before, .sport-types-list li:before, .update-list li:before, .faq-list li:before, .facility-highlights li:before {
  content: '';
  display: inline-block;
  width: 11px;
  height: 11px;
  background: var(--lux-gold);
  border-radius: 50%;
  margin-right: 12px;
  vertical-align: middle;
}
.news-snippet-list li:before {
  content: "• "; color: var(--brand-primary); font-size: 1.1em; font-weight: 700;
}


/* ===============================
   9. CARD, CTA & FLEX CONTAINERS
   =============================== */
.card-container,
.card-content,
.card-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border: 1.5px solid var(--lux-gold-soft);
  border-radius: 20px;
  min-width: 220px;
  box-shadow: 0 7px 28px 0 rgba(190,170,120,0.08);
  padding: 33px 23px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .15s, border-color .13s, transform .12s;
}
.card:hover, .card:focus {
  border-color: var(--lux-gold);
  box-shadow: 0 12px 36px 0 rgba(214,176,118,0.17), 0 2px 2px 0 #efe1c6;
  transform: translateY(-3px) scale(1.025);
  z-index: 2;
}
@media (max-width: 900px) {
  .card-container, .card-grid, .content-grid { flex-direction: column; gap: 18px; }
}

.cta-section {
  background: var(--brand-primary);
  color: #fff;
  border-radius: 22px;
  margin-top: 16px;
  margin-bottom: 60px;
  box-shadow: 0 3px 24px 0 #93001a33;
}
.cta-section .content-wrapper {
  align-items: center; text-align: center;
  gap: 18px;
}
.cta-section h2 { color: #fff; }
.cta-section p { color: #f4f4ee; }
.cta-section .btn-primary {
  margin: 0 auto;
}


/* ==========================
   10. INFO & LEGAL SECTIONS
   ========================== */
.legal {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 5px 24px 0 #D6B07612;
  margin: 44px 0;
  padding: 44px 20px;
}
.legal h1, .legal h2 {
  color: var(--brand-primary);
}
.legal ul {
  margin: 24px 0 24px 0;
  display: flex; flex-direction: column; gap: 12px;
}
@media (max-width: 768px) {
  .legal { margin: 22px 0; padding: 22px 6px; }
}


/* ===========================
   11. TESTIMONIALS & ALERTS
   =========================== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: var(--lux-gold-soft);
  border: 1.5px solid var(--lux-gold);
  border-radius: 16px;
  padding: 18px 24px;
  margin: 18px 0 18px 0;
  box-shadow: 0 4px 16px 0 rgba(214,176,118,0.10);
  color: var(--brand-secondary);
}
.testimonial-card p {
  color: var(--brand-secondary);
  font-size: 1.15rem;
  font-weight: 500;
}
.testimonial-author {
  font-size: 1.05rem;
  color: var(--brand-primary);
  font-weight: 600;
}

.alert-banners {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.alert {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff3e2;
  border-left: 6px solid var(--lux-gold);
  border-radius: 13px;
  padding: 12px 22px;
  color: var(--brand-primary);
  font-size: 1.08rem;
  box-shadow: 0 2px 12px #efe1c611;
}
.alert.urgent {
  background: #ffe9e9;
  color: #a10020;
  border-color: var(--brand-primary);
  font-weight: 700;
}
.alert img {
  width: 26px; height: 26px; margin-right: 7px;
}


/* =============================
   12. FOOTER & SOCIAL LINKS
   ============================= */
footer {
  width: 100%;
  background: var(--brand-secondary);
  color: #fff;
  padding: 44px 0 18px 0;
  box-shadow: 0 -4px 24px #D6B0760C;
  border-top: 2px solid var(--lux-gold-soft);
  margin-top: 40px;
}
footer .container {
  flex-direction: column;
  gap: 24px;
}
.footer-navigation {
  display: flex;
  flex-direction: row;
  gap: 44px;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.footer-main-links, .footer-legal-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-main-links a, .footer-legal-links a {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  font-size: 1.01rem;
  opacity: 0.92;
  transition: color .18s, opacity .12s;
}
.footer-main-links a:hover, .footer-legal-links a:hover {
  color: var(--lux-gold);
  opacity: 1;
}
.footer-contact {
  margin-top: 12px;
  font-size: 0.97rem;
  color: #fff;
  opacity: 0.95;
}
.footer-contact a {
  color: var(--lux-gold);
  text-decoration: underline;
  font-weight: 600;
  transition: color .18s;
}
.footer-contact a:hover { color: #fff; }
.footer-social-media {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.footer-social-media a img {
  height: 31px; width: 31px; border-radius: 50%; box-shadow: 0 2px 7px #0001;
  background: #fff;
  padding: 5px;
  transition: box-shadow .15s;
}
.footer-social-media a:hover img {
  box-shadow: 0 4px 18px var(--lux-gold);
}

.footer-bottom {
  padding: 11px 0 0 0;
  text-align: right;
  font-size: 0.95rem;
  color: var(--lux-gold);
  opacity: 0.83;
}
@media (max-width: 900px) {
  .footer-navigation {
    flex-direction: column;
    gap: 18px;
    justify-content: flex-start;
  }
}
@media (max-width: 670px) {
  footer { padding: 28px 0 11px 0; }
  .footer-bottom { text-align: left; padding-top: 8px; }
}


/* =====================
   13. RESPONSIVE STACKS
   ===================== */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: stretch; gap: 18px; }
}

.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* Mandatory classes for spacing/alignment (padding duplicated for override) */
.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; }

@media (max-width: 768px) {
  .section { margin-bottom: 32px; padding: 22px 6px; }
  .card-container, .content-grid { flex-direction: column; gap: 15px; }
}


/* =============================
   14. BADGES, TAGS, MISC DETAILS
   ============================= */
.news-meta span {
  background: var(--lux-gold-soft);
  color: var(--brand-secondary);
  font-size: 0.98em;
  border-radius: 8px;
  padding: 3px 13px;
  margin-right: 6px;
  margin-bottom: 0;
  font-weight: 500;
}

.date-filter {
  font-size: 1.02em;
  color: #7C715C;
  margin: 9px 0 0 0;
  padding: 0 0 4px 2px;
}
.calendar-view {
  background: #f4f2ee;
  border-radius: 10px;
  padding: 15px 18px;
  font-size: 1.05rem;
  margin: 10px 0 22px 0;
  color: var(--brand-secondary);
}

/* ======================
   15. COOKIE CONSENT BAR
   ====================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fffefb;
  color: var(--brand-secondary);
  border-top: 2px solid var(--lux-gold);
  box-shadow: 0 -3px 32px #b08e3c22;
  z-index: 15000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  gap: 28px;
  min-height: 65px;
  animation: cookieIn .45s cubic-bezier(.1,.6,.25,1);
}
@keyframes cookieIn {
  0% { transform: translateY(100%); opacity: 0; }
  85% { transform: translateY(-6px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex: 2 1 360px;
  font-size: 1.07em;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 24px;
  padding: 8px 22px;
  min-width: 90px;
  transition: background .16s, color .13s, border .13s;
  cursor: pointer;
  outline: none;
  border: 2px solid var(--lux-gold);
  margin-right: 0;
}
.cookie-accept {
  background: var(--lux-gold);
  color: var(--brand-secondary);
  border: 2px solid var(--lux-gold);
  font-weight: 700;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: var(--brand-primary);
  color: #fff;
}
.cookie-reject {
  background: #fff;
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
}
.cookie-reject:hover {
  background: var(--lux-gold);
  color: var(--brand-secondary);
  border: 2px solid var(--lux-gold);
}
.cookie-settings {
  background: #fff;
  color: var(--brand-secondary);
  border: 2px solid var(--lux-gold);
}
.cookie-settings:hover {
  background: var(--lux-gold-soft);
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 18px 8px;
  }
  .cookie-banner .cookie-buttons {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
}

/* Cookie Preferences Modal */
.cookie-modal-backdrop {
  content: '';
  position: fixed;
  z-index: 20000;
  left: 0; top: 0;
  right: 0; bottom: 0;
  background: rgba(28,35,43, 0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .32s;
}
.cookie-modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 48px #1C232B40;
  min-width: 350px;
  max-width: 94vw;
  padding: 40px 32px 29px 32px;
  z-index: 20001;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  animation: modalDrop .4s cubic-bezier(.6,1.2,.21,1);
}
@keyframes modalDrop {
  0% {transform: translateY(-64px) scale(.99); opacity:0;}
  70% {transform: translateY(7px) scale(1.01); opacity:.98;}
  100% {transform: translateY(0) scale(1); opacity:1;}
}
.cookie-modal h2 {
  color: var(--brand-primary);
  margin-bottom: 8px;
}
.cookie-modal ul {
  display: flex;
  flex-direction: column; gap: 10px; margin-top: 6px;
}
.cookie-modal li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-modal li label {
  font-size: 1.09em;
  color: var(--brand-secondary);
}
.cookie-toggle {
  display: inline-block;
  width: 36px; height: 20px;
  background: #e0d2a8;
  border-radius: 20px;
  position: relative;
  transition: background .17s;
  margin-left: 10px;
  margin-right: 8px;
}
.cookie-toggle[aria-checked="true"] {
  background: var(--brand-primary);
}
.cookie-toggle-knob {
  position: absolute; left: 2px; top: 2px;
  width: 16px; height: 16px;
  border-radius: 50%; background: #fff;
  transition: left .18s, background .16s;
}
.cookie-toggle[aria-checked="true"] .cookie-toggle-knob {
  left: 18px; background: var(--lux-gold);
}
.cookie-essential {
  opacity: .77;
  font-style: italic;
  color: var(--brand-secondary);
}
.cookie-modal-actions {
  display: flex; flex-direction: row; gap: 18px; margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  font-size: 1rem; padding: 10px 26px; border-radius: 21px;
  border: 2px solid var(--lux-gold);
  transition: background .13s, color .13s;
}
.cookie-modal-actions .cookie-accept {
  background: var(--lux-gold);
  color: var(--brand-secondary); font-weight: 700;
}
.cookie-modal-actions .cookie-reject {
  color: var(--brand-primary);
  background: #fff;
  border-color: var(--brand-primary);
}
.cookie-modal-actions .cookie-settings {
  background: #fff;
  color: var(--brand-secondary);
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: transparent;
  color: var(--brand-primary);
  font-size: 2rem;
  border: none;
  cursor: pointer;
  transition: color .14s;
}
.cookie-modal-close:hover { color: var(--lux-gold); }
@media (max-width: 576px) {
  .cookie-modal { min-width: 0; max-width: 98vw; padding: 22px 6px 19px 6px; }
}


/* ======================
   16. FORMS & CONTACT US
   ===================== */
.address-block {
  background: #fff;
  border: 1.5px solid var(--lux-gold-soft);
  border-radius: 16px;
  box-shadow: 0 3px 14px #cbb38919;
  padding: 25px 20px;
  margin-bottom: 22px;
}
.map-embed {
  background: #F4F6F8;
  padding: 12px 15px;
  border-radius: 8px;
  color: var(--brand-secondary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.map-embed img {
  width: 34px; height: 34px;
}
.contact-options ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-options li {
  display: flex;
  align-items: center;
  gap: 7px;
}
.contact-options img {
  width: 22px; height: 22px;
}

/* FAQ */
.faq, .faq-section {
  background: var(--lux-gold-soft);
  border-radius: 16px;
  padding: 19px 20px;
  margin-bottom: 17px;
}
.help-text {
  background: #fff0d5;
  border-radius: 8px;
  color: var(--brand-secondary);
  padding: 8px 15px;
}

/* ===================
   17. ANIMATIONS
   =================== */
.btn-primary, .btn-secondary, .mobile-menu-toggle, .cookie-banner button, .cookie-modal button {
  transition: background 0.17s, color 0.14s, box-shadow 0.17s, transform 0.11s;
}

/* ===================
   18. MISC & UTILITIES
   =================== */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-8 { margin-top: 8px !important; }
.mb-8 { margin-bottom: 8px !important; }
.mt-16 { margin-top: 16px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mt-32 { margin-top: 32px !important; }
.mb-32 { margin-bottom: 32px !important; }
.rounded {
  border-radius: 8px !important;
}
.text-center { text-align: center !important; }

/* Hide visually but keep accessible (for cookie switches) */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ===================
   19. PRINT (optional)
   =================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-backdrop { display: none !important; }
  main { color: #000; background: #fff; }
}

