/* =====================
   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: #F8F4EF;
  color: #24473B;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
ol, ul {
  list-style: none;
}
a {
  background: transparent;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
:focus {
  outline-color: #A08362;
  outline-width: 2px;
  outline-style: solid;
}
/* =====================
      TYPOGRAPHY
====================== */
h1, .policy-section h1, .confirmation-section h1 {
  font-family: 'Playfair Display', serif;
  color: #24473B;
  font-size: 2.4rem;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.15;
}
@media (min-width: 600px) {
  h1, .policy-section h1, .confirmation-section h1 { font-size: 3rem; }
}
h2 {   
  font-family: 'Playfair Display', serif;
  color: #24473B;
  font-size: 2rem;
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 1.18;
}
h3 {
  font-family: 'Playfair Display', serif;
  color: #A08362;
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-weight: 500;
  line-height: 1.24;
}
h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #24473B;
  font-size: 1rem;
  margin-bottom: 8px;
}
p, ul, ol, li, .subtitle, .testimonial-author, .footer-contact, .footer-hours {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  color: #24473B;
  font-size: 1rem;
  margin-bottom: 8px;
}
.subtitle {
  font-size: 1.2rem;
  margin-bottom: 28px;
  color: #24473B;
  opacity: 0.9;
}
strong, b {
  font-weight: bold;
}
/* Typography sizing for responsive */
@media (min-width: 600px) {
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.4rem; }
}
/* =====================
      BRAND COLORS
====================== */
:root {
  --color-primary: #24473B;
  --color-secondary: #A08362;
  --color-accent: #F8F4EF;
  --color-green: #637963;
  --color-brown: #b1a084;
  --color-lightaccent: #faf9f6;
  --color-danger: #C85641;
  --color-boxshadow: rgba(36, 71, 59, 0.10);
}
/* =======================
         LAYOUT
======================== */
.container {
  max-width: 1100px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 18px;
}
.content-wrapper {
  /* inner max width and padding for breathing room */
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  background: var(--color-lightaccent);
  border-radius: 14px;
  padding: 28px 20px;
  margin-bottom: 24px;
  box-shadow: 0 2px 14px var(--color-boxshadow);
}
.policy-section {
  background: #fff;
  border-radius: 14px;
  padding: 28px 20px;
  box-shadow: 0 2px 14px var(--color-boxshadow);
}
.confirmation-section {
  background: var(--color-lightaccent);
  border-radius: 16px;
  padding: 42px 24px;
  box-shadow: 0 2px 20px var(--color-boxshadow);
  text-align: center;
  max-width: 540px;
  margin: 0 auto 80px auto;
}
.cta-banner {
  background: #e3eae2;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(36, 71, 59, 0.10);
  padding: 32px 18px 38px 18px;
  gap: 18px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-area {
  margin-top: 24px;
  text-align: center;
}
/* =======================
        NAVIGATION
======================== */
header {
  width: 100%;
  background: #fff;
  position: relative;
  z-index: 60;
  box-shadow: 0 2px 8px rgba(36, 71, 59, 0.03);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 83px;
  position: relative;
}
header img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  color: var(--color-primary);
  font-size: 1.06rem;
  padding: 10px 8px;
  border-radius: 6px;
  position: relative;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-secondary);
  background: #f5ece0;
}
.main-nav .cta-primary {
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: 11px 26px;
  border-radius: 24px;
  font-weight: bold;
  font-size: 1.14rem;
  box-shadow: 0 2px 8px var(--color-boxshadow);
  margin-left: 18px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.mobile-menu-toggle {
  display: none;
  background: var(--color-primary);
  color: #fff;
  font-size: 2.1rem;
  border-radius: 8px;
  padding: 3px 15px;
  margin-left: 10px;
  border: none;
  transition: background 0.18s, color 0.18s;
  z-index: 120;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-secondary);
}
/* ===============================
        MOBILE NAV OVERLAY
=============================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36, 71, 59, 0.96);
  z-index: 160;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.67,.05,.34,.97);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  height: 100vh;
  width: 100vw;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  transition: transform 0.34s cubic-bezier(.26,1.21,.53,1);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.5rem;
  color: #fff;
  background: none;
  border: none;
  padding: 16px 18px 0 0;
  margin-bottom: 16px;
  transition: color 0.16s;
  z-index: 165;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
  padding: 12px 40px 40px 40px;
}
.mobile-nav a {
  font-size: 1.35rem;
  padding: 17px 0;
  color: #fff;
  border-radius: 10px;
  transition: background 0.17s, color 0.2s;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
@media (max-width: 960px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 600px) {
  .container {
    padding-left: 7vw;
    padding-right: 7vw;
  }
  .mobile-nav {
    padding-left: 16vw;
    padding-right: 11vw;
  }
}
/* =======================
        HERO SECTION
======================== */
main > section:first-child {
  background: linear-gradient(120deg, #F8F4EF 80%, #e3eae2 100%);
  min-height: 320px;
  margin-bottom: 54px;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 2px 16px var(--color-boxshadow);
  display: flex;
  align-items: center;
}
main > section:first-child .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 38px 0 32px 0;
}
@media (max-width: 768px) {
  main > section:first-child {
    border-radius: 0 0 20px 20px;
    padding-top: 0;
    padding-bottom: 0;
  }
}
/* ========================
         FLEX LAYOUTS
======================== */
.feature-grid,
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 18px;
}
.feature-grid > div {
  flex: 1 1 290px;
  min-width: 240px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px var(--color-boxshadow);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 0;
  transition: box-shadow 0.2s, transform 0.15s;
  border: 2.3px solid #f1ece6;
}
.feature-grid > div:hover {
  box-shadow: 0 4px 25px rgba(36,71,59,0.14);
  transform: translateY(-2px) scale(1.012);
}
.feature-grid img {
  height: 42px;
  width: auto;
  margin-bottom: 0;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 300px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px var(--color-boxshadow);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.19s;
}
.card:hover {
  box-shadow: 0 8px 24px var(--color-boxshadow);
}
.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) {
  .feature-grid,
  .feature-list,
  .card-container,
  .content-grid,
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div, .card {
    min-width: 0;
    width: 100%;
  }
}
/* ==============
  TESTIMONIALS
=============== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #ecf0eb;
  border-radius: 18px;
  box-shadow: 0 1px 8px rgba(36, 71, 59, 0.10);
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 340px;
  flex: 1 1 240px;
  position: relative;
  border-left: 6px solid var(--color-secondary);
  transition: box-shadow 0.16s, transform 0.16s;
  z-index: 1;
}
.testimonial-card p {
  color: #24473B;
  font-size: 1.09rem;
  margin-bottom: 4px;
}
.testimonial-author {
  font-size: 0.98rem;
  color: #637963;
  font-weight: 500;
  margin-top: 2px;
  margin-bottom: 0;
}
.testimonial-card:hover {
  box-shadow: 0 6px 22px rgba(36, 71, 59, 0.13);
  transform: scale(1.018);
}
/* ===============
   BUTTONS & CTA
================ */
.cta-primary {
  background: var(--color-primary);
  color: #fff !important;
  padding: 13px 32px;
  font-size: 1.1rem;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  border-radius: 24px;
  font-weight: bold;
  margin-top: 6px;
  display: inline-block;
  border: none;
  box-shadow: 0 2px 7px var(--color-boxshadow);
  transition: background 0.18s, transform 0.17s, box-shadow 0.17s;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-secondary);
  color: var(--color-primary) !important;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 5px 17px var(--color-boxshadow);
}
.cta-secondary {
  background: var(--color-secondary);
  color: var(--color-primary) !important;
  padding: 12px 29px;
  font-size: 1.06rem;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  border-radius: 24px;
  font-weight: 600;
  border: 2px solid var(--color-primary);
  display: inline-block;
  transition: background 0.17s, border-color 0.17s, color 0.17s, transform 0.14s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--color-primary);
  color: #fff !important;
  border-color: var(--color-secondary);
  transform: scale(1.03);
}
button, .btn {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  background: var(--color-primary);
  color: #fff;
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
}
button:hover, button:focus,
.btn:hover, .btn:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
/* =========================
   SOCIAL ICONS (Footer/social)
========================== */
.social-icons {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-bottom: 10px;
}
.social-icons img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid #e1e7df;
  background: #fff;
  transition: box-shadow 0.16s, border-color 0.16s, filter 0.15s;
  box-shadow: 0 2px 5px rgba(100,140,100,0.07);
}
.social-icons img:hover {
  box-shadow: 0 6px 16px rgba(100,120,100,0.13);
  border-color: var(--color-secondary);
  filter: brightness(1.12);
}
/* ==========
   FOOTER
========== */
footer {
  width: 100%;
  background: #e3eae2;
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
  margin-top: 66px;
  box-shadow: 0 -2px 10px var(--color-boxshadow);
  font-size: 1rem;
}
footer .container {
  padding-top: 36px;
  padding-bottom: 20px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  border-bottom: 1px solid #c8d4c8;
  padding-bottom: 16px;
}
.footer-top img {
  width: 54px;
  height: auto;
  margin-bottom: 0;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.footer-nav a {
  color: #24473B;
  font-size: .99rem;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.15s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-secondary);
  color: #fff;
}
.footer-bottom {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px;
  margin: 14px 0;
}
.footer-contact,
.footer-hours {
  color: #24473B;
  font-size: .97rem;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-direction: column;
}
.footer-contact img {
  width: 19px;
  height: 19px;
  vertical-align: middle;
  margin-right: 7px;
}
.footer-credits {
  color: #A08362;
  font-size: .96rem;
  text-align: center;
  margin: 24px 0 0 0;
}
@media (max-width: 800px) {
  .footer-top, .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }
  footer .container {
    padding-top: 26px;
    padding-bottom: 12px;
  }
}
/* ==========================
   COOKIE CONSENT BANNER
========================== */
.cookie-consent {
  position: fixed;
  z-index: 170;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #24473B;
  color: #fff;
  padding: 21px 20px 21px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 20px rgba(36,71,59,0.13);
  transition: transform 0.3s;
  font-size: 1rem;
  gap: 22px;
}
.cookie-consent.hide {
  transform: translateY(120%);
}
.cookie-consent p {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
  flex: 2 1 220px;
}
.cookie-consent-actions {
  display: flex;
  gap: 17px;
  flex: 0 0 auto;
}
.cookie-btn {
  border-radius: 7px;
  border: none;
  padding: 10px 18px;
  font-size: 1rem;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin: 0;
  cursor: pointer;
  transition: background 0.15s, color 0.13s;
  box-shadow: 0 1.5px 4px rgba(160, 131, 98, 0.13);
}
.cookie-btn.accept {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #e7c095;
}
.cookie-btn.reject {
  background: #fff;
  color: var(--color-primary);
  border: 1.4px solid #ece0d1;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--color-danger);
  color: #fff;
}
.cookie-btn.settings {
  background: #24473B;
  color: #fff;
  border: 1.3px solid #ece0d1;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
@media (max-width: 768px) {
  .cookie-consent {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.98rem;
    padding: 18px 14px 18px 14px;
  }
  .cookie-consent-actions {
    gap: 11px;
  }
}
/* ===================
   COOKIE SETTINGS MODAL
==================== */
.cookie-modal {
  position: fixed;
  z-index: 200;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(36, 71, 59, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  color: #24473B;
  border-radius: 17px;
  padding: 36px 28px 28px 28px;
  box-shadow: 0 8px 40px rgba(36, 71, 59, 0.22);
  min-width: 320px;
  max-width: 97vw;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  z-index: 220;
}
.cookie-modal-close {
  position: absolute;
  right: 10px;
  top: 8px;
  font-size: 2rem;
  color: #A08362;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 222;
  transition: color 0.17s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #24473B;
}
.cookie-modal-content h2 {
  font-size: 1.53rem;
  color: #24473B;
  font-family: 'Playfair Display', serif;
  margin-bottom: 7px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #e9e2d8;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-size: 1.02rem;
  color: #24473B;
}
.cookie-toggle {
  position: relative;
  width: 42px;
  height: 23px;
  background: #e3eae2;
  border-radius: 12px;
  transition: background 0.17s;
  cursor: pointer;
  border: none;
}
.cookie-toggle[disabled] {
  opacity: 0.62;
  cursor: not-allowed;
}
.cookie-toggle:after {
  content: '';
  display: block;
  position: absolute;
  left: 4px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.14s, background 0.14s;
}
.cookie-toggle.active {
  background: var(--color-secondary);
}
.cookie-toggle.active:after {
  left: 22px;
  background: var(--color-primary);
}
/* Modal footer */
.cookie-modal-footer {
  margin-top: 15px;
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}
@media (max-width: 500px) {
  .cookie-modal-content {
    min-width: 70vw;
    padding: 23px 12px 16px 12px;
  }
}
/*
========================
 FAQ/HELPERS
======================== */
.contact-info ul {
  margin: 0;
  padding: 0;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
}
.contact-info img {
  width: 21px;
  height: 21px;
}
.map-section {
  margin-top: 24px;
}
.map-placeholder {
  background: #F8F4EF;
  padding: 18px;
  border-radius: 11px;
  color: #24473B;
  font-size: .98rem;
  box-shadow: 0 2px 7px #e3eae2;
}
/*
=====================
  SPECIAL LISTS
===================== */
ul, ol {
  margin: 0 0 10px 22px;
}
ul li, ol li {
  margin-bottom: 7px;
  font-size: 1rem;
  line-height: 1.6;
  color: #24473B;
}
ul li:before {
  content: '\2022';
  color: var(--color-secondary);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
@media (max-width: 600px) {
  ul li, ol li {
    font-size: .97rem;
  }
}
/* ===================
     CARDS (Generics)
=================== */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* ============
   SPACING
============= */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* Responsive spacing */
@media (max-width: 900px) {
  .section {
    margin-bottom: 40px;
    padding: 28px 7vw;
  }
  .card, .feature-grid > div {
    padding: 23px 10px;
  }
}
@media (max-width: 650px) {
  .section {
    padding: 14px 2vw 20px 2vw;
  }
  .card, .feature-grid > div {
    padding: 16px 6px;
  }
}
/* ===========================
   MICRO-INTERACTIONS/ANIMS
=========================== */
a, button, .cta-primary, .cta-secondary, .card, .feature-grid > div, .testimonial-card, .footer-nav a, .mobile-nav a, .social-icons img {
  transition:
    background 0.18s,
    color 0.16s,
    box-shadow 0.16s,
    border-color 0.17s,
    transform 0.14s;
}
.section, .content-wrapper, .text-section, .policy-section, .testimonial-card, .cta-banner, .card {
  transition: box-shadow 0.18s, background 0.17s;
}
/* ================
   A11Y UTIL
================ */
:focus-visible {
  outline: 2px dashed #A08362;
  outline-offset: 2.5px;
}
/* =====================
      SCROLL BARS
===================== */
body {
  scrollbar-color: #A08362 #F8F4EF;
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  width: 8px;
  background: #F8F4EF;
}
::-webkit-scrollbar-thumb {
  background: #A08362;
  border-radius: 12px;
}
/* ==========
   HIDDEN
============ */
@media(min-width: 961px) {
  .mobile-menu { display: none; }
  .mobile-menu-toggle { display: none; }
}
/* =======================
  NATURE ORGANIC DECOR
======================= */
.feature-grid > div, .card, .testimonial-card, .cta-banner, .content-wrapper, .text-section, .policy-section {
  border-radius: 18px 34px 22px 18px;
  /* organic feel with mixed radii */
}
.feature-grid, .content-grid, .footer-nav, .footer-bottom, .footer-top {
  /* organic spacing with gap for flex children */
  gap: 24px;
}

/* Soft drop-shadows for elevated look */
.card, .feature-grid > div, .testimonial-card, .cta-banner,
.text-section, .policy-section {
  box-shadow: 0 3px 16px 0 var(--color-boxshadow);
}

/* Decorative pseudo-elements for organic shapes (e.g. light watercolor blot on hero) */
main > section:first-child .content-wrapper:before {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  left: 50%;
  top: -38px;
  width: 150px;
  height: 70px;
  background: #ebedd9;
  opacity: .42;
  border-radius: 60px 60px 70px 80px;
  filter: blur(8px);
  pointer-events: none;
}
main > section:first-child .content-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 1000px) {
  main > section:first-child .content-wrapper:before { display: none; }
}
/* =====================
    GENERAL MEDIA Q
====================== */
@media (max-width: 600px) {
  body { font-size: 0.97rem; }
  h1, h2, h3 { text-align: left !important; }
  .cta-banner, .confirmation-section {
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .feature-grid .testimonial-card, .testimonial-slider {
    max-width: 98vw;
  }
  .mobile-menu {
    padding-top: 25px;
  }
  .policy-section, .text-section {
    padding: 12px 5vw;
  }
}
