/* ----------------------------- 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, b, 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 {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #F4F1EC;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #32413C;
  font-size: 16px;
  line-height: 1.7;
}

*, *::before, *::after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
  transition: all 0.2s;
}

/* -------------------------- BRAND COLORS & FONT FAMILIES ------------------------- */
:root {
  --gw-primary: #32413C;
  --gw-secondary: #A68F5B;
  --gw-accent: #F4F1EC;
  --gw-dark: #212822;
  --gw-light: #FFF;
  --gw-grey: #E2DFD9;
  --gw-muted: #C2BA9B;
  --gw-shadow: 0 2px 20px 0 rgba(50,65,60,0.07), 0 1.5px 6px 0 rgba(166,143,91,0.03);
  --gw-radius: 16px;
  --gw-radius-small: 8px;
  --display-font: 'Merriweather', Georgia, serif;
  --body-font: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* Fallbacks for fonts */
@import url('https://fonts.googleapis.com/css?family=Merriweather:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6, .tagline {
  font-family: var(--display-font);
  color: var(--gw-primary);
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
h4 { font-size: 1.12rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.93rem; }
.tagline {
  color: var(--gw-secondary);
  font-size: 1.1rem;
  padding-left: 4px;
  font-style: italic;
  font-weight: 400;
}
p {
  margin-bottom: 14px;
}
strong, b {
  color: var(--gw-secondary);
  font-weight: bold;
}

/* ----------------------- LUXURY SPACING & CONTAINER CLASSES ---------------------- */
.container {
  width: 100%;
  max-width: 1140px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--gw-light);
  box-shadow: var(--gw-shadow);
  border-radius: var(--gw-radius);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  flex: 1 1 320px;
  min-width: 280px;
  transition: box-shadow 0.22s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 4px 30px -2px rgba(166,143,91,0.13);
  transform: translateY(-4px) scale(1.015);
}

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

/* Features grid used extensively for item displays */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--gw-light);
  border-radius: var(--gw-radius-small);
  box-shadow: 0 1.5px 6px 0 rgba(50,65,60,0.07);
  padding: 28px 20px;
  min-width: 250px;
  flex: 1 1 260px;
  margin-bottom: 8px;
  position: relative;
  border: 2px solid transparent;
  transition: border 0.18s, box-shadow 0.22s, transform 0.19s;
}
.feature-item:hover {
  border: 2px solid var(--gw-secondary);
  box-shadow: 0 4px 28px -2px rgba(50,65,60,0.14), 0 1.5px 8px 0 rgba(166,143,91,0.11);
  transform: translateY(-3px) scale(1.013);
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

/* -------------------------------- BUTTONS --------------------------------------- */
.cta-button, .cookie-banner button, .cookie-modal button {
  font-family: var(--display-font);
  font-size: 1.08rem;
  background: var(--gw-primary);
  color: var(--gw-light);
  border: none;
  border-radius: 36px;
  padding: 14px 40px;
  letter-spacing: 0.02em;
  font-weight: 700;
  box-shadow: 0 2.5px 12px 0 rgba(50,65,60, 0.07);
  cursor: pointer;
  transition: background 0.18s, transform 0.16s, box-shadow 0.22s, color 0.21s;
  margin-top: 6px;
  margin-bottom: 4px;
  outline: none;
}
.cta-button:hover, .cookie-banner .accept:hover, .cookie-banner .reject:hover {
  background: var(--gw-secondary);
  color: var(--gw-primary);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 18px 0 rgba(166,143,91,0.11);
}
.cta-button:focus {
  background: var(--gw-secondary);
  color: var(--gw-primary);
}

/* -------------------------------- NAVIGATION ------------------------------------ */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 22px;
  background: var(--gw-light);
  box-shadow: 0 2px 10px 0 rgba(50,65,60, 0.04);
  position: sticky;
  top: 0;
  z-index: 1002;
}
.branding a img {
  height: 38px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 32px;
}
.main-nav a {
  font-family: var(--display-font);
  font-size: 1rem;
  color: var(--gw-primary);
  padding: 6px 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-bottom 0.17s;
  font-weight: 600;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--gw-secondary);
  border-bottom: 2px solid var(--gw-secondary);
}

/* Hide on mobile, display as hamburger */
.mobile-menu-toggle {
  display: none;
  background: var(--gw-light);
  font-size: 2rem;
  color: var(--gw-primary);
  border-radius: 50%;
  border: 2px solid var(--gw-secondary);
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  transition: border 0.18s, background 0.16s;
  margin-left: 18px;
  z-index: 1004;
  box-shadow: 0 1.5px 6px 0 rgba(50,65,60,0.07);
}
.mobile-menu-toggle:focus {
  background: var(--gw-secondary);
  color: var(--gw-light);
  border-color: var(--gw-primary);
}

@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* --------------------- MOBILE MENU/OVERLAY STYLES ---------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 325px;
  max-width: 100vw;
  background: var(--gw-primary);
  color: var(--gw-light);
  box-shadow: 2px 0 28px 0 rgba(50,65,60,0.20);
  transform: translateX(-105%);
  transition: transform 0.36s cubic-bezier(.67,.07,.39,.97);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 38px 30px 36px 24px;
  gap: 26px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  color: var(--gw-secondary);
  background: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--gw-grey);
  color: var(--gw-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mobile-nav a {
  font-family: var(--display-font);
  color: var(--gw-light);
  font-size: 1.16rem;
  padding: 8px 0;
  border-left: 4px solid transparent;
  transition: color 0.16s, border-color 0.17s;
  font-weight: 600;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--gw-secondary);
  border-left: 4px solid var(--gw-secondary);
}
@media (max-width: 480px) {
  .mobile-menu {
    width: 92vw;
    padding: 32px 12px 24px 10px;
  }
}

/* Overlay darken background on mobile menu open */
body.menu-open::after {
  content: '';
  position: fixed;
  z-index: 1000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(50,65,60,0.43);
  pointer-events: auto;
}

/* --------------------------- TESTIMONIALS SLIDER/CARDS -------------------------- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.testimonial-card {
  background: var(--gw-light);
  box-shadow: 0 2.5px 16px 0 rgba(50,65,60,0.10);
  border-radius: var(--gw-radius);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1 1 260px;
  min-width: 220px;
  transition: box-shadow 0.18s, transform 0.19s;
  margin-bottom: 10px;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px 0 rgba(166,143,91,0.19);
  transform: translateY(-3px) scale(1.018);
}
.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 4px;
}
.testimonial-stars img {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 1.5px 1.5px rgba(50,65,60,0.04));
}
.testimonial-card p {
  color: var(--gw-dark);
  font-size: 1.05rem;
  text-align: center;
  margin: 0 0 4px;
}
.testimonial-name {
  font-family: var(--display-font);
  color: var(--gw-secondary);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.018em;
}

/* ----------------------------- FOOTER STYLES ------------------------------------ */
footer {
  background: var(--gw-primary);
  color: var(--gw-accent);
  padding: 32px 20px 16px 20px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  box-shadow: 0 -4px 38px 0 rgba(50,65,60,0.06);
  margin-top: 54px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: var(--gw-secondary);
  font-family: var(--display-font);
  font-size: 1.02rem;
  font-weight: 600;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.16s, border-bottom 0.16s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--gw-accent);
  border-bottom: 2px solid var(--gw-secondary);
}
.footer-contact {
  text-align: center;
  color: var(--gw-accent);
  font-size: 1rem;
  letter-spacing: 0.018em;
  line-height: 1.6;
}

/* --------------------------- AMENITIES & SPECIAL LISTS -------------------------- */
.amenities-list {
  background: var(--gw-grey);
  border-radius: var(--gw-radius-small);
  padding: 18px 18px 12px;
  margin-top: 12px;
  margin-bottom: 10px;
}
.amenities-list h4 {
  color: var(--gw-primary);
  font-size: 1.08rem;
  margin-bottom: 6px;
  font-weight: 700;
}
.amenities-list ul {
  margin-left: 18px;
  color: var(--gw-dark);
}

ul, ol {
  margin-bottom: 14px;
  margin-left: 28px;
  color: var(--gw-primary);
  font-size: 1em;
}
li {
  margin-bottom: 8px;
  padding-left: 0.7em;
  position: relative;
}
li:before {
  content: '\2022';
  color: var(--gw-secondary);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  font-size: 1.2em;
}

/* Remove li bullet for icon-reinforced contact list items */
.text-section ul li img {
  vertical-align: middle;
  margin-right: 8px;
}
.text-section ul li {
  list-style: none;
  padding-left: 0;
}
.text-section ul {
  margin-left: 0;
  padding-left: 0;
}

/* -------------------------- QUOTE/TAGLINE STYLES ------------------------------- */
blockquote.tagline {
  border-left: 4px solid var(--gw-secondary);
  color: var(--gw-secondary);
  font-family: var(--display-font);
  font-style: italic;
  padding-left: 12px;
  font-size: 1.14rem;
  margin: 0 0 12px 0;
}

/* ---------------------------- GENERAL SECTION SPACING -------------------------- */
main > section {
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .section {
    padding: 26px 10px;
    margin-bottom: 36px;
  }
  .content-wrapper,
  .features-grid,
  .testimonial-slider,
  .footer-nav {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: stretch !important;
  }
  .feature-item,
  .testimonial-card {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.06rem; }
  .footer-contact { font-size: 0.97rem; }
}

/* ---------------------------- CTA/SECTION BUTTONS ------------------------------ */
.content-wrapper .cta-button {
  align-self: flex-start;
  margin-top: 10px;
}
@media (max-width:600px){
  .content-wrapper .cta-button { width: 100%; text-align: center; }
}

/* ------------------------ CARD & FLEX LAYOUT HELPERS (NO GRID) ------------------ */
.card-grid,
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.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: 16px;
  }
}

/* ---------------------------- VISUAL ACCENTS & EFFECTS --------------------------- */
.card, .feature-item, .testimonial-card {
  border-radius: var(--gw-radius-small);
  box-shadow: 0 2px 14px 0 rgba(50,65,60,0.09);
  border: 1.7px solid var(--gw-grey);
  position: relative;
  background: var(--gw-light);
}
.card:after, .feature-item:after {
  content: '';
  display: block;
  position: absolute;
  left: 18px; right: 18px; top: -6px;
  height: 5px;
  background: var(--gw-secondary);
  background: linear-gradient(90deg, rgba(166,143,91,0.16) 0%,rgba(166,143,91,0.38) 40%,rgba(244,241,236,0) 80%);
  border-radius: 7px;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
}

.card:hover:after, .feature-item:hover:after {
  opacity: 0.55;
  background: linear-gradient(90deg, rgba(166,143,91,0.43) 0%,rgba(166,143,91,0.6) 48%,rgba(244,241,236,0) 100%);
}

/* For icons with gold accent bg */
.feature-item img {
  background: linear-gradient(135deg, #F7E4B1 45%, #A68F5B 100%);
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(166,143,91,0.04);
  padding: 7px;
}

/* ---------------------------- Cookie Consent Banner ------------------------ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4000;
  background: var(--gw-light);
  color: var(--gw-primary);
  box-shadow: 0 -2px 24px 0 rgba(50,65,60,0.13);
  border-top: 2.5px solid var(--gw-secondary);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
  padding: 22px 18px 16px 18px;
  animation: cookie-slide-in 0.42s cubic-bezier(.59,1.46,.69,1) 1;
}
@keyframes cookie-slide-in {
  0% { transform: translateY(120%); opacity:0; }
  92% { opacity:1; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-text {
  flex: 1 1 320px;
  font-size: 1rem;
  margin-right: 16px;
  color: var(--gw-primary);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-banner button {
  padding: 9px 24px;
  font-size: 1rem;
  border-radius: 30px;
  box-shadow: 0 1.5px 6px 0 rgba(166,143,91,0.13);
  letter-spacing: 0.02em;
  margin-top: 0;
  background: var(--gw-secondary);
  color: var(--gw-light);
  font-family: var(--display-font);
  font-weight: 600;
  border: none;
  transition: background 0.16s, color 0.15s,transform 0.15s;
}
.cookie-banner .cookie-settings {
  background: var(--gw-muted);
  color: var(--gw-primary);
  font-weight: 600;
}
.cookie-banner .cookie-settings:hover {
  background: var(--gw-primary);
  color: var(--gw-light);
}
.cookie-banner .accept {
  background: var(--gw-secondary);
  color: var(--gw-light);
}
.cookie-banner .accept:hover {
  background: var(--gw-primary);
  color: var(--gw-secondary);
}
.cookie-banner .reject {
  background: var(--gw-grey);
  color: var(--gw-primary);
}
.cookie-banner .reject:hover {
  background: var(--gw-secondary);
  color: var(--gw-light);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 18px 6px;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
}

/* --------------------------- Cookie Modal/Settings ---------------------------- */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 4010;
  inset: 0;
  background: rgba(50,65,60,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein 0.17s;
}
@keyframes fadein {
  0% { opacity:0; }
  100% { opacity:1; }
}
.cookie-modal {
  background: var(--gw-light);
  color: var(--gw-primary);
  padding: 36px 34px 24px 34px;
  border-radius: var(--gw-radius);
  box-shadow: 0 6px 38px 0 rgba(50,65,60,0.21), 0 2px 6px rgba(166,143,91,0.08);
  min-width: 320px;
  max-width: 97vw;
  z-index: 4012;
  position: relative;
  animation: modal-pop 0.34s cubic-bezier(.57,1.35,.71,.85) 1;
}
@keyframes modal-pop {
  0% { transform: scale(0.75) translateY(70px); opacity:0; }
  100% { transform: scale(1) translateY(0); opacity:1; }
}
.cookie-modal h2 {
  color: var(--gw-secondary);
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}
.cookie-modal .cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--gw-grey);
  padding: 13px 14px;
  border-radius: 8px;
}
.cookie-modal .cookie-category .label {
  font-size: 1rem;
  color: var(--gw-primary);
  font-weight: 600;
}
.cookie-modal .cookie-switch {
  position: relative;
  width: 40px;
  height: 22px;
  display: inline-block;
}
.cookie-modal .cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--gw-muted);
  border-radius: 22px;
  transition: background 0.17s;
}
.cookie-modal .cookie-switch input:checked + .slider {
  background: var(--gw-secondary);
}
.cookie-modal .slider:before {
  content: '';
  position: absolute; left: 2.7px; top: 2.2px;
  height: 17px; width: 17px;
  background: var(--gw-light);
  border-radius: 50%;
  transition: transform 0.14s;
  box-shadow: 0 2px 3px rgba(50,65,60,0.12);
}
.cookie-modal .cookie-switch input:checked + .slider:before {
  transform: translateX(17px);
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  font-size: 1.6rem;
  color: var(--gw-secondary);
  border: none;
  padding: 6px;
  transition: background 0.14s;
}
.cookie-modal .close-cookie-modal:focus,
.cookie-modal .close-cookie-modal:hover {
  background: var(--gw-grey);
  color: var(--gw-primary);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal .modal-actions button {
  padding: 9px 24px;
  background: var(--gw-secondary);
  color: var(--gw-light);
  border-radius: 24px;
  font-family: var(--display-font);
  font-size: 0.99rem;
  font-weight: 600;
  box-shadow: 0 1.5px 6px 0 rgba(166,143,91,0.11);
  margin-bottom: 0;
}

@media (max-width: 480px) {
  .cookie-modal {
    padding: 23px 8vw 18px 8vw;
    min-width: 96vw;
  }
}

/* ----------------------- PAGE-SPECIFIC or UTILITY OVERRIDES ---------------------- */
main > section:last-child {
  margin-bottom: 0;
}

/* Utility class for gold text/accents */
.gold {
  color: var(--gw-secondary) !important;
}

/* Utility: Hide visually (for JS-scripted elements/menus) */
.hide {
  display: none !important;
}

/* --------------------------------- FORMS (if present) ---------------------------- */
input, select, textarea {
  border: 1.5px solid var(--gw-grey);
  border-radius: 7px;
  padding: 10px 14px;
  font-family: var(--body-font);
  font-size: 1em;
  margin-bottom: 14px;
  background: var(--gw-light);
  color: var(--gw-primary);
  transition: border 0.15s;
  width: 100%;
  box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--gw-secondary);
  outline: none;
}

/* ------------------- MICRO-ANIMATIONS: HOVER STATES, BUTTONS ETC ----------------- */
a, button, .cta-button {
  transition: color, background, border, box-shadow, transform 0.16s;
  outline: none;
}

a:focus, button:focus, .cta-button:focus {
  outline: 2.5px dashed var(--gw-secondary);
  outline-offset: 2px;
}

/* --------------- FOCUS VISIBILITY FOR ACCESSIBILITY ------------------- */
:focus-visible {
  outline: 2.5px dashed var(--gw-secondary);
  outline-offset: 2px;
}

/* ---------------------- SELECTION COLOR ------------------------ */
::selection {
  background: var(--gw-secondary);
  color: var(--gw-light);
}

/* ------------------------ Z-INDEXes for overlays ------------------------- */
/* (reserved: mobile-menu 2000, cookie-modal 4010+, cookie-banner 4000, header 1002/1004) */

/* ------ No CSS Grid or CSS Columns anywhere! Only flexbox and inline styles ------ */
