/* ============================
   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;
}
/* Modern Reset */
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #fff;
  color: #222C3A;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul,ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input, select {
  font-family: inherit;
  font-size: 1rem;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #222C3A;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.14;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.375rem;
  font-weight: 700;
}
h4 {
  font-size: 1.125rem;
}
p, li, span {
  font-size: 1rem;
}
strong {
  font-weight: 700;
}

/* ============================
   BRAND COLOR VARIABLES
============================ */
:root {
  --color-primary: #222C3A;
  --color-secondary: #E0E7EF;
  --color-accent: #F5B63C;
  --color-bg-light: #fff;
  --color-bg-muted: #F8F8FA;
  --color-text: #222C3A;
  --color-text-inverse: #fff;
  --color-link: #F5B63C;
  --color-link-hover: #d79922;
  --color-error: #EF5252;
  --shadow-main: 0 4px 16px 0 rgba(34,44,58,0.10);
  --radius-main: 18px;
}

/* ============================
   LAYOUT CONTAINERS
============================ */
.container {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 32px;
    padding: 24px 8px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-bg-light);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  padding: 24px 20px;
  transition: transform 0.18s cubic-bezier(.69,.32,.31,1.43), box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card:hover {
  transform: translateY(-6px) scale(1.03) rotate(-2deg);
  box-shadow: 0 8px 36px 0 rgba(246,183,60,0.14), var(--shadow-main);
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--color-secondary);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  color: var(--color-text);
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ============================
   NAVIGATION
============================ */
header {
  width: 100%;
  background: var(--color-bg-light);
  box-shadow: 0 2px 8px 0 rgba(34,44,58,0.06);
  position: sticky;
  top: 0;
  z-index: 20;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: flex-start;
  padding: 18px 0 14px 0;
  position: relative;
}
.main-nav img {
  height: 42px;
  width: auto;
  margin-right: 16px;
  flex-shrink: 0;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
  letter-spacing: 0.01em;
  padding: 6px 0;
  border-radius: 10px;
  color: #222C3A;
  position: relative;
  transition: color 0.16s, background 0.18s;
}
.main-nav a:not(.nav-cta):hover, .main-nav a:not(.nav-cta):focus {
  color: var(--color-accent);
  background: var(--color-secondary);
}
.nav-cta {
  padding: 10px 20px;
  border-radius: 100px;
  background: var(--color-accent);
  color: #222C3A;
  font-size: 1.07rem;
  font-weight: 700;
  margin-left: 12px;
  box-shadow: 0 2px 12px 0 rgba(245,182,60,0.10);
  transition: background 0.22s, color 0.22s, box-shadow 0.18s;
}
.nav-cta:hover, .nav-cta:focus {
  background: #222C3A;
  color: var(--color-accent);
  box-shadow: 0 4px 20px 0 rgba(245,182,60,0.16);
}

/* ============================
   MOBILE NAVIGATION
============================ */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: #222C3A;
  border: none;
  font-size: 2rem;
  border-radius: 80px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 16px;
  top: 12px;
  z-index: 51;
  box-shadow: 0 2px 8px 0 rgba(245,182,60,0.18);
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.mobile-menu-toggle:active {
  background: #f7c650;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 12px;
    padding-right: 0;
  }
  .main-nav a {
    font-size: 1rem;
    padding: 5px 0;
  }
}

@media (max-width: 900px) {
  .main-nav a:not(.nav-cta) {
    display: none;
  }
  .nav-cta {
    margin-left: auto;
  }
  .main-nav img {
    margin-right: 8px;
  }
}
@media (max-width: 768px) {
  .main-nav img, .nav-cta {
    margin-right: 0;
  }
  .main-nav {
    gap: 12px;
    min-height: 48px;
    padding: 10px 0;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .main-nav img {
    margin-right: 0;
    margin-left: 0;
  }
}

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 4px 0 28px 0 rgba(34,44,58,0.12);
  transform: translateX(-105vw);
  transition: transform 0.33s cubic-bezier(.77,0,.175,1);
  z-index: 110;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #222C3A;
  border: none;
  font-size: 2.1rem;
  padding: 14px 22px 10px 14px;
  align-self: flex-end;
  cursor: pointer;
  z-index: 120;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  padding: 32px 28px 0 28px;
  margin-top: 16px;
  flex: 1;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  color: #222C3A;
  padding: 10px 5px;
  border-radius: 12px;
  background: transparent;
  transition: background 0.13s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-accent);
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ============================
   HERO SECTION & CTA BUTTONS
============================ */
.cta-btn {
  display: inline-block;
  background: var(--color-accent);
  color: #222C3A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.16rem;
  padding: 14px 36px;
  border: none;
  border-radius: 80px;
  cursor: pointer;
  margin-top: 16px;
  margin-bottom: 8px;
  box-shadow: 0 6px 18px -3px rgba(245,182,60,0.13);
  position: relative;
  transition: background 0.17s, color 0.15s, box-shadow 0.22s, transform 0.12s;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #222C3A;
  color: var(--color-accent);
  box-shadow: 0 12px 32px -5px rgba(34,44,58,0.08), 0 2px 12px 0 rgba(245,182,60,0.32);
  transform: scale(1.03) rotate(-2deg);
}

/* playful button micro-animation */
.cta-btn:active {
  transform: scale(0.98);
  box-shadow: 0 3px 10px -3px rgba(245,182,60,0.19);
}

/* ============================
   COMMON STYLES - CARDS & LISTS
============================ */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.service-card {
  flex: 1 1 200px;
  min-width: 225px;
  max-width: 340px;
  background: var(--color-secondary);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  padding: 30px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  transition: box-shadow 0.18s, transform 0.15s;
  margin-bottom: 20px;
}
.service-card img {
  width: 38px;
  height: 38px;
  margin-bottom: 3px;
  filter: drop-shadow(0px 2px 8px #f5b63c50);
}
.service-card:hover {
  box-shadow: 0 10px 36px 6px rgba(245,182,60,0.16), var(--shadow-main);
  transform: scale(1.025) rotate(-2deg);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 12px;
}
.features-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.04rem;
  background: var(--color-secondary);
  border-radius: 14px;
  padding: 12px 18px 12px 13px;
  box-shadow: 0 2px 10px 0 rgba(245,182,60,0.08);
  transition: background 0.2s;
}
.features-list img {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.features-list li:hover {
  background: #fdf4e5;
}

.usp-list {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 14px;
  font-size: 1.025rem;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 8px 0;
}
.values-grid > div {
  flex: 1 1 250px;
  background: var(--color-secondary);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  padding: 24px 18px;
  margin-bottom: 20px;
}

.history-timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
  border-left: 4px solid var(--color-accent);
  padding-left: 20px;
  font-size: 1.025rem;
}

.offers-list, .types-of-frames, .brands-listing, .styling-tips, .glasses-consultation {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 1.045rem;
  margin: 18px 0 10px 0;
}

.highlighted-offer {
  background: #fdf4e5;
  border-left: 6px solid var(--color-accent);
  border-radius: 10px;
  padding: 18px 18px 15px 26px;
  margin: 12px 0 0 0;
  font-size: 1.12rem;
  font-weight: 500;
  color: #684914;
  box-shadow: 0 2px 11px 0 rgba(245,182,60,0.08);
}

.accordion-faq {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 14px;
}
.faq-item {
  background: var(--color-secondary);
  border-radius: 13px;
  padding: 18px 18px 14px 18px;
  box-shadow: 0 2px 8px 0 rgba(34,44,58,0.05);
  transition: background 0.2s, box-shadow 0.18s;
  cursor: pointer;
}
.faq-item h2 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.faq-item:hover {
  background: #fdf4e5;
  box-shadow: 0 6px 16px 0 rgba(245,182,60,0.13);
}

.glass-types-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.glass-types-grid > div {
  flex: 1 1 220px;
  min-width: 200px;
  background: var(--color-secondary);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  padding: 22px 16px 18px 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
}
.glass-types-grid > div:hover {
  box-shadow: 0 10px 30px 5px rgba(245,182,60,0.15), var(--shadow-main);
}

/* Contact cards/info blocks */
.contact-block, .contact-info-short {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 6px;
}
.contact-info-short span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-block img, .contact-info-short img {
  width: 22px;
  height: 22px;
}
.embedded-map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  border-radius: 15px;
  width: 100%;
  height: 110px;
  margin: 12px 0;
}

/* ============================
   FOOTER
============================ */
footer {
  margin-top: 60px;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding: 44px 0 22px 0;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1152px;
  margin: 0 auto 26px auto;
  padding: 0 16px;
}
.footer-row img {
  width: 50px;
  height: auto;
}
.footer-row nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.footer-row nav a {
  color: var(--color-text-inverse);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.02rem;
  transition: color 0.17s, text-decoration 0.16s;
}
.footer-row nav a:hover, .footer-row nav a:focus {
  color: var(--color-accent);
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.015rem;
  max-width: 1152px;
  margin: 0 auto 0 auto;
  padding: 0 16px 0 16px;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.86;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

@media (max-width: 900px) {
  .footer-row, .footer-contact {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
  }
}
@media (max-width: 700px) {
  footer {
    padding-top: 32px;
    font-size: 0.97rem;
  }
  .footer-contact {
    gap: 14px;
    font-size: 0.97rem;
  }
}

/* ============================
   COOKIE CONSENT BANNER + MODAL
============================ */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  z-index: 999;
  box-shadow: 0 -2px 18px 0 rgba(34,44,58,0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 18px 22px 22px;
  animation: cookieSlideIn 0.72s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes cookieSlideIn {
  from { transform: translateY(120px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-message {
  font-size: 1.05rem;
  line-height: 1.4;
  flex: 1;
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-size: 1rem;
  background: var(--color-accent);
  color: #222C3A;
  border: none;
  border-radius: 9px;
  padding: 10px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  margin: 0 2px;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, transform 0.13s;
  box-shadow: 0 1px 7px 0 rgba(245,182,60,0.09);
}
.cookie-banner-settings {
  background: #fff;
  color: #222C3A;
  border: 2px solid var(--color-accent);
  font-weight: 600;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #222C3A;
  color: var(--color-accent);
  transform: scale(1.06);
}

.cookie-modal {
  position: fixed;
  z-index: 1100;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -120px) scale(1.06);
  min-width: 320px;
  width: 96vw;
  max-width: 400px;
  background: #fff;
  color: #222C3A;
  border-radius: 18px;
  box-shadow: 0 8px 32px 6px rgba(34,44,58,0.17);
  padding: 34px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookieModalAppear 0.31s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes cookieModalAppear {
  from { transform: translate(-50%,-40px) scale(0.9); opacity: 0; }
  to   { transform: translate(-50%,-120px) scale(1.06); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.23rem;
  color: var(--color-primary);
  margin-bottom: 9px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  padding-bottom: 4px;
  border-bottom: 1px solid #E0E7EF88;
}
.cookie-category label, .cookie-category span {
  font-size: 1rem;
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--color-accent);
}
.cookie-category-essential {
  color: #888;
  font-size: 0.98rem;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 15px;
}
.cookie-modal-close {
  align-self: flex-end;
  font-size: 1.5rem;
  background: transparent;
  border: none;
  color: #222C3A;
  cursor: pointer;
  margin-top: -21px; margin-right: -8px;
}
.cookie-modal-close:hover {
  color: var(--color-accent);
}

/* overlay for modal */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 1098;
  left: 0; right: 0; top: 0; bottom: 0;
  background: #222C3A66;
  opacity: 1;
  transition: opacity 0.3s;
  pointer-events: auto;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 16px 10px 12px 10px;
    font-size: 0.97rem;
  }
  .cookie-modal {
    min-width: 0;
    width: 97vw;
    padding: 22px 12px 12px 12px;
  }
}

/* ============================
   PLAYFUL, DYNAMIC ANIMATIONS
============================ */
@keyframes playfulBounceIn {
  0% { transform: scale(0.6) rotate(-4deg); opacity: 0; }
  80% { transform: scale(1.05) rotate(5deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); }
}
.content-wrapper > h1, .content-wrapper > h2, .content-wrapper > h3, .content-wrapper > h4 {
  animation: playfulBounceIn 0.8s cubic-bezier(.62,-0.45,.54,1.53);
}
.cta-btn, .service-card, .faq-item, .card, .testimonial-card {
  animation: playfulBounceIn 0.85s cubic-bezier(.62,-0.45,.54,1.53) both;
}

/* ============================
   RESPONSIVE ADJUSTMENTS
============================ */
@media (max-width: 1050px) {
  .service-cards, .glass-types-grid, .values-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .service-card, .glass-types-grid > div, .values-grid > div {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 700px) {
  .container {
    padding: 0 7px;
  }
  .section {
    padding: 16px 4px;
  }
  .footer-row, .footer-contact {
    padding-left: 8px;
    padding-right: 8px;
  }
  .service-cards, .glass-types-grid, .values-grid {
    gap: 14px;
  }
}

/* ============================
   FUN, ENERGETIC TYPOGRAPHY
============================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  background: #fff;
  color: #222C3A;
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, sans-serif;
}
h1, h2 {
  font-weight: 900;
  /* playful variant: bold and uppercase */
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.cta-btn, .nav-cta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Fun accent underline on main hero h1 */
.content-wrapper > h1:after {
  content: '';
  display: block;
  width: 80px;
  height: 7px;
  background: var(--color-accent);
  border-radius: 7px;
  margin: 13px 0 0 0;
}

/* ============================
   BRIGHT COLORS
============================ */
::selection {
  background: var(--color-accent);
  color: #fff;
}

/* playful color dots for Hero headline (optional) */
@media (min-width: 900px) {
  .content-wrapper > h1 {
    position: relative;
  }
  .content-wrapper > h1:before {
    content: '';
    position: absolute;
    left: -30px;
    top: -16px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: #F5B63C;
    box-shadow: 26px 38px 0 0 #eda8c7, 60px 8px 0 0 #82cfff;
    z-index: 1;
    opacity: 0.43;
    pointer-events: none;
  }
}

/* playful icon bounce */
@keyframes playfulIconUpDown {
  0%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px) scale(1.08); }
  80% { transform: translateY(2px); }
}
.features-list img, .service-card img, .glass-types-grid img {
  animation: playfulIconUpDown 1.8s infinite cubic-bezier(.68,-0.55,.27,1.55);
}

/* ============================
   VISUAL SECTIONS + CARD SPACING
============================ */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: transparent;
}

/* Section alternation for a playful dynamic look */
section:nth-child(even) {
  background: #fdf4e5;
}

@media (max-width: 800px) {
  section {
    margin-bottom: 32px;
    padding: 18px 0;
  }
}

/* ============================
   ACCESSIBILITY
============================ */
a:focus, button:focus, input:focus {
  outline: 2.5px solid var(--color-accent);
  outline-offset: 2px;
}

/* ============================
   PRINT STYLES (simple)
============================ */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal, .cookie-modal-backdrop, .cta-btn { display: none !important; }
  section, .container { padding: 0 !important; margin: 0 !important; }
}
