/* --- CSS RESET & BASE --- */
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;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
  background: #F5F7FA;
  color: #222;
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  vertical-align: middle;
}
a {
  color: #16427D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F7A700;
  outline: none;
}
ul, ol {
  padding-left: 1.4em;
  margin-bottom: 1.2em;
}
li { margin-bottom: 0.5em; }

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #16427D;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }
h4 { font-size: 1.13rem; }

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
}

p, address {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
  color: #222;
}
strong, b { font-weight: 700; }

/* --- Brand Colors / Luxury Premium Aesthetic --- */
:root {
  --primary: #16427D;
  --secondary: #EBF1FA;
  --accent: #F7A700;        /* gold */
  --accent-gold-dark: #B18700;
  --white: #fff;
  --gray-light: #F5F7FA;
  --gray: #e6e8f0;
  --contrast-bg: #222C3A;
  --shadow: 0 4px 18px 0 rgba(22, 66, 125, 0.04);
  --radius: 18px;
}

body {
  background: var(--gray-light);
}

.container {
  width: 100%;
  max-width: 1160px;
  padding: 0 20px;
  margin: 0 auto;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* --- General Section Layout --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width:768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 38px;
  }
}

/* --- Header --- */
header {
  background: var(--white);
  box-shadow: 0 1px 14px 0 rgba(22,66,125,.05);
  position:sticky; top:0; left:0; width:100%; z-index:99;
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 76px;
  gap: 28px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
  transition: filter .18s;
}
.logo:hover img { filter: brightness(0.91) drop-shadow(0 2px 2px #F7A70033); }

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 6px;
  color: var(--primary);
  transition: background .18s, color .18s;
}
.main-nav a.active,
.main-nav a:hover,
.main-nav a:focus {
  background: var(--secondary);
  color: var(--accent);
}

.cta-main {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: linear-gradient(90deg, var(--accent) 85%, var(--accent-gold-dark));
  color: white;
  padding: 12px 28px;
  font-size: 1.09rem;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 6px 20px -4px #F7A70033;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background .2s, transform .18s, box-shadow .22s;
  display: inline-block;
  margin-left: 12px;
}
.cta-main:hover, .cta-main:focus {
  background: linear-gradient(90deg, var(--accent-gold-dark), var(--accent));
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 30px -8px #F7A70066;
  outline: none;
}

/* --- Burger Menu Mobile --- */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  box-shadow: 0 4px 16px -3px #F7A70044;
  z-index: 1100;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--accent-gold-dark);
  color: #fff7e0;
  outline: none;
}
@media (max-width: 992px) {
  .main-nav { display: none; }
  .cta-main { display: none; }
  .mobile-menu-toggle { display: flex; }
}

/* --- Mobile Navigation Overlay --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(22,66,125,0.98);
  z-index: 1999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 32px 20px 18px 20px;
  transform: translateX(-110vw);
  transition: transform 0.38s cubic-bezier(.86,.01,.6,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--accent);
  border: none;
  font-size: 2rem;
  padding: 7px 14px;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 30px;
  border-radius: 50%;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent);
  color: #fff;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-top: 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.24rem;
  color: #fff;
  font-weight: 600;
  padding: 12px 6px;
  border-radius: 7px;
  transition: background .18s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: #222;
  outline: none;
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(90deg, #EBF1FA 75%, #fff 100%);
  padding: 70px 0 50px 0;
  margin-bottom: 0;
}
.hero .container {
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 12px 0;
}
.hero h1 {
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: .01em;
  text-align: center;
  text-shadow: 0px 2px 9px #fff3, 0 1px 0 #F7A7002a;
}
.hero p {
  color: #383838;
  font-size: 1.15rem;
  text-align: center;
  margin-bottom: 10px;
}

@media (max-width: 600px) {
  .hero { padding: 40px 0 16px 0; }
  .hero h1 { font-size: 1.35rem; }
}

/* --- Feature Grids / Cards --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 24px;
  margin-bottom: 8px;
}
.feature {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 6px 16px -5px #16427d1a;
  flex: 1 1 225px;
  max-width: 300px;
  min-width: 190px;
  padding: 28px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  border: 1.3px solid #EBF1FA;
  transition: box-shadow .22s, border-color .19s, transform .18s;
  position: relative;
}
.feature img {
  width: 38px;
  height: 38px;
  margin-bottom: 5px;
  filter: drop-shadow(0 2px 1px #F7A70033);
}
.feature h3 {
  font-family: 'Montserrat';
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.feature p {
  color: #444;
  font-weight: 500;
  font-size: 0.97rem;
}
.feature:hover, .feature:focus {
  border-color: var(--accent);
  box-shadow: 0 10px 26px -7px #F7A70024, 0 1px 2px 1px #16427d12;
  transform: translateY(-2px) scale(1.03);
}

@media (max-width:900px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature { max-width: unset; min-width: 0; width: 100%; }
}

/* --- Testimonials --- */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 20px;
}
.testimonial-card {
  background: #fff;
  color: #222;
  border-radius: var(--radius);
  box-shadow: 0 7px 24px -5px #222c3a10;
  padding: 28px 22px 24px 22px;
  min-width: 230px;
  max-width: 380px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
  position: relative;
  border: 1.5px solid #EBF1FA;
  transition: box-shadow .2s, border-color .17s, transform .14s;
}
.testimonial-card:before {
  content: '\201C';
  color: var(--accent);
  font-family: 'Montserrat', serif;
  font-size: 2.7rem;
  line-height: 1;
  position: absolute;
  left: 18px; top: 8px;
  opacity: 0.4;
  pointer-events: none;
}
.testimonial-card p {
  font-size: 1.07rem;
  color: #222;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  margin-bottom: 0px;
  letter-spacing: 0.01em;
}
.testimonial-name {
  font-size: 0.93rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  background: var(--secondary);
  border-radius: 999px;
  padding: 5px 18px;
  margin-top: 6px;
  align-self: flex-end;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 13px 48px -12px #F7A70015, 0 4px 8px 1px #16427d17;
  border-color: var(--accent);
  transform: scale(1.02);
  outline: none;
}

@media (max-width:900px) {
  .testimonials { flex-direction: column; gap: 14px; }
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--primary);
  color: var(--white);
  padding: 48px 0 40px 0;
  text-align: center;
  margin-bottom: 0;
  border-radius: 0 0 var(--radius) var(--radius);
}
.cta-banner h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 18px;
}
.cta-banner .cta-main {
  background: linear-gradient(90deg, var(--accent), var(--accent-gold-dark) 88%);
  color: #232323;
  font-size: 1.17rem;
  font-weight: 700;
  margin-top: 18px;
}
.cta-banner .cta-main:hover, .cta-banner .cta-main:focus {
  background: linear-gradient(90deg, var(--accent-gold-dark), var(--accent));
  color: #fff;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 6px 18px -6px #222c3a16;
  padding: 28px 20px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1.3px solid #EBF1FA;
  transition: box-shadow .18s, border-color .15s, transform .13s;
}
.card:hover, .card:focus {
  box-shadow: 0 12px 45px -10px #F7A7001a, 0 2px 12px 1px #16427d0b;
  border-color: var(--accent);
  transform: scale(1.02);
  outline: none;
}

/* --- Table / Prices --- */
.price-table {
  background: var(--gray);
  border-left: 3.5px solid var(--accent);
  color: #222;
  font-family: 'Montserrat';
  padding: 13px 19px;
  font-size: 1.09rem;
  margin: 8px 0 24px 0;
  border-radius: 8px 24px 24px 8px;
  font-weight: 600;
  box-shadow: 0 1px 3px #16427d0c;
  display: inline-block;
}

/* --- Location Info --- */
.location-info {
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 8px;
  font-weight: 600;
  padding: 7px 18px;
  font-size: 1rem;
  margin: 18px 0 4px 0;
  box-shadow: 0 3px 11px -5px #F7A70033;
}
.location-info img {
  width: 19px; height: 19px;
  object-fit: contain;
  filter: drop-shadow(0 2px 2px #fff8);
}

/* --- Contact Info --- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 14px -6px #222c3a17;
  padding: 24px 18px;
  margin-bottom: 24px;
}
.contact-info img {
  margin-right: 6px;
  vertical-align: middle;
  width: 19px; height: 19px;
}
.contact-info a { color: var(--primary); font-weight: 600; }

.text-section h3 {
  font-size: 1.07rem;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 3px;
}
.text-section .note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.95rem;
  color: #777;
  background: var(--gray);
  border-radius: 9px;
  padding: 7px 15px;
  margin: 19px 0; 
  box-shadow: 0 2px 7px #16427d0f;
}
.text-section .note img {
  width: 18px; height: 18px;
  filter: drop-shadow(0 0px 2px #F7A70011);
}

/* --- Footer --- */
footer {
  background: var(--contrast-bg);
  color: #fff;
  padding: 38px 0 0 0;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: 0 -6px 32px -18px #16427d21;
  margin-top: 48px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.03rem;
  opacity: .88;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s, opacity 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #F7A700; color: #232323;
  opacity: 1;
  outline: none;
}
.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.footer-contact img {
  width: 48px; height: 48px;
  margin-right: 9px;
}
.footer-contact address {
  font-style: normal;
  color: #fff;
  margin-top: 6px;
  line-height: 1.45;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  opacity: .92;
}
.footer-contact a {
  color: #F7A700;
  font-weight: 600;
  margin-left: 3px;
  text-decoration: none;
  transition: color 0.17s;
}
.footer-contact a:hover, .footer-contact a:focus { color: #fff; outline: none; }
.footer-contact img[alt*="Telefon"], .footer-contact img[alt*="E-Mail"], .footer-contact img[alt*="Uhr"], .footer-contact img[alt*="clock"] {
  width: 16px; height: 16px;
  margin-right: 3px;
}

@media (max-width:900px) {
  footer .content-wrapper { flex-direction: column; gap: 14px; }
}

/* --- Content Blocks / Spacing --- */
.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; }

/* --- Responsive Alignment / Media Queries --- */
@media (max-width: 768px) {
  header .container { flex-direction: row; gap: 12px; }
  .feature-grid, .testimonials, .footer-contact, .content-grid, .card-container  { flex-direction: column; gap: 14px; }
  .content-wrapper { gap: 12px; }
  .text-image-section { flex-direction: column; gap: 18px; }
  .section { padding: 24px 4vw; margin-bottom: 32px; }
  .location-info, .footer-contact img { margin-bottom: 7px; }
}

/* --- Forms and Inputs (for potential future extension) --- */
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 8px;
  outline: none;
  border: 1.3px solid #EBF1FA;
  padding: 10px 14px;
  transition: border-color .16s, box-shadow .14s;
  background: #fff;
  color: #222;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 2px 8px #F7A70013;
}
button { cursor: pointer; }

/* --- Micro-interactions --- */
.feature, .card, .testimonial-card, .cta-main, .footer-nav a {
  transition: box-shadow .22s, border-color .17s, background .19s, color .19s, transform .18s, opacity .16s;
}

/* --- Cookie Consent Banner --- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 3010;
  background: var(--contrast-bg);
  color: #fff;
  box-shadow: 0 -7px 32px -11px #222c3a70;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 22px 18px 16px 18px;
  border-radius: 16px 16px 0 0;
  animation: ccbannerfadein 0.5s cubic-bezier(.6,.8,.23,1);
  font-size: 1rem;
}
@keyframes ccbannerfadein { from { opacity:0; transform: translateY(60px); } to { opacity:1; transform:none;} }
.cookie-consent-banner .cookie-btn-group {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.cookie-consent-banner button {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 10px 25px;
  font-size: 1rem;
  margin: 2px 0;
  box-shadow: 0 3px 9px -3px #F7A70033;
  cursor: pointer;
  transition: background .18s, color .14s, box-shadow .18s;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: var(--accent-gold-dark);
  color: #fff;
}
.cookie-consent-banner .settings-btn {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  box-shadow: none;
  transition: background .16s, color .13s;
}
.cookie-consent-banner .settings-btn:hover,
.cookie-consent-banner .settings-btn:focus {
  background: var(--accent);
  color: #fff;
}

/* --- Cookie Modal --- */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 3200;
  background: rgba(34, 44, 58, 0.87);
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal.open { display: flex; animation: ccbannerfadein 0.3s; }
.cookie-modal .modal-content {
  background: #fff;
  color: var(--primary);
  padding: 38px 30px 28px 30px;
  border-radius: var(--radius);
  width: 95%;
  max-width: 410px;
  box-shadow: 0 14px 54px -10px #16427d22;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal h3 {
  font-size: 1.23rem;
  color: var(--accent);
  margin-bottom: 11px;
}
.cookie-modal .category-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.cookie-modal .cat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
}
.cookie-modal .cat-row .always-on {
  color: #557424;
  font-weight: 700;
  background: #EBF1FA;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.97em;
}
.cookie-modal .toggle {
  appearance: none;
  width: 38px; height: 20px;
  background: #EBF1FA;
  border-radius: 999px;
  position: relative;
  outline: none;
  transition: background 0.18s;
  cursor: pointer;
  margin-left: 4px;
}
.cookie-modal .toggle:checked {
  background: var(--accent);
}
.cookie-modal .toggle:before {
  content: '';
  position: absolute;
  left: 3.5px; top: 2.5px;
  width: 15px; height: 15px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 4px #2222;
  transition: left 0.17s;
}
.cookie-modal .toggle:checked:before {
  left: 19px;
}
.cookie-modal .modal-close {
  background: none;
  color: var(--accent);
  border: none;
  font-size: 1.9rem;
  position: absolute;
  top: 14px; right: 20px;
  cursor: pointer;
  border-radius: 50%;
  padding: 3px 10px;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #F7A70021;
  color: #B18700;
}
.cookie-modal .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
}
.cookie-modal .modal-actions button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  padding: 9px 16px;
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
  margin-top: 8px;
  transition: background .14s, color .18s;
}
.cookie-modal .modal-actions button:hover, .cookie-modal .modal-actions button:focus {
  background: var(--accent-gold-dark);
  color: #fff;
}

/* --- Utility Classes --- */
.visually-hidden {
  position: absolute !important;
  border: 0 !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(1px,1px,1px,1px) !important;
  white-space: nowrap !important;
}

/* --- Scrollbar Styling --- */
html::-webkit-scrollbar {
  width: 10px;
  background: #f2f2f6;
}
html::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 8px;
}

/* --- Focus Styles for Accessibility --- */
a:focus, button:focus, input:focus, .cta-main:focus {
  outline: 2px dashed var(--accent-gold-dark);
  outline-offset: 1px;
}

/* --- Print Styles (minimal) --- */
@media print {
  header, footer, .mobile-menu, .cookie-consent-banner, .cookie-modal { display:none!important; }
  .section, .hero, .cta-banner { box-shadow: none !important; }
}

/* --- END OF STYLE.CSS --- */