/* ------------------- 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  min-height: 100vh;
  line-height: 1.6;
  background: #f8f8f4;
  color: #302616;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block; 
  max-width: 100%;
  height: auto;
}

*, *:before, *:after {
  box-sizing: inherit;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color .2s;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ------------------- CSS VARIABLES ------------------- */
:root {
  --color-primary: #206138;
  --color-secondary: #B9C5A0;
  --color-accent: #F2EBD8;
  --color-bg: #f8f8f4;
  --color-bg-dark: #fffdf6;
  --color-card: #fff;
  --color-gold: #C9A253;
  --color-gold-dark: #9E8750;
  --color-dark: #302616;
  --color-shadow: rgba(32, 97, 56, 0.10);
  --border-radius: 18px;
  --shadow-sm: 0 2px 16px var(--color-shadow);
  --font-display: 'Roboto Slab', serif;
  --font-body: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* ------------------- TYPOGRAPHY -------------------- */
h1, .hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.75rem;
  color: var(--color-primary);
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  h1, .hero h1 {
    font-size: 2rem;
  }
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-gold-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }
}
p, li, label, td, th {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-dark);
  line-height: 1.7;
  margin-bottom: 8px;
}
strong, b {
  font-weight: 600;
}
.subheadline {
  font-size: 1.25rem;
  color: var(--color-secondary);
  margin-bottom: 18px;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}
table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  background: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  font-family: var(--font-body);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
table th, table td {
  padding: 16px 18px;
  border-bottom: 1px solid #ece9d9;
  text-align: left;
}
table th {
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-display);
}
table tr:last-child td {
  border-bottom: none;
}

/* Lists in text */
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 8px;
  list-style: disc inside none;
}
.text-section ul,
.text-section ol {
  margin-bottom: 16px;
}

@media (max-width: 500px) {
  h1, .hero h1 { font-size: 1.35rem; }
  h2 { font-size: 1.2rem; }
  .subheadline { font-size: 1.02rem; }
  p, li, td, th { font-size: 0.98rem; }
}

/* ------------------- LAYOUT & CONTAINERS ------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
}
.content-wrapper {
  background: var(--color-card);
  margin-top: 0;
  margin-bottom: 32px;
  border-radius: var(--border-radius);
  padding: 32px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .content-wrapper {
    padding: 22px 10px;
    gap: 14px;
  }
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 32px;
    padding: 20px 4px;
  }
}

/* ---------------------------------- HEADER & NAV --------------------------------- */
header {
  width: 100%;
  background: var(--color-card);
  box-shadow: 0 4px 20px 0 rgba(32, 97, 56, 0.07);
  position: sticky;
  top: 0;
  z-index: 1002;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 22px 14px 22px;
}
header img {
  height: 54px;
  width: auto;
  transition: filter 0.2s;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}
@media (max-width: 992px) {
  nav { gap: 16px; }
}
nav a {
  position: relative;
  padding: 5px 3px;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: 1.01rem;
  transition: color 0.17s;
}
nav a:hover, nav a:focus {
  color: var(--color-gold);
}
nav a.active {
  color: var(--color-gold-dark);
  font-weight: 600;
}
.cta-button {
  background: var(--color-gold);
  color: var(--color-dark);
  border-radius: 36px;
  padding: 12px 30px;
  font-size: 1.06rem;
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: 0 2px 12px 0 rgba(32,97,56,0.08);
  cursor: pointer;
  border: 2px solid var(--color-gold-dark);
  margin-left: 18px;
  transition: background 0.18s, color 0.18s, border 0.16s, transform 0.18s;
  position: relative;
  z-index: 1;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-gold-dark);
  color: #fff;
  border-color: var(--color-gold);
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 6px 24px rgba(32,97,56,0.13);
}
@media (max-width: 768px) {
  .cta-button {
    padding: 10px 18px;
    font-size: 1em;
    margin-left: 0;
  }
}

/* ----------------------------- HAMBURGER MOBILE MENU ----------------------------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--color-gold);
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  margin-left: 8px;
  z-index: 2004;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: var(--color-gold-dark);
  transform: scale(1.2);
}
@media (max-width: 1050px) {
  nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(241,237,228,.97);
  box-shadow: 0 12px 36px 0 rgba(32,97,56,0.12);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.77,.04,.82,1.12);
  will-change: transform;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 48px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.4rem;
  color: var(--color-gold-dark);
  position: absolute;
  top: 16px;
  right: 22px;
  cursor: pointer;
  z-index: 3010;
  padding: 4px 12px;
  transition: color 0.15s, background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-primary);
  background: var(--color-accent);
  border-radius: 50%;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 80px;
  padding: 0 38px 0 38px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--color-primary);
  padding: 12px 0 12px 6px;
  border-left: 4px solid transparent;
  width: 100%;
  transition: border 0.18s, color 0.16s, background 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-gold-dark);
  background: var(--color-accent);
  border-left: 4px solid var(--color-gold);
  border-radius: 4px;
}

@media (min-width: 1051px) {
  .mobile-menu, .mobile-menu.open {
    display: none !important;
  }
}

/* -------------------------- HERO SECTION -------------------------- */
.hero {
  background: var(--color-accent);
  padding: 0 0 30px 0;
  margin-bottom: 40px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 395px;
  text-align: center;
}
.hero .content-wrapper {
  background: none;
  box-shadow: none;
  border-radius: 0;
  align-items: center;
}

/* ------------------- FLEX CONTAINER COMPONENTS ------------------- */
.feature-grid, .feature-item, .card-container, .card-grid, .content-grid, .contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid {
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 22px;
  gap: 24px;
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 12px;
  }
}
@media (max-width: 767px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
}
.feature-grid > div, .feature-item {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  padding: 24px 22px 22px 22px;
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  border-left: 4px solid var(--color-gold);
  transition: box-shadow 0.22s, border 0.16s, transform 0.2s;
}
.feature-grid > div:hover, .feature-item:hover {
  box-shadow: 0 8px 36px rgba(32,97,56,.13), var(--shadow-sm);
  border-left: 4px solid var(--color-gold-dark);
  transform: translateY(-4px) scale(1.020);
}
.feature-grid img {
  height: 40px;
  width: 40px;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 4px rgba(32,97,56,0.12));
}

.card-container {
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  padding: 24px 22px;
  flex: 1 1 260px;
  transition: box-shadow 0.22s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 10px 32px rgba(32,97,56,.12), var(--shadow-sm);
  transform: translateY(-4px) scale(1.010);
}
.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: 16px;
    align-items: flex-start;
    text-align: left;
  }
}

/* ------------------- TESTIMONIALS & REVIEWS ------------------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 20px 26px 16px 26px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
  border-left: 4px solid var(--color-gold);
  min-width: 230px;
  max-width: 530px;
}
.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-primary);
  font-family: var(--font-display);
  margin-bottom: 10px;
  line-height: 1.55;
}
.testimonial-card span {
  font-size: 1rem;
  color: var(--color-dark);
  font-family: var(--font-body);
}
.testimonial-card:hover {
  box-shadow: 0 10px 32px rgba(201,162,83,0.13);
  border-left: 4px solid var(--color-gold-dark);
  transform: scale(1.03);
}
@media (max-width: 767px) {
  .testimonial-card {
    padding: 16px 10px;
    max-width: 99%;
    width: 100%;
  }
}

/* ------------------- CONTACT & MAP ------------------- */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 12px;
  margin-bottom: 12px;
  align-items: flex-start;
}
.contact-info > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  background: var(--color-accent);
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(32,97,56,0.05);
}
.contact-info img {
  width: 28px; height: 28px;
}
.map-placeholder {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  margin-top: 18px;
  padding: 18px 16px;
  background: #fcfbf7;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(32,97,56,0.07);
}
.map-placeholder img {
  width: 40px;
  height: 40px;
}
@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
  }
  .map-placeholder {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 7px;
  }
}

/* ------------------- FOOTER ------------------- */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 32px 0 18px 0;
  margin-top: 40px;
  font-size: 1em;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
footer img {
  height: 38px;
  filter: brightness(1.19) drop-shadow(0 2px 8px rgba(201,162,83,0.07));
  margin-bottom: 7px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
footer nav a {
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.04rem;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.17s, color 0.19s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
}
.footer-contact {
  color: #eee1c7;
  font-size: 0.97rem;
  margin: 3px 0 3px 0;
  font-family: var(--font-body);
  text-align: center;
}
.footer-contact span {
  margin-right: 8px;
}
.footer-branding span {
  font-size: 0.94rem;
  color: #f6eecf;
}
@media (max-width: 600px) {
  footer .container {
    gap: 16px;
  }
  footer nav {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .footer-contact, .footer-branding {
    font-size: 0.89rem;
    padding: 0 3px;
  }
}

/* ------------------- BUTTONS & LINKS ------------------- */
button {
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border 0.16s;
}

.text-section a,
.content-wrapper a:not(.cta-button):not(nav a):not(.mobile-nav a) {
  color: var(--color-gold-dark);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.17s;
}
.text-section a:hover, .content-wrapper a:hover {
  color: var(--color-primary);
}

/* ------------------- TEXT SECTIONS ------------------- */
.text-section {
  margin-top: 18px;
  margin-bottom: 18px;
  background: var(--color-accent);
  padding: 18px 18px 14px 18px;
  border-radius: 13px;
  box-shadow: 0 1px 7px rgba(32,97,56,0.07);
}
.text-section h3 {
  margin-top: 4px;
  margin-bottom: 6px;
  color: var(--color-gold-dark);
}
@media (max-width: 540px) {
  .text-section {
    padding: 11px 7px 9px 7px;
  }
}

/* ------------------- OL/UL LIST INSIDE CARDS ------------------- */
.card ul, .text-section ul {
  margin-left: 20px;
}
.card li, .text-section li {
  margin-bottom: 7px;
}

/* ------------------- MISC UTILITY CLASSES ------------------- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-12 { margin-top: 12px !important; }
.mb-12 { margin-bottom: 12px !important; }
.rounded { border-radius: var(--border-radius) !important; }

/* ------------------- COOKIE CONSENT BANNER ------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #fffdf6;
  color: var(--color-primary);
  box-shadow: 0 -4px 30px 0 rgba(32,97,56,0.09);
  padding: 22px 14px 18px 14px;
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 22px;
  z-index: 4000;
  flex-wrap: wrap;
  border-top: 2px solid var(--color-gold);
  font-size: 1.04rem;
  animation: cookiebannerin .55s cubic-bezier(.83,-0.03,.7,1.06);
  box-sizing: border-box;
}
@keyframes cookiebannerin {
  0% { opacity: 0; transform: translateY(48px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  margin: 0 12px 0 0;
  flex: 1 1 200px;
}
.cookie-banner .cookie-btn {
  background: var(--color-gold);
  color: var(--color-dark);
  border-radius: 28px;
  padding: 10px 22px;
  font-size: 1.01rem;
  font-weight: 600;
  margin-right: 10px;
  border: 2px solid var(--color-gold-dark);
  box-shadow: 0 1px 4px rgba(32,97,56,0.07);
  transition: background 0.15s, color 0.15s, border 0.12s;
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: var(--color-gold-dark);
  color: #fff;
  border: 2px solid var(--color-gold);
}
.cookie-banner .cookie-btn.reject {
  background: #fffdf6;
  color: var(--color-gold-dark);
  border: 2px solid var(--color-gold-dark);
  margin-right: 10px;
}
.cookie-banner .cookie-btn.reject:hover {
  background: #f7f4ea;
  color: var(--color-primary);
}
.cookie-banner .cookie-btn.settings {
  background: var(--color-accent);
  color: var(--color-primary);
  border: 2px solid var(--color-secondary);
  margin-right: 0;
}
.cookie-banner .cookie-btn.settings:hover {
  background: var(--color-secondary);
  color: #fff;
}
@media (max-width: 540px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: .97rem;
    padding: 14px 6px 9px 6px;
  }
  .cookie-banner .cookie-btn {
    margin-right: 0px;
    margin-bottom: 7px;
  }
}

/* ------------------- COOKIE MODAL ------------------- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 5000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(32, 97, 56, .48);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieoverlayin .42s;
}
@keyframes cookieoverlayin {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: var(--color-primary);
  border-radius: 22px;
  padding: 36px 32px 28px 32px;
  width: 95vw;
  max-width: 410px;
  box-shadow: 0 8px 44px 0 rgba(32,97,56,0.14);
  position: relative;
  animation: cookiemodalin .44s cubic-bezier(.79,-0.09,.7,1.08);
}
@keyframes cookiemodalin {
  0% { opacity: 0; transform: scale(.7); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  color: var(--color-gold-dark);
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 17px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-accent);
  border-radius: 9px;
  margin-bottom: 12px;
  padding: 12px 14px;
}
.cookie-modal .category label {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1em;
}
.cookie-modal .switch {
  position: relative;
  display: block;
  width: 46px;
  height: 24px;
}
.cookie-modal .switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #EFE8D7;
  border-radius: 24px;
  transition: background 0.2s;
}
.cookie-modal .switch input:checked + .slider {
  background: var(--color-gold);
}
.cookie-modal .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s;
  box-shadow: 0 1px 4px rgba(32,97,56,0.06);
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(20px);
}
/* Essential cookies always enabled style */
.cookie-modal .category.essential .switch {
  pointer-events: none;
}
.cookie-modal .category.essential .slider {
  background: var(--color-secondary)!important;
}
.cookie-modal-buttons {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal-buttons .cookie-btn {
  min-width: 110px;
  padding: 9px 0;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  font-size: 1.65rem;
  color: var(--color-gold-dark);
  cursor: pointer;
  transition: color .15s;
}
.cookie-modal-close:hover { color: var(--color-primary); }
@media (max-width: 600px) {
  .cookie-modal { padding: 18px 7px 12px 7px; max-width: 99vw; }
  .cookie-modal h2 { font-size: 1.09rem; }
}

/* ------------------- ANIMATIONS ------------------- */
.fade-in {
  animation: fadeIn 0.55s cubic-bezier(.45,0,.65,1.18);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ------------------- RESPONSIVE LAYOUT PATTERNS ------------------- */
@media (max-width: 992px) {
  .container {
    padding: 0 11px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
  }
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .contact-info {
    flex-direction: column;
    gap: 11px;
  }
  .section {
    padding: 12px 4px;
    margin-bottom: 30px;
  }
}
@media (max-width: 400px) {
  .content-wrapper {
    padding: 8px 1px;
  }
}

/* -------------- Other Section Spacing/Alignments -------------- */
.card, .feature-item, .testimonial-card, .text-section, .map-placeholder {
  margin-bottom: 20px;
}

/* ------------------- MISC INTERACTIONS ------------------- */
::-webkit-scrollbar {
  width: 10px;
  background: #eee;
}
::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 8px;
}

input, textarea, select {
  border-radius: 8px;
  border: 1px solid var(--color-secondary);
  padding: 10px 13px;
  font-size: 1em;
  background: #fcfbf7;
  margin-bottom: 12px;
  box-shadow: 0 1px 5px rgba(32,97,56,0.04);
  transition: border 0.14s, box-shadow 0.12s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--color-gold);
  outline: none;
  box-shadow: 0 2px 8px rgba(201,162,83,0.09);
}

/* Accessible highlight for links/buttons */
a:focus, button:focus, .cta-button:focus {
  outline: 2px solid var(--color-gold-dark);
  outline-offset: 2px;
}

/* ----------- Hide visually for accessibility ------------ */
.sr-only {
  position: absolute !important;
  height: 1px; width: 1px; overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
