/* === 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;
  box-sizing: border-box;
}
html { box-sizing: border-box; font-size: 100%; }
*, *:before, *:after { box-sizing: inherit; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  background: #fff;
  color: #191919;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
a {
  color: #1b1b1b;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.42,0,.58,1);
}
a:hover, a:focus {
  color: #1B4F3C;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
/* === MONOCHROME SOPHISTICATED COLORS === */
:root {
  --primary: #1B1B1B;
  --secondary: #4A4A4A;
  --mid: #979797;
  --accent: #F7F7F5;
  --white: #fff;
  --almost-black: #181818;
  --border: #e5e5e5;
  --shadow: rgba(30,30,30,0.09);
  --brand-green: #1B4F3C;
  --brand-accent: #F7F6F3;
}

/* === TYPOGRAPHY & HEADINGS === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-weight: 600;
  text-transform: none;
  color: #1B1B1B;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  line-height: 1.12;
}
h1 { font-size: 2.75rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 22px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; font-weight: 500; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }
.subheadline {
  color: #494949;
  font-size: 1.15rem;
  margin-bottom: 24px;
  font-weight: 400;
  line-height: 1.55;
}
p {
  color: #232323;
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
b, strong {
  font-weight: 700;
}

/* === LAYOUT CONTAINERS & SPACING === */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--shadow);
}

@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
    border-radius: 12px;
  }
}

/* === FLEXBOX PATTERNS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 8px var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 22px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 18px rgba(30,30,30,0.16);
  transform: translateY(-2px) scale(1.012);
  z-index: 1;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow);
  border: 1px solid #ededed;
  margin-bottom: 24px;
  transition: box-shadow 0.18s;
}
.testimonial-card p {
  color: #191919;
  font-size: 1.08rem;
  margin-bottom: 0;
  font-style: italic;
}
.testimonial-author {
  color: #777;
  font-size: 0.99rem;
  font-family: 'Oswald', Arial, sans-serif;
  letter-spacing: 0.01em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* === HEADER & NAVIGATION === */
header {
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid #e5e5e5;
  box-shadow: 0 1px 8px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 98;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.04rem;
}
nav a {
  color: #262626;
  padding: 6px 3px;
  position: relative;
  letter-spacing: 0.01em;
  font-weight: 500;
  transition: color 0.15s, border-color 0.15s;
}
nav a:hover, nav a:focus {
  color: var(--brand-green);
  border-bottom: 2px solid var(--brand-green);
}
.cta-primary {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
  font-family: 'Oswald', Arial, sans-serif;
  padding: 11px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.07rem;
  letter-spacing: 0.015em;
  box-shadow: 0 2px 8px var(--shadow);
  margin-left: 12px;
  cursor: pointer;
  transition: background 0.15s, color 0.2s, border 0.15s, box-shadow 0.15s;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  box-shadow: 0 4px 18px rgba(30,30,30,0.15);
  transform: translateY(-2px) scale(1.027);
}
.cta-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  font-family: 'Oswald', Arial, sans-serif;
  padding: 8px 18px;
  border-radius: 40px;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.009em;
  transition: background 0.13s, color 0.13s, border 0.13s;
  box-shadow: none;
  margin-top: 24px;
  margin-bottom: 6px;
  display: inline-block;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #181818;
  color: #fff;
  border-color: #181818;
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #191919;
  cursor: pointer;
  width: 44px;
  height: 44px;
  line-height: 44px;
  align-items: center;
  justify-content: center;
  z-index: 103;
}
@media (max-width: 991px) {
  nav {
    display: none;
  }
  .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32,32,32,0.96);
  z-index: 102;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.39,.58,.57,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.1rem;
  border: none;
  margin: 26px 22px 0 0;
  cursor: pointer;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  display: flex;
  z-index: 105;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 40px 0 0 0;
  width: 100%;
  align-items: flex-start;
  padding-left: 40px;
}
.mobile-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.30rem;
  color: #fff;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  width: 90%;
  max-width: 340px;
  transition: color 0.13s, background 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--brand-accent);
  background: rgba(255,255,255,0.075);
  border-radius: 6px;
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none!important;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* === FOOTER === */
footer {
  background: #191919;
  color: #fff;
  padding: 48px 0 18px 0;
  width: 100%;
  margin-top: 48px;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer-logo {
  height: 38px;
  margin-bottom: 12px;
  filter: grayscale(1) brightness(1.2);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #c5c5c5;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.13s, text-decoration 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-contact {
  color: #b6b6b6;
  font-size: 0.96rem;
  margin-bottom: 16px;
}
.footer-credit {
  width: 100%;
  text-align: right;
  font-size: 0.91rem;
  color: #888;
  margin-top: 12px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-credit {
    text-align: left;
  }
}

/* === FEATURES & CARDS === */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
  padding: 0;
}
.feature-grid li {
  flex: 1 1 220px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 10px var(--shadow);
  border: 1px solid #ededed;
  padding: 22px 20px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 190px;
  max-width: 340px;
  position: relative;
  transition: box-shadow 0.16s, transform 0.16s;
}
.feature-grid img {
  height: 42px;
  width: auto;
  margin-bottom: 2px;
  filter: grayscale(1) contrast(1.3);
}
.feature-grid li:hover {
  box-shadow: 0 8px 20px rgba(30,30,30,0.09);
  transform: translateY(-3px) scale(1.025);
  z-index: 2;
}

@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
  }
  .feature-grid li {
    min-width: 140px;
    max-width: 100%;
    flex: 1 1 140px;
  }
}
@media (max-width: 600px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid li {
    min-width: unset;
    width: 100%;
    padding: 18px;
    border-radius: 10px;
  }
}

.services-preview, .team-section, .faq-list, .testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.services-preview > div, .team-section > div, .faq-list > div {
  background: #fff;
  border-radius: 12px;
  padding: 18px 20px 14px 22px;
  box-shadow: 0 2px 8px var(--shadow);
  border: 1px solid #ededed;
  min-width: 190px;
  margin-bottom: 20px;
  flex: 1 1 210px;
  transition: box-shadow 0.13s, transform 0.13s;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.services-preview > div:hover, .team-section > div:hover, .faq-list > div:hover {
  box-shadow: 0 7px 18px rgba(30,30,30,0.13);
  transform: translateY(-2px) scale(1.012);
  z-index: 1;
}

@media (max-width: 900px) {
  .services-preview, .team-section, .faq-list, .testimonials {
    gap: 14px;
  }
  .services-preview > div, .team-section > div {
    min-width: 140px;
    flex: 1 1 110px;
    font-size: 0.98rem;
  }
}
@media (max-width:700px) {
  .services-preview, .team-section, .faq-list, .testimonials {
    flex-direction: column;
    gap: 14px;
  }
  .services-preview > div, .team-section > div, .faq-list > div {
    width: 100%;
    min-width: unset;
    padding: 14px 12px;
  }
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
}
.service-list li {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow);
  border: 1px solid #e6e6e6;
  padding: 20px 24px;
  min-width: 190px;
  flex: 1 1 225px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
@media (max-width: 700px) {
  .service-list {
    flex-direction: column;
    gap: 14px;
  }
  .service-list li {
    width: 100%;
    min-width: unset;
    padding: 14px 11px;
    border-radius: 9px;
  }
}

/* === TABS, MAP, etc. === */
.map {
  background: #f2f2f2;
  border: 1px dashed #ccc;
  border-radius: 8px;
  padding: 20px;
  color: #494949;
  font-size: 0.99rem;
  margin-bottom: 8px;
}

/* === HERO IMAGE (if exists) === */
.hero {
  background: linear-gradient(140deg, #fff 65%, #e2e2e2 100%);
  border-radius: 18px;
  box-shadow: 0 2px 10px var(--shadow);
  padding: 48px 24px 40px 24px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

/* === MISC === */
span.price, .services-preview span, .service-list span {
  color: var(--primary);
  font-weight: 700;
  margin-left: 6px;
}

/* === FAQ === */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.faq-list > div {
  background: #fff;
  border-radius: 10px;
  padding: 15px 18px;
  box-shadow: 0 1px 4px var(--shadow);
  border: 1px solid #ededed;
  flex: 1 1 205px;
  margin-bottom: 18px;
}
.faq-list h3 {
  font-size: 1rem;
  color: #333;
  margin-bottom: 6px;
}

/* === RESPONSIVE UTILITIES === */
@media (max-width: 600px) {
  body {
    font-size: 15px;
  }
  h1 { font-size: 2.01rem; }
  h2 { font-size: 1.3rem; }
  .footer-logo {
    height: 28px;
  }
}

/* === MICRO-INTERACTIONS & TRANSITIONS === */
button, .cta-primary, .cta-secondary, a {
  transition: color .16s, background .19s, border .13s, box-shadow .13s, transform 0.18s cubic-bezier(.39,.58,.57,1);
}

/* === FOCUS ACCESSIBILITY === */
:focus {
  outline: 2px solid #1B4F3C;
  outline-offset: 2px;
}
button:focus {
  outline: 2px solid #1B4F3C;
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #222;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 26px 15px 22px 15px;
  box-shadow: 0 -2px 18px #12121233;
  z-index: 1100;
  font-size: 1.04rem;
  gap: 24px;
  opacity: 1;
  transition: opacity 0.3s cubic-bezier(.39,.58,.57,1), bottom 0.3s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  bottom: -150px;
}
.cookie-banner p {
  color: #fff;
  margin-bottom: 0;
  max-width: 600px;
  flex: 1 1 auto;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  font-family: 'Oswald', Arial, sans-serif;
  padding: 9px 22px;
  border-radius: 40px;
  font-size: 1rem;
  border: none;
  margin: 0 2px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.15s, color 0.13s, box-shadow 0.12s;
  background: #fff;
  color: #191919;
  box-shadow: 0 2px 8px var(--shadow);
}
.cookie-btn.accept {
  background: #1B4F3C;
  color: #fff;
}
.cookie-btn.accept:hover {
  background: #206e50;
}
.cookie-btn.reject {
  background: #1B1B1B;
  color: #fff;
}
.cookie-btn.reject:hover {
  background: #2d2d2d;
}
.cookie-btn.settings {
  background: #f7f7f7;
  color: #191919;
  border: 1.2px solid #eee;
}
.cookie-btn.settings:hover {
  background: #ececec;
  color: #1B4F3C;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 2vw;
    font-size: 0.98rem;
  }
}

/* === COOKIE PREFERENCES MODAL === */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,24,24,0.87);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.22s cubic-bezier(.51,.55,.48,1);
}
.cookie-modal-overlay.hide {
  pointer-events: none;
  opacity: 0;
}
.cookie-modal {
  background: #fff;
  color: #222;
  min-width: 320px;
  max-width: 98vw;
  border-radius: 17px;
  box-shadow: 0 2px 32px rgba(0,0,0,0.11);
  padding: 38px 31px 28px 31px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 1310;
  position: relative;
  animation: cookieFadeIn 0.36s cubic-bezier(.52,0,.77,1);
}
@keyframes cookieFadeIn {
  from { opacity: 0; transform: translateY(50px) scale(0.95); }
  to { opacity: 1; transform: none; }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.cookie-preference-category {
  margin-bottom: 15px;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #ececec;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-preference-category:last-child {
  border-bottom: none;
}
.cookie-toggle {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.cookie-toggle input[type="checkbox"] {
  appearance: none;
  width: 36px;
  height: 18px;
  background: #e5e5e5;
  border-radius: 12px;
  position: relative;
  outline: none;
  transition: background 0.15s;
  cursor: pointer;
}
.cookie-toggle input[type="checkbox"]:checked {
  background: #1B4F3C;
}
.cookie-toggle input[type="checkbox"]:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px #0001;
  position: absolute;
  left: 1px;
  top: 1px;
  transition: left 0.13s cubic-bezier(.49,.55,.47,1.1);
}
.cookie-toggle input[type="checkbox"]:checked:before {
  left: 19px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 19px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 13px; right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
  opacity: .65;
  transition: opacity 0.13s;
}
.cookie-modal .close-modal:hover {
  opacity: 1;
  color: #1B4F3C;
}
@media (max-width:480px) {
  .cookie-modal {
    min-width: unset;
    padding: 21px 7px 16px 11px;
  }
}

/* === UTILITIES === */
.hide { display: none!important; }
.flex { display: flex; }
.center { justify-content: center; align-items: center; }

/* === PRINT === */
@media print {
  header, nav, .mobile-menu, .cookie-banner, footer { display: none!important; }
}

/* === BRANDED EASTER-EGG: primary color borders on focused buttons and cta === */
.cta-primary:focus, .cta-secondary:focus, .cookie-btn:focus, .close-modal:focus {
  outline: 2px solid var(--brand-green);
  outline-offset: 2px;
}

/* === CUSTOM TYPOGRAPHY LOAD (Oswald/Roboto from Google Fonts) === */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap');

/* === VISUAL HIERARCHY (Sizing) === */
.section h1, .section h2, .section h3,
.content-wrapper h1, .content-wrapper h2, .content-wrapper h3{
  margin-top: 0;
}

/* === SPACING BETWEEN CARDS/SECTIONS === */
.section + .section,
.section {
  margin-bottom: 60px;
}
.card + .card, .testimonial-card + .testimonial-card,
.service-list li + li, .feature-grid li + li,
.services-preview > div + div, .faq-list > div + div {
  margin-top: 20px;
}
@media (max-width:600px) {
  .section + .section, .section { margin-bottom: 34px; }
}

/* === FORM ELEMENTS (if any) === */
input, textarea, select {
  width: 100%;
  border-radius: 7px;
  border: 1.2px solid #d4d4d4;
  background: #fff;
  padding: 9px 13px;
  font-size: 1rem;
  margin-bottom: 16px;
  transition: border 0.13s;
}
input:focus, textarea:focus, select:focus {
  border: 1.6px solid #1B4F3C;
}

/* === END === */
