/* CSS RESET & BASE TYPOGRAPHY – Monochrome Sophisticated */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #181818;
  min-height: 100vh;
  line-height: 1.65;
  font-size: 1rem;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  text-decoration: none;
  color: #181818;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #206A5D;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 6px;
}
button {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
}
:focus {
  outline: 2px solid #338FDA;
  outline-offset: 2px;
}

/* TYPOGRAPHY SCALE & HIERARCHY */
h1, .h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  line-height: 1.12;
}
h2, .h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 18px;
  line-height: 1.15;
}
h3, .h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 14px;
}
h4, .h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 12px;
}
p, .p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #222;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
strong, b {
  font-weight: 700;
}

/* BRAND COLOR PALETTE – Monochrome with Brand Accents */
:root {
  --color-black: #111;
  --color-darker: #181818;
  --color-darkgray: #333;
  --color-gray: #626262;
  --color-midgray: #b2b2b2;
  --color-lightgray: #EFEFEF;
  --color-white: #fff;
  --brand-green: #206A5D;
  --brand-blue: #338FDA;
  --brand-accent: #2274A5;
  --brand-beige: #F4F1EE;
}

/* GENERAL LAYOUT */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
main {
  flex: 1 0 auto;
  background: var(--color-white);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  padding: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section {
  margin: 24px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* HEADER & NAVIGATION */
header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-lightgray);
  padding: 0;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.logo-link {
  display: flex; align-items: center; height: 46px;
}
.logo-link img {
  height: 46px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: 40px;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: #222;
  font-size: 1rem;
  position: relative;
  padding: 6px 0;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.main-nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2.5px;
  background: var(--brand-green);
  margin-top: 4px;
  border-radius: 2px;
  transition: width 0.25s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--brand-green);
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 100%;
}

.cta-button {
  background: var(--color-black);
  color: var(--color-white) !important;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 28px;
  border: none;
  padding: 12px 32px;
  margin-left: 32px;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.06);
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background: var(--brand-green);
  color: var(--color-white) !important;
  box-shadow: 0 4px 24px 0 rgba(32,106,93,0.09);
}

/* --- MOBILE NAV --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--color-black);
  margin-left: 20px;
  line-height: 1;
  z-index: 102;
}
@media (max-width: 992px) {
  .main-nav,
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20, 20, 20, 0.86);
  z-index: 120;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(0.77,0,0.175,1);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--color-white);
  font-size: 2.3rem;
  border: none;
  align-self: flex-end;
  padding: 32px 32px 0 0;
  cursor: pointer;
  z-index: 121;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--brand-blue);
}
.mobile-nav {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.mobile-nav a {
  color: var(--color-white);
  font-size: 1.45rem;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.02em;
  font-weight: 600;
  padding: 15px 0;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  width: 80vw;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-blue);
  color: var(--color-white);
}

/* HERO SECTION (Always monochrome, dramatic) */
.hero {
  background: #181818;
  color: var(--color-white);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.hero .container {
  flex-direction: column;
}
.hero .content-wrapper {
  padding: 36px 0;
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: var(--color-white);
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}
.hero p {
  color: #EFEFEF;
  font-size: 1.2rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 0;
}
.hero .cta-button {
  margin-left: 0;
  margin-top: 8px;
}

/* FEATURES GRID & FLEXBOX COMPONENTS */
.features-grid, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.feature, .service-item {
  background: var(--color-white);
  box-shadow: 0 2px 12px 0 rgba(24,24,24,0.07);
  border-radius: 18px;
  border: 1px solid var(--color-lightgray);
  padding: 32px 24px;
  flex: 1 1 300px;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.21s, border-color 0.22s, transform 0.18s;
  margin-bottom: 20px;
}
.feature img, .service-item img {
  max-width: 48px;
  margin-bottom: 10px;
  filter: grayscale(1) contrast(1.1);
  opacity: 0.87;
}
.feature:hover, .service-item:hover {
  box-shadow: 0 6px 32px 0 rgba(32, 106, 93, 0.06);
  border-color: var(--brand-beige);
  transform: translateY(-3px) scale(1.024);
  z-index: 2;
}
.features-grid .feature {
  min-width: 270px;
  max-width: 362px;
  flex: 1 1 270px;
}

/* SERVICE LIST */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-item {
  min-width: 240px;
  max-width: 390px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  align-items: flex-start;
  gap: 12px;
}
.service-item h3 {
  margin-bottom: 10px;
}
.service-item p {
  font-size: 1rem;
  color: #232323;
  margin-bottom: 6px;
}
.service-item ul {
  margin: 0 0 10px 16px;
  font-size: 0.98rem;
  color: #434343;
  padding-left: 16px;
}
.service-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--brand-green);
  letter-spacing: 0.01em;
}

/* TESTIMONIAL CARDS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--brand-beige);
  border: 1px solid #ececec;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px 0 rgba(115,115,115,0.07);
  font-size: 1.05rem;
  color: #202020;
  transition: box-shadow 0.16s, border-color 0.15s;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 6px 20px 2px rgba(32, 106, 93, 0.09);
  border-color: var(--brand-green);
}
.testimonial-card strong {
  color: #181818;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
.star-rating {
  margin-top: 12px;
  color: #202020;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 1.2rem;
}

/* CTA SECTION (call-to-action) */
.cta {
  background: var(--brand-green);
  color: var(--color-white);
  border-radius: 28px;
  margin: 50px 0 28px 0;
  box-shadow: 0 2px 16px 0 rgba(32,106,93,0.08);
}
.cta .container {
  flex-direction: column;
  align-items: center;
}
.cta .content-wrapper {
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}
.cta h2 {
  color: var(--color-white);
  margin-bottom: 18px;
}
.cta .cta-button {
  margin: 0 auto;
  background: var(--brand-blue);
  color: var(--color-white) !important;
}
.cta .cta-button:hover, .cta .cta-button:focus {
  background: var(--color-white);
  color: var(--brand-blue) !important;
}

/* FOOTER */
footer {
  background: #181818;
  color: #f6f6f6;
  padding: 32px 0 14px;
  font-size: 0.98rem;
  border-top: 1px solid #252525;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
.footer-logo img {
  height: 44px;
  filter: grayscale(1) contrast(1.2);
  margin-bottom: 16px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #e0e0e0;
  font-size: 1rem;
  padding: 3px 0;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-blue);
}
.footer-contact p{
  color: white
}
.footer-contact {
  color: #c1c1c1;
  font-size: 0.96rem;
}
.footer-contact a {
  color: var(--brand-blue);
  text-decoration: underline;
}

/* Cookie Consent Banner & Modal */
.cookie-consent-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #232323;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 30px;
  box-shadow: 0 -6px 24px 0 rgba(0,0,0,0.13);
  z-index: 2100;
  font-size: 1.02rem;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.38s cubic-bezier(0.77,0,0.175,1), opacity 0.18s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-consent-banner .cookie-consent-text {
  flex: 1 1 200px;
}
.cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  background: var(--color-white);
  color: #111;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  padding: 9px 20px;
  border-radius: 21px;
  font-weight: 600;
  margin-right: 2px;
  box-shadow: 0 2px 8px 0 rgba(32,106,93,.05);
  transition: background 0.16s, color 0.16s;
}
.cookie-btn.accept {
  background: var(--brand-green);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--brand-blue);
  color: #fff;
}
.cookie-btn.reject {
  background: #2c2c2c;
  color: var(--color-white);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--color-black);
}
.cookie-btn.settings {
  background: #1C1C1C;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--brand-blue);
  color: #fff;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 2200;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(18,18,18,0.72);
  justify-content: center;
  align-items: center;
  animation: fadein-bg 0.4s;
}
@keyframes fadein-bg { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: #f6f6f4;
  color: #181818;
  border-radius: 20px;
  min-width: 320px;
  max-width: 99vw;
  width: 420px;
  box-shadow: 0 6px 44px 4px rgba(18,18,18,0.18);
  padding: 42px 26px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: fadein-modal 0.38s cubic-bezier(0.77,0,0.175,1);
}
@keyframes fadein-modal { from { transform: scale(0.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  background: none;
  border: none;
  color: #181818;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 2210;
  transition: color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--brand-green);
}
.cookie-modal h2 {
  font-size: 1.26rem;
  margin-bottom: 5px;
}
.cookie-modal label {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.toggle-switch {
  width: 38px;
  height: 22px;
  background: #cecece;
  border-radius: 99px;
  position: relative;
  transition: background 0.15s;
}
.toggle-switch input[type="checkbox"] {
  opacity: 0; width: 0; height: 0; position: absolute;
}
.toggle-slider {
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.19s;
  box-shadow: 0 2px 6px 0 rgba(20,20,20,0.08);
}
.toggle-switch input[type="checkbox"]:checked + .toggle-slider {
  transform: translateX(16px);
}
.toggle-switch input[type="checkbox"]:checked ~ .toggle-switch {
  background: var(--brand-blue);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 18px;
}

/* CARD PATTERNS (flex layouts) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-white);
  border-radius: 12px;
  border: 1px solid var(--color-lightgray);
  box-shadow: 0 2px 8px 0 rgba(60,60,60,0.06);
  margin-bottom: 20px;
  padding: 24px 18px;
  position: relative;
}
.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;
}

/* GENERAL ELEMENTS */
hr {
  border: none;
  border-top: 1px solid #e6e6e6;
  margin: 32px 0;
}

/* MEDIA QUERIES & RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .container {
    padding: 0 13px;
    max-width: 98vw;
  }
  header .container {
    height: 58px;
    padding: 0 10px;
    gap: 8px;
  }
  .features-grid, .services-list {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  h1, .h1 { font-size: 2.1rem; }
  h2, .h2 { font-size: 1.35rem; }
  .section, section {
    margin-bottom: 36px;
    padding: 26px 0;
  }
  .footer-logo img {
    height: 32px;
  }
  .content-wrapper, .content-grid {
    padding-left: 0;
    padding-right: 0;
    gap: 11px;
  }
  .features-grid, .services-list {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .feature, .service-item {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding: 18px 12px;
  }
  .feature img, .service-item img {
    max-width: 36px;
  }
  .testimonial-card, .card {
    padding: 13px 9px;
  }
  .footer-contact, .footer-nav {
    font-size: 0.93rem;
  }
  .footer-nav {
    gap: 6px;
  }
  /* Layout containers: use column */
  .container, .content-wrapper, .content-grid, .footer-nav, .footer-contact, .features-grid, .services-list {
    flex-direction: column;
  }
  .hero .content-wrapper {
    align-items: flex-start;
    padding: 26px 0;
    gap: 8px;
  }
  .cta .content-wrapper {
    padding: 26px 0;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
@media (max-width: 480px) {
  body {
    font-size: 0.98rem;
  }
  h1, .h1 { font-size: 1.37rem; }
  h2, .h2 { font-size: 1.1rem; }
  .cta .content-wrapper h2 { font-size: 1.02rem; }
  .cookie-modal-content { min-width: 94vw; padding: 18px 8px; }
}

/* MICRO-INTERACTIONS & HOVER STATES */
.feature:hover h3,
.service-item:hover h3 {
  color: var(--brand-green);
}
.card:hover {
  border-color: var(--brand-green);
  box-shadow: 0 4px 18px 0 rgba(32, 106, 93, 0.09);
  z-index: 3;
  transform: translateY(-2px) scale(1.015);
}
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 7px;
  border: 1px solid #b2b2b2;
  padding: 9px 12px;
  margin-bottom: 14px;
  background: #fff;
  color: #181818;
  transition: border-color 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--brand-blue);
}
/* --- END CSS FILE --- */