/* CSS RESET & BASE TYPOGRAPHY */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background-repeat: no-repeat;
}
body {
  background: #F6F8FB;
  font-family: 'Roboto', Arial, sans-serif;
  color: #283826;
  min-height: 100vh;
  line-height: 1.65;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.01em;
  /* Natural paper grain background overlay, subtle effect */
  background-image: url('../assets/organic-paper.png'), linear-gradient(120deg, #F6F8FB 90%, #e9eddc 100%);
  background-size: cover, cover;
  background-attachment: fixed;
}
img {
  max-width: 100%;
  height: auto;
  display: block; 
}
ul, ol {
  margin-left: 1.3em;
  margin-bottom: 1.1em;
}
a {
  color: #3E6A39;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1A3758;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #283826;
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 15px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; }

em { font-style: italic; color: #4d6141; }
strong { font-weight: 700; color: #517340; }
p + p { margin-top: 1em; }
p { font-size: 1.08rem; margin-bottom: 1em; }

/* BRAND COLORS */
:root {
  --col-primary: #1A3758;
  --col-secondary: #67B0D1;
  --col-accent: #F6F8FB;
  --col-earth1: #6d8d6b; /* organic deep green */
  --col-earth2: #b7a187; /* light brown earth */
  --col-earth3: #edeada; /* very light sand */
  --col-green-accent: #3E6A39; /* accentuated leaf */
  --col-shadow: rgba(52, 71, 62, 0.07);
  --col-shadow-strong: rgba(52, 71, 62, 0.13);
  --col-border: #e1e8df;
  --col-white: #fff;
  --col-dark: #283826;
}

/* LAYOUTS & SPACING - RESPONSIVE, ORGANIC */
.container {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--col-accent);
  border-radius: 32px 60px 40px 14px / 48px 22px 40px 38px;
  box-shadow: 0 4px 24px var(--col-shadow);
  transition: background 0.35s;
}
@media (max-width: 768px) {
  .section {
    padding: 26px 8px;
    border-radius: 24px;
    margin-bottom: 28px;
  }
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: var(--col-earth3);
  border-radius: 28px 19px 26px 38px / 38px 40px 18px 28px;
  box-shadow: 0 2px 12px var(--col-shadow);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  border: 1.5px solid var(--col-border);
  min-width: 272px;
  transition: box-shadow 0.16s, transform 0.17s;
}
.card:hover {
  box-shadow: 0 6px 32px var(--col-shadow-strong);
  transform: translateY(-6px) scale(1.015);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .content-grid { flex-direction: column; gap: 30px; }
}
.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; }
}
.text-section {
  background: var(--col-earth3);
  border-radius: 20px 36px 24px 30px / 30px 16px 32px 24px;
  padding: 22px 22px 20px 24px;
  margin-bottom: 18px;
  box-shadow: 0 2.5px 10px var(--col-shadow);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 18px 16px;
  background: var(--col-earth3);
  border-radius: 22px 32px 20px 22px;
  box-shadow: 0 1.5px 6px var(--col-shadow);
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: var(--col-white);
  border-radius: 32px 24px 38px 32px / 26px 36px 23px 39px;
  box-shadow: 0 4px 32px var(--col-shadow-strong);
  border: 1.5px solid #e2e2dc;
  flex-wrap: wrap;
  color: var(--col-dark);
  font-size: 1.12rem;
  transition: box-shadow 0.16s, transform 0.19s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px var(--col-earth1), 0 0.5px 8px var(--col-shadow);
  transform: scale(1.015);
}
.testimonial-card em {
  color: #2b4d22;
}
.testimonial-card strong {
  color: #507837;
}

/* LISTINGS & ICONS */
ul li {
  margin-bottom: 12px;
  padding-left: 0.5em;
}
ul li:before {
  content: '▹';
  color: var(--col-green-accent);
  margin-right: 6px;
  font-size: 1.3em;
  vertical-align: middle;
  font-family: 'Montserrat', serif, Arial;
}
ul.location-listings li:before {
  content: '⛰️';
  font-size: 1.12em;
  margin-right: 7px;
}

/* HEADER NAVIGATION */
header {
  width: 100%;
  background: var(--col-earth3);
  box-shadow: 0 2px 18px var(--col-shadow);
  border-radius: 0 0 36px 36px/0 0 38px 60px;
  position: relative;
  z-index: 1001;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: transparent;
}
header nav img {
  height: 42px;
  min-width: 138px;
  margin-right: 18px;
}
header nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 18px;
  align-items: center;
}
header nav ul li {
  margin-bottom: 0;
  position: relative;
}
header nav ul li a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.06rem;
  font-weight: 500;
  color: var(--col-primary);
  padding: 8px 18px;
  border-radius: 40px;
  text-decoration: none;
  transition: color 0.17s, background 0.18s;
  display: inline-block;
  background: none;
}
header nav ul li a:hover, header nav ul li a:focus {
  background: #d9e8d1;
  color: var(--col-green-accent);
}
header nav ul li .cta {
  background: var(--col-green-accent);
  color: #fff;
  border-radius: 32px 16px 28px 18px/24px 12px 21px 13px;
  padding: 9px 24px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.14s, transform 0.14s, box-shadow 0.2s;
  box-shadow: 0 2px 16px var(--col-shadow);
  text-decoration: none !important;
}
header nav ul li .cta:hover, 
header nav ul li .cta:focus {
  background: var(--col-secondary);
  color: var(--col-primary);
  box-shadow: 0 6px 18px var(--col-earth1);
  transform: scale(1.03);
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 16px;
  width: 42px;
  height: 42px;
  background: var(--col-green-accent);
  border-radius: 50%;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 1201;
  transition: background 0.2s;
  box-shadow: 0 2px 11px var(--col-shadow-strong);
}
.mobile-menu-toggle:hover {
  background: var(--col-secondary);
  color: var(--col-primary);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 85vw;
  max-width: 340px;
  height: 100vh;
  background: linear-gradient(120deg, #e5eed9 50%, #cad1bd 100%);
  box-shadow: -1px 0 32px var(--col-shadow-strong);
  padding: 44px 10px 36px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(110%);
  opacity: 0;
  transition: transform 0.28s cubic-bezier(0.57,0.07,0.52,1.05), opacity 0.19s;
  z-index: 1202;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 19px;
  right: 19px;
  font-size: 2.1rem;
  background: #efd;
  color: #3E6A39;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0.5px 6px var(--col-shadow);
  transition: background 0.14s, color 0.13s;
  z-index: 1203;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--col-earth2);
  color: var(--col-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-top: 22px;
}
.mobile-nav a {
  color: var(--col-green-accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.20rem;
  font-weight: 500;
  padding: 13px 18px;
  border-radius: 24px 32px/18px 24px;
  background: none;
  text-decoration: none;
  transition: background 0.16s, color 0.15s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--col-primary);
  color: #fff;
}
@media (max-width: 1000px) {
  header nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
}
@media (min-width: 1001px) {
  .mobile-menu-toggle,
  .mobile-menu {
    display: none !important;
  }
}

/* SECTIONS, CARDS, CONTENT */
.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  padding: 12px 34px;
  background: var(--col-green-accent);
  color: #fff;
  border-radius: 28px 20px 20px 38px/32px 30px 34px 20px;
  margin-top: 10px;
  text-align: center;
  box-shadow: 0 6px 30px var(--col-shadow-strong);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
  border: none;
  transition: background 0.13s, transform 0.14s, box-shadow 0.19s;
}
.cta:hover, .cta:focus {
  background: var(--col-secondary);
  color: var(--col-primary);
  box-shadow: 0 8px 40px var(--col-earth1);
  transform: scale(1.045);
}

/* FOOTER */
footer {
  background: var(--col-earth3);
  margin-top: 60px;
  padding: 32px 18px 20px 18px;
  border-radius: 36px 36px 0 0/26px 38px 0 0;
  box-shadow: 0 -1.5px 20px var(--col-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 11px;
}
footer nav a {
  font-family: 'Montserrat', sans-serif;
  color: var(--col-green-accent);
  text-decoration: none;
  font-size: 1.02rem;
  padding: 7px 20px;
  border-radius: 18px 27px/18px 16px;
  background: none;
  transition: background 0.18s, color 0.16s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--col-secondary);
  color: #fff;
}
footer div {
  color: var(--col-primary);
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

/* COOKIE BANNER & MODAL */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: linear-gradient(90deg, #edeada 60%, #dbe5cd 100%);
  color: #383a21;
  box-shadow: 0 -5px 38px var(--col-shadow-strong);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 22px;
  padding: 22px 16px 18px 16px;
  z-index: 2000;
  font-size: 1.05rem;
  border-radius: 36px 36px 0 0/26px 42px 0 0;
  transition: transform 0.26s, opacity 0.19s;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 8px 20px 10px;
  }
}
.cookie-banner.hide {
  transform: translateY(130%);
  opacity: 0 !important;
  pointer-events: none;
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 16px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.cookie-btn {
  border: none;
  padding: 9px 22px;
  border-radius: 19px 27px/16px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--col-green-accent);
  color: #fff;
  margin-right: 0;
  margin-bottom: 0;
  transition: background 0.15s, color 0.13s;
  box-shadow: 0 1px 8px var(--col-shadow);
}
.cookie-btn:last-child {
  margin-right: 0;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--col-primary);
  color: #fff;
}
.cookie-btn.settings {
  background: var(--col-secondary);
  color: #1A3758;
}
.cookie-btn.settings:hover {
  background: var(--col-green-accent);
  color: #fff;
}

/* Cookie modal overlay and dialog */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(31,54,38,0.21);
  z-index: 2020;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: linear-gradient(120deg, #edeada 70%, #b7a187 100%);
  border-radius: 36px 34px 32px 20px/36px 22px 24px 40px;
  padding: 44px 30px 36px 30px;
  width: 97vw;
  max-width: 460px;
  box-shadow: 0 18px 70px var(--col-shadow-strong);
  color: #253415;
  position: relative;
  z-index: 2022;
  animation: cookieModalShow 0.37s cubic-bezier(0.62,0,0.45,1.32);
}
@keyframes cookieModalShow {
  from {
    transform: translateY(90px) scale(0.93);
    opacity: 0.3;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.cookie-modal h3 {
  font-family: 'Montserrat';
  font-size: 1.3rem;
  margin-bottom: 18px;
  color: #2d5541;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: #253415;
}
.cookie-modal-category input[type='checkbox'] {
  accent-color: #3E6A39;
  width: 18px;
  height: 18px;
}
.cookie-modal-category.essential input[type='checkbox'] {
  accent-color: #1A3758;
}
.cookie-modal-category .category-label {
  font-weight: 600;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 19px;
  right: 21px;
  border: none;
  background: var(--col-green-accent);
  color: #fff;
  font-size: 1.35rem;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  box-shadow: 0 0.5px 3px var(--col-shadow);
  transition: background 0.15s, color 0.13s;
}
.cookie-modal-close:hover {
  background: var(--col-secondary);
  color: var(--col-primary);
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 700px) {
  .container { padding: 0 5px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.08rem; }
  .section { padding: 18px 6px; }
  .content-wrapper { gap: 18px; }
}

@media (max-width: 520px) {
  .cookie-modal { padding: 32px 8px 24px 14px; }
  .cookie-modal-close {
    top: 8px;
    right: 8px;
  }
  .footer nav { gap: 10px; }
}

/* MICRO-INTERACTIONS & FOCUS */
button, .cta, .mobile-menu-toggle, .mobile-menu-close, .cookie-btn, .cookie-modal-close {
  cursor: pointer;
  outline: none;
}
button:focus-visible, .cta:focus-visible, .cookie-btn:focus-visible, .mobile-menu-toggle:focus-visible {
  box-shadow: 0 0 0 3px #b9eab9, 0 2px 8px var(--col-shadow-strong);
}
a:focus-visible {
  outline: 2.5px dashed var(--col-green-accent);
  border-radius: 6px;
}

/* GENERAL - OTHER */
::-webkit-scrollbar {
  width: 8px;
  background: #e0e6db;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: #b7a187;
  border-radius: 10px;
}

/* OVERRIDES/LAYOUT FIXES */
/* Ensure all flex classes get a gap (even those not mentioned above) */
[class*='container'],
[class*='section'],
[class*='card-container'],
[class*='content-grid'],
[class*='testimonial-'],
[class*='feature-item']
{
  gap: 20px;
}

/* Ensure all top-level links in nav always have proper spacing */
nav > a:not(:last-child) {
  margin-right: 14px;
}

/* LOCATION-LISTINGS (SPECIAL ICONS) */
ul.location-listings li {
  background: #f4edda;
  border-radius: 14px 24px 18px 22px / 14px 15px 23px 19px;
  padding: 10px 18px;
  margin-bottom: 14px;
  box-shadow: 0 2px 12px var(--col-shadow);
}

/* Accentuate headings */
h2:not(:first-child)::before {
  content: '';
  display: block;
  width: 38px;
  height: 4px;
  background: var(--col-earth2);
  border-radius: 8px;
  margin-bottom: 7px;
  opacity: 0.26;
}

/* Animations for hover/focus on content cards */
.card:active,
.testimonial-card:active {
  transform: scale(0.98);
  box-shadow: 0 2px 10px var(--col-earth2);
}

/* Hide elements utility */
.hide { display: none !important; }

/* COMPATIBILITY NOTES: No display: grid or CSS columns used anywhere */
