/* CSS Reset and Normalize */
html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
html, body {
  height: 100%;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #fff;
  color: #212832;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
a:focus, a:hover {
  color: #B69E6D;
  outline: none;
}
ul, ol {
  padding-left: 1.4em;
  margin: 12px 0 12px 0;
}
li {
  margin-bottom: 6px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #212832;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
h1 { font-size: 2.75rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 14px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
}

p, ul, ol, small {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #212832;
  margin-bottom: 12px;
  font-size: 1rem;
}
strong { font-weight: 700; color: #212832; }
small { font-size: 0.92rem; color: #888; }

/* CONTAINER & LAYOUTS */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(33,40,50,0.07);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(33,40,50,0.14);
  transform: translateY(-3px) scale(1.012);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F6F6F6;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(33,40,50,0.08);
  max-width: 540px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 16px rgba(178,160,112,0.11);
  transform: translateY(-2px);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Ensure correct spacing when stacking multiple testimonial cards */
.testimonial-card + .testimonial-card {
  margin-top: 20px;
}

/* FEATURE GRID (for all .feature-grid) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 10px;
}
.feature-grid > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 10px rgba(33,40,50,0.06);
  padding: 24px 20px 22px 20px;
  flex: 1 1 280px;
  min-width: 260px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 20px rgba(182,158,109,0.12);
  transform: translateY(-2px) scale(1.01);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  filter: grayscale(1);
  opacity: 0.92;
}

/* HEADER AND NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #F6F6F6;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 24px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #212832;
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 99px;
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.01em;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F6F6F6;
  color: #B69E6D;
}
.cta-btn {
  background: #B69E6D;
  color: #fff;
  font-family: 'Roboto', Arial;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 26px;
  padding: 11px 30px;
  cursor: pointer;
  transition: background 0.17s, box-shadow 0.17s, color 0.17s;
  box-shadow: 0px 2px 8px rgba(182, 158, 109, 0.11);
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #212832;
  color: #fff;
  box-shadow: 0 4px 16px rgba(33,40,50,0.15);
}
header img {
  height: 46px;
  min-width: 120px;
}

/* HERO SECTIONS */
.hero {
  background: #F6F6F6;
  padding: 52px 0 44px 0;
  margin-bottom: 60px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: #212832;
  margin-bottom: 6px;
}
.hero p {
  color: #2b3547;
  font-size: 1.13rem;
  max-width: 700px;
}

/* CTA SECTION */
.cta-section {
  background: #212832;
  color: #fff;
  border-radius: 16px;
  margin: 64px 0;
  box-shadow: 0px 4px 18px rgba(33,40,50,0.08);
  overflow: hidden;
}
.cta-section .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 21px;
}
.cta-section h2, .cta-section p { color: #fff; }
.cta-section .cta-btn {
  background: #B69E6D;
  color: #fff;
}
.cta-section .cta-btn:hover {
  background: #fff;
  color: #212832;
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 1px solid #F6F6F6;
  margin-top: 48px;
}
footer section {
  padding: 34px 20px 10px 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  align-items: center;
  justify-content: center;
}
.footer-nav a {
  color: #888;
  font-size: 15px;
  padding: 7px;
  border-radius: 99px;
  transition: background 0.15s, color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #F6F6F6;
  color: #B69E6D;
}
footer .text-section {
  text-align: center;
  margin-top: 10px;
}
footer strong {
  color: #212832;
}

/* TEXT SECTIONS */
.text-section {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.text-section h3 {
  font-size: 1.15rem;
  color: #B69E6D;
  margin-bottom: 6px;
}
.text-section ul {
  margin-left: 0;
  padding-left: 1.2em;
  color: #212832;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #212832;
  cursor: pointer;
  padding: 7px 13px;
  border-radius: 7px;
  z-index: 1200;
  transition: background 0.12s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F6F6F6;
  color: #B69E6D;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  z-index: 1200;
  transition: transform 0.3s cubic-bezier(.61,.13,.44,.89), opacity 0.25s;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  flex-direction: column;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #888;
  position: absolute;
  top: 26px; right: 34px;
  cursor: pointer;
  z-index: 1400;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #B69E6D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: auto;
  align-items: center;
  width: 100%;
  margin-top: 90px;
}
.mobile-nav a {
  color: #212832;
  font-size: 1.25rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  border-radius: 99px;
  padding: 13px 28px;
  margin: 0 8px;
  transition: background 0.17s, color 0.17s;
  text-align: center;
  min-width: 180px;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F6F6F6;
  color: #B69E6D;
}

@media (max-width:1040px) {
  .container {
    max-width: 94vw;
    padding-left: 8vw;
    padding-right: 8vw;
  }
}
@media (max-width: 991px) {
  header .container { gap:18px; }
}
@media (max-width: 876px) {
  .feature-grid {
    gap: 20px;
  }
  .feature-grid > div {
    min-width: 92vw;
    max-width: none;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .content-wrapper {
    gap: 18px;
  }
  .section {
    margin-bottom: 38px;
    padding: 26px 8px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature-grid > div {
    width: 100%;
    min-width: 0;
    max-width: none;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 17px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .cta-section {
    margin: 36px 0;
  }
  .hero {
    padding: 34px 0 20px 0;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
  }
  .cta-btn {
    padding: 10px 20px;
    font-size: 0.99rem;
  }
  header img {
    height: 38px;
    min-width: 84px;
  }
}
@media (max-width: 480px) {
  .container {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .cta-section, .hero {
    border-radius: 10px;
  }
}

/* SHOW MOBILE MENU OVERLAY, HIDE DESKTOP NAV ON MOBILE */
@media (max-width: 991px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #212832;
  color: #fff;
  z-index: 2100;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 24px 14px;
  gap: 24px;
  box-shadow: 0 -4px 30px rgba(33,40,50,0.13);
  font-size: 1rem;
  transition: transform 0.4s cubic-bezier(.61,.13,.44,.89), opacity 0.21s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1 1 240px;
  min-width: 190px;
  margin-bottom: 8px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-btn, .cookie-settings-btn {
  padding: 10px 18px;
  background: #fff;
  color: #212832;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}
.cookie-btn.accept {
  background: #B69E6D;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #212832;
  border: 1px solid #B69E6D;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus { background: #856c32; color: #fff; }
.cookie-btn.reject:hover, .cookie-btn.reject:focus { background: #F6F6F6; }
.cookie-settings-btn {
  background: transparent;
  color: #B69E6D;
  border: 1px solid #B69E6D;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #B69E6D;
  color: #fff;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 6vw;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(33,40,50,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2300;
  opacity: 1;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #212832;
  border-radius: 14px;
  box-shadow: 0 6px 28px rgba(33,40,50,0.13);
  padding: 34px 28px 26px 28px;
  min-width: 340px;
  max-width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.cookie-modal h3 {
  margin-bottom: 7px;
  color: #212832;
  font-size: 1.18rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 1.01rem;
}
.cookie-modal .cookie-toggle {
  display: inline-block;
  width: 36px; height: 20px;
  position: relative;
}
.cookie-modal .cookie-toggle input {
  display: none;
}
.cookie-modal .slider {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #F6F6F6;
  border-radius: 99px;
  cursor: pointer;
  transition: background 0.23s;
}
.cookie-modal .slider:before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  background: #B69E6D;
  border-radius: 50%;
  transition: transform 0.23s;
}
.cookie-modal .cookie-toggle input:checked + .slider {
  background: #B69E6D;
}
.cookie-modal .cookie-toggle input:checked + .slider:before {
  transform: translateX(16px);
  background: #fff;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  min-width: 110px;
}
.cookie-modal .cookie-btn.accept {
  background: #B69E6D;
  color: #fff;
}
.cookie-modal .cookie-btn.reject {
  background: #fff;
  color: #212832;
  border: 1px solid #B69E6D;
}
.cookie-modal .cookie-btn.settings {
  background: transparent;
  color: #B69E6D;
  border: 1px solid #B69E6D;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 20px;
  background: none;
  border: none;
  color: #888;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: color 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #B69E6D;
}
@media (max-width: 500px) {
  .cookie-modal {
    min-width: 0;
    padding: 20px 10px 15px 10px;
  }
}

/* BUTTONS & MICRO-INTERACTIONS */
button, .cta-btn, .cookie-btn, .cookie-settings-btn {
  transition: background 0.16s, color 0.16s, box-shadow 0.15s, transform 0.15s;
  outline: none;
}
button:active, .cta-btn:active, .cookie-btn:active, .cookie-settings-btn:active {
  transform: scale(0.98);
}

/* Miscellaneous */
::-webkit-input-placeholder { color: #999; }
::-moz-placeholder { color: #999; }
:-ms-input-placeholder { color: #999; }
::placeholder { color: #999; }

/* Transitions for menu & modal overlays */
@media (max-width: 991px) {
  .mobile-menu {
    transition: transform 0.3s cubic-bezier(.61,.13,.44,.89), opacity 0.18s;
  }
}

/* High contrast for testimonial text */
.testimonial-card p, .testimonial-card small {
  color: #212832;
  font-size: 1.12rem;
  word-break: break-word;
}

/* Form elements (if present in possible future content) */
input, textarea, select {
  border: 1px solid #F6F6F6;
  border-radius: 8px;
  padding: 11px 12px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  color: #212832;
  margin-bottom: 14px;
  transition: border-color 0.12s;
}
input:focus, textarea:focus, select:focus {
  border-color: #B69E6D;
  outline: none;
}

/* Utility classes */
.d-none { display: none !important; }

/* Hide scroll on body when modal/menu open (add body.modal-open from JS) */
body.modal-open, body.menu-open {
  overscroll-behavior: contain;
  overflow: hidden;
}

/* Subtle shadow helpers */
.shadow-sm { box-shadow: 0 2px 8px rgba(33,40,50,0.08); }
.shadow-lg { box-shadow: 0 10px 48px rgba(33,40,50,0.17); }

/* END OF CSS */
