/* ===================================================
   CSS RESET & NORMALIZATION
   =================================================== */
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, 
main, 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 {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #232834;
  color: #F3EFEB;
  min-height: 100vh;
  font-weight: 400;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #8E7C61;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F3EFEB;
}
ul, ol {
  list-style: none;
}
strong {
  font-weight: 600;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* ======================================
   FONT IMPORTS (industrial_modern style)
   ====================================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

/* ===============
   COLOR VARIABLES
   =============== */
:root {
  --color-primary: #283250;
  --color-secondary: #8E7C61;
  --color-accent: #F3EFEB;
  --color-bg: #232834;
  --color-dark-metal: #232834;
  --color-mid-metal: #353C4A;
  --color-border: #40475C;
  --color-card-bg: #232834;
  --color-section-bg: #1B1F28;
  --color-footer-bg: #181B21;
  --color-footer-text: #A6ABB8;
  --color-button-bg: #8E7C61;
  --color-button-text: #F3EFEB;
  --color-button-hover: #F3EFEB;
  --color-button-hovertext: #283250;
  --color-shadow: rgba(20,24,34,0.13);
  --color-shadow-strong: rgba(40,50,80,0.22);
}

/* =============================
   CONTAINER & GENERAL LAYOUT
   ============================= */
.container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-section-bg);
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--color-shadow);
}

@media (max-width: 900px) {
  .section {
    padding: 30px 10px;
  }
}

/* ===============================
   TYPOGRAPHY - industrial_modern
   =============================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--color-accent);
  margin-bottom: 10px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.14;
  margin-bottom: 8px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 8px;
}
h3 {
  font-size: 1.375rem;
  line-height: 1.28;
}
h4 {
  font-size: 1.125rem;
}
.subtitle {
  color: var(--color-secondary);
  font-size: 1.25rem;
  font-weight: 400;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 12px;
}
p, ul li, ol li {
  font-size: 1rem;
  color: var(--color-accent);
  margin-bottom: 8px;
  font-family: 'Open Sans', Arial, sans-serif;
}
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}
@media (max-width: 500px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1rem; }
}

/* ===============
   HEADER/NAV MENU
   =============== */
header {
  width: 100%;
  background: var(--color-dark-metal);
  box-shadow: 0 2px 16px var(--color-shadow-strong);
  position: sticky;
  top: 0;
  z-index: 900;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}
header img {
  height: 50px;
  margin-right: 20px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  color: var(--color-accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.35px;
  font-size: 1rem;
  padding: 8px 10px;
  border-radius: 6px;
  position: relative;
  transition: background 0.15s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-mid-metal);
  color: var(--color-secondary);
}
/* Call to Action in Header */
.cta.primary {
  background: var(--color-button-bg);
  color: var(--color-button-text);
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 7px;
  padding: 12px 32px;
  font-size: 1.07rem;
  font-weight: 700;
  margin-left: 24px;
  display: inline-block;
  box-shadow: 0 2px 8px var(--color-shadow);
  transition: background 0.2s, color 0.2s, box-shadow 0.12s;
  border: 1.5px solid var(--color-border);
  letter-spacing: 0.5px;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--color-button-hover);
  color: var(--color-button-hovertext);
  box-shadow: 0 4px 24px var(--color-shadow-strong);
}
.cta.secondary {
  background: none;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 32px;
  font-size: 1.07rem;
  font-weight: 700;
  display: inline-block;
  margin-left: 0;
  box-shadow: none;
  transition: background 0.19s, color 0.2s, border 0.19s;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--color-secondary);
  color: var(--color-bg);
}

/* ==========
   Burger Menu Button
   ========== */
.mobile-menu-toggle {
  background: var(--color-secondary);
  color: var(--color-accent);
  border: none;
  font-size: 2.1rem;
  border-radius: 50%;
  padding: 8px 16px;
  display: none;
  margin-left: 22px;
  cursor: pointer;
  box-shadow: 0 2px 8px var(--color-shadow);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  z-index: 1201;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-accent);
  color: var(--color-secondary);
  outline: 2px solid var(--color-secondary);
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ==============
   MOBILE MENU
   ============== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--color-dark-metal);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.51,.38,.15,1.19);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 0 0 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-section-bg);
  color: var(--color-secondary);
  font-size: 2rem;
  border: none;
  position: absolute;
  top: 24px; right: 22px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 12px var(--color-shadow-strong);
  z-index: 2102;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-secondary);
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  margin: 80px 0 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 7px;
  padding: 10px 18px 10px 6px;
  transition: background 0.20s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-bg);
}

/* Disable scrolling when mobile menu open */
body.menu-open {
  overflow: hidden;
}

/* ============================
   HERO SECTION (industrial_modern)
   ============================ */
.hero {
  background: linear-gradient(120deg, #232834 65%, #353C4A 100%);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px var(--color-shadow-strong);
  margin-bottom: 50px;
}
.hero .container {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  gap: 18px;
  padding: 30px 0;
}

/* ==========
   SECTIONS & CARDS
   ========== */
.features {
  margin-bottom: 60px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 20px;
  justify-content: space-between;
}
.feature-grid li {
  background: var(--color-card-bg);
  border-radius: 14px;
  border: 1.5px solid var(--color-border);
  box-shadow: 0 2px 10px var(--color-shadow);
  flex: 1 1 260px;
  min-width: 220px;
  padding: 24px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
}
.feature-grid li:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 28px var(--color-shadow-strong);
}
.feature-grid img {
  width: 46px;
  height: 46px;
  filter: grayscale(50%) contrast(135%) brightness(85%);
  margin-bottom: 4px;
}
.feature-grid h3 {
  font-size: 1.2rem;
  color: var(--color-secondary);
  margin-bottom: 2px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-card-bg);
  border-radius: 12px;
  border: 1.5px solid var(--color-border);
  box-shadow: 0 2px 8px var(--color-shadow);
  padding: 28px 22px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 7px 22px var(--color-shadow-strong);
  transform: translateY(-3px) scale(1.015);
}

.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F3EFEB;
  color: #283250;
  border-radius: 16px;
  box-shadow: 0 2px 16px var(--color-shadow-strong);
  margin-bottom: 22px;
  border: 1.5px solid var(--color-secondary);
  max-width: 650px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px var(--color-shadow-strong);
  transform: translateY(-3px) scale(1.012);
}
.testimonial-card .testimonial-name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.09rem;
  letter-spacing: .5px;
  color: #283250;
  opacity: 0.88;
}
.testimonial-card .stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.testimonial-card .stars img {
  width: 23px; height: 23px;
  filter: grayscale(0%) brightness(1.18);
}
.testimonial-card p {
  color: #283250;
  font-size: 1.075rem;
  font-family: 'Open Sans', Arial, sans-serif;
  text-align: center;
  opacity: 0.96;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 14px;
}
.faq-list h3 {
  color: var(--color-secondary);
  font-size: 1.13rem;
}
.faq-list p {
  color: var(--color-accent);
}

/* ===================
   CTA SECTION BUTTON
   =================== */
.contact-cta {
  text-align: center;
  margin-bottom: 0;
}
.contact-cta .content-wrapper {
  align-items: center;
  gap: 16px;
}
.contact-cta h2 {
  color: var(--color-accent);
  margin-bottom: 4px;
}
.contact-cta p {
  color: var(--color-secondary);
  font-size: 1.07rem;
}

/* =============
   FOOTER
   ============= */
footer {
  width: 100%;
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  margin-top: 40px;
  padding: 0 0 0 0;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 20px 8px 20px;
  border-bottom: 1px solid var(--color-border);
}
.footer-logo img {
  width: 52px; height: 52px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 192px;
}
.footer-nav a {
  color: var(--color-footer-text);
  font-size: 0.96rem;
  letter-spacing: .2px;
  border-radius: 4px;
  transition: background 0.13s, color 0.14s;
  padding: 4px 8px 4px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-dark-metal);
  color: var(--color-secondary);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.96rem;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 0;
  color: var(--color-footer-text);
}
.footer-contact img {
  width: 19px;
  height: 19px;
  filter: grayscale(60%) contrast(115%) brightness(90%);
}
.copyright {
  text-align: center;
  color: #878C97;
  font-size: 0.92rem;
  padding: 10px 0 22px 0;
  letter-spacing: 0.1px;
}

/* ===============
   OTHER LAYOUTS
   =============== */
.brand-story, .team-section, .usp-section, .privacy-policy, .gdpr-info, .cookie-policy, .terms-of-use, .thank-you-section,
  .gallery-intro, .contact-section, .opening-hours, .services-overview, .angebot-process-short, .faq-section, .projects-overview, .process-section, .benefits-section, .about-intro, .services-preview {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-section-bg);
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--color-shadow);
}

/* =================================
   CARD/MEDIA LAYOUTS (MANDATORY FLEX)
   ================================= */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.map-placeholder {
  background: var(--color-card-bg);
  border: 1.5px dashed var(--color-secondary);
  border-radius: 14px;
  padding: 24px 16px;
  color: var(--color-accent);
  margin-top: 8px;
  font-size: .96rem;
  text-align: center;
}

/* ================
   TABLE
   ================ */
table {
  border-collapse: collapse;
  background: var(--color-card-bg);
  border-radius: 13px;
  overflow: hidden;
  width: 100%;
  margin-bottom: 30px;
}
th, td {
  padding: 12px 20px;
  color: var(--color-accent);
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}
th {
  color: var(--color-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.25px;
  font-weight: 700;
}

/* ====================
   BUTTONS & INTERACTIONS
   ==================== */
button {
  cursor: pointer;
  border-radius: 7px;
  padding: 10px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-button-text);
  background: var(--color-button-bg);
  border: none;
  box-shadow: 0 2px 8px var(--color-shadow);
  transition: background 0.2s, color 0.2s;
}
button:focus, button:hover {
  background: var(--color-button-hover);
  color: var(--color-button-hovertext);
}

/* Links as buttons */
a.cta, .cta {
  display: inline-block;
  cursor: pointer;
}
a.cta:active {
  transform: scale(0.99);
}

/* ===============
   RESPONSIVE DESIGN
   =============== */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer-nav, .footer-contact {
    min-width: unset;
  }
  .feature-grid {
    gap: 18px;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding-right: 3vw;
    padding-left: 3vw;
  }
  .main-nav {
    display: none;
  }
  .cta.primary {
    display: none;
  }
  .content-wrapper {
    gap: 20px;
  }
  .feature-grid {
    flex-direction: column;
    min-width: 0;
    gap: 16px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    width: 100%;
    border-radius: 13px;
    padding: 13px 7px;
  }
  .footer-logo {
    margin-bottom: 10px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 24px 10px 8px 10px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

@media (max-width: 540px) {
  .section, 
  .brand-story, .team-section, .usp-section, .privacy-policy, .gdpr-info, .cookie-policy, .terms-of-use, .thank-you-section,
  .gallery-intro, .contact-section, .opening-hours, .services-overview, .angebot-process-short, .faq-section, .projects-overview, .process-section, .benefits-section, .about-intro, .services-preview {
    padding: 17px 3vw;
    border-radius: 9px;
  }
  .feature-grid li {
    padding: 15px 9px;
    border-radius: 10px;
  }
  .contact-cta .content-wrapper { gap: 10px; }
  .footer-logo img { width: 36px; height: 36px; }
}

/* =========================
   COOKIE CONSENT BANNER
   ========================= */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #232834;
  border-top: 2px solid var(--color-secondary);
  color: var(--color-accent);
  padding: 20px 12px;
  z-index: 9999;
  box-shadow: 0 -3px 16px var(--color-shadow-strong);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-size: 1rem;
  transition: transform 0.36s cubic-bezier(.56,.4,.18,1.18), opacity 0.24s;
  transform: translateY(0%);
  opacity: 1;
}
.cookie-consent-banner.hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner .cookie-btn-group {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 4px;
}
.cookie-consent-banner button {
  background: var(--color-secondary);
  color: var(--color-accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 9px 18px;
  margin: 0;
  min-width: 110px;
  transition: background 0.2s, color 0.16s, box-shadow 0.13s;
  box-shadow: 0 2px 8px var(--color-shadow);
}
.cookie-consent-banner button:focus, .cookie-consent-banner button:hover {
  background: var(--color-accent);
  color: var(--color-secondary);
}
.cookie-consent-banner .cookie-link {
  color: var(--color-accent);
  font-size: 0.96rem;
  text-decoration: underline dotted;
  margin-left: 8px;
}

/* ================
   COOKIE MODAL DIALOG
   ================ */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(40,50,80,0.6);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.24s;
}
.cookie-modal-overlay.hidden {
  pointer-events: none;
  opacity: 0;
}
.cookie-modal {
  background: var(--color-section-bg);
  color: var(--color-accent);
  padding: 36px 28px;
  border-radius: 18px;
  min-width: 320px;
  max-width: 97vw;
  box-shadow: 0 2px 32px var(--color-shadow-strong);
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  position: relative;
  animation: cookiefadein 0.35s cubic-bezier(.56,.4,.18,1.18);
}
@keyframes cookiefadein {
  from { transform: scale(.90); opacity:0; }
  to { transform: scale(1); opacity:1; }
}
.cookie-modal h3 {
  font-size: 1.25rem;
  color: var(--color-secondary);
  margin-bottom: 6px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 13px 0 0 0;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.cookie-category label {
  font-size: 1rem;
  color: var(--color-accent);
  font-family: 'Open Sans', Arial, sans-serif;
  margin-right: 6px;
}
.cookie-toggle {
  width: 41px;
  height: 22px;
  background: var(--color-mid-metal);
  border-radius: 11px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle .slider {
  position: absolute;
  left: 2px; top: 2.5px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--color-secondary);
  transition: left 0.19s, background 0.18s;
}
.cookie-toggle input:checked + .slider {
  left: 21px;
  background: var(--color-accent);
}
/* Essential always enabled */
.cookie-category.essential label {
  opacity: 0.7;
  font-style: italic;
}
.cookie-category.essential .cookie-toggle {
  pointer-events: none;
  opacity: 0.5;
}
.cookie-modal-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  width: 100%;
}
.cookie-modal-buttons button {
  min-width: 112px;
  padding: 10px 16px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  color: var(--color-secondary);
  font-size: 1.6rem;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 1px 8px;
  border-radius: 6px;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  background: var(--color-secondary);
  color: var(--color-accent);
}

@media (max-width: 520px) {
  .cookie-modal {
    padding: 16px 7vw 17px 7vw;
    border-radius: 11px;
    min-width: unset;
  }
}

/* ============================
   MICRO-INTERACTIONS & EFFECTS
   ============================ */
.cta, button, .cookie-consent-banner button, .cookie-modal button {
  transition: background 0.18s, color 0.15s, box-shadow 0.15s, border 0.16s, filter 0.14s, transform 0.14s;
  outline: none;
}
a:focus-visible, button:focus-visible, .cta:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

.card:active, .testimonial-card:active, .cta:active, button:active {
  filter: brightness(0.96);
  transform: scale(.990);
}

/* ================
   HELPER UTILITIES
   ================ */
.hide { display: none !important; }

/* ================
   PRINT STYLES
   ================ */
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-consent-banner, .cookie-modal-overlay { display: none !important; }
  header, nav, footer { background: transparent !important; color: #333 !important; }
}
