/* === 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;
  scroll-behavior: smooth;
  background: #F8F6F1;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #473828;
  background: #F8F6F1;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #8C7156;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #473828;
}
ul, ol {
  margin-left: 2em;
}
input, button, textarea, select {
  font: inherit;
  outline: none;
}

/* === TYPOGRAPHY Hierarchy === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #473828;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.5rem; /* 40px */
  line-height: 1.1;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 18px;
}
h3 {
  font-size: 1.5rem; /* 24px */
  margin-bottom: 14px;
}
h4 {
  font-size: 1.125rem; /* 18px */
  margin-bottom: 8px;
}
.subtitle, .subtitle-large {
  font-family: 'Quicksand', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #8C7156;
  margin-bottom: 18px;
  line-height: 1.4;
}
strong, b {
  font-weight: 700;
  color: #473828;
}

@media (max-width: 768px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }
  .subtitle, .subtitle-large { font-size: 1.05rem; }
}

/* === SPACING & LAYOUT (Flex Only) === */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  background: transparent;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 24px 5px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(71, 56, 40, 0.11);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  flex: 1 1 265px;
  transition: box-shadow 0.18s cubic-bezier(.4,0,.2,1), transform 0.18s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: 0 10px 32px 0 rgba(71, 56, 40, 0.20);
  transform: translateY(-4px) scale(1.025);
  z-index: 2;
}

.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: stretch;
    gap: 20px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F8F6F1;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(140, 113, 86, 0.09);
  margin-bottom: 20px;
  color: #23221e;
}
.testimonial-card .testimonial-quote {
  flex: 1;
  font-size: 1rem;
  font-family: 'Quicksand', 'Open Sans', sans-serif;
}
.testimonial-card .testimonial-cite {
  font-weight: 700;
  color: #473828;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.features li {
  background: #fff;
  padding: 24px 20px 20px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(71, 56, 40, 0.08);
  min-width: 200px;
  font-weight: 600;
  color: #473828;
  text-align: left;
  flex: 1 1 220px;
  font-family: 'Quicksand', 'Open Sans', sans-serif;
  letter-spacing: -0.5px;
  transition: box-shadow 0.14s;
}
.features li:hover {
  box-shadow: 0 5px 24px 0 rgba(71, 56, 40, 0.19);
}
@media (max-width: 768px) {
  .features ul {
    flex-direction: column;
    gap: 16px;
  }
  .features li {
    min-width: 0;
    width: 100%;
  }
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-section,
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-list dt {
  font-family: 'Quicksand', 'Open Sans', sans-serif;
  font-weight: 700;
  color: #8C7156;
  margin-bottom: 6px;
  font-size: 1.1rem;
}
.faq-list dd {
  margin-bottom: 10px;
  margin-left: 0;
  color: #473828;
}

/* === HEADER & NAV === */
header {
  background: #fff;
  box-shadow: 0 2px 14px 0 rgba(140, 113, 86, 0.10);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 20px;
  min-height: 64px;
}
header img {
  height: 46px;
  width: auto;
  margin-right: 10px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
header nav a {
  font-family: 'Quicksand', 'Open Sans', sans-serif;
  font-weight: 700;
  color: #473828;
  font-size: 1rem;
  background: none;
  padding: 4px 12px;
  transition: color 0.15s, background 0.15s;
  border-radius: 7px;
}
header nav a:hover, header nav a:focus {
  color: #fff;
  background: #8C7156;
}
header .btn-primary {
  margin-left: auto;
}
@media (max-width: 1024px) {
  header .container {
    gap: 8px;
    padding: 11px 10px;
  }
  header nav { gap: 9px; }
}
@media (max-width: 768px) {
  header nav,
  header .btn-primary {
    display: none;
  }
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  font-size: 2.1rem;
  z-index: 71;
  background: #473828;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 16px 0 rgba(71, 56, 40, 0.17);
  transition: background 0.12s, color 0.12s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #8C7156;
}
@media (max-width: 768px) {
  .mobile-menu-toggle { display: block; }
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  background: rgba(71,56,40, 0.97);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.7,0,.3,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 22px 24px 0 0;
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 91;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #FFD664;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 26px;
  width: 100%;
  padding: 50px 30px 0 0;
}
.mobile-nav a {
  font-family: 'Quicksand', 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff;
  padding: 10px 0 10px 16px;
  border-radius: 7px 0 0 7px;
  min-width: 170px;
  text-align: right;
  transition: background 0.15s, color 0.15s;
  display: block;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #8C7156;
  color: #FFD664;
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* === HERO SECTION === */
.hero {
  background: #473828;
  color: #fff;
  border-radius: 0 0 36px 36px;
  padding: 60px 0 60px 0;
  min-height: 390px;
  
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  text-align: center;
}
.hero .content-wrapper {
  align-items: center;
  gap: 25px;
}
.hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 11px;
  text-shadow: 0 2px 12px rgba(71,56,40,.08);
}
.hero .subtitle {
  color: #FFD664;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .hero {
    padding: 30px 0 30px 0;
    min-height: 230px;
    border-radius: 0 0 24px 24px;
  }
  .hero h1 { font-size: 1.7rem; }
}

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  font-family: 'Quicksand', 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  color: #fff;
  background: #8C7156;
  padding: 13px 36px;
  border: none;
  border-radius: 32px;
  box-shadow: 0 2px 12px 0 rgba(71, 56, 40, 0.10);
  transition: background 0.16s, box-shadow 0.16s, transform 0.14s;
  cursor: pointer;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #473828;
  color: #FFD664;
  box-shadow: 0 6px 24px 0 rgba(140,113,86,0.18);
  transform: translateY(-2px) scale(1.03);
}
.btn-link {
  display: inline-block;
  background: none;
  color: #8C7156;
  font-weight: 700;
  font-family: 'Quicksand', 'Open Sans', sans-serif;
  font-size: 1.06rem;
  padding: 7px 0;
  border-bottom: 2px solid #8C7156;
  border-radius: 0;
  transition: color 0.15s, border-bottom 0.15s;
}
.btn-link:hover, .btn-link:focus {
  color: #473828;
  border-bottom: 2px solid #473828;
}

/* === LISTS & ICONS === */
section ul, section ol {
  margin-bottom: 3px;
  margin-top: 5px;
}
section li {
  font-size: 1rem;
  margin-bottom: 12px;
  position: relative;
  padding-left: 0;
  line-height: 1.6;
}
section li img {
  width: 28px;
  height: 28px;
  vertical-align: middle;
  margin-right: 12px;
  margin-bottom: 3px;
}

/* === FOOTER === */
footer {
  background: #fff;
  color: #473828;
  border-radius: 30px 30px 0 0;
  font-size: 1rem;
  box-shadow: 0 -1px 16px 0 rgba(140, 113, 86, 0.08);
  margin-top: 60px;
  padding-top: 14px;
}
footer .container {
  padding: 0 20px 0 20px;
}
footer .content-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  min-height: 72px;
}
.footer-logo img {
  width: 48px;
  height: 48px;
  margin-right: 18px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
footer nav a {
  color: #8C7156;
  font-family: 'Quicksand', 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.14s;
}
footer nav a:hover, footer nav a:focus {
  color: #473828;
}
footer span {
  font-size: 0.94rem;
  color: #a49a93;
  margin-left: 16px;
}
@media (max-width: 768px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    min-height: 0;
  }
  footer nav {
    gap: 12px;
  }
  .footer-logo img {
    margin-right: 6px;
  }
}

/* === MISC COMPONENTS === */
.map-placeholder {
  background: #EEE9E1;
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 1rem;
  color: #473828;
}
.note, small {
  color: #8C7156;
  font-size: 0.95rem;
  margin-top: 12px;
}
.price {
  font-weight: 800;
  color: #8C7156;
  margin-left: 8px;
  font-size: 1.07em;
}

address {
  font-style: normal;
  color: #473828;
  margin-bottom: 12px;
  font-size: 1rem;
}

/* === Cookie Consent Banner === */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: #473828;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 18px;
  box-shadow: 0 -1px 12px 0 rgba(140, 113, 86, 0.13);
  gap: 22px;
  font-size: 1rem;
  flex-wrap: wrap;
  animation: slide-up-banner 0.33s cubic-bezier(.7,0,.3,1);
}
.cookie-consent-banner .cookie-text {
  flex: 1 1 300px;
  padding-right: 12px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-consent-banner .cookie-btn-group {
  display: flex;
  flex-direction: row;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-consent-banner button {
  border: none;
  border-radius: 23px;
  font-family: 'Quicksand', 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 28px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  outline: none;
}
.cookie-consent-banner .accept {
  background: #8C7156;
  color: #fff;
}
.cookie-consent-banner .accept:hover,
.cookie-consent-banner .accept:focus {
  background: #FFD664;
  color: #473828;
}
.cookie-consent-banner .settings {
  background: #F8F6F1;
  color: #473828;
  border: 2px solid #8C7156;
}
.cookie-consent-banner .settings:hover,
.cookie-consent-banner .settings:focus {
  background: #8C7156;
  color: #fff;
}
.cookie-consent-banner .reject {
  background: #b84e3b;
  color: #fff;
}
.cookie-consent-banner .reject:hover,
.cookie-consent-banner .reject:focus {
  background: #a13f28;
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    padding: 20px 8px 16px 8px;
    gap: 12px;
    font-size: 0.98rem;
  }
  .cookie-consent-banner .cookie-btn-group {
    flex-direction: column;
    gap: 8px;
  }
  .cookie-consent-banner .cookie-text {
    padding-right: 0;
  }
}
@keyframes slide-up-banner {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 105;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(71,56,40,0.76);
  justify-content: center;
  align-items: center;
  animation: modal-pop 0.22s cubic-bezier(.7,0,.3,1);
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: #fff;
  color: #473828;
  border-radius: 17px;
  box-shadow: 0 6px 32px 0 rgba(71,56,40,.18);
  max-width: 410px;
  padding: 36px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
}
.cookie-modal-content h3 {
  font-size: 1.35rem;
  color: #8C7156;
}
.cookie-modal-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}
.cookie-modal-content li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  margin-bottom: 9px;
}
.cookie-category-toggle {
  accent-color: #8C7156;
  width: 20px;
  height: 20px;
}
.cookie-modal-content .cookie-modal-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 16px;
}
.cookie-modal-content button {
  border: none;
  border-radius: 19px;
  font-family: 'Quicksand', 'Open Sans', sans-serif;
  font-weight: 700;
  padding: 10px 22px;
  font-size: 1rem;
  background: #8C7156;
  color: #fff;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal-content button:hover, .cookie-modal-content button:focus {
  background: #473828;
}
.cookie-modal-close {
  position: absolute;
  right: 13px;
  top: 9px;
  background: none;
  border: none;
  font-size: 1.32rem;
  color: #8C7156;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #b84e3b;
}
@keyframes modal-pop {
  from { transform: scale(.90); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* === UTILITIES, SECTIONS, CARD GRIDS === */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === RESPONSIVE BREAKPOINTS === */
@media (max-width: 520px) {
  h1 { font-size: 1.1rem; }
  h2 { font-size: 1rem; }
  .footer-logo img { width: 38px; height: 38px; }
  .cookie-modal-content { padding: 21px 7px 21px 7px; }
}

/* === END === */
