/* === 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 {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #312515;
  background-color: #fff;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
  letter-spacing: 0.025em;
  position: relative;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #3A2B1A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #D2B48C;
  outline: none;
}
ul, ol {
  list-style: none;
}
strong {
  font-weight: 600;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  color: #3A2B1A;
  line-height: 1.15;
}
h1 { font-size: 2.375rem; margin-bottom: 24px; }
h2 { font-size: 1.75rem; margin-bottom: 18px; }
h3 { font-size: 1.375rem; margin-bottom: 10px; }

/* === CONTAINER & LAYOUT === */
.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(58,43,26,0.05);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(61, 52, 39, 0.05);
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-width: 250px; /* fallback */
}
.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;
  background: #E9EFE3;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(44,47,58,0.07);
  margin-bottom: 20px;
  transition: box-shadow 0.2s, background 0.2s;
  min-width: 240px;
}
.testimonial-card:hover {
  background: #D2B48C22;
  box-shadow: 0 8px 32px rgba(61, 52, 39, 0.08);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1.063rem;
}

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

/* === NAVIGATION === */
header {
  background: #E9EFE3;
  box-shadow: 0 2px 6px rgba(58,43,26,0.05);
  padding-top: 16px;
  padding-bottom: 16px;
  position: relative;
  z-index: 1020;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  justify-content: center;
}
.main-nav img {
  height: 40px;
  width: auto;
  margin-right: 18px;
}
.main-nav a {
  color: #3A2B1A;
  padding: 7px 12px;
  border-radius: 4px;
  transition: color 0.2s, background 0.16s;
}
.main-nav a.btn-primary {
  color: #fff;
  background: #3A2B1A;
  border-radius: 6px;
  font-weight: 700;
  margin-left: 6px;
  padding: 8px 18px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(72,52,23,0.07);
}
.main-nav a.btn-primary:hover,
.main-nav a.btn-primary:focus {
  background: #D2B48C;
  color: #312515;
}
.main-nav a:hover, .main-nav a:focus {
  background: #D2B48C33;
  color: #3A2B1A;
  outline: none;
}

/* === HAMBURGER & MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: 1px solid #D2B48C;
  font-size: 2rem;
  color: #3A2B1A;
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
  position: absolute;
  right: 22px;
  top: 12px;
  z-index: 1044;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}
.mobile-menu-toggle:active {
  background: #D2B48C33;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 4px 32px rgba(44,47,58,0.14);
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.61,.18,.33,1.01);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 32px 28px 24px 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #3A2B1A;
  align-self: flex-end;
  margin-bottom: 32px;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #D2B48C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 1.125rem;
  align-items: flex-start;
}
.mobile-nav a {
  color: #3A2B1A;
  padding: 8px 2px;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  color: #D2B48C;
  background: #3A2B1A0D;
}

/* Hide desktop nav, show burger on small screens */
@media (max-width: 1050px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1051px) {
  .mobile-menu {
    display: none!important;
  }
}

/* === HERO SECTION === */
.hero-section {
  background: #E9EFE3;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 2px 24px rgba(41,35,23,0.13);
  margin-bottom: 60px;
  padding-top: 38px;
  padding-bottom: 38px;
}
.hero-section .container {
  align-items: center;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.hero-section h1 {
  font-size: 2.7rem;
  color: #3A2B1A;
  letter-spacing: 0.01em;
}
.hero-section p {
  color: #3A2B1A;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 24px;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  color: #fff;
  background: #3A2B1A;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  box-shadow: 0 2px 12px rgba(58,43,26,0.13);
  cursor: pointer;
  text-align: center;
  transition: background 0.18s,color 0.15s, box-shadow 0.20s, transform 0.17s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #D2B48C;
  color: #3A2B1A;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 24px rgba(67, 53, 34, 0.10);
}

.btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  background: #D2B48C;
  color: #3A2B1A;
  border-radius: 7px;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.13s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #3A2B1A;
  color: #fff;
}

.btn-tertiary {
  padding: 10px 18px;
  background: transparent;
  border: 1.5px solid #3A2B1A;
  color: #3A2B1A;
  border-radius: 7px;
  font-family: inherit;
  font-size: 1.01rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s, color 0.13s, border-color 0.18s;
}
.btn-tertiary:hover, .btn-tertiary:focus {
  background: #3A2B1A;
  color: #fff;
  border-color: #3A2B1A;
}

/* === FEATURE/INFO LISTS === */
ul, ol {
  list-style: none;
}
section ul, section ol {
  margin-left: 0;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section ul li, section ol li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-size: 1.08rem;
  color: #312515;
  background: #E9EFE316;
  border-radius: 8px;
  padding: 14px 16px;
  transition: background 0.13s;
}
section ul li:hover, section ol li:hover {
  background: #D2B48C17;
}
section li img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-top: 0.12em;
  flex-shrink: 0;
}
/* For ordered (numbered) steps */
ol li {
  counter-increment: steps;
  position: relative;
  padding-left: 0;
}

/* === CONTACT DETAILS & FOOTER === */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  margin-top: 30px;
}
.footer-nav a {
  color: #3A2B1A;
  opacity: 0.7;
  transition: color 0.15s, opacity 0.12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #D2B48C;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  color: #3A2B1A;
  margin-bottom: 12px;
  font-size: 0.97rem;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  margin-right: 4px;
}
.footer-copy {
  color: #3A2B1A99;
  font-size: 0.92rem;
  text-align: center;
  margin: 18px 0 12px 0;
}
footer {
  background: #E9EFE3;
  border-top: 2px solid #D2B48C11;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -4px 20px rgba(58,43,26,0.06);
  padding-top: 10px;
  padding-bottom: 18px;
  margin-top: 36px;
}

/* === MODALS & ANIMATIONS === */
@keyframes fadeInUpBanner {
  0% { opacity:0; transform: translateY(100%); }
  100% { opacity:1; transform: translateY(0); }
}
@keyframes modalAppear {
  from { opacity:0; transform: scale(0.93); }
  to   { opacity:1; transform: scale(1.0); }
}
@keyframes shadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* === COOKIE CONSENT BANNER === */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: #fff;
  border-top: 2.5px solid #D2B48C88;
  box-shadow: 0 -2px 16px rgba(58,43,26,0.07);
  padding: 22px 15px 18px 15px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  font-size: 1rem;
  animation: fadeInUpBanner 0.55s;
  font-family: inherit;
}
.cookie-consent-banner p {
  color: #3A2B1A;
  font-size: 1rem;
  margin-bottom: 0.5em;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
  justify-content: center;
}
.cookie-consent-banner .btn-primary {
  font-size: 1rem;
  padding: 10px 22px;
}
.cookie-consent-banner .btn-secondary {
  font-size: 1rem;
  padding: 10px 20px;
}
.cookie-consent-banner .btn-tertiary {
  font-size: 1rem;
  padding: 10px 16px;
}

/* === COOKIE MODAL === */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 3600;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(58,43,26,0.13);
  animation: shadeIn 0.25s;
}
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  z-index: 3700;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 56px rgba(58,43,26,0.17);
  width: 95%;
  max-width: 410px;
  padding: 36px 26px 28px 26px;
  animation: modalAppear 0.34s cubic-bezier(.47,.15,.52,1.14);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cookie-modal h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.cookie-modal .close {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #3A2B1A;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.cookie-modal .close:hover, .cookie-modal .close:focus {
  color: #D2B48C;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category label {
  font-size: 1.08rem;
  color: #3A2B1A;
}
.cookie-modal input[type="checkbox"][disabled] + label {
  color: #aaa;
  text-decoration: line-through;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 6px;
  justify-content: flex-end;
}

/* Sliders for toggles */
.toggle-switch {
  position: relative;
  width: 42px;
  height: 23px;
  display: inline-block;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #E9EFE3;
  border-radius: 23px;
  transition: background 0.18s;
}
.toggle-switch input:checked + .toggle-slider {
  background: #D2B48C;
}
.toggle-slider:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.17s;
  box-shadow: 0 1px 3px rgba(58,43,26,0.08);
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(19px);
}

/* === MISCELLANEOUS === */
::-webkit-input-placeholder { color: #928272; }
:-moz-placeholder { color: #928272; }
::-moz-placeholder { color: #928272; }
:-ms-input-placeholder { color: #928272; }

::selection {
  background: #D2B48C80;
}
/* margin between all sections */
section + section {
  margin-top: 36px;
}

/* === RESPONSIVE DESIGN (MOBILE-FIRST) === */
@media (max-width: 1024px) {
  .container {
    max-width: 94vw;
    padding: 0 10px;
  }
  .main-nav {
    gap: 18px;
    font-size: 0.97rem;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 99vw;
    padding: 0 4vw;
  }
  .hero-section {
    padding-top: 22px;
    padding-bottom: 22px;
  }
  .section {
    padding: 32px 6vw;
    margin-bottom: 36px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.27rem;
  }
  .hero-section h1 {
    font-size: 1.65rem;
  }
  .main-nav {
    display: none;
  }
  .footer-nav {
    font-size: 0.98rem;
    gap: 4px;
    flex-direction: column;
    text-align: center;
  }
  .footer-contact {
    font-size: 0.96rem;
  }
  .section {
    padding: 26px 3vw;
    margin-bottom: 32px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 540px) {
  .container {
    max-width: 100vw;
    padding: 0 2vw;
  }
  .section {
    padding: 14px 2vw;
    margin-bottom: 24px;
    border-radius: 10px;
  }
  .testimonial-card {
    padding: 12px;
    min-width: 0;
    font-size: 0.96rem;
  }
  .mobile-menu {
    padding: 22px 8px 10px 8px;
  }
  .cookie-modal {
    padding: 18px 5vw 13px 5vw;
    max-width: 98vw;
  }
}

/* === FOCUS INDICATORS === */
a:focus, button:focus {
  outline: 2px solid #D2B48C;
  outline-offset: 2px;
}

/* === SCROLLBAR (MODERN BROWSERS) === */
body::-webkit-scrollbar {
  width: 9px;
  background: #E9EFE3;
}
body::-webkit-scrollbar-thumb {
  background: #D2B48C55;
  border-radius: 14px;
}

/* === DARK TEXT ON LIGHT BG FOR TESTIMONIALS/REVIEWS === */
.testimonial-card {
  color: #312515;
  background: #E9EFE3;
}
.testimonial-card span {
  font-style: italic;
  color: #3A2B1A;
  font-size: 0.98em;
}

/* === CARDS / VISUAL ELEMENTS === */
.card {
  border: 1px solid #E9EFE3;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.card:hover {
  box-shadow: 0 6px 20px rgba(61, 52, 39, 0.07);
  border-color: #D2B48C44;
}

/* === FORM/INPUTS (if any) === */
input, textarea, select {
  font-family: inherit;
  padding: 10px 12px;
  border: 1.5px solid #E9EFE3;
  border-radius: 7px;
  font-size: 1rem;
  color: #3A2B1A;
  background: #fff;
  transition: border-color 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #D2B48C;
  outline: none;
}

/* === MICRO-INTERACTIONS === */
.section, .card, .testimonial-card, .btn-primary, .btn-secondary, .btn-tertiary {
  transition: 
    box-shadow 0.17s cubic-bezier(.21,.73,.45,1.01),
    background 0.18s,
    color 0.21s,
    transform 0.13s;
}

/* === Z-INDEX CONTEXTS === */
header { z-index: 1100; }
.mobile-menu { z-index: 2000; }
.cookie-consent-banner { z-index: 3050; }
.cookie-modal-backdrop { z-index: 3600; }
.cookie-modal { z-index: 3700; }

/* ========== END ========= */
