/* ------------------------------------------------------
   CSS RESET & BASE STYLES – Modern Normalize & Reset
---------------------------------------------------------*/
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, 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;
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  background: #fff;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  color: #181818;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #fff;
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #222;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #2D4631;
  outline-offset: 2px;
}
ul, ol {
  margin-left: 1.4em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.7em;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: inherit;
}
input, textarea {
  font-family: inherit;
  background: #fff;
  border: 1px solid #222;
  padding: 12px;
  border-radius: 4px;
  font-size: 1rem;
}
:root {
  --color-dark: #0a0a0a;
  --color-black: #181818;
  --color-white: #fff;
  --color-light: #f8f8f8;
  --color-gray-1: #212121;
  --color-gray-2: #353535;
  --color-gray-3: #656565;
  --color-gray-4: #A7A7A7;
  --brand-primary: #181818;
  --brand-secondary: #6FB879;
  --brand-accent: #f8f8f3;
}

/* ------------------------------------------------------
   TYPOGRAPHY – Elegant, Monochrome Sophisticated
---------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #181818;
  margin-bottom: 0.5em;
  letter-spacing: -0.2px;
  line-height: 1.13;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 0.8em;
}
h2 {
  font-size: 1.65rem;
  margin-bottom: 0.7em;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 0.55em;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 0.4em;
}
p, ul, ol {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #212121;
  font-size: 1.04rem;
}
strong {
  font-weight: 600;
  color: #0a0a0a;
}
.section h2 {
  border-left: 4px solid var(--color-gray-2);
  padding-left: 12px;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

/* --------------------------------------------------
     LAYOUT CONTAINERS AND SECTION SPACING
-----------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
main > section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* Card & Grid Styles */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #f8f8f8;
  margin-bottom: 20px;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 6px 32px rgba(80,80,80,0.09),0 1.5px 8px rgba(0,0,0,0.02);
  transition: transform 0.2s, box-shadow 0.24s;
  position: relative;
  border: 1px solid #EDEDED;
}
.card:hover,
.card:focus-within {
  transform: translateY(-6px) scale(1.012);
  box-shadow: 0 14px 32px rgba(40,40,40,0.13), 0 4px 16px rgba(0,0,0,0.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 24px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(80,80,80,0.06),0 1.5px 8px rgba(0,0,0,0.03);
  border: 1px solid #eaeaea;
  margin-bottom: 20px;
  font-size: 1.02rem;
}
.testimonial-card p {
  color: #222;
  font-style: italic;
  font-weight: 400;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Features List (/) */
.features ul, .services-overview ul, .about-short ul, .about ul, .team ul, .project-highlights ul, .benefits ul, .knowledge ul, .legal ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}
.features ul li, .services-overview ul li, .about-short ul li, .about ul li, .team ul li, .project-highlights ul li, .benefits ul li, .knowledge ul li, .legal ul li {
  padding: 20px 0 20px 0;
  border-bottom: 1px solid #ececec;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  line-height: 1.5;
}
.features ul li:last-child, .services-overview ul li:last-child, .about-short ul li:last-child, .about ul li:last-child, .team ul li:last-child, .project-highlights ul li:last-child, .benefits ul li:last-child, .knowledge ul li:last-child, .legal ul li:last-child {
  border-bottom: none;
}
.features ul li img,
.benefits ul li img,
.services-overview ul li img,
.team ul li img {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  filter: grayscale(1);
  opacity: 0.88;
  margin-right: 10px;
}
.services-overview ul li > span,
.services ul li > span {
  color: #656565;
  font-size: 1rem;
  margin-left: 8px;
}

/* -----------------------------------
   HEADER & NAVIGATION
-------------------------------------- */
header {
  width: 100%;
  background: #181818;
  color: #fff;
  box-shadow: 0 1px 10px rgba(16,16,16,0.11);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
header nav a {
  color: #fff;
  font-family: 'Montserrat',sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: 1.03rem;
  padding: 8px 2px;
  border-radius: 4px;
  transition: color 0.19s, background 0.24s;
  position: relative;
}
header nav a:hover,
header nav a:focus {
  color: var(--brand-secondary);
  background: #ffffff18;
  outline: none;
}
header a.button-primary {
  margin-left: 24px;
}
header img {
  height: 40px;
  width: auto;
  filter: grayscale(0.3) contrast(1.3);
  opacity: 0.95;
  margin-right: 20px;
}

/* ------------- MOBILE HEADER -------------- */
.mobile-menu-toggle {
  display: none;
  background: #181818;
  color: #fff;
  font-size: 2.1rem;
  border-radius: 4px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  z-index: 130;
  transition: background 0.2s;
  border: 1px solid #222;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--brand-secondary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24, 24, 24, 0.96);
  color: #fff;
  z-index: 9999;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.6, 0.2, 0.15, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 30px;
  justify-content: flex-start;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin-top: 32px;
  margin-bottom: 20px;
  background: #222;
  color: #fff;
  font-size: 2.3rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  border: 1.25px solid #353535;
  opacity: 0.95;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
  font-size: 1.33rem;
  letter-spacing: 0.01em;
  padding: 18px 0 0 0;
  border-bottom: 1px solid #444;
  transition: color 0.17s, background 0.18s;
  border-radius: 0;
}
.mobile-nav a:last-child{
  border-bottom: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--brand-secondary);
  background: #fff1;
  outline: none;
}

/* -----------------------------------
   BUTTONS & CTAS
-------------------------------------- */
.button-primary,
.button-outline {
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 30px;
  border-radius: 28px;
  margin-top: 12px;
  margin-right: 16px;
  letter-spacing: 0.05em;
  box-shadow: 0 1.5px 8px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: color 0.17s, background 0.19s, transform 0.18s, box-shadow 0.13s;
  border: none;
  outline: none;
  display: inline-block;
  text-align: center;
}
.button-primary {
  background: #181818;
  color: #fff;
  border: 2px solid #181818;
}
.button-primary:hover,
.button-primary:focus {
  background: var(--brand-secondary);
  color: #181818;
  border-color: var(--brand-secondary);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 7px 28px rgba(111,184,121,0.19);
}
.button-outline {
  background: #fff;
  color: #181818;
  border: 2px solid #222;
  margin-top: 12px;
  margin-right: 16px;
}
.button-outline:hover,
.button-outline:focus {
  background: #181818;
  color: #fff;
  border-color: #181818;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(24,24,24,0.15);
}

/* --------------------------------------------
   HERO & CTA BANNER
----------------------------------------------- */
.hero {
  background: linear-gradient(90deg, #fff 50%, #f3f3f3 100%);
  color: #0a0a0a;
  padding-top: 68px;
  padding-bottom: 68px;
  text-align: left;
  border-bottom: 1.5px solid #eaeaea;
}
.hero h1 {
  font-size: 2.5rem;
}
.hero a {
  margin-top: 1.2em;
}
.cta-banner {
  background: #181818;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 1.5px 9px rgba(0,0,0,0.09);
  text-align: center;
  margin-bottom: 60px;
}
.cta-banner h2,
.cta-banner p {
  color: #fff !important;
}
.cta-banner a.button-primary {
  background: #fff;
  color: #181818;
  border: 2px solid #fff;
  min-width: 190px;
}
.cta-banner a.button-primary:hover,
.cta-banner a.button-primary:focus {
  background: #6FB879;
  color: #0a0a0a;
  border-color: #6FB879;
}

/* -----------------------------------
   FOOTER
-------------------------------------- */
footer {
  background: #0a0a0a;
  color: #fff;
  padding: 50px 0 26px 0;
  font-size: 1rem;
  margin-top: 40px;
  box-shadow: 0 -1px 8px rgba(24,24,24,0.06);
}
footer .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer-logo img {
  height: 46px; width: auto;
  opacity: 0.97;
  margin-bottom: 16px;
  filter: grayscale(0.45) contrast(1.3);
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #bababa;
  text-decoration: none;
  transition: color 0.18s;
  font-size: 1rem;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
footer nav a:hover,
footer nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-contact span, .footer-contact p, .footer-contact {
  color: #b1b1b1;
  font-size: 0.99rem;
  display: block;
  line-height: 2;
  margin-bottom: 3px;
}
.footer-contact img {
  height: 16px;
  width: 16px;
  vertical-align: text-top;
  margin-right: 8px;
  filter: grayscale(1) brightness(1.5);
  opacity: 1;
}
footer p {
  color: #767676;
  margin-top: 18px;
  font-size: 0.93rem;
  letter-spacing: 0.01em;
}

/* -----------------------------------
   LEGAL & CONFIRMATION PAGES
-------------------------------------- */
.legal {
  background: #fff;
  color: #181818;
  border-radius: 10px;
  box-shadow: 0 1.5px 9px rgba(0,0,0,0.06);
}
.confirmation .content-wrapper {
  align-items: center;
  text-align: center;
}
.confirmation h1 {
  color: var(--brand-secondary);
}

/* -----------------------------------
   CONTACT & HOURS SECTIONS
-------------------------------------- */
.contact .text-section p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.contact .text-section img {
  width: 18px;
  height: 18px;
}
.hours {
  background: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  text-align: center;
}
.hours h2 {
  color: #181818;
}

/* -----------------------------------
   MICRO-INTERACTIONS & ANIMATION
-------------------------------------- */
.button-primary, .button-outline, .mobile-menu, .testimonial-card, .card, .footer-logo img {
  transition: all 0.19s cubic-bezier(.9, .06, .17, .99);
}
.card:hover, .testimonial-card:hover { box-shadow: 0 8px 24px rgba(24,24,24,0.14); }

/* -----------------------------------
   COOKIE CONSENT BANNER (+MODAL)
-------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 99999;
  background: #181818;
  color: #fff;
  padding: 30px 24px 22px;
  font-size: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -2px 18px rgba(24,24,24,0.17);
  gap: 28px;
  animation: slideUpCookie 0.50s cubic-bezier(.7,.2,.1,1) 1;
}
@keyframes slideUpCookie {
  from { transform: translateY(100%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner-message {
  flex: 2 1 320px;
  margin-right: 28px;
}
.cookie-banner-actions {
  display: flex;
  gap: 16px;
  flex: none;
  align-items: center;
}
.cookie-banner .cookie-btn {
  background: #fff;
  color: #181818;
  font-family: 'Montserrat';
  font-weight: 700;
  border: 2px solid #fff;
  border-radius: 24px;
  padding: 8px 20px;
  font-size: 0.99rem;
  margin: 0;
  transition: background 0.14s, color 0.13s, border 0.13s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #6FB879;
  color: #181818;
  border: 2px solid #6FB879;
}
.cookie-banner .cookie-btn.reject {
  background: #fff;
  color: #252525;
  border: 2px solid #222;
}
.cookie-banner .cookie-btn.reject:hover {
  background: #181818;
  color: #fff;
  border: 2px solid #fff;
}

/* ----- COOKIE MODAL ---- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(24,24,24,0.87);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100001;
  animation: fadeInCookieModal 0.44s;
}
@keyframes fadeInCookieModal {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal-content {
  background: #fff;
  color: #181818;
  border-radius: 14px;
  box-shadow: 0 4px 32px rgba(31,31,31,0.21);
  padding: 38px 28px 28px 28px;
  min-width: 320px;
  max-width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
}
.cookie-modal-content h3 {
  margin-bottom: 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-category input[type="checkbox"] {
  width: 18px; height: 18px; margin: 0; accent-color: #181818;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-category .essential {
  color: #6FB879;
  font-size: 0.97rem;
  margin-left: 8px;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.cookie-modal-close {
  background: #181818;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 34px; height: 34px;
  font-size: 1.3rem;
  position: absolute;
  top: 16px; right: 16px;
  text-align: center;
}
.cookie-modal-close:focus {
  outline: 2px solid #6FB879;
}

/* -----------------------------------
   RESPONSIVE DESIGN
-------------------------------------- */
@media (max-width: 1150px) {
  .container {
    max-width: 98vw;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  main > section, .section {
    padding: 28px 10px;
  }
  .hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .cta-banner {
    border-radius: 9px;
    padding: 36px 10px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .card-container, .content-grid, .feature-item {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    padding: 18px;
    gap: 12px;
  }
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    padding: 9px 10px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    margin-left: auto;
    margin-right: 9px;
    align-items: center;
    justify-content: center;
  }
  header a.button-primary {
    display: none;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.67rem; }
  h2 { font-size: 1.22rem; }
  .footer-logo img {
    height: 33px;
  }
  .card,
  .testimonial-card {
    padding: 18px 7px;
  }
  .hero {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .cta-banner {
    padding: 20px 2vw !important;
  }
  .cookie-modal-content {
    min-width: 90vw;
    padding: 18px 6vw;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    font-size: 1rem;
    padding: 17px 6vw 12px;
  }
  .cookie-banner-message {
    margin-right: 0;
    margin-bottom: 7px;
  }
}
/* Text-Image Sections mobile column stacking */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 22px;
  }
}

/* -----------------------------------
   FINE DETAILS & FOCUS VISIBLE
-------------------------------------- */
:focus-visible {
  outline: 2px solid #6FB879;
  outline-offset: 2px;
}

/* -------------------------------------------
   VISUAL MONOCHROME EFFECTS & ELEGANCE
---------------------------------------------*/
.card, .testimonial-card, .cta-banner, .hours, .section, main > section {
  border-radius: 12px;
  box-shadow: 0 1.5px 12px rgba(8,8,8,0.06);
}
.card {
  background: linear-gradient(180deg,#fafbfc 90%, #fbfbfb 100%);
}
.testimonial-card {
  background: #fff;
  border-left: 5px solid #181818;
}
.section {
  background: #fff;
}
.cta-banner, footer, header {
  background: #181818;
}
.cta-banner {
  color: #fff;
}

/* -----------------------------------
   PRINT STYLES: MONOCHROMATIC BRIEF
-------------------------------------- */
@media print {
  html, body, .container, .section, main, header, footer {
    background: #fff !important;
    color: #181818 !important;
    box-shadow: none !important;
  }
  a:after { content: " (" attr(href) ")"; }
  nav, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
}
