/* 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;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1.5;
  min-height: 100vh;
  background: #F9F6F1;
  color: #24404F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #B06B1E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #CE8D48;
  text-decoration: underline;
}
ul, ol {
  list-style: disc inside;
}
img {
  max-width: 100%;
  display: block;
}

/* TYPOGRAPHY & HEADINGS ------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #24404F;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 16px;
  line-height: 1.16;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.22;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
p, li, ul, ol, blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #24404F;
}
blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: #B06B1E;
  border-left: 4px solid #CE8D48;
  margin: 24px 0 16px 0;
  padding: 8px 16px 8px 20px;
  background: #FFF4E5;
  border-radius: 12px;
}
strong {
  color: #B06B1E;
  font-weight: 700;
}
em {
  font-style: italic;
}

/* CONTAINER & GRID SYSTEM ---------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.text-section {
  gap: 20px;
}

/* SECTIONS & SPACING --------------------------------------------- */
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  background: none;
}
@media (max-width: 768px) {
  section {
    padding: 32px 0;
    margin-bottom: 40px;
  }
}

/* MANDATORY FLEX LAYOUT PATTERNS --------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 20px rgba(36,64,79,0.07), 0 1px 3px rgba(36,64,79,0.1);
  padding: 28px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
  position: relative;
  min-width: 260px;
}
.card:hover {
  box-shadow: 0 6px 38px rgba(36,64,79,0.16), 0 1.5px 4px rgba(176,107,30,0.09);
  transform: translateY(-4px) scale(1.015);
}
.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;
    gap: 20px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(176,107,30,0.07), 0 1px 3px rgba(36,64,79,0.07);
  padding: 24px 26px;
  margin-bottom: 20px;
  max-width: 560px;
  margin-top: 12px;
  border-left: 5px solid #CE8D48;
  transition: box-shadow 0.20s, border-color 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(176,107,30,0.13), 0 2px 9px rgba(36,64,79,0.07);
  border-color: #B06B1E;
}
.testimonial-card p {
  font-size: 1.125rem;
  color: #24404F;
  line-height: 1.6;
  font-style: italic;
}
.testimonial-card footer {
  font-size: 0.95rem;
  color: #B06B1E;
  font-style: normal;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO & FEATURE GRID PATTERN ------------------------------------ */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.feature-grid > div {
  background: #fff;
  box-shadow: 0 1.5px 12px rgba(176,107,30,0.06), 0 0.5px 2px rgba(36,64,79,0.03);
  border-radius: 18px;
  padding: 24px 20px;
  flex: 1 1 270px;
  min-width: 260px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-grid > div img {
  height: 44px;
  margin-bottom: 12px;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 32px rgba(36,64,79,0.14);
  transform: translateY(-5px) scale(1.018);
}

@media (max-width: 1024px) {
  .feature-grid {
    gap: 16px;
  }
  .feature-grid > div {
    min-width: 47%;
    max-width: 48%;
  }
}
@media (max-width: 600px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > div {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
}

/* HEADER & NAVIGATION ------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 14px rgba(36,64,79,0.07);
  padding: 0;
  z-index: 20;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 80px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
  border-radius: 10px;
}

.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #24404F;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 8px;
  position: relative;
  transition: background 0.17s, color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FFF4E5;
  color: #B06B1E;
  text-decoration: none;
}

.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  display: inline-block;
  padding: 12px 28px;
  background: #B06B1E;
  color: #fff;
  border-radius: 22px;
  border: none;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  margin-left: 24px;
  box-shadow: 0 2px 8px rgba(176,107,30,0.07);
  transition: background 0.16s, transform 0.15s, box-shadow 0.17s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #CE8D48;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 4px 18px rgba(176,107,30,0.14);
}

/* MOBILE NAVIGATION ---------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 22px;
  background: #FFF4E5;
  color: #B06B1E;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  z-index: 110;
  cursor: pointer;
  box-shadow: 0 1.5px 12px rgba(176,107,30,0.06);
  transition: background 0.13s, color 0.13s, box-shadow 0.17s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #CE8D48;
}
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,64,79,0.93);
  color: #fff;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.34s cubic-bezier(.73,.23,.32,.86), opacity 0.24s;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 32px 24px 18px 0;
  font-size: 2rem;
  background: #FFF4E5;
  color: #B06B1E;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 15px rgba(176,107,30,0.09);
  transition: background 0.13s, color 0.13s;
}
.mobile-nav {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 12px 42px 28px 42px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 500;
  padding: 22px 0;
  width: 100%;
  border-bottom: 1px solid rgba(255,244,229,0.14);
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(206,141,72,0.11);
  color: #CE8D48;
  outline: none;
}

/* FOOTER -------------------------------------------------------- */
footer {
  background: #24404F;
  color: #fff;
  padding: 40px 0 18px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 24px;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.logo-footer img {
  height: 38px;
  width: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 8px;
}
.footer-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-nav a {
  color: #FFF4E5;
  font-size: 0.98rem;
  padding: 8px 0;
  border-radius: 8px;
  font-weight: 500;
  transition: color 0.15s, background 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #CE8D48;
  background: #fff0dc2d;
}
footer p {
  color: #fff;
  font-size: 0.98rem;
  margin-top: 10px;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* MAP PLACEHOLDER ----------------------------------------------- */
.map-placeholder {
  background: #faf6ee;
  padding: 18px 18px;
  border-radius: 14px;
  border: 1px solid #efe7dd;
  color: #B06B1E;
  font-size: 1rem;
}

/* CARDS & UTILITIES --------------------------------------------- */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

/* FORMATTED LISTINGS -------------------------------------------- */
ul {
  padding-left: 18px;
  margin-bottom: 10px;
}
ul li {
  margin-bottom: 7px;
  line-height: 1.8;
}

/* COOKIE CONSENT BANNER ----------------------------------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #24404F;
  box-shadow: 0 -2px 22px rgba(36,64,79,0.11);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 4000;
  padding: 18px 14px 18px 14px;
  gap: 18px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  animation: appearIn 0.50s cubic-bezier(.43,.03,.38,.92);
}
@keyframes appearIn {
  0% { transform: translateY(120px); opacity: 0;}
  100% { transform: translateY(0); opacity: 1;}
}
.cookie-consent-banner p {
  font-size: 1rem;
  margin-bottom: 0;
  color: #24404F;
}
.cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-actions .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 22px;
  font-size: 1rem;
  border-radius: 20px;
  border: none;
  margin: 0;
  font-weight: 500;
  cursor: pointer;
  background: #B06B1E;
  color: #fff;
  transition: background 0.18s, color 0.14s, transform 0.16s;
}
.cookie-actions .cookie-btn.cookie-settings {
  background: #FFF4E5;
  color: #B06B1E;
  border: 1.5px solid #CE8D48;
}
.cookie-actions .cookie-btn:hover, .cookie-actions .cookie-btn:focus {
  background: #CE8D48;
  color: #fff;
  outline: none;
  transform: translateY(-1.5px) scale(1.025);
}

/* COOKIE MODAL -------------------------------------------------- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(36,64,79,0.60);
  z-index: 4500;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 470px;
  padding: 32px 30px 30px 30px;
  box-shadow: 0 8px 32px rgba(36,64,79,0.13);
  color: #24404F;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookieFadeIn 0.38s cubic-bezier(.73,.23,.32,.86);
}
@keyframes cookieFadeIn {
  from { transform: translateY(50px) scale(.97); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #FFF4E5;
  color: #B06B1E;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1.5px 12px rgba(176,107,30,0.06);
  transition: background 0.13s, color 0.13s;
}
.cookie-modal h3 {
  font-size: 1.25rem;
  color: #B06B1E;
  margin-bottom: 0;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 7px 0;
  font-size: 1rem;
}
.cookie-toggle-switch {
  position: relative;
  width: 42px;
  height: 24px;
}
.cookie-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  background: #ddd;
  border-radius: 16px;
  top: 0; left: 0; right: 0; bottom: 0;
  transition: background 0.2s;
}
.cookie-toggle-switch input:checked + .cookie-toggle-slider {
  background: #B06B1E;
}
.cookie-toggle-slider:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}
.cookie-toggle-switch input:checked + .cookie-toggle-slider:before {
  transform: translateX(16px);
}
.cookie-toggle-slider {
  width: 42px;
  height: 24px;
  background: #eee;
  display: block;
  border-radius: 16px;
}
.cookie-category .desc {
  font-size: 0.98rem;
  color: #888;
}

.cookie-modal .cookie-actions {
  margin-top: 16px;
}
@media (max-width: 560px) {
  .cookie-modal {
    padding: 18px 10px 16px 10px;
    max-width: 98vw;
    font-size: 0.98rem;
  }
}

/* RESPONSIVE STYLES -------------------------------------------- */
@media (max-width: 920px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.44rem; }
  h3 { font-size: 1.12rem; }
  .container { max-width: 97vw; }
}
@media (max-width: 700px) {
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  h1 { font-size: 1.56rem; }
  h2 { font-size: 1.19rem; }
}
@media (max-width: 600px) {
  .btn-primary,
  .cookie-actions .cookie-btn {
    padding: 10px 16px;
    font-size: 15px;
  }
  .feature-grid > div,
  .card {
    padding: 18px 10px;
    min-width: 0;
    max-width: 99vw;
  }
  .testimonial-card {
    padding: 17px 10px;
    max-width: 100vw;
  }
}

/* MISC UTILS -------------------------------------------------- */
.mt8 { margin-top: 8px!important; }
.mt16 { margin-top: 16px!important; }
.mb8 { margin-bottom: 8px!important; }
.mb16 { margin-bottom: 16px!important; }
.radius-lg { border-radius: 22px; }

/* Accessibility focus ring */
:focus {
  outline: 2px solid #CE8D48;
  outline-offset: 1.5px;
}

/* Hide visually (for modals etc) */
.visually-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Selection Styles */
::selection {
  background: #FFF4E5;
  color: #24404F;
}

/* END OF CSS */
