/* ========================================================
   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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.55;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #232629;
  color: #F5F3E6;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
input, button, textarea, select {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}

/* ========================================================
   VARIABLES & BRAND COLORS
======================================================== */
:root {
  --primary: #205C40;     /* Dark Green */
  --secondary: #8CB58C;   /* Soft Moss Green */
  --accent: #F5F3E6;      /* Soft Off-White */
  --background: #232629;  /* Urban warm black */
  --surface: #292C2F;     /* Slightly brighter for cards */
  --border: #464C4C;      /* Metal grey for strong lines */
  --metallic: #919699;    /* Metallic accent */
  --error: #BF392B;
  --font-display: 'Montserrat', 'Arial Black', 'Arial', sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* Fallbacks for custom properties */
body {
  background-color: var(--background, #232629);
  color: var(--accent, #F5F3E6);
}

/* ========================================================
   TYPOGRAPHY
======================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #F5F3E6;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, li, span, a, ul, ol {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
}
p {
  margin-bottom: 16px;
}
strong {
  font-weight: 600;
}
.subheadline {
  color: var(--secondary);
  font-size: 1.15rem;
  margin-bottom: 32px;
  font-family: var(--font-body);
  font-weight: 400;
}

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

/* ========================================================
   HEADER & NAVIGATION - Industrial-Modern style
======================================================== */
header {
  background: #17191a;
  border-bottom: 2px solid var(--primary);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 0 20px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 20px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #F5F3E6;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 0 2px 2px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.20s, border-bottom 0.25s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}
header .cta.primary {
  margin-left: 24px;
  margin-right: 8px;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--accent);
  cursor: pointer;
  transition: color 0.2s;
  padding: 4px 10px;
  z-index: 110;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: var(--secondary);
}

/* ========================================================
   MOBILE BURGER MENU
======================================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(34,38,41,0.97);
  backdrop-filter: blur(7px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.77,0,.18,1);
  box-shadow: -3px 0 20px 0 rgba(20,20,20,0.21);
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 2.1rem;
  margin: 22px 24px 6px 0;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  align-items: flex-start;
  margin-top: 28px;
  padding-left: 34px;
}
.mobile-nav a {
  font-size: 1.2rem;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  border-bottom: 2px solid transparent;
  padding: 6px 0;
  width: fit-content;
  transition: color 0.17s, border-bottom 0.22s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}

/* HIDE MAIN NAV ON MOBILE */
@media (max-width: 1024px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ========================================================
   HERO / BANNER SECTIONS
======================================================== */
.hero {
  background: linear-gradient(120deg, #232629 85%, var(--primary) 105%);
  padding: 64px 0 60px 0;
  margin-bottom: 60px;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 20px;
}
.hero h1 {
  font-size: 2.65rem;
  text-shadow: 0 2px 18px rgba(30,30,30,0.18);
}

/* ========================================================
   SECTIONS, LAYOUTS, FLEX PATTERNS
======================================================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 13px;
  box-shadow: 0 2px 14px 0 rgba(30,34,36,0.10), 0 1px 0px 0 #495256 inset;
  margin-bottom: 20px;
  position: relative;
  padding: 24px 22px 18px 22px;
  transition: box-shadow 0.19s, border-color 0.19s, transform 0.15s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 26px 0 rgba(0,0,0,0.13), 0 0 0 2px var(--primary) inset;
  border-color: var(--metallic);
  transform: translateY(-4px) scale(1.02);
  z-index: 10;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F5F3E6;
  color: #232629;
  border-radius: 12px;
  border-left: 5px solid var(--primary);
  box-shadow: 0 6px 18px 0 rgba(67, 71, 54, 0.09);
  margin-bottom: 24px;
  transition: box-shadow 0.18s, border-color 0.18s;
  position: relative;
  min-width: 0;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 10px 28px 0 rgba(90,110,80,0.11) !important;
  border-color: var(--secondary);
}
.testimonial-card .author {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: #444A3A;
  margin-left: auto;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--surface);
  border-radius: 12px;
  padding: 30px 24px;
  border: 1px solid var(--border);
  min-width: 230px;
  box-shadow: 0 1px 12px 0 rgba(32,40,32,0.06);
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.17s;
}
.feature-item:hover, .feature-item:focus-within {
  border-color: var(--secondary);
  box-shadow: 0 3px 18px rgba(110,130,110,0.09);
  transform: translateY(-2px) scale(1.015);
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  filter: grayscale(36%) contrast(1.1);
}

/* Specific grid for features */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}

/* ========================================================
   CTA BUTTONS
======================================================== */
.cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 8px;
  padding: 11px 32px;
  margin-top: 16px;
  margin-bottom: 16px;
  transition: background 0.18s, color 0.18s, border 0.17s, box-shadow 0.2s;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(36,40,37,0.08);
  display: inline-block;
}
.cta.primary {
  background: linear-gradient(90deg, var(--primary) 90%, var(--metallic) 110%);
  color: var(--accent);
  border: 2.5px solid var(--primary);
  text-shadow: 0 1px 5px rgba(30,30,30,0.08);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--secondary);
  color: #232629;
  border-color: var(--metallic);
}
.cta.secondary {
  background: var(--accent);
  color: var(--primary);
  border: 2px solid var(--secondary);
  margin-left: 12px;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--secondary);
  color: #232629;
  border-color: var(--primary);
}

/* Inline links to buttons on light bg */
.testimonial-card a, .testimonial-card button {
  color: var(--primary);
  font-weight: 600;
}
.testimonial-card a:hover, .testimonial-card button:hover {
  color: var(--secondary);
}

/* Price tags */
.price {
  color: var(--secondary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.06rem;
  background: #313C34;
  border-radius: 5px;
  padding: 2px 8px;
  margin-left: 10px;
}

/* ========================================================
   ABOUT & TEAM SECTIONS
======================================================== */
.about-section, .about, .about-short {
  background: var(--surface);
  border-radius: 13px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.team-member {
  display: flex;
  flex-direction: column;
  background: #232629;
  color: #F5F3E6;
  border-left: 6px solid var(--primary);
  border-radius: 7px;
  padding: 21px 22px 14px 19px;
}
.values .text-section ul li, .about .text-section ul li, .about-short .text-section ul li {
  margin-bottom: 12px;
  padding-left: 5px;
  position: relative;
}
.values .text-section ul li:before, .about .text-section ul li:before, .about-short .text-section ul li:before {
  content: '⦿';
  color: var(--secondary);
  margin-right: 10px;
  font-size: 0.85em;
}

/* ========================================================
   SERVICE LISTS & OVERVIEW
======================================================== */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 16px;
  justify-content: flex-start;
}
.service-item {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  color: var(--accent);
  border-radius: 10px;
  border: 1.2px solid var(--border);
  min-width: 230px;
  padding: 24px 22px 18px 22px;
  margin-bottom: 20px;
  box-shadow: 0 1px 10px 0 rgba(32,40,32,0.06);
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.16s;
  gap: 10px;
}
.service-item h3 {
  display: flex;
  align-items: center;
  font-size: 1.16rem;
  margin-bottom: 10px;
  color: var(--accent);
}
.service-item .price {
  margin-top: 10px;
  color: var(--secondary);
  background: transparent;
  font-size: 1.08rem;
  font-weight: 500;
}
.service-item a {
  margin-top: 16px;
}
.service-item:hover, .service-item:focus-within {
  border-color: var(--secondary);
  box-shadow: 0 3px 15px 0 rgba(100,130,110,0.09);
  transform: translateY(-2px) scale(1.015);
}

/* ========================================================
   FAQ ACCORDION (SIMPLE style, not interactive here)
======================================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: var(--surface);
  padding: 24px 20px;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
  box-shadow: 0 1px 8px rgba(60,66,53,0.06);
}
.faq-item h3 {
  color: var(--secondary);
  margin-bottom: 7px;
  font-size: 1.12rem;
}

/* ========================================================
   FOOTER
======================================================== */
footer {
  background: #191A1A;
  border-top: 2px solid var(--primary);
  margin-top: 60px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px 32px;
  padding: 26px 0 8px 0;
}
footer img {
  height: 40px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
.footer-nav a {
  color: var(--accent);
  font-size: 1rem;
  border-bottom: 1.5px solid transparent;
  transition: color .18s, border-bottom .17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
  border-bottom: 1.5px solid var(--secondary);
}
.social-media {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.social-media img {
  height: 32px;
  width: 32px;
  filter: grayscale(36%) contrast(1.2);
  opacity: .7;
  transition: opacity 0.16s;
}
.social-media img:hover, .social-media img:focus {
  opacity: 1;
}
.legal {
  width: 100%;
  text-align: right;
  padding-top: 10px;
  color: var(--metallic);
  font-size: 0.95rem;
}

/* ========================================================
   CALENDAR/LIST SECTIONS & MISC
======================================================== */
.calendar, .benefits, .map, .cta-section, .contact-short, .contact-info {
  background: var(--surface);
  border-radius: 13px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.calendar ul li {
  margin-bottom: 10px;
  color: var(--accent);
}

/* ========================================================
   LEGAL/INFORMATIONAL SECTIONS
======================================================== */
.legal, .legal .text-section {
  color: #F5F3E6;
  background: var(--surface);
  border-radius: 13px;
  padding: 38px 20px;
}
.legal ul li {
  margin-bottom: 9px;
}

/* ========================================================
   GALLERY/TESTIMONIAL-GALLERY
======================================================== */
.testimonials-gallery .testimonial-card {
  background: #F5F3E6;
  color: #232629;
  margin-bottom: 18px;
  border-left: 5px solid var(--primary);
  box-shadow: 0 3px 14px 0 rgba(67, 71, 54, 0.08);
  padding: 20px 24px;
}

/* ========================================================
   THANK YOU SECTION
======================================================== */
.thanks {
  margin: 60px 0;
  background: var(--surface);
  padding: 48px 20px 48px 20px;
  border-radius: 13px;
  text-align: center;
}

/* ========================================================
   RESPONSIVE DESIGN - MOBILE-FIRST
======================================================== */
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
  }
  .feature-grid, .service-list, .team-list {
    gap: 20px;
  }
  .main-nav a {
    font-size: 0.97rem;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .footer-content {
    flex-direction: column;
    gap: 16px;
  }
  .card-container, .feature-grid, .service-list, .team-list {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
  .section, .about-section, .calendar, .benefits, .contact-short, .contact-info, .map, .legal, .thanks {
    padding: 26px 8px;
  }
  .hero h1 {
    font-size: 2.05rem;
  }
  .team-member {
    min-width: 0;
  }
  .service-item, .feature-item {
    min-width: 0;
    width: 100%;
    padding: 17px 10px 14px 13px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 10px 13px 10px;
  }
  .testimonials-gallery .testimonial-card {
    padding: 14px 7px;
  }
  .main-nav, .footer-nav {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  header .container {
    padding: 0 8px;
    min-height: 58px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 46px 0 36px 0;
  }
  h1 { font-size: 1.4rem;}
  h2 { font-size: 1.18rem;}
}

/* ========================================================
   TRANSITIONS & MICRO-INTERACTIONS
======================================================== */
button, .cta, a {
  transition: color 0.15s, background 0.18s, border 0.17s, box-shadow 0.2s;
  outline: none;
}

.card, .feature-item, .service-item {
  will-change: transform, box-shadow, border-color;
}

/* ========================================================
   HIGHLIGHTED STATES
======================================================== */
.card:focus-within, .feature-item:focus-within, .service-item:focus-within {
  outline: 2.5px solid var(--primary);
  outline-offset: 2px;
}
.cta:active {
  box-shadow: 0 1px 3px rgba(40,40,40,0.12);
}

/* ========================================================
   COOKIE BANNER & MODAL
======================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: rgba(36,42,43,0.98);
  border-top: 2px solid var(--primary);
  z-index: 3000;
  padding: 18px 8px 18px 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 -2px 38px 0 rgba(28,38,32,0.11);
  animation: slideUpBanner 0.44s cubic-bezier(.77,0,.18,1);
}
@keyframes slideUpBanner {
  0% {transform: translateY(100%); opacity: 0;}
  90% {opacity: 1;}
  100% {transform: translateY(0);}
}
.cookie-banner__msg {
  color: var(--accent);
  font-size: 1rem;
  max-width: 70vw;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  padding: 7px 24px;
  margin: 0 2px;
  cursor: pointer;
  transition: background 0.19s, color 0.17s, border 0.15s;
}
.cookie-banner__accept {
  background: var(--primary);
  color: var(--accent);
  border: 2px solid var(--primary);
}
.cookie-banner__accept:hover, .cookie-banner__accept:focus {
  background: var(--secondary);
  color: #232629;
  border-color: var(--secondary);
}
.cookie-banner__reject {
  background: transparent;
  color: #E78978;
  border: 2px solid #E78978;
}
.cookie-banner__reject:hover, .cookie-banner__reject:focus {
  background: #E78978;
  color: #232629;
}
.cookie-banner__settings {
  background: var(--surface);
  color: var(--accent);
  border: 2px solid var(--primary);
}
.cookie-banner__settings:hover, .cookie-banner__settings:focus {
  background: var(--primary);
  color: #F5F3E6;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(30,33,31,0.88);
  z-index: 4000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s cubic-bezier(.77,0,.18,1);
}
.cookie-modal-overlay.open {
  pointer-events: all;
  opacity: 1;
  transition: opacity 0.28s cubic-bezier(.77,0,.18,1);
}
.cookie-modal {
  background: var(--surface);
  border-radius: 17px 17px 0 0;
  width: 98%;
  max-width: 390px;
  min-height: 290px;
  box-shadow: 0 1px 38px 0 rgba(22,30,29,0.18);
  padding: 40px 24px 24px 24px;
  position: relative;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: slideInModal 0.35s cubic-bezier(.77,0,.18,1);
}
@keyframes slideInModal {
  from {transform: translateY(60px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-modal h2 {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 16px 0;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.cookie-category label {
  color: var(--accent);
  font-size: 1rem;
}
.cookie-switch {
  width: 38px; height: 20px;
  background: #555a56;
  border-radius: 17px;
  position: relative;
  transition: background 0.19s;
  flex-shrink: 0;
}
.cookie-switch input {
  display: none;
}
.cookie-switch__slider {
  position: absolute;
  left: 2.5px; top: 2.5px;
  background: #dedbc1;
  border-radius: 50%;
  width: 16px; height: 16px;
  transition: transform 0.19s cubic-bezier(.77,0,.18,1);
}
.cookie-switch input:checked + .cookie-switch__slider {
  background: var(--secondary);
  transform: translateX(17px);
}
.cookie-category .always-on {
  color: var(--secondary);
  font-size: .98rem;
  margin-left: 5px;
  font-style: italic;
}
.cookie-modal .cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal__button {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .96rem;
  border-radius: 6px;
  border: none;
  padding: 7px 22px;
  cursor: pointer;
  transition: background 0.2s, color 0.18s;
}
.cookie-modal__accept {
  background: var(--primary);
  color: var(--accent);
  border: 2px solid var(--primary);
}
.cookie-modal__accept:hover, .cookie-modal__accept:focus {
  color: #232629;
  background: var(--secondary);
  border-color: var(--secondary);
}
.cookie-modal__close {
  background: var(--surface);
  color: var(--accent);
  border: 2px solid var(--primary);
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: var(--primary);
  color: #F5F3E6;
}

@media (max-width:530px) {
  .cookie-modal {
    padding: 25px 4vw 18px 4vw;
  }
}

/*
Accessibility Focus States
*/
a:focus, button:focus, .cta:focus {
  outline: 2.5px solid var(--secondary);
  outline-offset: 2px;
}

/*
Prevent elements from overlapping and maintain clean vertical rhythm
*/
section, .section, .about-section, .values, .features, .testimonials, .testimonials-gallery, .contact-short, .services, .services-overview, .calendar, .map, .benefits, .cta-section, .faq-list, .contact-info, .thanks {
  margin-bottom: 60px;
}

/* Ensure all cards/items have minimum 20px margin */
.card, .feature-item, .service-item, .testimonial-card, .team-member {
  margin-bottom: 20px;
}
/* ENFORCE gap for flex containers */
.card-container, .feature-grid, .service-list, .team-list, .content-grid {
  gap: 20px;
}

/* Utility classes (if needed) */
.d-flex {
  display: flex !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-row {
  flex-direction: row !important;
}
.gap-20 {
  gap: 20px !important;
}
.gap-24 {
  gap: 24px !important;
}

/* Hide from screen reader (utility) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* END OF CSS */
