/* =======================
   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;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after { box-sizing: inherit; }

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #263238;
  background-color: #F6F1EC;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img, picture, video {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}

ul,ol {
  list-style: none;
}
a {
  color: #A6794A;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #A6794A;
  outline-offset: 2px;
}

button, .cta-btn, .mobile-menu-toggle, .mobile-menu-close {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}
button:focus-visible {
  outline: 2px solid #A6794A;
}

strong, b {
  font-weight: 700;
}

hr {
  border: none;
  border-top: 1px solid #d7ccc8;
  margin: 32px 0;
}

/* =======================
   TYPOGRAPHY
   ======================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #263238;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-top: 32px;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  margin-top: 24px;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
p, li, ul, ol {
  font-size: 1rem;
  line-height: 1.7;
  color: #3e413b;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 1.5rem;
  }
}

/* =======================
   BRAND COLORS
   ======================= */
:root {
  --color-primary: #263238;
  --color-secondary: #A6794A;
  --color-accent: #F6F1EC;
  --color-green: #5d8141;
  --color-earth: #e2ccb0;
  --color-brown: #7e6143;
  --color-bg: #F6F1EC;
  --color-white: #fff;
  --color-grey: #ece4da;
  --shadow-card: 0 5px 20px rgba(94,80,67, .07);
  --radius-section: 36px;
  --radius-card: 20px;
}

/* =======================
   CONTAINER & SECTION SPACING
   ======================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: var(--color-accent);
  border-radius: var(--radius-section);
  box-shadow: var(--shadow-card);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* =======================
   HEADER & NAVIGATION
   ======================= */
header {
  background: var(--color-white);
  border-bottom: 2px solid var(--color-earth);
  box-shadow: 0 2px 12px rgba(166,121,74,.03);
  position: relative;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 16px;
}
header nav {
  display: none;
  gap: 20px;
}
header nav a {
  padding: 10px 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--color-primary);
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  font-weight: 500;
}
header nav a:hover,
header nav a.active {
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
}
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: var(--color-green);
  color: var(--color-white);
  border-radius: 28px;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(93,129,65,.10);
  margin-left: 8px;
  border: none;
  transition: background .2s, box-shadow .2s, color .2s;
  letter-spacing: 0.5px;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-secondary);
  color: var(--color-white);
  box-shadow: 0 6px 20px rgba(166,121,74,.15);
}

/* Hamburger on Mobile */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 22px;
  right: 18px;
  z-index: 140;
  width: 44px;
  height: 44px;
  background: var(--color-green);
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  box-shadow: 0 4px 24px #95ac8850;
  border: none;
  transition: background .2s, box-shadow .2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--color-brown);
  color: var(--color-accent);
}

/* Hide hamburger on desktop */
@media (min-width: 992px) {
  .mobile-menu-toggle { display: none; }
  header nav {
    display: flex !important;
    flex-direction: row;
    gap: 24px;
  }
}

/* =============================
   MOBILE MENU OVERLAY & ANIMATION
   ============================= */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: var(--color-accent);
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(.64,0,.08,1), opacity 0.3s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--color-brown);
  color: var(--color-accent);
  width: 44px;
  height: 44px;
  font-size: 2rem;
  border-radius: 50%;
  border: none;
  box-shadow: 0 2px 12px #ae8c7277;
  z-index: 140;
  transition: background .2s, color .2s;
}
.mobile-menu-close:hover {
  background: var(--color-green);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin-top: 80px;
  gap: 20px;
  align-items: flex-start;
  padding: 0 32px;
}
.mobile-nav a {
  color: var(--color-primary);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 12px 0;
  width: 100%;
  border-bottom: 1px solid #e6dbc9;
  transition: color .2s, background .2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-green);
  color: var(--color-accent);
  border-radius: 8px;
}

@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ================
   HERO SECTION
   ================ */
.hero {
  background: linear-gradient(125deg, #f6f1ec 70%, #e3d1bd 100%);
  min-height: 400px;
  padding: 56px 0;
  border-radius: 0 0 64px 64px / 0 0 36px 36px;
  box-shadow: 0 35px 55px -27px #e8e3db80;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
  margin-top: 14px;
}
.hero h1 {
  color: var(--color-green);
  font-size: 2.2rem;
  margin-bottom: 16px;
  max-width: 26ch;
  font-weight: 800;
}
.hero p {
  color: #4c5953;
  margin-bottom: 22px;
  max-width: 44ch;
  font-size: 1.13rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.hero .cta-btn {
  margin-top: 12px;
}

@media (min-width: 768px) {
  .hero {
    padding: 90px 0 64px;
  }
  .hero h1 {
    font-size: 3rem;
  }
}

/* =====================
   FLEX PATTERNS & GRIDS
   ===================== */
.card-container, .feature-grid, .project-list, .special-feature-cards, .value-cards, .special-projects,
.steps-list, .step-by-step, .testimonial-list, .contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.card, .feature, .project, .special-feature, .value-card, .special-project, .step {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 28px 22px 24px 22px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  min-width: 240px;
  transition: box-shadow .25s;
}
.card:hover, .feature:hover, .special-feature:hover, .value-card:hover, .special-project:hover, .project:hover, .step:hover {
  box-shadow: 0 10px 30px rgba(166,121,74,0.13);
}
.feature-grid {
  justify-content: flex-start;
  align-items: stretch;
}
.value-cards, .steps-list, .special-feature-cards, .special-projects, .testimonial-list, .project-list {
  gap: 24px;
}
.steps-list, .step-by-step {
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .card-container, .feature-grid, .project-list, .special-feature-cards, .value-cards, .special-projects,
  .steps-list, .step-by-step, .testimonial-list, .contact-details {
    flex-direction: column;
    gap: 20px;
  }
}

/* =====================
   FEATURE SECTION
   ===================== */
.feature img, .step img, .special-feature img, .special-project img {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  display: block;
}
.feature h3, .special-feature h3, .step h3, .value-card h3, .special-project h3 {
  color: var(--color-green);
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: 700;
}
.feature p, .special-feature p, .value-card p, .project p, .special-project p, .step p {
  color: #3e413b;
  margin-bottom: 0;
}

/* =====================
   HIGHLIGHTED SERVICE
   ===================== */
.highlighted-service {
  background: var(--color-earth);
  padding: 18px 22px;
  border-radius: 16px;
  margin: 18px 0 18px 0;
  box-shadow: 0 1px 8px #dac3a277;
}

/* =====================
   TESTIMONIALS & OPINIONS
   ===================== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: var(--color-white);
  border-radius: 19px;
  box-shadow: 0 4px 20px rgba(109, 136, 95, .10);
  padding: 20px;
  margin-bottom: 24px;
  border-left: 7px solid var(--color-green);
  max-width: 520px;
}
.testimonial-card p {
  color: #263238;
  font-size: 1.05rem;
  margin-bottom: 2px;
}
.testimonial-card strong {
  color: var(--color-brown);
  font-family: 'Montserrat',Arial,Helvetica,sans-serif;
  font-size: .98rem;
  font-weight: 600;
}
.star-rating {
  color: #FFD600;
  font-size: 1.1rem;
  margin-bottom: 3px;
  letter-spacing: 1.5px;
  font-family: 'Montserrat',Arial,Helvetica,sans-serif;
}
.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* =====================
   CARDS, VALUES, FEATURES
   ===================== */
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 24px 20px;
  transition: box-shadow .22s;
}
.card:hover {
  box-shadow: 0 8px 30px rgba(166,121,74,0.13);
}

.value-card, .special-feature {
  border-left: 6px solid var(--color-green);
  background: var(--color-accent);
  border-radius: 16px;
  box-shadow: 0 1px 12px #e6dbc930;
}
.value-card:hover, .special-feature:hover {
  border-left: 6px solid var(--color-brown);
}

/* ===============
   LISTS & FAQS
   =============== */
ul, ol {
  margin-bottom: 24px;
  margin-top: 8px;
  padding-left: 16px;
  color: #393c39;
}
ul li, ol li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 22px;
  line-height: 1.65;
}
ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--color-green);
  border-radius: 50%;
}
.faq-list li {
  margin-bottom: 18px;
  background: var(--color-earth);
  border-radius: 8px;
  box-shadow: 0 1px 7px rgba(93,129,65,0.08);
  padding: 14px 16px 12px 18px;
  color: #263238;
  font-size: 1rem;
}

/* ===============
   CONTACT DETAILS
   =============== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-accent);
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 1rem;
  box-shadow: 0 1px 8px #e6dbc933;
}
.contact-details img {
  width: 25px;
  height: 25px;
}

/* ===============
   STATIC MAP
   =============== */
.static-map {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  margin-bottom: 6px;
}
.static-map img {
  width: 100%;
  max-width: 360px;
  border-radius: 10px;
  box-shadow: 0 2px 10px #cab18b22;
}
.static-map a {
  color: var(--color-green);
  text-decoration: underline;
  font-weight: 600;
  font-size: 1em;
}
.static-map a:hover {
  color: var(--color-brown);
}

/* ===============
   BUTTONS AND CTA
   =============== */
.cta-link {
  color: var(--color-green);
  font-family: 'Montserrat',Arial,Helvetica,sans-serif;
  font-weight: 700;
  text-decoration: underline;
  transition: color .2s, text-decoration-color .2s;
  font-size: 1.1em;
}
.cta-link:hover {
  color: var(--color-brown);
  text-decoration-color: var(--color-brown);
}

/* ===============
   FOOTER
   =============== */
footer {
  background: var(--color-earth);
  padding: 35px 0 30px 0;
  border-radius: 38px 38px 0 0/ 16px 16px 0 0;
  box-shadow: 0 -7px 22px #e8d9c288;
  color: #263238;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  width: 49px;
  height: 49px;
  margin-bottom: 6px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-links a {
  color: #263238;
  font-family: 'Montserrat',Arial,Helvetica,sans-serif;
  transition: color .2s;
  font-weight: 600;
  font-size: 1em;
}
.footer-links a:hover {
  color: var(--color-green);
}
.footer-contact p {
  color: #263238;
  font-size: 0.98em;
  margin-bottom: 3px;
}

@media (min-width: 800px) {
  footer .container {
    flex-direction: row;
    gap: 22px;
    align-items: flex-start;
  }
  .footer-logo { flex: 0 0 auto; }
  .footer-links { flex: 1 1 300px; }
  .footer-contact { flex: 1 1 300px; }
}

/* ===============
   THANK YOU PAGE
   =============== */
.thankyou-section .content-wrapper {
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 50px;
  gap: 24px;
}

/* ===============
   RESPONSIVE DESIGN
   =============== */
@media (max-width: 1200px) {
  .container {
    max-width: 99vw;
    padding-left: 8vw;
    padding-right: 8vw;
  }
}
@media (max-width: 900px) {
  .container {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media (max-width: 768px) {
  .content-wrapper {
    gap: 18px;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 38px;
    border-radius: 30px;
  }
  .hero {
    padding: 36px 0 22px;
    border-radius: 0 0 30px 30px;
  }
}

@media (max-width: 600px) {
  body { font-size: 15px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.07rem; }
  .container { padding: 0 10px; }
}

/* ==============
   COOKIE CONSENT
   ============== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--color-earth);
  box-shadow: 0 -5px 24px #caab8c44;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 18px 28px;
  z-index: 2500;
  transition: transform .4s, opacity .15s;
  border-radius: 18px 18px 0 0 / 10px 10px 0 0;
  font-size: 1rem;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner p { color: #263238; font-size: 1em; max-width: 660px; }
.cookie-banner button {
  font-family: 'Montserrat',Arial,Helvetica,sans-serif;
  margin-left: 8px;
  border-radius: 12px;
  background: var(--color-green);
  color: #fff;
  font-size: 1em;
  font-weight: 700;
  padding: 8px 20px;
  border: none;
  margin-bottom: 6px;
  transition: background .2s, color .2s;
  box-shadow: 0 2px 10px rgba(93,129,65,0.08);
}
.cookie-banner .settings-btn {
  background: var(--color-brown);
  color: #fff;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-secondary);
  color: #fff;
}

@media (max-width: 720px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 8px;
    gap: 12px;
  }
}

/* ===============
   COOKIE MODAL
   =============== */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(38,50,56,.42);
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: var(--color-accent);
  min-width: 340px;
  max-width: 96vw;
  border-radius: 22px;
  box-shadow: 0 8px 34px rgba(166,121,74,0.15);
  padding: 36px 24px 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-content h3 {
  color: var(--color-green);
  font-size: 1.2em;
  margin-bottom: 10px;
  font-family: 'Montserrat',Arial,Helvetica,sans-serif;
  font-weight: 700;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 18px 0 28px 0;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: var(--color-earth);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 1em;
}
.cookie-toggle {
  position: relative;
  margin-left: 12px;
}
.cookie-toggle input[type="checkbox"] {
  width: 38px;
  height: 22px;
  appearance: none;
  background: #cfd2ca;
  border-radius: 12px;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: background .17s;
}
.cookie-toggle input[type="checkbox"]:checked {
  background: var(--color-green);
}
.cookie-toggle input[type="checkbox"]:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.11);
  transition: left .15s;
}
.cookie-toggle input[type="checkbox"]:checked:before {
  left: 17px;
}
.cookie-modal .close-btn {
  position: absolute;
  top: 13px;
  right: 14px;
  background: var(--color-brown);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.6em;
  cursor: pointer;
  box-shadow: 0 2px 10px #ae8c7277;
}
.cookie-modal .close-btn:hover {
  background: var(--color-green);
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-btns button {
  font-family: 'Montserrat',Arial,Helvetica,sans-serif;
  font-weight: 700;
  background: var(--color-green);
  color: #fff;
  border-radius: 12px;
  padding: 8px 20px;
  border: none;
  transition: background .2s;
  box-shadow: 0 2px 10px rgba(93,129,65,0.08);
}
.cookie-modal .cookie-modal-btns button.settings-btn {
  background: var(--color-brown);
}
.cookie-modal .cookie-modal-btns button:hover {
  background: var(--color-secondary);
}

@media (max-width: 480px) {
  .cookie-modal-content {
    min-width: 90vw;
    padding: 22px 7vw 16px 7vw;
  }
}

/* =======================
   ORGANIC NATURE DETAILS
   ======================= */
.section, .card, .feature, .feature-card, .testimonial-card, .special-feature, .value-card, .special-project {
  background-image: url('data:image/svg+xml;utf8,<svg width="100" height="60" viewBox="0 0 100 60" fill="none" xmlns="http://www.w3.org/2000/svg"><ellipse opacity="0.06" cx="50" cy="30" rx="44" ry="22" fill="%234a8163"/><ellipse opacity="0.04" cx="80" cy="40" rx="18" ry="11" fill="%23A6794A"/></svg>');
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 40% 60%;
}

/* Organic edges for key cards */
.card, .section, .value-card, .special-feature, .testimonial-card {
  border-top-left-radius: 44px 26px;
  border-bottom-right-radius: 48px 30px;
}

/* Shadow accent for nature feel */
.card, .section, .value-card, .special-feature, .testimonial-card {
  box-shadow: 0 4px 18px #a8b5851a, 0 1.5px 8px #c4b79a19;
}

/* ===============
   MICRO-INTERACTIONS
   =============== */
.card, .feature, .testimonial-card, .cta-btn, .cta-link, .special-feature, .value-card, .project {
  transition: box-shadow .17s, background .22s, color .19s, transform .18s;
}
.card:hover, .feature:hover, .special-feature:hover, .value-card:hover, .cta-link:hover, .cta-btn:hover {
  transform: translateY(-2px) scale(1.012);
  box-shadow: 0 10px 30px #97b2832a;
  background-color: #f8f4ef;
}

input, textarea, select {
  border-radius: 8px;
  border: 1px solid #cbc3b7;
  font-size: 1em;
  font-family: inherit;
  padding: 10px 14px;
  margin-bottom: 12px;
  outline: none;
  transition: border .16s;
  background: #faf7f4;
}
input:focus, textarea:focus, select:focus {
  border: 1.8px solid var(--color-green);
}

/* ===============
   Z-INDEX STRATEGY
   =============== */
header, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal { z-index: 120; }
.cookie-banner { z-index: 2000; }
.cookie-modal { z-index: 3000; }

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

/* ================
   PRINT OPTIMIZE
   ================ */
@media print {
  header, .mobile-menu-toggle, .mobile-menu, .cookie-banner, .cookie-modal, footer { display: none !important; }
  body { background: none; }
  .section { padding: 0 !important; box-shadow: none; background: none; }
}
