/* ===============================================================
   CSS RESET & BASE
   ============================================================ */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F5F6F3;
  color: #234254;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img, svg {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #234254;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #769266;
  outline: none;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 1em;
}
/* Typography for all headings */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #234254;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-top: 0;
}
h2 {
  font-size: 2rem;
  line-height: 1.15;
}
h3 {
  font-size: 1.3rem;
  line-height: 1.18;
  color: #769266;
}
h4, h5 {
  font-size: 1rem;
  font-weight: 600;
}
p, blockquote, cite, li, em, strong {
  font-size: 1.06rem;
  color: #234254;
}
blockquote {
  font-style: italic;
  background: #EAEDEC;
  border-left: 6px solid #769266;
  margin: 0 0 10px 0;
  padding: 20px 24px;
  border-radius: 16px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  color: #234254;
  box-shadow: 0 2px 10px 0 rgba(35,66,84,0.09);
}
cite {
  display: block;
  color: #769266;
  font-style: normal;
  margin-top: 6px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
}
strong {
  color: #234254;
  font-weight: 700;
}
em {
  color: #769266;
}
/* Artful divider */
hr {
  border: 0;
  border-top: 2px dashed #769266;
  margin: 32px 0;
}
/* ===============================================================
   LAYOUT CONTAINERS & SPACING (Only Flexbox!)
   ============================================================ */
.container {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 24px;
  box-shadow: none;
}
.features-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.project-list, .workshop-list, .team-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.feature-item, .service-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F5F6F3;
  border-radius: 20px;
  box-shadow: 0 3px 18px 0 rgba(118,146,102,0.08);
  padding: 28px 26px;
  margin-bottom: 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFFFFF;
  border: 2.5px solid #769266;
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(35, 66, 84, 0.06);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  min-width: 280px;
  flex: 1 1 260px;
  transition: box-shadow .25s, border-color .25s;
}
.card:hover {
  box-shadow: 0 6px 30px 0 rgba(35,66,84,0.17);
  border-color: #234254;
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.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;
  margin-bottom: 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F5F6F3;
  border-radius: 22px;
  margin-bottom: 20px;
  border: 1.5px solid #23425422;
  box-shadow: 0 1.5px 12px 0 rgba(35,66,84,0.07);
  flex-wrap: wrap;
  min-width: 270px;
  flex: 1 1 230px;
}
/* Unique visual/artistic effects */
.section:nth-child(odd) {
  background: #FFFFFF;
  box-shadow: 0 8px 32px 0 rgba(35,66,84,0.04);
}
.section:nth-child(even) {
  background: #EAECDF;
  box-shadow: 0 1.5px 12px 0 rgba(118,146,102,0.06);
}
.section h2::after {
  display: block;
  content: '';
  width: 44px;
  height: 5px;
  background: #769266;
  border-radius: 6px;
  margin-top: 8px;
}
/* ===============================================================
   HEADER & NAVIGATION
   ============================================================ */
header {
  background: #234254;
  color: #fff;
  padding: 0;
  box-shadow: 0 2px 16px 0 rgba(35,66,84,0.11);
  width: 100%;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 20px 12px 20px;
  max-width: 1240px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
header nav a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.035em;
  font-weight: 500;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.14s, color 0.14s;
}
header nav a:hover, header nav a:focus {
  color: #769266;
  border-bottom: 2px solid #769266;
}
header .cta {
  background: #769266;
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.03rem;
  padding: 11px 32px;
  border: none;
  border-radius: 24px 6px 22px 10px;
  margin-left: 10px;
  box-shadow: 0 2px 16px 0 rgba(118,146,102,0.14);
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .25s;
  outline: none;
}
header .cta:hover, header .cta:focus {
  background: #234254;
  color: #fff;
  box-shadow: 0 5px 18px 0 rgba(35,66,84,0.14);
}
/* ===============================================================
   BURGER MOBILE MENU
   ============================================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 22px;
  background: #769266;
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: 12px 30px 16px 24px;
  font-size: 2rem;
  z-index: 1001;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(118,146,102,0.19);
  transition: background .18s, color .18s, box-shadow .22s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #234254;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #234254;
  color: #fff;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(0.71,0,0.33,1);
  box-shadow: 0 2px 24px #234254aa;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  border: none;
  font-size: 2.4rem;
  padding: 14px 16px;
  align-self: flex-end;
  cursor: pointer;
  margin: 8px 10px 0 0;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #769266;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 56px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.32rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: linear-gradient(90deg, #234254 40%, #769266 100%);
  border-radius: 18px;
  padding: 14px 30px;
  letter-spacing: 0.045em;
  transition: background .20s, color .20s;
  min-width: 220px;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #769266;
  color: #fff;
}
/* Hide desktop nav on mobile, and show burger */
@media (max-width: 945px) {
  header nav, header .cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 946px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none!important;
  }
}
/* ===============================================================
   MAIN, CARDS, FEATURES, TESTIMONIALS
   ============================================================ */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  list-style: none;
}
.service-list li {
  flex: 1 1 260px;
  min-width: 260px;
  background: #fff;
  border-left: 6px solid #769266;
  padding: 28px 24px 20px;
  border-radius: 18px;
  margin-bottom: 18px;
  font-size: 1.08rem;
  box-shadow: 0 3px 18px 0 rgba(118,146,102,0.09);
  transition: box-shadow .24s, border-color .18s;
}
.service-list li:hover {
  border-left: 6px solid #234254;
  box-shadow: 0 6px 26px 0 rgba(35,66,84,0.13);
  z-index: 1;
}
.features-grid > div {
  background: #F5F6F3;
  border-radius: 20px;
  box-shadow: 0 3px 18px 0 rgba(118,146,102,0.09);
  padding: 30px 24px;
  flex: 1 1 230px;
  min-width: 210px;
  transition: box-shadow .20s, background .18s;
  border-bottom: 4px solid #76926688;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.features-grid > div:hover {
  background: #e7e9d9;
  box-shadow: 0 8px 34px 0 rgba(118,146,102,0.16);
  border-bottom: 4px solid #23425477;
}
.features-grid img {
  width: 38px;
  margin-bottom: 8px;
}
.team-section > div {
  background: #FAF8F0;
  border-left: 4.5px solid #234254;
  border-radius: 15px;
  padding: 24px 20px;
  margin-bottom: 12px;
  flex: 1 1 240px;
  min-width: 180px;
  box-shadow: 0 2px 10px 0 rgba(35,66,84,0.08);
}
.workshop-list > div {
  background: #fff;
  border-radius: 15px;
  padding: 23px 20px 17px;
  margin-bottom: 15px;
  flex: 1 1 190px;
  min-width: 160px;
  box-shadow: 0 2px 10px 0 rgba(118,146,102,0.10);
}
.project-list > div {
  background: #fff;
  border-radius: 22px 6px 40px 16px;
  box-shadow: 0 3px 18px 0 rgba(35,66,84,0.06);
  padding: 28px 26px 20px;
  min-width: 220px;
  flex: 1 1 260px;
  margin-bottom: 18px;
  border-left: 4.5px solid #769266;
}
.project-list > div h3 {
  color: #234254;
  margin-bottom: 9px;
  font-size: 1.2rem;
}
.testimonial-card {
  background: #FFFFFF;
  /* white for optimum text contrast */
  color: #234254;
  box-shadow: 0 2px 14px 0 rgba(35,66,84,0.08);
  border: 1.5px solid #76926633;
  padding: 26px 28px 20px 25px;
  border-radius: 25px;
  margin-bottom: 22px;
  min-width: 220px;
  max-width: 660px;
}
.testimonial-card blockquote {
  background: transparent;
  border-left: 4.5px solid #769266;
  box-shadow: none;
  color: #234254;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 0 0 0 18px;
}
.testimonial-card cite {
  margin-top: 6px;
}
/* FAQ, cookie and info links */
.text-section a {
  color: #769266;
  font-weight: 600;
  text-decoration: underline;
  transition: color .20s;
}
.text-section a:hover, .text-section a:focus {
  color: #234254;
}
/* --------------------------------------------------------------
   BUTTONS / PRIMARY CTA
--------------------------------------------------------------- */
.cta {
  display: inline-block;
  background: linear-gradient(90deg, #769266 54%, #234254 100%);
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.10rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 14px 36px;
  border-radius: 24px 6px 22px 10px;
  border: none;
  text-align: center;
  text-transform: none;
  box-shadow: 0 3px 18px 0 rgba(118,146,102,0.10);
  margin: 0 4px 8px 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .18s, color .18s, box-shadow .22s, transform .18s;
  outline: none;
}
.cta:hover, .cta:focus {
  background: #234254;
  color: #F5F6F3;
  box-shadow: 0 6px 24px 0 rgba(35,66,84,0.13);
  transform: translateY(-3px) scale(1.03);
}
/* ===============================================================
   FOOTER
   ============================================================ */
footer {
  background: #234254;
  color: #fff;
  padding: 38px 0 28px 0;
  position: relative;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 26px;
  max-width: 1240px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
  padding: 5px 0;
}
footer nav a {
  color: #fff;
  opacity: 0.98;
  transition: color .18s, opacity .16s;
  padding: 0;
  border-bottom: 1px dotted #fff0;
}
footer nav a:hover, footer nav a:focus {
  color: #769266;
  opacity: 1;
  border-bottom: 1px dotted #769266;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 1.04rem;
  color: #F5F6F3;
  margin-top: 13px;
}
.footer-contact img {
  width: 20px;
  vertical-align: middle;
  margin-right: 8px;
}
.footer-contact span {
  color: #F5F6F3;
  font-size: 1rem;
  margin-left: 4px;
}
footer img {
  width: 58px;
  margin-bottom: 8px;
}
/* ==========================================================
   RESPONSIVE DESIGN (Mobile-first)
========================================================== */
@media (max-width: 1100px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 945px) {
  .features-grid, .project-list, .team-section, .card-container, .workshop-list {
    flex-direction: column;
    gap: 14px;
  }
  .features-grid > div, .service-list li, .workshop-list > div, .project-list > div, .team-section > div {
    min-width: 0;
    width: 100%;
  }
  .testimonial-card, .card {
    width: 100%;
    min-width: 190px;
  }
}
@media (max-width: 800px) {
  .container {
    padding: 0 10px;
  }
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-contact {
    margin-top: 12px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  .section {
    padding: 28px 6px;
    margin-bottom: 38px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .testimonial-card, .card {
    padding: 18px 16px 14px 10px;
  }
  .content-wrapper {
    gap: 14px;
    margin-bottom: 12px;
  }
}
@media (max-width: 500px) {
  .section {
    padding: 13px 2px;
    margin-bottom: 22px;
  }
  .container {
    padding: 0 3px;
  }
  .footer-contact span, .footer-contact {
    font-size: 0.98rem;
  }
}
/* ============================================================
   ANIMATIONS (cards, button, testimonials, menu)
============================================================== */
.card, .features-grid > div, .workshop-list > div, .testimonial-card, .project-list > div {
  transition: box-shadow 0.23s, border-color 0.17s, background 0.18s, transform 0.20s;
}
.cta:hover, .card:hover, .features-grid > div:hover, .testimonial-card:hover, .service-list li:hover {
  transform: translateY(-2px) scale(1.03);
  z-index: 5;
}
.section, .card, .testimonial-card, .features-grid > div, .workshop-list > div, .service-list li {
  animation: fadeinUp 0.7s cubic-bezier(.39,.58,.57,1.0) 0.04s both;
}
@keyframes fadeinUp {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: none; }
}
/* ============================================================
   COOKIE CONSENT BANNER & MODAL (bottom fixed, modal fade)
=========================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff6e0;
  box-shadow: 0 -2px 22px 0 rgba(118,146,102,0.14);
  color: #234254;
  z-index: 1700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 18px 20px 22px;
  font-size: 1.03rem;
  border-top: 3px solid #769266;
  animation: fadeinUp 0.88s cubic-bezier(.39, .58, .57, 1.0) 0.04s both;
}
.cookie-banner__message {
  font-size: 1rem;
  color: #234254;
  flex: 1 1 50%;
  margin-right: 12px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #769266;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 17px 6px 17px 9px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.01rem;
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .17s;
  box-shadow: 0 2px 7px 0 rgba(118,146,102,0.17);
}
.cookie-btn.settings {
  background: #EAEDEC;
  color: #234254;
  border: 1.5px solid #76926644;
}
.cookie-btn.reject {
  background: #F5F6F3;
  color: #234254;
  border: 1.5px solid #769266;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: #234254;
  color: #fff;
  box-shadow: 0 4px 14px 0 rgba(35,66,84,0.16);
}
.cookie-btn.settings:focus, .cookie-btn.settings:hover {
  background: #234254;
  color: #fff;
}
.cookie-btn.reject:focus, .cookie-btn.reject:hover {
  background: #769266;
  color: #fff;
}
/* Cookie settings modal */
.cookie-modal {
  position: fixed;
  z-index: 1800;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,66,84,0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeinUp 0.33s cubic-bezier(.4,.7,.7,1.23) both;
}
.cookie-modal__content {
  background: #fff;
  border-radius: 28px 10px 22px 18px;
  padding: 44px 34px 34px 34px;
  width: 98vw;
  max-width: 355px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 12px 52px 0 rgba(35,66,84,0.16);
}
.cookie-modal h3 {
  margin-bottom: 8px;
  color: #234254;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.cookie-option input[type=checkbox] {
  accent-color: #769266;
  width: 22px;
  height: 22px;
}
.cookie-modal__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal__close {
  position: absolute;
  right: 16px;
  top: 16px;
  background: transparent;
  color: #234254;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: color 0.16s;
}
.cookie-modal__close:focus, .cookie-modal__close:hover {
  color: #769266;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 5px 16px 4px;
    font-size: 0.98rem;
  }
  .cookie-modal__content {
    padding: 28px 12px 20px 12px;
    max-width: 99vw;
  }
}
/* ===============================================================
   CUSTOM ARTISTIC/CREATIVE EFFECTS & DETAILS
=============================================================== */
.section, .features-grid > div, .project-list > div, .card, .team-section > div, .workshop-list > div {
  /* playful brush border effect using box-shadow */
  box-shadow: 0 2.5px 12px 0 rgba(35,66,84,0.06), 0 8.5px 23px -8px rgba(118,146,102,0.05);
  border-radius: 24px 10px 28px 18px;
}
h1, h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  text-shadow: 2px 2px 0 #76926624;
  letter-spacing: 0.04em;
}
h2 {
  color: #234254;
  background: linear-gradient(90deg, #769266 72%, #234254 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  margin-bottom: 8px;
}
h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.section {
  border: 2.5px solid #23425412;
}
/* Brushstroke underline for artistic touch */
h2::after {
  display: block;
  content: '';
  width: 48px;
  height: 7px;
  background: #769266;
  border-radius: 20px 7px 11px 4px;
  margin-top: 7px;
  margin-bottom: 0;
  opacity: 0.55;
}
.cta::after {
  content: '→';
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #fff7d5;
  margin-left: 12px;
  font-size: 1.32em;
  vertical-align: middle;
  font-weight: 700;
  opacity: 0.71;
  transition: opacity 0.16s, margin-left 0.13s;
}
.cta:hover::after, .cta:focus::after {
  opacity: 1;
  margin-left: 18px;
}
/* Vibing accent corners absolute */
.features-grid > div::before, .project-list > div::before {
  content: '';
  display: block;
  position: absolute;
  left: -10px; top: -10px;
  width: 40px; height: 14px;
  border-radius: 15px 15px 4px 21px;
  background: #76926633;
  z-index: 1;
  pointer-events: none;
}
.features-grid > div::after {
  content: '';
  position: absolute;
  right: -8px; bottom: -10px;
  width: 19px; height: 19px;
  border-radius: 100%;
  background: #23425417;
  z-index: 1;
}
@media (max-width: 700px) {
  .features-grid > div::before, .features-grid > div::after, .project-list > div::before {
    display: none;
  }
}
/* Animating in, visual interest for .cta and nav, small pulse */
@keyframes buttonPulse {
  0% { box-shadow: 0 0 0 0 rgba(35,66,84,.12); }
  70% { box-shadow: 0 0 8px 8px rgba(118,146,102,.12); }
  100% { box-shadow: 0 0 0 0 rgba(35,66,84,.01); }
}
.cta:active, .cookie-btn:active {
  animation: buttonPulse .5s;
}
/* ===============================================================
   ACCESSIBILITY & PRINT SAFE
=============================================================== */
:focus {
  outline: 2.5px dashed #769266;
  outline-offset: 3px;
}
@media print {
  header, footer, .mobile-menu-toggle, .cookie-banner, .cookie-modal { display: none !important; }
  body { color: #000; background: #fff; }
}
