/* =============================================================
   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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #FFF8F3;
  color: #4E342E;
  font-family: 'Open Sans', 'Georgia', serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #8C5B25;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #4E342E;
  text-decoration: underline;
}

/* =============================================================
   Typography – Elegant Classic Hierarchy
============================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-weight: 700;
  color: #3B260F;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.625rem; /* 42px */
  margin-bottom: 16px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 14px;
  line-height: 1.15;
}
h3 {
  font-size: 1.5rem; /* 24px */
  margin-bottom: 10px;
  line-height: 1.18;
}
h4 {
  font-size: 1.25rem; /* 20px */
  margin-bottom: 8px;
}
p, ul, ol, dl {
  font-size: 1rem; /* 16px */
  margin-bottom: 18px;
  font-family: 'Open Sans', 'Georgia', serif;
}
.subheadline {
  font-family: 'Quicksand', 'Open Sans', Arial, sans-serif;
  font-size: 1.25rem;
  color: #836545;
  margin-bottom: 20px;
}
strong, b {
  font-weight: 700;
  color: #8C5B25;
}
em, i {
  font-style: italic;
}
blockquote {
  font-family: 'Georgia', serif;
  font-size: 1.125rem;
  color: #7A5426;
  border-left: 4px solid #C68642;
  margin: 0 0 12px 0;
  padding-left: 16px;
  background: #FFF3E0;
  font-style: italic;
}

/* =============================================================
   Layout Containers & Sections
============================================================= */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(80, 60, 30, 0.04);
}

@media (max-width: 768px) {
  .section {
    padding: 24px 10px;
    margin-bottom: 32px;
    border-radius: 10px;
  }
}

.card-container, .card-grid, .features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.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) {
  .content-grid, .card-container, .features, .card-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 2px 7px rgba(200,180,150,0.10);
  border: 1px solid #F3E0CA;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  flex: 1 1 240px;
  transition: box-shadow 0.2s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 6px 24px 0 rgba(140,91,37,0.13);
  z-index: 1;
}
.card-content {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}

/* -------------------------------------------------------------
   Lists & Details
------------------------------------------------------------- */
ul, ol {
  padding-left: 22px;
}
ul li, ol li {
  margin-bottom: 12px;
}
dt {
  font-weight: 600;
  color: #6D4C1C;
  margin-bottom: 4px;
}
dd {
  margin-bottom: 12px;
  margin-left: 0;
}

/* =============================================================
   Header & Navigation
============================================================= */
header {
  background: #FFF;
  border-bottom: 1px solid #EFE6D7;
  box-shadow: 0 2px 7px rgba(200,180,150,0.04);
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  padding-bottom: 22px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
header nav a {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1rem;
  color: #7C6242;
  font-weight: 500;
  padding: 4px 0;
  position: relative;
  transition: color 0.16s;
}
header nav a:after {
  content: "";
  display: block;
  width: 0;
  border-bottom: 2px solid #C68642;
  transition: width 0.16s;
}
header nav a:hover,
header nav a.active {
  color: #C68642;
}
header nav a:hover:after, header nav a.active:after {
  width: 100%;
}
header img {
  height: 60px;
  width: auto;
}
.btn.btn-primary {
  font-family: 'Quicksand', 'Open Sans', Arial, sans-serif;
  background: #C68642;
  color: #FFF;
  border: none;
  padding: 12px 32px;
  border-radius: 22px;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 7px 0 rgba(110, 68, 20, 0.07);
  cursor: pointer;
  transition: background 0.2s, transform .14s;
  margin-left: 22px;
  outline: none;
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
  background: #8C5B25;
  transform: translateY(-2px) scale(1.03);
  color: #fff;
}
.btn.btn-accent {
  font-family: 'Quicksand', 'Open Sans', Arial, sans-serif;
  background: #FFF3E0;
  color: #8C5B25;
  border: 1.5px solid #C68642;
  padding: 12px 32px;
  border-radius: 22px;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 7px 0 rgba(110, 68, 20, 0.05);
  transition: background 0.2s, color .14s, border-color 0.15s, transform .13s;
  cursor: pointer;
  outline: none;
}
.btn.btn-accent:hover, .btn.btn-accent:focus {
  background: #C68642;
  color: #FFF;
  border-color: #8C5B25;
  transform: translateY(-2px) scale(1.03);
}

@media (max-width: 992px) {
  header .container {
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 880px) {
  header img { height: 42px; }
  header nav { gap: 15px; }
  .btn.btn-primary, .btn.btn-accent { padding:9px 18px; font-size:1rem; }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    justify-content: space-between;
    padding-top: 11px;
    padding-bottom: 11px;
  }
  header nav, header .btn.btn-primary {
    display: none;
  }
  .btn.btn-primary {
    margin-left: 0;
  }
  header img {
    height: 38px;
  }
}

/* =============================================================
   MOBILE Burger Menu
============================================================= */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 24px;
  z-index: 120;
  background: #8C5B25;
  color: #FFF3E0;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(80,40,20,0.08);
  transition: background 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #C68642;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(70,50,20,0.13);
  z-index: 200;
  transform: translateX(100vw);
  transition: transform 0.33s cubic-bezier(0.6,0,0.15,1.0);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: #FFF;
  color: #8C5B25;
  font-size: 2.1rem;
  border: 0;
  border-radius: 50%;
  margin: 22px 22px 0 0;
  align-self: flex-end;
  width: 42px;
  height: 42px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(140,91,37,0.09);
  transition: background 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F2E4CF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin: 40px auto 0 auto;
  gap: 28px;
  align-items: center;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Georgia', serif;
  font-size: 1.18rem;
  color: #8C5B25;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 8px;
  width: 80vw;
  text-align: center;
  background: none;
  transition: background 0.15s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFF3E0;
  color: #4E342E;
  text-decoration: none;
}
/* Hide for desktop */
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* =============================================================
   HERO Section
============================================================= */
.hero {
  background: #FFF3E0;
  border-radius: 22px;
  box-shadow: 0 4px 24px 0 rgba(140,91,37,0.05);
  margin-bottom: 48px;
  padding: 54px 0 48px 0;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.hero h1 {
  color: #8C5B25;
  font-size: 2.8rem;
  margin-bottom: 18px;
}
.hero .subheadline {
  color: #6D4C1C;
  font-size: 1.3rem;
}
.hero .btn {
  margin-top: 18px;
}
@media (max-width: 768px) {
  .hero {
    padding: 29px 0 24px 0;
    border-radius: 11px;
    margin-bottom: 26px;
  }
  .hero h1 { font-size: 1.75rem; }
  .hero .subheadline { font-size: 1rem; }
}

/* =============================================================
   Testimonials
============================================================= */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(200,170,120,0.10);
  border-left: 5px solid #C68642;
  font-family: 'Georgia', serif;
  color: #4E342E;
  min-width: 200px;
  max-width: 600px;
  word-break: break-word;
  transition: box-shadow .18s;
}
.testimonial-card blockquote {
  background: none;
  border: none;
  color: #6D4C1C;
  padding: 0;
  margin: 0 0 10px 0;
  font-style: italic;
}
.testimonial-card div {
  color: #8C5B25;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Open Sans', serif;
}
@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 10px;
    border-left: 3px solid #C68642;
    margin-bottom: 13px;
  }
}

/* =============================================================
   Cookie Consent Banner & Modal
============================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 3000;
  background: #FFF3E0;
  color: #4E342E;
  font-family: 'Open Sans', serif;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 22px 14px;
  box-shadow: 0 -2px 18px rgba(90,60,20,0.11);
  border-top: 1.5px solid #C68642;
  transition: transform 0.35s cubic-bezier(.7,.1,.15,1.0), opacity 0.23s;
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-btn {
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 22px;
  border: none;
  padding: 10px 22px;
  margin-left: 8px;
  background: #C68642;
  color: #FFF;
  cursor: pointer;
  transition: background 0.15s;
  box-shadow: 0 1px 6px 0 rgba(190,145,70,0.12);
}
.cookie-banner .cookie-btn.reject {
  background: #8C5B25;
  color: #FFF3E0;
}
.cookie-banner .cookie-btn.settings {
  background: #FFF;
  color: #8C5B25;
  border: 1.3px solid #C68642;
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: #8C5B25;
  color: #FFF;
}
.cookie-banner .cookie-btn.settings:hover,
.cookie-banner .cookie-btn.settings:focus {
  background: #FFF3E0;
  color: #8C5B25;
  border-color: #8C5B25;
}

/* ==== Cookie Preferences Modal ==== */
.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(50, 30, 0, 0.28);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.26s;
}
.cookie-modal-overlay.show {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal {
  max-width: 400px; width:90vw;
  background: #FFF;
  border-radius: 20px;
  color: #4E342E;
  box-shadow: 0 6px 32px rgba(140,91,37,0.18);
  padding: 30px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalIn .48s cubic-bezier(.88,-0.11,.22,1.18);
}
@keyframes modalIn {
  0% { opacity: 0; transform: translateY(44px) scale(0.95); }
  60% { opacity:0.7; }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 16px;
}
.cookie-modal label {
  font-family: 'Open Sans', serif;
  font-size: 1rem;
}
.cookie-modal .cookie-switch {
  margin-left: auto;
  position: relative;
  display: flex;
  align-items: center;
}
.cookie-modal .toggle {
  width: 38px; height: 21px;
  background: #EFE6D7;
  border-radius: 12px;
  position: relative;
  border: 1.5px solid #C68642;
  transition: background 0.16s;
  cursor: pointer;
}
.cookie-modal .toggle input[type="checkbox"] {
  opacity: 0;
  width: 100%; height: 100%;
  position: absolute;
}
.cookie-modal .toggle .slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 16px; height: 16px;
  background: #C68642;
  border-radius: 50%;
  transition: transform 0.19s, background .17s;
}
.cookie-modal .toggle input:checked + .slider {
  transform: translateX(15px);
  background: #8C5B25;
}
.cookie-modal .essential {
  opacity: 0.55;
  pointer-events: none;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.cookie-modal .cookie-actions .cookie-btn {
  padding: 10px 20px;
  min-width: 120px;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 16px;
  background: #FFF3E0;
  color: #8C5B25;
  border-radius: 50%;
  border: 0;
  width: 34px; height: 34px;
  font-size: 1.28rem;
  cursor: pointer;
  transition: background .13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #C68642;
  color: #fff;
}


/* =============================================================
   Footer Styles
============================================================= */
footer {
  background: #FFF3E0;
  border-top: 1.5px solid #EFE6D7;
  padding: 32px 0 18px 0;
  font-size: 1rem;
  color: #7C6242;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 34px;
  flex-wrap: wrap;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
footer nav a {
  color: #8C5B25;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 3px 0;
  transition: color 0.13s;
}
footer nav a:hover, footer nav a:focus {
  color: #3B260F;
  text-decoration: underline;
}
footer img {
  width: 56px; height: auto;
}
.footer-contact {
  font-family: 'Open Sans', 'Georgia', serif;
  font-size: 1rem;
  color: #7C6242;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
@media (max-width: 600px) {
  footer .container {
    padding: 0 8px;
  }
  footer {
    padding:18px 0 13px 0;
    font-size: .95rem;
  }
}
/* ============ Utility & Miscellaneous ============ */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.map-placeholder {
  background: #FFF3E0;
  border: 1px dashed #C68642;
  border-radius: 8px;
  padding: 14px 11px;
  font-size: .97rem;
  color: #836545;
  margin-top: 12px;
  font-family: 'Open Sans', serif;
}

/* =============================================================
   Responsive Spacing & Layout
============================================================= */
@media (max-width: 992px) {
  .container {
    max-width: 99vw;
    padding-left: 7px;
    padding-right: 7px;
  }
}

@media (max-width: 600px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.14rem; }
  h3 { font-size: 1.02rem; }
  .btn, .btn.btn-primary, .btn.btn-accent {
    font-size:.96rem; 
    padding: 9px 16px;
  }
}

/* =============== Animations & Transitions =============== */
.btn,
.btn.btn-primary,
.btn.btn-accent {
  transition: background 0.17s, color 0.12s, box-shadow 0.13s, border 0.11s, transform .10s;
}
.card, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.13s;
}
.card:hover, .testimonial-card:hover {
  transform: translateY(-2px) scale(1.01);
}

/* =============== Focus Ring for Accessibility =============== */
a:focus, .btn:focus, .mobile-menu-toggle:focus, .cookie-btn:focus {
  outline: 2px solid #C68642;
  outline-offset: 1.5px;
}

/* =============== Hide visually =============== */
.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* =============================================================
   End of Style Sheet
============================================================= */
