/* ==== CSS 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;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #1D1D1F;
  background-color: #F5F5F6;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  min-height: 100vh;
}
a {
  color: #1D1D1F;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.4,0,.2,1);
}
a:focus {
  outline: 2px solid #A6B7B2;
  outline-offset: 2px;
}
strong { font-weight: 600; }
em { font-style: italic; }
ul, ol { padding-left: 24px; margin-bottom: 16px; }
img {
  max-width: 100%;
  display: block;
  height: auto;
}
hr { border: none; border-bottom: 1px solid #EEE; margin: 32px 0; }

/* ==== TYPOGRAPHY SCALE ==== */
h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #1D1D1F;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.18;
  color: #1D1D1F;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #1D1D1F;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1D1D1F;
  font-weight: 500;
  margin-bottom: 8px;
}
p, li {
  font-size: 1rem;
  color: #232323;
}
blockquote {
  border-left: 4px solid #1D1D1F;
  background: #FAFAFA;
  padding: 18px 24px;
  font-style: italic;
  color: #1D1D1F;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}

/* ==== LAYOUT ==== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(29,29,31,0.05), 0 1.5px 6px rgba(29,29,31,0.07);
}
.text-section {
  background: #F5F5F6;
  box-shadow: none;
  border-radius: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ==== HEADER & NAVIGATION ==== */
.main-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  padding: 28px 20px 18px 20px;
  background: #FFF;
  box-shadow: 0 2px 6px rgba(29,29,31,0.03);
  border-radius: 0 0 18px 18px;
  position: relative;
  z-index: 99;
}
.main-navigation a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #1D1D1F;
  opacity: .9;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background .15s, color .18s cubic-bezier(.4,0,.2,1);
}
.main-navigation a:hover, .main-navigation a:focus {
  background: #F5F5F6;
  color: #000;
  opacity: 1;
}
.main-navigation a.cta-nav {
  background: #1D1D1F;
  color: #fff;
  border-radius: 18px;
  padding: 8px 26px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(29,29,31,0.10);
  transition: background .2s, color .22s, box-shadow .22s;
}
.main-navigation a.cta-nav:hover, .main-navigation a.cta-nav:focus {
  background: #44464C;
  color: #fff;
  box-shadow: 0 4px 12px rgba(29,29,31,0.18);
}
.main-navigation img {
  width: 124px;
  height: auto;
  margin-right: 36px;
  display: block;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #1D1D1F;
  position: absolute;
  right: 24px;
  top: 32px;
  z-index: 120;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background .17s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #EBEBEB;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33,33,34,0.98);
  box-shadow: 2px 0 24px rgba(0,0,0,0.13);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  opacity: 0;
  z-index: 9999;
  transition: transform .42s cubic-bezier(.65,.05,.36,1),opacity .24s;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #F5F5F6;
  font-size: 2.3rem;
  position: absolute;
  right: 26px;
  top: 24px;
  cursor: pointer;
  z-index: 10001;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background .17s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #232323;
}
.mobile-nav {
  margin-top: 88px;
  width: 100%;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
  padding-left: 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #F5F5F6;
  font-size: 1.35rem;
  letter-spacing: -.01em;
  margin-bottom: 8px;
  border-radius: 10px;
  padding: 12px 8px 12px 0;
  transition: background .18s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #232323;
  color: #A6B7B2;
}

@media (max-width: 1024px) {
  .main-navigation {
    gap: 18px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .main-navigation img { margin-right: 18px; }
}
@media (max-width: 992px) {
  .main-navigation a { font-size: 0.96rem; padding: 7px 9px; }
}
@media (max-width: 900px) {
  .main-navigation {
    gap: 12px;
    padding: 20px 10px 10px 10px;
  }
  .main-navigation img { width: 98px; }
}
@media (max-width: 820px) {
  .main-navigation img { width: 85px; margin-right: 10px; }
}
@media (max-width: 768px) {
  .main-navigation {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ==== HERO SECTION ==== */
.hero {
  background: linear-gradient(110deg, #F9F9F9 0%, #F5F5F6 100%);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  text-align: center;
  background: none;
  box-shadow: none;
  padding: 0;
}
.hero h1 {
  color: #1D1D1F;
  font-size: 2.6rem;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}
.hero p {
  color: #555;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* ==== COMMON BUTTONS, CTA ==== */
.cta-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  border: none;
  border-radius: 22px;
  padding: 12px 36px;
  cursor: pointer;
  background: #1D1D1F;
  color: #fff;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 18px rgba(29,29,31,0.13);
  transition: background .2s, color .18s, transform .15s, box-shadow .16s;
  display: inline-block;
  margin-top: 24px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #232323;
  color: #A6B7B2;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(29,29,31,0.20);
}

/* ==== FEATURE GRID ==== */
.feature-grid, .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.feature-grid li {
  flex: 1 1 220px;
  background: #F9F9F9;
  border-radius: 18px;
  padding: 26px 24px 20px 24px;
  box-shadow: 0 1px 8px rgba(29,29,31,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 300px;
  transition: box-shadow .18s, background .15s, transform .13s;
}
.feature-grid li:hover {
  box-shadow: 0 6px 18px rgba(29,29,31,0.14);
  background: #EBEBEB;
  transform: translateY(-2px) scale(1.016);
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 2px;
  opacity: .92;
  filter: grayscale(100%)
}

/* ==== CARDS ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(29,29,31,0.07);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  padding: 26px 24px 22px 24px;
  transition: box-shadow .15s, background .15s, transform .13s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(29,29,31,0.12);
  background: #FAFAFA;
  transform: translateY(-3px) scale(1.012);
}

/* ==== TESTIMONIALS ==== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: #fff;
  margin-bottom: 24px;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(29,29,31,0.07);
  transition: box-shadow .16s, background .13s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px rgba(29,29,31,0.11);
  background: #F5F5F6;
}
.testimonial-card blockquote {
  font-size: 1.12rem;
  color: #1D1D1F;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}
.testimonial-card p {
  color: #444;
  font-size: 1.04rem;
}

/* ==== REUSABLE FLEX PATTERNS ==== */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== CUSTOM SECTIONS (CONTACT & MAP) ==== */
.location-map {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
  padding: 10px 0 10px 0;
}
.location-map img {
  width: 56px;
  height: 56px;
}

/* ==== FOOTER ==== */
footer {
  background: #1D1D1F;
  padding: 40px 0 24px 0;
  color: #EBEBEB;
}
footer .container {
  padding-top: 0;
  padding-bottom: 0;
}
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-nav a {
  color: #A6B7B2;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  opacity: .87;
  border-radius: 8px;
  padding: 7px 10px;
  transition: color .16s, background .16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #232323;
  color: #fff;
}
footer p {
  color: #D1D1D3;
  font-size: 0.98rem;
  text-align: left;
  opacity: .73;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1D1D1F;
  color: #F5F5F6;
  padding: 22px 12px 22px 12px;
  z-index: 111100;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -2px 26px rgba(0,0,0,.10);
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .22s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #F5F5F6;
}
.cookie-banner .cookie-btn-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 14px;
  padding: 10px 24px;
  cursor: pointer;
  transition: background .16s, color .15s;
  margin-bottom: 0;
}
.cookie-banner .accept {
  background: #fff;
  color: #1D1D1F;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #A6B7B2;
  color: #fff;
}
.cookie-banner .reject {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #232323;
  border-color: #A6B7B2;
  color: #A6B7B2;
}
.cookie-banner .settings {
  background: #232323;
  color: #A6B7B2;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #A6B7B2;
  color: #1D1D1F;
}

/* ==== COOKIE MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(29,29,31,0.87);
  z-index: 111200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .26s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.cookie-modal {
  background: #fff;
  color: #1D1D1F;
  border-radius: 22px;
  box-shadow: 0 14px 48px rgba(22,22,26,0.17);
  max-width: 430px;
  width: 92vw;
  padding: 36px 28px 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 22px;
  position: relative;
  animation: fadeInModal .36s cubic-bezier(.45,.04,.38,1);
}
@keyframes fadeInModal {
  from { transform: scale(0.92) translateY(38px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 11px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 9px 13px 0;
  border-bottom: 1px solid #EFEFEF;
}
.cookie-modal .cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal label {
  font-size: 1rem;
  font-family: inherit;
  color: #232323;
  font-weight: 500;
}
.cookie-modal .cookie-toggle {
  width: 32px;
  height: 18px;
  background: #A6B7B2;
  border-radius: 9px;
  position: relative;
  cursor: pointer;
  transition: background .18s;
  margin-left: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.cookie-modal .cookie-toggle input {
  display: none;
}
.cookie-modal .cookie-toggle span {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left .18s, background .14s;
}
.cookie-modal .cookie-toggle input:checked + span {
  left: 16px;
  background: #232323;
}
.cookie-modal .cookie-toggle[aria-disabled="true"] {
  background: #545454;
  cursor: not-allowed;
}
.cookie-modal .cookie-toggle[aria-disabled="true"] span {
  background: #B1B1B2;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: .98rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  padding: 8px 18px;
  cursor: pointer;
  transition: background .18s, color .13s;
}
.cookie-modal .save {
  background: #1D1D1F;
  color: #fff;
}
.cookie-modal .close {
  background: #F5F5F6;
  color: #1D1D1F;
  margin-left: 8px;
}
.cookie-modal .save:hover, .cookie-modal .save:focus {
  background: #A6B7B2; color: #fff;
}
.cookie-modal .close:hover, .cookie-modal .close:focus {
  background: #EBEBEB;
}

/* ==== FORMS, INPUTS, MISC ==== */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  color: #232323;
  background: #F5F5F6;
  border: 1px solid #B1B1B2;
  border-radius: 7px;
  padding: 10px 14px;
  margin-bottom: 16px;
  transition: border .15s, background .14s;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: #A6B7B2;
  background: #fff;
  outline: none;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 992px) {
  .container { max-width: 840px; }
  .feature-grid, .card-container, .content-grid { gap: 18px; }
}
@media (max-width: 820px) {
  .container { max-width: 680px; }
  .content-wrapper { padding: 30px 8px; }
  .section { padding: 28px 8px; }
}
@media (max-width: 768px) {
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .content-wrapper, .text-section {
    margin-bottom: 36px;
    padding: 22px 6px;
    border-radius: 14px;
  }
  .section {
    margin-bottom: 36px;
    padding: 22px 6px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 10px;
    border-radius: 14px;
  }
  .location-map {
    flex-direction: column;
    gap: 8px;
    padding-left: 0;
    border-radius: 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .mobile-menu {
    padding-top: 24px;
  }
}
@media (max-width: 430px) {
  .main-navigation img { width: 64px; }
  .container { padding-left: 5px; padding-right: 5px; }
  .content-wrapper, .text-section, .section { padding: 10px 3px; border-radius: 6px;}
  .hero h1 { font-size: 1.4rem; }
  .cookie-banner { padding: 16px 2px 16px 2px; font-size: 0.97rem;}
}

/* ==== UTILITIES ==== */
.d-none { display: none !important; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.align-center { align-items: center!important; }
.align-start { align-items: flex-start!important; }
.gap-20 { gap: 20px!important; }
.mb-20 { margin-bottom: 20px!important; }
.mt-20 { margin-top: 20px!important; }

/* ==== MONOCHROME SOPHISTICATED EXTRAS ==== */
::-webkit-scrollbar {
  width: 10px;
  background: #F5F5F6;
}
::-webkit-scrollbar-thumb {
  background: #B1B1B2;
  border-radius: 8px;
}

/* ==== ANIMATIONS & MICRO-INTERACTIONS ==== */
.card, .feature-grid li, .testimonial-card, .cta-btn, .cookie-banner button, .footer-nav a, .main-navigation a, .mobile-nav a {
  transition: box-shadow .18s, background .15s, color .13s, transform .13s;
}

/* ==== ACCENT TEXT ==== */
.accent {
  color: #A6B7B2;
}

/* ==== ACCESSIBILITY ==== */
:focus-visible {
  outline: 2px solid #A6B7B2;
  outline-offset: 2px;
}

/* ==== NO CSS GRID OR COLUMN PROPERTIES */
/* (NO display: grid, columns, or column-count anywhere in file) */