/* === CSS RESET & MODERN 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,
main, 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;
}
body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  background-color: #FBF9F6;
  color: #2C3B27;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #27476E;
  text-decoration: underline;
  transition: color .16s;
}
a:hover, a:focus {
  color: #58A4B0;
  text-decoration: none;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}
button { cursor: pointer; }

/* === FONT FACE === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

:root {
  /* Brand Palette */
  --clr-primary: #27476E;
  --clr-secondary: #58A4B0;
  --clr-accent: #FFFFFF;
  --clr-bg: #FBF9F6;
  --clr-deepgreen: #48614A;
  --clr-leaf: #86B15E;
  --clr-earth: #C4A484;
  --clr-bark: #7C7156;
  --clr-stone: #ECE8DF;
  --clr-shadow: rgba(41,58,46,0.07);
  --radius-card: 16px;
  --radius-btn: 24px;
  --transition: all .17s cubic-bezier(.65,0,.25,1);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --header-height: 80px;
}

/* ===================== GENERAL LAYOUT ===================== */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background-color: var(--clr-bg);
  font-family: var(--font-body);
  color: #2C3B27;
  font-size: 1rem;
  font-weight: 400;
}
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
/* --- Section Spacing Rules --- */
.section,
.hero,
.features,
.services-overview,
.services-features,
.service-spectrum,
.about-intro,
.about-features,
.about-contact,
.resources-features,
.resources-contact,
.resources-hero,
.contact-hero,
.contact-details-section,
.contact-location,
.thank-you-hero,
.testimonials,
.testimonial-grid,
.testimonials-hero,
.testimonial-features,
.contact-call,
.legal-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
main > section:last-child {
  margin-bottom: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 960px) {
  .content-wrapper {
    flex-direction: row;
    gap: 48px;
    justify-content: space-between;
    align-items: stretch;
  }
  .content-wrapper > * {
    flex: 1 1 0%;
    min-width: 0;
  }
}

/* ===================== TYPOGRAPHY ===================== */
h1, .display {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--clr-primary);
  margin-bottom: 0.5em;
}
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.85rem;
  color: var(--clr-deepgreen);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
h3 {
  font-size: 1.35rem;
  font-family: var(--font-display);
  color: var(--clr-primary);
  font-weight: 700;
}
h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--clr-earth);
  font-weight: 700;
}
p, li, .company-info {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #2C3B27;
  font-weight: 400;
}
small {
  font-size: .85rem;
}
.subheadline {
  font-size: 1.16rem;
  color: var(--clr-bark);
  margin-bottom: 18px;
  line-height: 1.6;
}
strong {
  font-weight: 700;
  color: var(--clr-primary);
}

/* ===================== HEADER & NAVIGATION ===================== */
header {
  background: var(--clr-accent);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px var(--clr-shadow);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 24px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--clr-primary);
  font-size: 1rem;
  text-decoration: none;
  border-radius: 12px;
  padding: 6px 14px;
  transition: var(--transition);
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--clr-leaf);
  color: var(--clr-accent);
}
.btn-primary,
.btn-secondary {
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: var(--radius-btn);
  padding: 10px 30px;
  display: inline-block;
  border: none;
  margin-left: 16px;
  background: var(--clr-leaf);
  color: var(--clr-accent);
  font-size: 1.08rem;
  box-shadow: 0 2px 12px var(--clr-shadow);
  cursor: pointer;
  outline: none;
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--clr-deepgreen);
}
.btn-secondary {
  background: var(--clr-primary);
  color: var(--clr-accent);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--clr-secondary);
  color: var(--clr-primary);
}

/* --- Hamburger --- */
.mobile-menu-toggle {
  display: none;
  background: var(--clr-leaf);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  color: var(--clr-accent);
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 2px 8px var(--clr-shadow);
  transition: background .18s;
  z-index: 102;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--clr-deepgreen);
}

/* --- MOBILE NAV --- */
.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: var(--clr-bg);
  box-shadow: 0 4px 24px rgba(44,59,39,.16);
  z-index: 140;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,.03,.14,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 20px 32px 32px 28px;
  gap: 36px;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--clr-primary);
  padding: 10px;
  margin-bottom: 24px;
  border-radius: 50%;
  transition: background .2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--clr-stone);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--clr-primary);
  font-size: 1.22rem;
  padding: 12px 6px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .16s, color .16s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--clr-leaf);
  color: var(--clr-accent);
}

@media (max-width: 960px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .btn-primary {
    margin-left: auto;
  }
}
@media (min-width: 961px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===================== HERO SECTIONS ===================== */
.hero,
.thank-you-hero,
.resources-hero,
.testimonials-hero,
.contact-hero {
  background-color: var(--clr-leaf);
  border-radius: 0 0 36px 36px;
  box-shadow: 0 4px 32px var(--clr-shadow);
  color: var(--clr-accent);
  margin-bottom: 60px;
}
.hero h1,
.thank-you-hero h1,
.resources-hero h1,
.testimonials-hero h1,
.contact-hero h1 {
  color: var(--clr-accent);
  font-size: 2.3rem;
  letter-spacing: .01em;
}
.hero .subheadline,
.thank-you-hero .subheadline,
.resources-hero .subheadline,
.testimonials-hero .subheadline,
.contact-hero .subheadline {
  color: var(--clr-bg);
  font-size: 1.15rem;
}
.hero .btn-primary,
.thank-you-hero .btn-primary {
  background: var(--clr-accent);
  color: var(--clr-leaf);
  border: 2px solid var(--clr-leaf);
}
.hero .btn-primary:hover,
.thank-you-hero .btn-primary:hover {
  background: var(--clr-deepgreen);
  color: var(--clr-accent);
  border-color: var(--clr-deepgreen);
}

/* ==================== FLEX LAYOUTS & SPACING ==================== */
/* Provided spacing/layout patterns */
.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; }

/* --- Content Wrappers and Cards --- */
.card-container, .feature-list, .usp-list, .content-grid, .content-wrapper {
  gap: 24px;
  margin-top: 0;
}
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.feature-item {
  border-radius: var(--radius-card);
  box-shadow: 0 2px 12px var(--clr-shadow);
  background: var(--clr-stone);
  padding: 28px 22px 22px 22px;
  min-width: 220px;
  flex: 1 1 220px;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow .18s, transform .18s;
  border: 2px solid rgba(134,177,94,0.13);
  margin-bottom: 20px;
}
.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
}
.feature-item:hover {
  box-shadow: 0 4px 24px var(--clr-shadow);
  transform: translateY(-4px) scale(1.03);
}
.usp-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 2px;
  margin-bottom: 0;
}
.usp-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  background: none;
  color: #2C3B27;
  padding-left: 2px;
}
.usp-list img { margin-right: 10px; width: 24px; height: 24px; }

/* ===================== SERVICE CARDS ===================== */
.service-card {
  background: var(--clr-accent);
  border-radius: var(--radius-card);
  box-shadow: 0 1px 7px var(--clr-shadow);
  padding: 28px 22px;
  margin-bottom: 24px;
  border-left: 5px solid var(--clr-leaf);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
  flex: 1 1 240px;
  transition: box-shadow .17s, border-color .17s;
}
.service-card:hover {
  box-shadow: 0 8px 30px var(--clr-shadow);
  border-color: var(--clr-deepgreen);
}
.price {
  float: right;
  font-family: var(--font-body);
  color: var(--clr-bark);
  font-weight: 700;
  font-size: 1.05rem;
  background: var(--clr-stone);
  padding: 4px 10px;
  border-radius: 10px;
  margin-left: 8px;
  margin-bottom: 0;
}

/* ==================== TESTIMONIAL CARDS ==================== */
.testimonial-card {
  background: var(--clr-stone);
  border-radius: var(--radius-card);
  box-shadow: 0 1px 7px var(--clr-shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 24px 22px 24px;
  margin-bottom: 20px;
  border-left: 4px solid var(--clr-leaf);
  transition: box-shadow .16s, border-color .19s;
  color: #203016;
  min-width: 220px;
  flex: 1 1 290px;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 5px 24px var(--clr-shadow);
  border-color: var(--clr-primary);
}
.testimonial-card strong {
  color: var(--clr-bark);
  font-size: 1rem;
}
.star-rating {
  display: flex;
  gap: 3px;
  margin-top: 4px;
}
.star-rating img {
  width: 21px;
  height: 21px;
}
.average-rating {
  font-size: 1.08rem;
  color: var(--clr-primary);
  background: var(--clr-stone);
  border-radius: 14px;
  padding: 11px 18px;
  box-shadow: 0 2px 9px var(--clr-shadow);
  margin: 30px 0 0 0;
  text-align: left;
  display: inline-block;
}


/* ==================== FOOTER ==================== */
footer {
  background: var(--clr-deepgreen);
  color: var(--clr-accent);
  padding: 44px 0 22px 0;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -2px 28px var(--clr-shadow);
  margin-top: 70px;
}
footer .container {
  padding-top: 0;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-brand img {
  height: 48px;
  width: 48px;
}
.company-info {
  font-size: .98rem;
  color: var(--clr-accent);
  font-family: var(--font-body);
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 0;
}
.footer-menu a {
  color: var(--clr-accent);
  font-size: 1.02rem;
  font-family: var(--font-body);
  text-decoration: none;
  border-radius: 8px;
  padding: 4px 12px;
  transition: background .18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: var(--clr-leaf);
  color: var(--clr-primary);
}
.social-links {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 0;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-bark);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  transition: background .2s;
}
.social-links a:hover, .social-links a:focus {
  background: var(--clr-leaf);
}
.social-links img {
  width: 21px;
  height: 21px;
}

@media (min-width: 800px) {
  footer .content-wrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
    justify-content: space-between;
  }
}

/* ==================== CONTACT DETAILS ==================== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1.01rem;
  color: var(--clr-primary);
}
.contact-details img {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  vertical-align: middle;
}
.contact-details a {
  color: var(--clr-leaf);
  font-weight: 700;
  text-decoration: underline;
  transition: color .18s;
}
.contact-details a:hover, .contact-details a:focus {
  color: var(--clr-primary);
}
.contact-teaser {
  background: var(--clr-accent);
  border-radius: var(--radius-card);
  padding: 18px 20px;
  box-shadow: 0 2px 8px var(--clr-shadow);
  margin-bottom: 0;
  margin-top: 0;
}

/* ==================== LEGAL SECTIONS ==================== */
.legal-section h1 {
  color: var(--clr-primary);
  margin-bottom: 18px;
}
.legal-section .text-section h2 {
  color: var(--clr-leaf);
  font-size: 1.23rem;
  margin-top: 24px;
}
.legal-section .text-section ul, .legal-section .text-section ol {
  margin-left: 18px;
  margin-top: 8px;
  margin-bottom: 12px;
  list-style: disc;
  color: var(--clr-bark);
}
.legal-section .text-section li {
  margin-bottom: 5px;
}
.legal-section .text-section a {
  color: var(--clr-leaf);
}

/* ========= RESOURCE ICONS ========= */
.feature-icons {
  display: flex;
  gap: 24px;
  margin-top: 18px;
}
.feature-icons img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--clr-stone);
  box-shadow: 0 1px 10px var(--clr-shadow);
  padding: 6px;
  transition: background .16s;
}
.feature-icons img:hover {
  background: var(--clr-leaf);
}

/* ==================== TEXT/IMAGE SECTIONS ==================== */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section,
  .content-wrapper,
  .feature-list,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}
@media (max-width: 480px) {
  html { font-size: 15px; }
  .container { padding: 0 12px; }
  header .container { gap: 6px; }
  .btn-primary, .btn-secondary { padding: 9px 16px; }
}

/* ==================== CARDS ==================== */
.card {
  border-radius: var(--radius-card);
  background: var(--clr-stone);
  box-shadow: 0 1px 7px var(--clr-shadow);
  margin-bottom: 20px;
  padding: 26px 18px;
  transition: box-shadow .17s;
}
.card:hover {
  box-shadow: 0 3px 17px var(--clr-shadow);
}

/* ==== Animations & Microinteractions ==== */
.btn-primary, .btn-secondary, .footer-menu a, .main-nav a, .feature-item, .service-card, .testimonial-card, .mobile-menu, .mobile-menu-toggle {
  transition: var(--transition);
}

/* === Visual Hierarchy & Headings on Spacing === */
h1, h2, h3, h4 {
  margin-bottom: 10px;
}
h2 {
  margin-bottom: 22px;
}
.content-wrapper > *:not(:last-child) {
  margin-bottom: 0 !important;
}

/* ========= MODAL/COOKIE CONSENT BANNER =========== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 150;
  background: var(--clr-stone);
  box-shadow: 0 -2px 28px var(--clr-shadow);
  padding: 26px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  transition: transform .28s cubic-bezier(.6,-0.02,.4,1.09), opacity .19s;
  opacity: 1;
  transform: translateY(0);
  font-size: 1rem;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 2px;
}
.cookie-consent-banner button {
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: var(--radius-btn);
  padding: 8px 22px;
  border: none;
  font-size: 1rem;
  background: var(--clr-leaf);
  color: var(--clr-accent);
  box-shadow: 0 1px 7px var(--clr-shadow);
  transition: var(--transition);
}
.cookie-consent-banner button.accept {
  background: var(--clr-deepgreen);
}
.cookie-consent-banner button.reject {
  background: var(--clr-bark);
}
.cookie-consent-banner button.settings {
  background: var(--clr-secondary);
  color: var(--clr-primary);
}
.cookie-consent-banner button:focus,
.cookie-consent-banner button:hover {
  filter: brightness(0.98) contrast(1.18);
  background: var(--clr-primary);
  color: var(--clr-accent);
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 6vh;
  transform: translateX(-50%) scale(1);
  z-index: 160;
  background: var(--clr-accent);
  box-shadow: 0 4px 24px var(--clr-shadow);
  padding: 34px 24px 28px 24px;
  border-radius: 18px;
  max-width: 400px;
  min-width: 260px;
  transition: transform .18s, opacity .18s;
  opacity: 1;
  pointer-events: all;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal.hide {
  opacity: 0;
  transform: translateX(-50%) scale(0.87);
  pointer-events: none;
}
.cookie-modal h2 {
  font-size: 1.13rem;
  margin-bottom: 14px;
  color: var(--clr-leaf);
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 11px;
  right: 17px;
  background: none;
  border: none;
  font-size: 1.15rem;
  color: var(--clr-bark);
  cursor: pointer;
  border-radius: 50%;
  padding: 8px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0 7px 0;
  font-size: 1rem;
}
.cookie-modal .toggle-switch {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.cookie-modal .toggle-switch input[type='checkbox'] {
  width: 0; height: 0; opacity: 0;
}
.cookie-modal .switch {
  display: inline-block;
  width: 36px; height: 22px;
  background: var(--clr-stone);
  border-radius: 11px;
  position: relative;
  transition: background .18s;
  margin-left: 6px;
}
.cookie-modal .switch:before {
  content: '';
  display: block;
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  background: var(--clr-leaf);
  border-radius: 50%;
  transition: left .18s;
}
.cookie-modal .toggle-switch input:checked + .switch {
  background: var(--clr-leaf);
}
.cookie-modal .toggle-switch input:checked + .switch:before {
  left: 16px;
  background: var(--clr-secondary);
}
.cookie-modal .cookie-category.essential {
  opacity: 0.68;
  pointer-events: none;
}
.cookie-modal .cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 8px;
}
.cookie-modal button {
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: var(--radius-btn);
  padding: 8px 22px;
  border: none;
  font-size: 1rem;
  background: var(--clr-leaf);
  color: var(--clr-accent);
  box-shadow: 0 1px 7px var(--clr-shadow);
  transition: var(--transition);
}
.cookie-modal button.cancel {
  background: var(--clr-bark);
}
.cookie-modal button.save {
  background: var(--clr-deepgreen);
}
.cookie-modal button:hover,
.cookie-modal button:focus {
  background: var(--clr-primary);
  color: var(--clr-accent);
}

@media (max-width: 620px) {
  .cookie-modal { min-width: 0; max-width: 96vw; padding: 22px 8px; }
}

/* Hide visible scrollbars only for .mobile-menu and .cookie-modal */
.mobile-menu::-webkit-scrollbar, .cookie-modal::-webkit-scrollbar {
  width: 8px; background: #f3f3f3;
}
.mobile-menu::-webkit-scrollbar-thumb, .cookie-modal::-webkit-scrollbar-thumb {
  background: var(--clr-stone);
  border-radius: 4px;
}

/* ==================== RESPONSIVE TYPOGRAPHY ==================== */
@media (max-width: 960px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.36rem; }
}
@media (max-width: 720px) {
  .hero, .thank-you-hero, .resources-hero, .testimonials-hero, .contact-hero {
    padding: 24px 10px;
  }
  section, .section {
    padding: 30px 8px;
  }
  footer {
    padding-top: 32px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.1rem; }
  .container { padding: 0 4vw; }
  .btn-primary, .btn-secondary {
    font-size: .97rem;
    padding: 7px 14px;
  }
}

/* ==================== MISC: ELEMENTS, SHAPES, DECOR ==================== */

/* Subtle Natural Shapes on Cards/Sections */
.card, .feature-item, .service-card, .testimonial-card {
  border-radius: 17px 25px 19px 16px / 19px 15px 25px 17px; /* organic border radius */
  border-bottom: 7px solid rgba(134, 177, 94, 0.07);
}

.section {
  background: var(--clr-stone);
  border-radius: 38px 30px 38px 10px / 18px 30px 38px 18px;
  box-shadow: 0 1px 9px var(--clr-shadow);
}

/* Organic subtle shadow effect */
.card, .service-card, .testimonial-card, .feature-item {
  box-shadow: 0 1.5px 17px var(--clr-shadow);
}

/* =========== ACCESSIBILITY & FOCUS =========== */
:focus {
  outline: 2px solid var(--clr-leaf);
  outline-offset: 2px;
}

/* =========== A11Y: Readable testimonials =========== */
.testimonial-card {
  color: #182110;
  background: #F5F8F4;
}
.testimonial-card strong {
  color: #465D34;
}

/* =========== CUSTOM UTILITIES =========== */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

/* =========== END =========== */
