/* ===================================================
   HYPERION FLUX NATURKRAFT - STYLE.CSS
   Industrial Modern UI - Flexbox ONLY - Mobile First
   =================================================== */

/* ================= 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;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #181c1a;
  color: #f1f8e9;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a { color: #8BC34A; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #b2ff59; text-decoration: underline; }
img { max-width: 100%; display: block; }
ul, ol { margin-left: 1.25em; padding-left: 1.25em; }
strong, b { font-weight: 700; }
em, i { font-style: italic; }

/* ================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  color: #f1f8e9;
  letter-spacing: 0.01em;
  font-weight: 600;
  margin-bottom: 16px;
}
h1 { font-size: 2.25rem; /* 36px */ line-height: 1.15; margin-bottom: 20px; }
h2 { font-size: 1.5rem; /* 24px */ margin-bottom: 16px; }
h3 { font-size: 1.25rem; /* 20px */ }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1em; }
small { font-size: 0.9375rem; color: #aeb6b3; }

/* ============ INDUSTRIAL MODERN FONTS ============= */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local('Montserrat'), url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');
}

/* ================ COLOR VARIABLES ================= */
:root {
  --primary: #26604F;
  --secondary: #8BC34A;
  --accent: #F1F8E9;
  --bg-dark: #181c1a;
  --surface: #202321;
  --surface-light: #232826;
  --border-metal: #5C6B69;
  --card-shadow: 0 4px 16px 0 rgba(40,50,50,0.1), 0 1.5px 9px 0 rgba(25,33,29,0.14);
  --metallic: #757575;
  --error: #CF6679;
}

/* ================== CONTAINER ===================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* ================ HEADER & NAV ==================== */
header {
  background: var(--surface);
  box-shadow: 0 2px 10px rgba(24,28,26,0.07);
  border-bottom: 2px solid var(--border-metal);
  z-index: 30;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
header img[alt="Hyperion Flux Naturkraft"] { height: 38px; }
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #b0c0ba;
  padding: 5px 9px;
  letter-spacing: 0.03em;
  position: relative;
  font-weight: 400;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--accent);
  background: rgba(82,99,98,0.20);
}

.cta.primary {
  background: linear-gradient(93deg, var(--primary), #2b5a4b 80%);
  color: var(--accent);
  border-radius: 6px;
  padding: 11px 28px;
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.07em;
  box-shadow: 0 2px 12px 0 rgba(36,64,52,0.07);
  border: none;
  cursor: pointer;
  margin-left: 16px;
  transition: background 0.22s, color 0.22s, transform 0.17s;
  outline: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(93deg, #1d493e 10%, #437547 90%);
  color: #e6ffe6;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 16px 0 rgba(40,90,60,0.16);
}
.cta.secondary {
  background: none;
  border: 2px solid var(--secondary);
  color: var(--secondary);
  box-shadow: none;
  border-radius: 6px;
  display: inline-block;
  padding: 9px 24px;
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 8px;
  letter-spacing: 0.07em;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, border 0.22s, transform 0.17s;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--surface);
  transform: translateY(-2px) scale(1.03);
}

/* Hide main nav and CTA on mobile, show burger */
.mobile-menu-toggle {
  display: inline-flex;
  background: var(--surface-light);
  border: none;
  color: var(--secondary);
  font-size: 2rem;
  padding: 10px 16px;
  border-radius: 6px;
  margin-left: 8px;
  transition: background 0.18s, color 0.18s;
  align-items: center;
  justify-content: center;
  z-index: 100;
  cursor: pointer;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: rgba(139,195,74,0.12);
  color: #b2ff59;
}
/* default hidden on desktop, shown on mobile below */
.main-nav, .cta.primary { display: none; }
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(24,28,26,0.98);
  z-index: 399;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.88,.02,.13,.99);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding-top: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: relative;
  margin: 22px 0 16px 24px;
  background: none;
  color: var(--secondary);
  font-size: 2rem;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 50%;
  box-shadow: 0 1px 5px 0 rgba(36,60,49,0.10);
  transition: background .14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus { background: rgba(139,195,74,0.14); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 16px 32px;
  width: 100%;
}
.mobile-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  padding: 15px 12px 10px 0;
  font-weight: 600;
  border-bottom: 1px solid #323733;
  transition: color 0.16s, background 0.13s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
  background: none;
}

@media (min-width: 900px) {
  .main-nav { display: flex !important; }
  .cta.primary { display: inline-block !important; }
  .mobile-menu-toggle { display: none !important; }
  .mobile-menu { display: none !important; }
}

/* ================= HERO SECTION =================== */
.hero {
  background: linear-gradient(107deg, #1c201e 75%, #222b28 100%);
  padding: 48px 0 36px 0;
  margin-bottom: 60px;
}
.hero .container { display: flex; align-items: center; }
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 560px;
  margin: 0 auto;
}
.hero h1 {
  color: var(--secondary);
  font-size: 2.4rem;
  letter-spacing: 0.03em;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(60,95,68,0.12);
}
.hero p { color: var(--accent); font-size: 1.15rem; }

/* ============== SECTION SPACING =================== */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  position: relative;
}

.features, .feature-grid, .team-list, .project-list, .workshop-list, .editor-profiles, .blog-post-teasers {
  width: 100%;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--surface);
  border: 1.5px solid var(--border-metal);
  border-radius: 9px;
  min-width: 230px;
  flex: 1 1 230px;
  max-width: 340px;
  padding: 28px 20px 22px 20px;
  margin-bottom: 20px;
  box-shadow: var(--card-shadow);
  transition: border-color 0.18s, box-shadow 0.22s, transform 0.15s;
}
.feature-item:hover, .feature-item:focus {
  border-color: var(--secondary);
  box-shadow: 0 6px 30px 0 rgba(139,195,74,0.13), var(--card-shadow);
  transform: translateY(-3px) scale(1.025);
}
.feature-item img {
  height: 38px;
  width: 38px;
  filter: grayscale(35%) brightness(1.2) contrast(1.2);
}
.feature-item h3 {
  color: var(--secondary);
  font-size: 1.13rem;
}
.feature-item .price {
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.012em;
}

/* =============== CARD LAYOUTS ===================== */
.card-container, .service-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 0;
}
.card, .service-card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 375px;
  background: var(--surface-light);
  padding: 25px 18px 18px 18px;
  border-radius: 9px;
  border: 1.5px solid var(--border-metal);
  box-shadow: var(--card-shadow);
  transition: border-color 0.18s, box-shadow 0.23s, transform 0.14s;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.card:hover, .service-card:hover, .card:focus, .service-card:focus {
  border-color: var(--secondary);
  box-shadow: 0 6px 24px 0 rgba(139,195,74,0.17), var(--card-shadow);
  transform: translateY(-2px) scale(1.017);
}
.card h3, .service-card h3 {
  color: var(--secondary);
  font-size: 1.15rem;
}
.card .price, .service-card .price {
  color: #f1f8e9;
  background: var(--primary);
  border-radius: 5px;
  display: inline-block;
  padding: 3px 11px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 7px;
}

/* ================ CONTENT GRID ==================== */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}

/* ============= TEXT-IMAGE-SECTION ================= */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}

/* ============ TESTIMONIALS & REVIEWS ============== */
.testimonials .testimonial-card, .testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f6f7f5;
  color: #222b28;
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid var(--secondary);
  box-shadow: 0 6px 30px 0 rgba(88,110,81,0.09);
  margin-bottom: 20px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.04rem;
  line-height: 1.7;
  position: relative;
  min-width: 0;
  max-width: 760px;
}
.testimonial-card strong {
  color: var(--primary);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-left: 8px;
}

/* Trust, Award, Logo clusters */
.trust-logos, .awards-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
  align-items: center;
}
.trust-logos img, .awards-certifications img {
  height: 36px;
  width: auto;
  filter: grayscale(30%) brightness(1.2) contrast(1.5);
}

/* =============== SECTION, TEXT & LISTS ============= */
.text-section {
  margin-bottom: 20px;
}
.text-section ul, .features ul, .content-wrapper ul {
  list-style: disc;
  padding-left: 17px;
  margin-bottom: 18px;
}
.text-section ul li, .features ul li {
  font-size: 1rem;
  margin-bottom: 9px;
  color: #e2e9df;
}
.about, .about.projects, .about.location, .about.privacy, .about.gdpr, .about.cookie-policy, .about.terms {
  background: var(--surface-light);
  border-radius: 9px;
  box-shadow: 0 4px 18px 0 rgba(45,56,53,0.08);
}
.about .content-wrapper, .about.projects .content-wrapper, .about.location .content-wrapper {
  gap: 22px;
}

/* ============== BLOG/LISTING/LAYOUTS =============== */
.blog-post-teasers, .editor-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.blog-post-teasers .text-section {
  background: var(--surface-light);
  border-radius: 8px;
  border: 1.5px solid var(--border-metal);
  box-shadow: var(--card-shadow);
  padding: 18px 18px 12px 18px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 360px;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.14s;
}
.blog-post-teasers .text-section:hover {
  border-color: var(--secondary);
  box-shadow: 0 6px 20px 0 rgba(139,195,74,0.12), var(--card-shadow);
  transform: translateY(-2px) scale(1.017);
}
.editor-profiles .text-section {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0 0 0 0;
}

/* ================ CTA SECTION ====================== */
.cta, .section.cta {
  background: linear-gradient(93deg, #222d29 80%, #29564a 100%);
  border-radius: 11px;
  padding: 38px 20px;
  margin-bottom: 60px;
  box-shadow: 0 5px 32px 0 rgba(40,90,60,0.10);
  text-align: left;
}
.cta h2 { color: var(--secondary); margin-bottom: 13px; }
.cta p { color: var(--accent); margin-bottom: 22px; }
.cta .cta.primary { margin-top: 0; }
.cta.newsletter .cta.primary {
  background: var(--secondary);
  color: var(--surface);
}
.cta.newsletter .cta.primary:hover,
.cta.newsletter .cta.primary:focus {
  background: #aed581;
  color: #202321;
}

/* ================ FOOTER ========================== */
footer {
  background: var(--surface);
  border-top: 2.5px solid var(--border-metal);
  padding: 36px 0 24px 0;
  margin-top: 50px;
  box-shadow: 0 -2px 10px rgba(25,27,25,0.08);
}
footer .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 32px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #aeb6b3;
}
.footer-brand img {
  height: 34px;
  margin-bottom: 8px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-menu a {
  color: #aeb6b3;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 5px 9px;
  border-radius: 4px;
  transition: color 0.18s, background 0.16s;
}
.footer-menu a:hover {
  color: var(--secondary);
  background: rgba(139,195,74,0.11);
}

@media (min-width: 700px) {
  footer .container {
    flex-direction: row;
    align-items: flex-start;
  }
}

/* =============== CONTACT PAGE SPECIFIC ============= */
.contact-details, .contact-message {
  background: var(--surface-light);
  border-radius: 9px;
  box-shadow: 0 4px 18px 0 rgba(45,56,53,0.08);
  margin-bottom: 60px;
}
.contact-details .content-wrapper, .contact-message .content-wrapper {
  gap: 20px;
}
.privacy-note {
  background: #161a16;
  color: var(--accent);
  padding: 11px 18px;
  border-radius: 7px;
  font-size: 0.96rem;
  margin-bottom: 13px;
}
.cta-section {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 16px;
}

/* ================ COOKIE BANNER =================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #232826;
  color: var(--accent);
  border-top: 3px solid var(--secondary);
  box-shadow: 0 -5px 24px 0 rgba(41,64,52,0.09);
  z-index: 4000;
  padding: 19px 8vw 18px 8vw;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  transition: transform 0.37s, opacity 0.25s;
  opacity: 0.97;
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 10px;
  margin-left: auto;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  border: none;
  border-radius: 6px;
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, transform 0.10s;
  padding: 8px 18px;
  margin-left: 0;
}
.cookie-banner .cookie-accept {
  background: var(--secondary);
  color: var(--surface);
  margin-right: 2px;
}
.cookie-banner .cookie-accept:hover { background: #aed581; color: #232826; }
.cookie-banner .cookie-reject {
  background: #282e28;
  color: var(--secondary);
  border: 1.5px solid var(--secondary);
}
.cookie-banner .cookie-reject:hover { background: #1c1e1c; color: #aed581; }
.cookie-banner .cookie-settings {
  background: none;
  color: #b5cbbb;
  border: 1px solid #4b564b;
}
.cookie-banner .cookie-settings:hover { background: #383e38; color: var(--secondary); }

/* =============== COOKIE MODAL ==================== */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10001;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(18,20,18,0.93);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.27s;
}
.cookie-modal { 
  background: var(--surface-light);
  padding: 34px 24px 24px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 44px 0 rgba(41,96,79,0.28);
  color: var(--accent);
  max-width: 390px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  position: relative;
}
.cookie-modal h2 {
  color: var(--secondary);
  font-size: 1.35rem;
  margin-bottom: 14px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  cursor: pointer;
}
.cookie-modal .cookie-category {
  margin-bottom: 10px;
  font-size: 1.01rem;
}
.cookie-modal .toggle {
  width: 40px; height: 22px; position: relative; margin-right: 11px;
}
.cookie-modal .toggle input[type="checkbox"] {
  opacity: 0; width: 0; height: 0;
}
.cookie-modal .slider {
  position: absolute; cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #2f342f;
  border-radius: 16px;
  transition: background 0.18s;
}
.cookie-modal .toggle input:checked + .slider {
  background: var(--secondary);
}
.cookie-modal .slider:before {
  content: "";
  position: absolute; left: 2.5px;
  top: 2.3px; width: 17px; height: 17px;
  background: #fff; border-radius: 100%;
  transition: transform 0.15s;
  box-shadow: 0 1px 3px 0 rgba(26,35,30,0.10);
}
.cookie-modal .toggle input:checked + .slider:before {
  transform: translateX(17px);
  background: #1c1e1c;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  width: 100%;
  margin-top: 7px;
}
.cookie-modal .cookie-actions button {
  font-size: 1rem;
  padding: 8px 18px;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
}
.cookie-modal .cookie-actions .cookie-accept {
  background: var(--secondary);
  color: var(--surface);
}
.cookie-modal .cookie-actions .cookie-reject {
  background: #282e28;
  color: var(--secondary);
  border: 1.5px solid var(--secondary);
}
.cookie-modal .cookie-actions .cookie-close {
  background: none;
  color: #b0c0ba;
  text-decoration: underline;
}
.cookie-modal .cookie-actions button:hover {
  opacity: 0.88;
}

/* ================ RESPONSIVE ====================== */
@media (max-width: 1080px) {
  .container { max-width: 98vw; }
}
@media (min-width: 700px) {
  .feature-grid { justify-content: flex-start; }
  .feature-item { max-width: 320px; }
  .card-container, .service-overview { justify-content: flex-start; }
  .card, .service-card { max-width: 320px; }
}
@media (max-width: 900px) {
  .main-nav, .cta.primary { display: none !important; }
  .mobile-menu-toggle { display: inline-flex; }
  .mobile-menu { display: flex !important; }
}
@media (max-width: 700px) {
  .container { padding-left: 10px; padding-right: 10px; }
  .footer-menu { gap: 14px; }
  .footer-brand p { font-size: 0.95em; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.175rem; }
  h3 { font-size: 1rem; }
  .section, section {padding: 30px 10px; margin-bottom: 44px;}
  .hero {padding: 36px 0 24px 0;}
}
@media (max-width: 540px) {
  .container { padding-right: 2%; padding-left: 2%; }
  .feature-grid, .card-container, .service-overview, .blog-post-teasers { gap: 14px; }
  .footer-brand, .footer-menu { gap: 8px; }
  .cookie-banner { flex-direction: column; gap: 16px; padding: 13px 3vw 12px 3vw; }
  .footer-brand img { height: 22px; }
}

/* ======== MICRO-ANIMATIONS / MICRO-INTERACTIONS ====== */
.card, .feature-item, .service-card, .blog-post-teasers .text-section {
  transition: box-shadow 0.18s, border-color 0.16s, transform .13s;
}
.cta.primary, .cta.secondary { transition: background 0.19s, color 0.19s, box-shadow 0.13s, transform .14s; }
.main-nav a, .footer-menu a { transition: color 0.16s, background 0.15s; }
.mobile-menu, .mobile-menu.open { transition: transform 0.28s, box-shadow 0.14s; }

/* ===== ACCESSIBILITY & FOCUS ===== */
a:focus, .cta.primary:focus, .cta.secondary:focus, .mobile-nav a:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(139,195,74,0.21);
}
button:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* ====== MISC UTILITIES, ERRORS, ETC ====== */
.error, .form-error, .cookie-consent-error {
  color: var(--error);
  background: #2c1b1b;
  border-radius: 7px;
  padding: 10px 17px;
  margin: 12px 0;
  font-size: 1rem;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar { width: 12px; background: #232826; }
::-webkit-scrollbar-thumb { background: #35433c; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #4a6254; }

/* ======= PRINT RESET ======= */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  body { background: #fff; color: #212a22; }
  .about, .section, .container { background: none; box-shadow: none; color: #232a21; }
}
