/* ========================
   CSS 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 {
  scroll-behavior: smooth;
  background: #ffffff;
}

body {
  font-family: 'Helvetica', Arial, sans-serif;
  font-size: 16px;
  color: #214653;
  line-height: 1.6;
  background-color: #fff;
  min-height: 100vh;
}

img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

a {
  color: #D09238;
  text-decoration: none;
  transition: color 0.2s;
}

a:focus {
  outline: 2px solid #D09238;
  outline-offset: 2px;
}

a:hover,
a:active {
  color: #275764;
  text-decoration: underline;
}

button,
input,
select,
textarea {
  font: inherit;
  border: none;
  outline: none;
}

button {
  background: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', 'Georgia', serif;
  color: #214653;
  font-weight: 700;
  letter-spacing: .03em;
}

h1 { font-size: 2.2rem; line-height: 1.1; margin-bottom: 18px; }
h2 { font-size: 1.5rem; margin-bottom: 12px; }
h3 { font-size: 1.2rem; margin-bottom: 8px; }
h4 { font-size: 1rem; margin-bottom: 6px; }

p, li, table, th, td, label {
  font-family: 'Helvetica', Arial, sans-serif;
  font-size: 1rem;
  color: #214653;
}

/* ========================
     LUXURY PREMIUM COLORS
========================== */
:root {
  --color-primary: #214653; /* dark teal */
  --color-secondary: #DFE9DB; /* subtle light green */
  --color-accent: #D09238; /* rich gold */
  --color-body: #ffffff;
  --color-headings: #214653;
  --color-border: #e8e4de;
  --color-card-bg: #ffffff;
  --color-card-shadow: rgba(39, 87, 100, 0.05);
  --color-section-bg: #faf8f3;
  --color-focus: #D09238;
  --color-footer-bg: #275764;
  --color-footer-text: #fff;
  --color-muted: #8ca4a7;
}

/* Font-face fallback for 'Merriweather' if not included via Google Fonts */
@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 700;
  src: local('Merriweather'), local('Merriweather-Bold');
}

/* ========================
     LAYOUT STRUCTURE
========================== */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

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

@media (max-width: 768px) {
  .section, section {
    padding: 28px 8px;
    margin-bottom: 36px;
    border-radius: 14px;
  }
}

/* ========================
    NAVIGATION BAR (DESKTOP)
========================== */
header {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  z-index: 101;
  top: 0;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: flex-start;
  padding: 16px 0 16px 0;
  font-size: 1.02rem;
  position: relative;
}
.main-nav > a {
  padding: 7px 14px;
  border-radius: 22px;
  color: var(--color-primary);
  font-weight: 500;
  position: relative;
  transition: background 0.18s, color 0.18s;
  font-family: 'Merriweather', 'Georgia', serif;
}
.main-nav > a:hover:not(.cta-btn),
.main-nav > a.active {
  background: var(--color-secondary);
  color: var(--color-accent);
}
.main-nav img {
  height: 36px;
  width: auto;
  vertical-align: middle;
  margin-right: 12px;
}

/* CTA Button in Nav*/
.cta-btn {
  background: var(--color-accent);
  color: #fff !important;
  border-radius: 999px;
  font-family: 'Merriweather', 'Georgia', serif;
  font-size: 1rem;
  padding: 10px 32px;
  margin-left: 12px;
  font-weight: 700;
  box-shadow: 0 4px 16px 0 rgba(208,146,56,0.08);
  border: none;
  transition: background 0.18s, transform 0.18s, box-shadow 0.22s;
  letter-spacing: 0.02em;
  text-align: center;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #b08433;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px 0 rgba(208,146,56,0.12);
  text-decoration: none;
  outline: none;
}

/* ========================
      MOBILE MENU
========================== */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2.1rem;
  margin-left: auto;
  z-index: 120;
  border: none;
  transition: background .18s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-accent);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 280px;
  padding: 38px 26px 36px 26px;
  z-index: 130;
  box-shadow: 4px 0 24px 0 rgba(39,87,100,.08);
  transform: translateX(-102%);
  transition: transform .35s cubic-bezier(.61,.08,.08,1.04);
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  line-height: 36px;
  border: none;
  transition: background .18s;
}
.mobile-menu-close:hover {
  background: #f6edd9;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
.mobile-nav a {
  color: var(--color-primary);
  font-size: 1.1rem;
  padding: 10px 8px;
  border-radius: 12px;
  font-family: 'Merriweather', 'Georgia', serif;
  transition: background .15s, color .15s;
  margin-right: 0;
}
.mobile-nav a:hover,
.mobile-nav a:active {
  background: var(--color-secondary);
  color: var(--color-accent);
}

/* Responsive Hide desktop nav on mobile */
@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 1101px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ========================
  HERO SECTION
========================== */
.hero {
  background: linear-gradient(122deg, #DFE9DB 66%, #faf8f3 100%);
  border-radius: 0 0 36px 36px;
  box-shadow: 0 9px 30px 0 rgba(39, 87, 100, 0.04);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 54px;
  padding: 60px 0 70px 0;
}
.hero .content-wrapper {
  align-items: center;
  gap: 24px;
}
.hero h1 {
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-bottom: 8px;
  line-height: 1.1;
}
.hero .subheadline {
  color: #4b6c72;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.hero .cta-btn {
  margin-top: 14px;
  font-size: 1.08rem;
}

@media (max-width: 768px){
  .hero {
    min-height: 210px;
    padding: 38px 0 38px 0;
    border-radius: 0 0 18px 18px;
  }
  .hero .content-wrapper h1 {
    font-size: 1.45rem;
  }
  .hero .subheadline {
    font-size: 1rem;
  }
}

/* ============================
    FLEX CONTAINER PATTERNS
============================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 22px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-body);
  border-radius: 14px;
  box-shadow: 0 4px 20px 0 rgba(208,146,56,.09);
  padding: 30px 26px 28px 26px;
  min-width: 210px;
  flex: 1 1 250px;
  border: 1.5px solid #efedea;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .18s, border-color .18s, transform .14s;
}
.feature-item img {
  width: 36px;
  height: 36px;
}
.feature-item h3 {
  font-size: 1.1rem;
  color: var(--color-accent);
}
.feature-item:hover {
  box-shadow: 0 8px 32px 0 var(--color-card-shadow);
  border-color: var(--color-accent);
  transform: translateY(-3px) scale(1.03);
  z-index: 2;
}

@media (max-width: 768px){
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item {
    min-width: 0;
    padding: 23px 14px 22px 14px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-section-bg);
  border-radius: 20px;
  box-shadow: 0 2px 22px 0 var(--color-card-shadow);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(208,146,56, .08);
  background: var(--color-card-bg);
  position: relative;
  border: 1.2px solid var(--color-border);
  transition: box-shadow .18s, border-color .18s;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  margin-bottom: 20px;
  background: #fff;
  border: 1.5px solid #e8e4de;
  border-radius: 16px;
  box-shadow: 0 3px 18px 0 rgba(39, 87, 100, 0.06);
  transition: box-shadow .17s, border-color .16s;
  position: relative;
}
.testimonial-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 9px 32px 0 rgba(208,146,56, .12);
}
.testimonial-card p {
  color: #2c383a;
  font-size: 1.08rem;
  text-align: center;
}
.testimonial-card h2 {
  color: var(--color-primary);
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 4px;
  text-align: center;
}
.testimonial-name {
  color: var(--color-accent);
  font-family: 'Merriweather', 'Georgia', serif;
  font-size: 1.01rem;
  font-style: italic;
  letter-spacing: .01em;
}

/* ============================
    USP SIGNAL STRIP
============================== */
.usp-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
  padding: 12px 0;
}
.usp-signals span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--color-accent);
  font-size: 1.08rem;
  background: #fff7e4;
  border-radius: 14px;
  padding: 7px 16px;
  font-family: 'Merriweather', serif;
}
.usp-signals img {
  width: 24px;
  height: 24px;
}

/* ===============
    ADVANTAGE LIST
================= */
.advantage-list li {
  margin-bottom: 14px;
  padding-left: 28px;
  position: relative;
}
.advantage-list li:before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--color-accent);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

/* ===============
    COURSE LIST
================= */
.course-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 18px;
}
.course-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 28px 0 rgba(208,146,56, .06);
  padding: 23px 24px;
  margin-bottom: 10px;
  border: 1.1px solid #eceae6;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: box-shadow .17s, border-color .16s;
}
.course-list li:hover {
  border-color: var(--color-accent);
  box-shadow: 0 9px 36px 0 rgba(208,146,56, .11);
}
.course-schedule {
  color: var(--color-accent);
  font-weight: 600;
  margin-top: 6px;
}

/* ===============
    ACCORDION (FAQ)
================= */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 12px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px 0 rgba(208,146,56, .08);
  padding: 24px 20px 18px 20px;
  border: 1.1px solid #f2eee8;
  margin-bottom: 10px;
}
.faq-item h2 {
  font-size: 1.14rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 8px;
}
.faq-item p {
  color: #395e6d;
}

.quick-links {
  margin-top: 13px;
}
.quick-links h3 {
  color: var(--color-accent);
  margin-bottom: 6px;
}
.quick-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 4px;
}
.quick-links a {
  color: var(--color-primary);
  background: #f6edd9;
  border-radius: 10px;
  padding: 6px 17px;
  font-weight: 500;
  transition: background .16s, color .16s;
}
.quick-links a:hover, .quick-links a:focus {
  color: #fff;
  background: var(--color-accent);
}

/* ===============
    CONTACT
================= */
.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 1rem;
}
.contact-details img {
  width: 22px;
  height: 22px;
}
.map-snippet, .contact-prompt {
  margin-top: 14px;
  font-size: 1rem;
  color: var(--color-muted);
}

/* ===============
    OPENING HOURS
================= */
.opening-hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  margin-top: 4px;
}
.opening-hours-table th,
.opening-hours-table td {
  padding: 7px 10px;
  border-bottom: 1px solid #ecebe7;
  color: #2d4d5a;
  font-size: 1rem;
}
.opening-hours-table th {
  text-align: left;
  font-weight: 600;
}
.opening-hours-table tr:last-child td,
.opening-hours-table tr:last-child th {
  border-bottom: 0;
}

/* ===============
    TABLES GENERAL
================= */
table, th, td {
  font-size: 1rem;
}

/* ===============
    CTA FINAL
================= */
.cta-final, .cta-feedback, .cta-contact {
  background: linear-gradient(94deg, #fffbea 66%, #FFF 100%);
  box-shadow: 0 2px 22px 0 rgba(208,146,56, .06);
  border-radius: 24px;
  text-align: center;
  padding-top: 46px;
  padding-bottom: 46px;
}
.cta-final .content-wrapper, .cta-feedback .content-wrapper, .cta-contact .content-wrapper {
  align-items: center;
  gap: 22px;
}
.cta-final h2, .cta-feedback h2, .cta-contact h2 {
  color: var(--color-accent);
}

/* ===============
   ABOUT SHORT SECTIONS
================= */
.about-short {
  background: var(--color-section-bg);
  padding: 36px 20px;
  border-radius: 18px;
}
.about-short h2 {
  color: var(--color-primary);
  margin-bottom: 10px;
}
.about-short ul {
  margin-left: 18px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-short li {
  position: relative;
  padding-left: 22px;
}
.about-short li:before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--color-accent);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: .7em;
}

/* ===============
    FOOTER
================= */
footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 44px 0 24px 0;
  margin-top: 60px;
}
.footer-nav {
  width: 100%;
  text-align: center;
  margin-bottom: 22px;
  font-size: 1rem;
  color: #f2eee5;
}
.footer-nav a {
  color: #fff;
  padding: 0 6px;
  font-size: 1rem;
  transition: color .13s;
  font-family: 'Merriweather', serif;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-accent);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 24px 40px;
  padding: 0 0 0 0;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #faebd7;
  font-size: 1rem;
}
.footer-contact img {
  width: 19px;
  height: 19px;
  filter: brightness(1.2) invert(.7);
}

@media (max-width: 768px){
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  footer { padding: 34px 0 16px 0; }
}

/* ========================
    THANK YOU PAGE
========================== */
.thank-you {
  background: #fff;
  text-align: center;
  border-radius: 18px;
  box-shadow: 0 4px 28px 0 rgba(208,146,56, .08);
  margin-bottom: 54px;
  padding: 44px 14px 48px 14px;
}

/* ========================
    COOKIES BANNER & MODAL
========================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 500;
  background: #fffbe9;
  border-top: 1.5px solid #e8e4de;
  box-shadow: 0 -2px 16px 0 rgba(208,146,56, .09);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 24px 36px 24px 20px;
  font-size: 1rem;
  transition: transform 0.4s cubic-bezier(.61,.08,.08,1.04);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(105%);
  pointer-events: none;
}
.cookie-banner .cookie-message {
  color: var(--color-primary);
  max-width: 46vw;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  border: none;
  background: var(--color-accent);
  color: #fff;
  font-family: 'Merriweather', serif;
  font-weight: 600;
  padding: 8px 28px;
  border-radius: 999px;
  font-size: 1rem;
  margin-right: 2px;
  box-shadow: 0 2px 11px 0 rgba(208,146,56,.09);
  transition: background .15s, box-shadow .15s, color .15s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #b08433;
  color: #fff;
}
.cookie-settings-btn {
  background: #fff;
  color: var(--color-accent);
  border: 1.3px solid var(--color-accent);
  transition: background .14s, color .14s;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: var(--color-accent);
  color: #fff;
}

@media (max-width: 900px) {
  .cookie-banner .cookie-message {
    max-width: 86vw;
    font-size: 0.98rem;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 8px 18px 10px;
    gap: 13px;
    font-size: .98rem;
  }
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 1600;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 44px 0 rgba(208,146,56, .19);
  min-width: 325px;
  max-width: 97vw;
  width: 420px;
  transform: translate(-50%, -56%) scale(1);
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s cubic-bezier(.61,.08,.08,1.04), transform .4s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1.5px solid #ede8de;
}
.cookie-modal-header h2 {
  font-size: 1.2rem;
  color: var(--color-accent);
}
.cookie-modal-close {
  background: var(--color-secondary);
  border: none;
  font-size: 1.6rem;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  color: var(--color-primary);
  transition: background .17s;
}
.cookie-modal-close:hover {
  background: #f6edd9;
}
.cookie-modal-body {
  padding: 18px 26px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 3px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 500;
  color: #275764;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--color-accent);
  width: 19px;
  height: 19px;
  margin-right: 6px;
}
.cookie-description {
  font-size: .97rem;
  color: #4b6c72;
}
.cookie-modal-footer {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
  padding: 19px 22px 21px 22px;
  border-top: 1.3px solid #eee7df;
}

@media (max-width: 500px){
  .cookie-modal {
    min-width: 90vw;
    width: 98vw;
    padding: 0;
  }
  .cookie-modal-body, .cookie-modal-header, .cookie-modal-footer {
    padding-left: 11px;
    padding-right: 11px;
  }
}

/* ========================
    GENERAL HOVERS & TRANSITIONS
========================== */
.card, .feature-item,.testimonial-card, .course-list li, .faq-item {
  transition: box-shadow .17s, border-color .17s, transform .17s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover, .course-list li:hover {
  box-shadow: 0 7px 30px 0 rgba(208,146,56, 0.12);
  border-color: var(--color-accent);
  transform: translateY(-2px) scale(1.01);
}

/* ========================
    RESPONSIVE FLEXBOX
========================== */
@media (max-width: 900px){
  .content-grid, .card-container{
    flex-direction: column;
    gap: 19px;
  }
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }
}
@media (max-width: 768px){
  .text-image-section, .content-grid, .card-container, .feature-grid {
    flex-direction: column !important;
    gap: 18px;
  }
  .section {
    margin-bottom: 28px;
    padding: 28px 0.5em;
  }
  .usp-signals {
    flex-direction: column;
    gap: 11px;
  }
}

/* ========================
    MISC UTILS
========================== */
strong { color:#D09238; font-weight: 700; }
hr {
  border: none;
  border-top: 1.8px solid #eceae6;
  margin: 32px 0;
}
::-webkit-input-placeholder { color: #93a4ab; opacity: 1; }
::-moz-placeholder { color: #93a4ab; opacity: 1; }
:-ms-input-placeholder { color: #93a4ab; opacity: 1; }
::placeholder { color: #93a4ab; opacity: 1; }

/* ========================
    Z-INDEX LAYERS
========================== */
.mobile-menu, .cookie-modal {
  z-index: 1600;
}
.header, header {
  z-index: 220;
}

/* =========================
    ACCESSIBILITY
========================== */
:focus-visible {
  outline: 2px solid var(--color-focus) !important;
  outline-offset: 2px;
}

/* =========================
    PRINT STYLES
========================== */
@media print {
  header, .main-nav, nav, .hero, .cta-btn, .cookie-banner, .cookie-modal, footer { display: none !important; }
  section { box-shadow: none !important; }
  body { background: #fff !important; }
}
