/* 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  background: #E8E5DF;
  color: #2B2C2F;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img, picture, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
input, button, textarea, select {
  font: inherit;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}

/* BRAND COLORS AS CSS VARIABLES */
:root {
  --primary: #2B2C2F;
  --secondary: #E8E5DF;
  --accent: #B5A276;
  --accent-light: #e0d8be;
  --bg-light: #F6F4EF;
  --error: #C05D54;
  --success: #56A373;
  --border: #E0DED7;
  --shadow: 0 4px 18px rgba(181, 162, 118, 0.09);
}

/* TYPOGRAPHY */
body, .body {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  color: var(--primary);
}
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p {
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 1.1rem;
}
strong {
  font-weight: 700;
  color: var(--primary);
}
em {
  color: var(--accent);
}

/* CONTAINER & SECTIONS */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg-light);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
main > section:not(.hero):not(.cta) {
  margin-bottom: 40px;
}

/* HERO SECTION */
.hero {
  background: var(--accent-light);
  border-radius: 0 0 40px 40px;
  margin-bottom: 48px;
  padding: 0 0 40px 0;
  box-shadow: 0 6px 24px rgba(181, 162, 118, 0.08);
}
.hero .container {
  padding-top: 36px;
  padding-bottom: 36px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.2rem;
}
.hero p {
  font-size: 1.2rem;
}

/* CTA SECTIONS */
.cta, .final-cta, .cta-services {
  background: var(--accent-light);
  border-radius: 30px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
}
.cta .content-wrapper, .final-cta .content-wrapper, .cta-services .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.cta h2, .cta-services h2, .final-cta h2 {
  color: var(--primary);
}

/* BUTTONS */
.cta-btn, .cookie-btn {
  background: var(--accent);
  color: #fff;
  padding: 13px 34px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.12rem;
  line-height: 1.3;
  border: none;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(181, 162, 118, 0.16);
  cursor: pointer;
  transition: background 0.17s, box-shadow 0.18s, transform 0.13s;
  margin-top: 12px;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus, .cookie-btn:hover, .cookie-btn:focus {
  background: #A9915C;
  box-shadow: 0 6px 16px rgba(153, 128, 76, 0.11);
  outline: none;
  transform: translateY(-2px) scale(1.03);
}
/* Text links in cards or articles */
a:not(.cta-btn):hover, a:not(.cta-btn):focus {
  color: var(--accent);
  text-decoration: underline;
}

/* NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(43,44,47,0.04);
  position: sticky;
  top: 0;
  z-index: 99;
  padding-top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 70px;
  padding: 10px 20px;
}
.logo img {
  height: 42px;
  border-radius: 18px;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}
nav a {
  padding: 6px 12px;
  border-radius: 15px;
  color: var(--primary);
  transition: background 0.18s, color 0.18s;
}
nav a:hover, nav a:focus {
  background: var(--accent-light);
  color: var(--accent);
}
header .cta-btn {
  margin-left: 18px;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 103;
  background: var(--accent);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 7px 22px 7px 14px;
  border-radius: 22px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(181,162,118,0.06);
  transition: background 0.15s, box-shadow 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #A9915C;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(232,229,223,0.97);
  box-shadow: 0 2px 28px rgba(43,44,47,0.22);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.67,0.01,0.28,0.99);
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--accent);
  border: none;
  color: #fff;
  font-size: 2.1rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-self: flex-end;
  margin: 24px 24px 10px 0;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(181,162,118,0.15);
  transition: background 0.18s, box-shadow 0.16s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #A9915C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  align-items: flex-start;
  padding: 18px 32px 28px 32px;
  font-size: 1.2rem;
}
.mobile-nav a {
  color: var(--primary);
  padding: 10px;
  width: 100%;
  border-radius: 20px;
  transition: background 0.13s, color 0.15s;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  margin-left: -6px;
  margin-right: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent-light);
  color: var(--accent);
}

/* FLEX LAYOUTS */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.features .content-wrapper, .services .content-wrapper, .about .content-wrapper, .testimonials .content-wrapper, .contact .content-wrapper {
  padding-top: 10px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 26px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 260px;
  flex: 1 1 285px;
}
.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 {
  background: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 26px;
  border-radius: 22px;
  margin-bottom: 20px;
  box-shadow: 0 2px 11.5px rgba(181, 162, 118, 0.14);
  font-size: 1.13rem;
  flex: 1 1 330px;
  flex-direction: column;
  min-width: 220px;
  max-width: 430px;
}
.testimonial-card p {
  color: #2B2C2F;
  font-style: italic;
}
.testimonial-card span {
  margin-left: auto;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 500;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* SERVICES LISTS, FEATURES LISTS */
.features ul, .services ul, .about ul, .contact ul {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
}
.features ul li, .services ul li, .about ul li, .contact ul li {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(181,162,118,0.08);
  padding: 18px 22px 18px 17px;
  min-width: 240px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.07rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
  margin-bottom: 10px;
}
.features ul li img, .services ul li img, .about ul li img, .contact ul li img {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--accent-light);
  padding: 6px;
  margin-right: 6px;
  object-fit: contain;
}
.services ul em, .about ul em {
  font-style: normal;
  color: var(--accent);
  font-weight: 500;
}

/* OL LIST STYLES */
.about .content-wrapper ol {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 18px;
  padding-left: 24px;
}
.about .content-wrapper ol li {
  position: relative;
  font-size: 1.08rem;
  margin-left: 12px;
  padding-left: 20px;
}
.about .content-wrapper ol li::before {
  content: counter(section) '.';
  counter-increment: section;
  color: var(--accent);
  font-weight: bold;
  position: absolute;
  left: 0;
}
.about .content-wrapper ol {
  counter-reset: section;
}

/* CONTACT CARD */
.contact ul {
  gap: 20px;
}
.contact ul li {
  min-width: 220px;
}
.contact-hours {
  background: var(--accent-light);
  border-radius: 16px;
  padding: 16px 24px;
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1rem;
  box-shadow: 0 2px 7px rgba(181, 162, 118, 0.04);
}
.contact-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* FOOTER */
footer {
  margin-top: 40px;
  background: #fff;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -2px 16px rgba(43,44,47,0.04);
  padding: 34px 0 18px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 170px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.97rem;
}
.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  margin-bottom: 5px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-width: 155px;
}
footer nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 0.99rem;
  border-radius: 12px;
  padding: 4px 4px 4px 0;
  transition: background 0.13s, color 0.13s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--accent-light);
  color: var(--accent);
}
.footer-hours {
  background: var(--accent-light);
  border-radius: 16px;
  padding: 13px 18px;
  color: var(--primary);
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}

/* BLOG LIST LINKS */
.features .content-wrapper ul li a {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: underline;
}
.features .content-wrapper ul li a:hover {
  color: #A9915C;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1010;
  background: #fff;
  color: var(--primary);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -3px 22px rgba(43,44,47,0.14);
  border-radius: 22px 22px 0 0;
  padding: 22px 20px 22px 20px;
  gap: 23px;
  width: 98vw;
  max-width: 1022px;
  margin: 0 auto;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.2s, transform 0.23s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110px);
}
.cookie-banner .cookie-message {
  flex: 1;
  font-size: 1.08rem;
  line-height: 1.55;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  border: none;
  border-radius: 18px;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(181,162,118,0.12);
  transition: background 0.16s, box-shadow 0.15s, transform 0.11s;
}
.cookie-btn.settings {
  background: #E8E5DF;
  color: var(--primary);
  border: 1px solid var(--accent);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  border: 1.7px solid var(--accent);
  background: #F6F4EF;
  color: var(--accent);
}
.cookie-btn.reject {
  background: var(--border);
  color: var(--accent);
  border: none;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #E8E5DF;
  color: #A9915C;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  z-index: 1100;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(43,44,47, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.21s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  color: var(--primary);
  max-width: 410px;
  width: 97vw;
  border-radius: 20px;
  box-shadow: 0 8px 48px rgba(43,44,47,0.18);
  padding: 32px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: left;
  animation: show-modal 0.27s cubic-bezier(0.67,0.01,0.28,0.99);
}
@keyframes show-modal {
  from { opacity: 0; transform: translateY(44px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal-title {
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 8px;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
}
.cookie-toggle {
  appearance: none;
  width: 40px;
  height: 22px;
  background: var(--accent-light);
  border-radius: 15px;
  position: relative;
  outline: none;
  margin-right: 5px;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-toggle:checked {
  background: var(--accent);
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.13s;
}
.cookie-toggle:checked:before {
  left: 21px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal .cookie-btn {
  margin-top: 0;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.7rem;
  position: absolute;
  top: 10px;
  right: 17px;
  cursor: pointer;
  opacity: 0.7;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--accent);
  opacity: 1;
}
/* Ensure Essential cookies toggle looks disabled */
.cookie-modal-category .cookie-toggle[disabled] {
  opacity: 0.36;
  cursor: not-allowed;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1080px) {
  .container {
    max-width: 100vw;
  }
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
    min-height: unset;
  }
}
@media (max-width: 820px) {
  .features ul, .services ul, .about ul, .contact ul {
    flex-direction: column;
    gap: 14px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .hero .container {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.28rem;
  }
  .cta .content-wrapper, .final-cta .content-wrapper, .cta-services .content-wrapper {
    gap: 12px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header nav,
  header .cta-btn {
    display: none;
  }
  header .container {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .mobile-menu {
    padding-top: 0;
  }
  .about .content-wrapper,
  .services .content-wrapper,
  .features .content-wrapper,
  .testimonials .content-wrapper,
  .contact .content-wrapper {
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .card {
    min-width: unset;
    padding: 17px 11px;
  }
  .testimonial-card {
    padding: 16px 10px;
    font-size: 1.01rem;
    max-width: 98vw;
  }
  .footer-brand img {
    width: 42px;
    height: 42px;
  }
}
@media (max-width: 600px) {
  .section,
  .cta, .final-cta, .cta-services {
    padding: 20px 6px;
    border-radius: 12px;
  }
  .features ul li, .services ul li, .about ul li, .contact ul li {
    min-width: unset;
    padding: 13px 7px 13px 7px;
    font-size: 0.99rem;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    padding: 15px 6px;
    width: 99vw;
    max-width: 100vw;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    width: 100%;
    gap: 9px;
  }
  .cookie-modal-content {
    padding: 20px 7px 8px 7px;
    max-width: 99vw;
    border-radius: 10px;
    gap: 12px;
  }
}

/* UTILITIES & MISC */
::-webkit-input-placeholder { color: #808080; }
::-moz-placeholder { color: #808080; }
:-ms-input-placeholder { color: #808080; }
::placeholder { color: #808080; }

/* Scrollbar (for better accessibility & look) */
body::-webkit-scrollbar {
  width: 10px;
  background: var(--secondary);
}
body::-webkit-scrollbar-thumb {
  background: var(--accent-light);
  border-radius: 7px;
}

/* Animations for micro-interactions */
.cta-btn, .card, .testimonial-card, .features ul li, .services ul li, .about ul li, .contact ul li, .cookie-banner, .cookie-btn {
  transition: box-shadow 0.14s, background 0.13s, border 0.14s, color 0.13s, transform 0.12s;
}
.card:hover, .testimonial-card:hover, .features ul li:hover, .services ul li:hover, .about ul li:hover, .contact ul li:hover {
  box-shadow: 0 8px 22px rgba(181,162,118,0.18);
  transform: scale(1.025);
  z-index: 1;
}
