/* ---------------------------------------------------
   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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F8F7F2;
  color: #1B232A;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-color: #F8F7F2;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #A68B5B;
  text-decoration: none;
  transition: color .2s;
  font-weight: 600;
}
a:hover, a:focus {
  color: #1B232A;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.5em;
}
ul, ol {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}
input, select, textarea, button {
  outline: none;
  border-radius: 8px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'serif';
  font-weight: 700;
  color: #1B232A;
  letter-spacing: -.01em;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  color: #A68B5B;
  margin-bottom: 6px;
  font-weight: 700;
}
p, li, span {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #1B232A;
  line-height: 1.7;
}
p {
  margin-bottom: 16px;
}
strong, b {
  font-weight: 700;
}
.text-section {
  max-width: 800px;
}

/* ---------------------------------------------------
   CONTAINER LAYOUTS
--------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(27,35,42,0.09);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 260px;
  transition: box-shadow .25s;
}
.card:hover {
  box-shadow: 0 16px 32px rgba(166,139,91,0.18);
  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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(27,35,42,0.08);
  width: 100%;
  margin-bottom: 20px;
  border-left: 6px solid #A68B5B;
  transition: box-shadow .2s, border-color .2s;
}
.testimonial-card p {
  color: #191919;
  font-size: 1.14rem;
  font-weight: 600;
}
.testimonial-card span {
  color: #A68B5B;
  font-style: italic;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.map-placeholder {
  background: #A68B5B13;
  border-radius: 12px;
  padding: 24px;
  color: #958460;
  font-style: italic;
  margin-top: 12px;
}

/* ---------------------------------------------------
   HEADER & NAVIGATION
--------------------------------------------------- */
header {
  background: #fff;
  border-bottom: 2px solid #A68B5B22;
  padding: 0 0 10px 0;
  position: relative;
  z-index: 21;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 0 20px;
  gap: 0;
}
header img {
  height: 42px;
  width: auto;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
header nav a {
  padding: 8px 0;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #1B232A;
  position: relative;
  transition: color .2s;
  border-bottom: 2px solid transparent;
}
header nav a:hover,
header nav a:focus {
  color: #A68B5B;
  border-bottom: 2px solid #A68B5B;
}
.cta-primary, .cta-secondary {
  display: inline-block;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 22px;
  padding: 14px 32px;
  font-size: 1rem;
  font-family: 'Playfair Display',serif;
  font-weight: 700;
  letter-spacing: .025em;
  transition: box-shadow .2s, color .2s, background .2s;
  margin-left: 18px;
  margin-right: 0;
  box-shadow: 0 2px 10px rgba(27,35,42,0.08);
}
.cta-primary {
  background: #A68B5B;
  color: #fff;
  border: 2px solid #A68B5B;
}
.cta-primary:hover, .cta-primary:focus {
  background: #fff;
  color: #A68B5B;
  border: 2px solid #A68B5B;
}
.cta-secondary {
  background: #fff;
  color: #A68B5B;
  border: 2px solid #A68B5B;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #A68B5B;
  color: #fff;
  border: 2px solid #A68B5B;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  color: #A68B5B;
  font-size: 2.3rem;
  cursor: pointer;
  margin-left: 20px;
  display: none;
  align-items: center;
  transition: color .2s;
  z-index: 30;
}
.mobile-menu-toggle:focus {
  color: #1B232A;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(27,35,42,0.99);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform .36s cubic-bezier(.66,.01,.36,1);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  margin: 14px 26px 0 0;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #A68B5B;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  width: 100%;
  padding: 44px 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 10px 0;
  border-radius: 6px;
  width: 92%;
  transition: background .2s, color .2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A68B5B;
  color: #1B232A;
}

@media (max-width: 1100px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    padding-left: 16px;
    padding-right: 16px;
  }
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
}
@media (max-width: 900px) {
  header .container nav {
    display: none;
  }
  .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.08rem; }
  .section {
    margin-bottom: 40px;
    padding: 26px 0 18px 0;
  }
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .content-wrapper,
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .card {
    padding: 20px 14px;
    min-width: 0;
  }
  .testimonial-card {
    padding: 16px 10px;
    border-left-width: 4px;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/* ---------------------------------------------------
   MAIN SECTIONS & CARDS
--------------------------------------------------- */
main {
  margin-top: 0;
  padding-bottom: 60px;
}

section {
  background: transparent;
  width: 100%;
  margin-bottom: 60px;
}
section:last-of-type {
  margin-bottom: 0;
}
/* Features/USP List Styling */
ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  gap: 16px;
}
ul li, ol li {
  position: relative;
  padding-left: 36px;
  min-height: 32px;
  display: flex;
  align-items: center;
}
ul li img {
  position: absolute;
  left: 0;
  height: 28px;
  width: 28px;
  object-fit: contain;
  margin-right: 10px;
}
ol {
  list-style: decimal inside;
  padding-left: 1em;
}
ol li {
  padding-left: .4em;
  min-height: unset;
}

.content-wrapper > h2,
.content-wrapper > h1 {
  margin-top: 0;
  margin-bottom: 10px;
}

/* ---------------------------------------------------
   FOOTER
--------------------------------------------------- */
footer {
  background: #1B232A;
  color: #fff;
  padding: 46px 0 28px 0;
  border-top: 2px solid #A68B5B22;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px 68px;
  justify-content: flex-start;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 36px 18px 0;
}
footer nav a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 2px;
  transition: color .15s;
  border-bottom: 2px solid transparent;
}
footer nav a:hover {
  color: #A68B5B;
  border-bottom: 2px solid #A68B5B;
}
.footer-brand {
  margin-bottom: 16px;
}
.footer-brand img {
  height: 36px;
  width: auto;
}
.contact-info {
  font-size: 1rem;
  color: #fff;
  margin-right: 32px;
}
.contact-info a { color: #A68B5B; }
.social-links {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 8px;
}
.social-links a img {
  height: 28px;
  width: 28px;
  opacity: 0.79;
  filter: grayscale(0.28);
  transition: opacity .18s, filter .18s;
}
.social-links a:hover img {
  opacity: 1;
  filter: grayscale(0);
}
@media (max-width: 1024px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .footer-brand, .contact-info, .social-links {
    margin-right: 0;
  }
}
@media (max-width: 480px) {
  footer {
    padding: 24px 0 16px 0;
  }
  .footer-brand img {
    height: 30px;
  }
}

/* ---------------------------------------------------
   BUTTONS & MICRO-INTERACTIONS
--------------------------------------------------- */
button, .cta-primary, .cta-secondary {
  transition: background .23s, color .21s, box-shadow .18s, border-color .21s;
}
button:active,
.cta-primary:active,
.cta-secondary:active {
  transform: scale(0.99);
}

/* Cards animation */
.card, .testimonial-card {
  will-change: box-shadow, border-color, transform;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(27,35,42,0.16);
  border-color: #1B232A;
  z-index: 2;
}

/* ---------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
--------------------------------------------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 20000;
  background: #fff;
  color: #1B232A;
  box-shadow: 0 -4px 20px rgba(27,35,42,0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px 16px;
  gap: 32px;
  justify-content: center;
  border-top: 4px solid #A68B5B;
  opacity: 1; /* Hide/show controlled by .hidden class */
  transition: opacity .22s, transform .27s;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-consent-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px);
}
.cookie-consent-banner .cookie-btn-group {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-left: 20px;
}
.cookie-consent-banner button {
  border-radius: 20px;
  border: none;
  padding: 11px 24px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  background: #A68B5B;
  color: #fff;
  border: 2px solid #A68B5B;
  transition: background .18s, color .18s;
}
.cookie-consent-banner button.cookie-settings {
  background: #fff;
  color: #A68B5B;
  border: 2px solid #A68B5B;
}
.cookie-consent-banner button.cookie-settings:hover {
  background: #A68B5B;
  color: #fff;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: #1B232A;
  color: #fff;
  border-color: #1B232A;
}
@media (max-width: 650px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 8px;
  }
  .cookie-consent-banner .cookie-btn-group {
    margin-left: 0;
    gap: 10px;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(27,35,42,0.64);
  z-index: 22000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: initial;
  transition: opacity .22s;
}
.cookie-modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 420px;
  width: 92vw;
  padding: 36px 28px 28px 28px;
  box-shadow: 0 10px 32px rgba(27,35,42,0.21);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  color: #1B232A;
}
.cookie-modal h3 {
  font-size: 1.25rem;
  color: #1B232A;
}
.cookie-modal ul {
  gap: 12px;
  margin-top: 6px;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-modal label {
  font-size: 1rem;
  color: #191919;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #A68B5B;
  width: 17px;
  height: 17px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal button {
  border-radius: 20px;
  border: none;
  padding: 11px 24px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  background: #A68B5B;
  color: #fff;
  border: 2px solid #A68B5B;
  transition: background .18s, color .18s;
}
.cookie-modal button.cookie-cancel {
  background: #fff;
  color: #A68B5B;
  border: 2px solid #A68B5B;
}
.cookie-modal button.cookie-cancel:hover {
  background: #A68B5B;
  color: #fff;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #1B232A;
  color: #fff;
  border-color: #1B232A;
}
@media (max-width: 480px) {
  .cookie-modal {
    padding: 20px 10px 14px 10px;
  }
}

/* ---------------------------------------------------
   MISC: UTILS & GEOMETRIC STYLE DETAILS
--------------------------------------------------- */
.geometric-shape {
  width: 80px;
  height: 80px;
  background: #A68B5B;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.07;
  position: absolute;
  top: -22px;
  right: -22px;
  z-index: 1;
}

@media (max-width: 480px) {
  .geometric-shape {
    width: 50px;
    height: 50px;
    top: -10px;
    right: -10px;
  }
}

/* ---------------------------------------------------
   RESPONSIVE SPACING & FLEX WRAP
--------------------------------------------------- */
.card-container, .content-grid, .features {
  gap: 24px;
}
@media (max-width: 768px) {
  .card-container, .content-grid, .features {
    gap: 14px;
  }
}

/* ---------------------------------------------------
   CUSTOM SECTIONS ADJUSTMENT: FAQ, MAPS, ETC
--------------------------------------------------- */
.faq-section ul {
  margin-left: 0;
}
.faq-section ul li {
  margin-bottom: 10px;
}

/* ---------------------------------------------------
   ACCESSIBILITY & FOCUS STATES
--------------------------------------------------- */
a:focus-visible, button:focus-visible, .cta-primary:focus-visible, .cta-secondary:focus-visible {
  outline: 2px solid #A68B5B;
  outline-offset: 2px;
}
input:focus, select:focus, textarea:focus {
  border-color: #A68B5B;
}

/* ---------------------------------------------------
   PRINT STYLES (OPT.)
--------------------------------------------------- */
@media print {
  header, footer, .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay { display: none !important; }
  body, html, main { background: #fff !important; color: #000; }
}
