/* ===== 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;
}
html {
  line-height: 1.5;
  font-size: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  background: #F6F5F3;
  color: #15382C;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  word-break: break-word;
}
article, aside, footer, header, nav, section, main {
  display: block;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  color: #154155;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #9A6B1B;
  outline: none;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.5;
}
button:focus, input:focus, textarea:focus, select:focus {
  outline: 2px solid #9A6B1B;
  outline-offset: 2px;
}

/* ========================
   FONT STACKS
=========================*/
h1, h2, h3, h4, h5, h6, .cta-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #154155;
  letter-spacing: 0.02em;
}

/* ========================
   BRAND COLOR VARIABLES
=========================*/
:root {
  --primary: #154155;
  --secondary: #E6E2DD;
  --accent: #9A6B1B;
  --nature-green: #4F8541;
  --earth-brown: #C59247;
  --stone: #E6E2DD;
  --background: #F6F5F3;
  --text-main: #15382C;
  --white: #FFF;
}

/* ========================
  LAYOUT HELPERS
=========================*/
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(41,53,40,0.07);
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 2px solid var(--stone);
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 22px 0 rgba(128,110,77,0.12);
  transform: translateY(-2px) scale(1.01);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--stone);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(110,104,90,0.09);
  margin-bottom: 20px;
  position: relative;
  border-left: 6px solid var(--nature-green);
  color: var(--primary);
}
.testimonial-card strong, .testimonial-name {
  color: var(--nature-green);
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--secondary);
  border-radius: 14px;
  padding: 18px 16px;
  margin-bottom: 20px;
}

/* ========================
   HEADER & NAVIGATION
=========================*/
header {
  width: 100%;
  background: var(--white);
  padding: 14px 0;
  box-shadow: 0 3px 16px 0 rgba(20,47,33,0.04);
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index: 10;
  position: relative;
}
header > a {
  margin-left: 16px;
  margin-right: 28px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
header nav a {
  color: var(--primary);
  font-weight: 600;
  font-size: 16px;
  padding: 6px 8px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: var(--secondary);
  color: var(--accent);
}
.cta-btn {
  margin-left: auto;
  background: var(--nature-green);
  color: var(--white);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 22px;
  border: none;
  font-size: 18px;
  box-shadow: 0 2px 8px 0 rgba(41,53,40,0.08);
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.17s;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 4px 22px 0 rgba(154,107,27,0.09);
  transform: translateY(-2px) scale(1.025);
}

/* ===============
   MOBILE MENU
================*/
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: background 0.2s;
  z-index: 110;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--stone);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(62,79,67,0.97);
  z-index: 200;
  transform: translateX(-100vw);
  transition: transform 0.40s cubic-bezier(.86,0,.07,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.1rem;
  margin: 20px 22px 0 0;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.5em;
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(255,255,255,0.10);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 60px 36px 0 36px;
  gap: 18px;
  width: calc(100% - 72px);
}
.mobile-nav a {
  color: var(--white);
  font-size: 19px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 14px 0;
  width: 100%;
  transition: color 0.20s, background 0.15s;
  border-radius: 8px;
  letter-spacing: 0.01em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--nature-green);
  background: rgba(255,255,255,0.07);
}
@media (max-width: 992px) {
  header nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
}
@media (min-width: 993px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
}

/* ========================
   FOOTER
=========================*/
footer {
  background: var(--primary);
  color: var(--secondary);
  padding: 40px 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 12px;
}
footer nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.015em;
}
footer nav a:hover, footer nav a:focus {
  text-decoration: underline;
}
footer p {
  font-size: 15px;
  color: #EDEAE5;
  text-align: center;
}

/* ========================
   FORMS, TABLES, BUTTONS
=========================*/
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  background: var(--white);
  border-radius: 13px;
  box-shadow: 0 1px 6px 0 rgba(98,93,86,0.06);
}
th, td {
  padding: 16px 12px;
  text-align: left;
  border-bottom: 1.5px solid var(--stone);
}
th {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
  background: var(--stone);
  font-size: 18px;
}
td {
  font-size: 16px;
  color: var(--text-main);
}
table tr:last-child td {
  border-bottom: none;
}

/* ========================
   HERO SECTIONS
=========================*/
.hero, .about-hero, .services-hero, .pricing-hero, .contact-hero, .testimonial-hero, .faq-hero, .legal-hero, .thank-you-hero {
  width: 100%;
  background: linear-gradient(90deg, #E6E2DD 60%, #F6F5F3);
  padding: 60px 0 48px;
  border-bottom-left-radius: 100px 30px;
  border-bottom-right-radius: 60px 18px;
  box-shadow: 0 4px 38px 0 rgba(136,120,82,0.07);
}
.hero h1, .about-hero h1, .services-hero h1, .pricing-hero h1, .contact-hero h1, .testimonial-hero h1, .faq-hero h1, .legal-hero h1, .thank-you-hero h1 {
  font-size: 2.5rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 8px;
}
.hero p, .about-hero p, .services-hero p, .pricing-hero p, .contact-hero p, .testimonial-hero p, .faq-hero p, .legal-hero p, .thank-you-hero p {
  font-size: 1.18rem;
  color: #435644;
  margin-bottom: 12px;
  max-width: 740px;
}

/* =============
   CARDS & LISTS
================*/
.service-list, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-card {
  background: var(--white);
  border-radius: 18px 40px 18px 40px;
  min-width: 245px;
  flex: 1 1 225px;
  box-shadow: 0 3px 17px 0 rgba(89,104,72,0.09);
  padding: 28px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  border: 2px solid var(--stone);
  transition: box-shadow 0.22s, border 0.22s, transform 0.18s;
  margin-bottom: 20px;
}
.service-card img {
  width: 46px;
  height: 46px;
  margin-bottom: 10px;
}
.service-card h3 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--nature-green);
}
.service-card p {
  font-size: 1rem;
  color: #485C48;
}
.service-card .price {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.03em;
  font-size: 19px;
  margin-top: 6px;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 7px 26px 0 rgba(69,90,66,0.13);
  border: 2.2px solid var(--nature-green);
  transform: translateY(-2px) scale(1.025);
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  background: var(--secondary);
  padding: 20px 18px;
  border-radius: 14px 40px 14px 20px;
  box-shadow: 0 3px 13px 0 rgba(159,138,96,0.09);
  border-left: 5px solid var(--accent);
}
.service-item h3 {
  font-size: 20px;
  color: var(--nature-green);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.service-item p {
  font-size: 16px;
  color: #415140;
}
.service-item .price {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--accent);
  font-size: 17px;
  margin-top: 4px;
  font-weight: 600;
}

/* =====================
   CTA BANNERS & SECTIONS
========================*/
.cta-banner, .cta-banner-alt, .flat-cta, .review-cta, .contact-cta, .faq-cta, .thank-you-hero, .next-steps {
  width: 100%;
  background: var(--nature-green);
  color: var(--white);
  border-radius: 36px 12px 36px 12px;
  padding: 50px 0 40px;
  margin-top: 40px;
  margin-bottom: 60px;
  box-shadow: 0 4px 38px 0 rgba(100,95,80,0.09);
}
.cta-banner h2, .flat-cta p, .review-cta h2, .faq-cta p, .contact-cta p {
  color: var(--white);
}
.cta-banner .cta-btn, .flat-cta .cta-btn, .review-cta .cta-btn, .faq-cta .cta-btn, .contact-cta .cta-btn {
  background: var(--accent);
  color: var(--white);
}
.cta-banner .cta-btn:hover, .flat-cta .cta-btn:hover, .review-cta .cta-btn:hover, .faq-cta .cta-btn:hover, .contact-cta .cta-btn:hover {
  background: var(--white);
  color: var(--nature-green);
}

/* =====================
   TESTIMONIALS
======================*/
.testimonial-slider, .testimonials-grid {
  margin-bottom: 60px;
}
.testimonial-slider h2, .testimonials-grid h2 {
  margin-bottom: 16px;
  color: var(--nature-green);
  font-size: 2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.testimonial-card {
  background: var(--secondary);
  color: #15382C;
  max-width: 620px;
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(130,120,98,0.08);
  border-left: 6px solid var(--nature-green);
  margin-bottom: 20px;
  padding: 20px 32px;
  font-size: 1rem;
  transition: box-shadow 0.18s;
}
.testimonial-card span, .testimonial-card strong, .testimonial-card .testimonial-name {
  color: var(--accent);
  font-size: 1.1em;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 5px 20px 0 rgba(99,104,87,0.12);
  background: #f1ede9;
}
.testimonial-card span {
  margin-top: 8px;
}

/* =====================
   FAQ ACCORDIONS
======================*/
.faq-item {
  background: var(--secondary);
  border-radius: 12px 28px 12px 20px;
  margin-bottom: 18px;
  box-shadow: 0 1.5px 10px 0 rgba(80,92,65,0.07);
  padding: 19px 19px 13px 22px;
  border-left: 4px solid var(--nature-green);
  transition: box-shadow 0.18s;
}
.faq-item h3 {
  color: var(--nature-green);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 7px;
}
.faq-item p {
  font-size: 16px;
  color: #455144;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 4px 17px 0 rgba(96,97,83,0.10);
  background: #efede8;
}

/* ====================
   LEGAL TEXT/CONTENT
======================*/
.privacy-policy-content, .rgpd-policy-content, .terms-content, .cookie-policy-content {
  background: var(--white);
  border-radius: 22px 8px 38px 18px;
  box-shadow: 0 1.5px 8px 0 rgba(70,60,31,0.06);
  margin-bottom: 60px;
  padding: 40px 24px;
  font-size: 16px;
}
.privacy-policy-content h2, .rgpd-policy-content h2, .terms-content h2, .cookie-policy-content h2 {
  font-size: 1.8rem;
  color: var(--nature-green);
  margin-bottom: 24px;
}
.privacy-policy-content h3, .rgpd-policy-content h3, .terms-content h3, .cookie-policy-content h3 {
  font-size: 1.2rem;
  margin-top: 22px;
  margin-bottom: 8px;
  color: var(--accent);
}

/* ====================
   LISTS
=======================*/
ul li, ol li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 17px;
  font-size: 16px;
  color: #436144;
}
ul li::before, ol li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 0.7em;
  width: 9px; height: 9px;
  border-radius: 100%;
  background: var(--nature-green);
}
ol {
  counter-reset: item;
}
ol li {
  counter-increment: item;
  padding-left: 36px;
  font-weight: 500;
}
ol li::before {
  content: counter(item) '.';
  display: inline;
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 16px;
  background: none;
  color: var(--accent);
  font-size: 15px;
  border-radius: 0;
}

/* ====================
   TYPOGRAPHY SCALE
=======================*/
h1 {
  font-size: 2.6rem;
  font-weight: 700;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 7px;
  font-weight: 500;
}
p, li, td, th, span, label {
  font-size: 16px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
small {
  font-size: 14px;
}

/* =====================
   SPACING & WHITESPACE
=======================*/
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* =====================
   RESPONSIVE DESIGN
======================*/
@media (max-width: 1200px) {
  .container {
    max-width: 940px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 770px;
  }
  .content-grid {
    flex-direction: column;
    gap: 30px;
  }
  .service-list {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .card-container {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .content-wrapper {
    gap: 18px;
  }
  section, .section {
    margin-bottom: 34px;
    padding: 28px 6px;
  }
  .service-card, .card, .testimonial-card, .service-item, .faq-item {
    min-width: unset;
    padding: 18px 12px;
    font-size: 97%;
  }
  .testimonial-card {
    padding: 19px 15px;
  }
  .hero, .about-hero, .services-hero, .pricing-hero, .contact-hero, .testimonial-hero, .faq-hero, .legal-hero, .thank-you-hero {
    padding: 36px 0 22px;
    border-radius: 0 0 30px 16px;
  }
  .cta-banner, .flat-cta, .review-cta, .faq-cta, .contact-cta {
    border-radius: 18px 8px 22px 9px;
    padding: 30px 0 25px 0;
    margin: 21px 0 32px 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  header {
    flex-direction: column;
    gap: 10px;
    padding: 8px 0;
  }
  header > a {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.85rem;
  }
  h2 {
    font-size: 1.45rem;
  }
  h3 {
    font-size: 1.04rem;
  }
  .container {
    padding: 0 7px;
  }
}

/* =========================
   COOKIE CONSENT BANNER
==========================*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 500;
  background: var(--stone);
  color: var(--primary);
  padding: 24px 18px;
  box-shadow: 0 -3px 18px 0 rgba(53,39,27,0.11);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  min-height: 68px;
  font-size: 16px;
  border-top-left-radius: 16px;
  border-top-right-radius: 44px;
  transition: transform 0.27s cubic-bezier(.74,0,.23,1), opacity 0.2s;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 2 1 280px;
  color: var(--primary);
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 18px;
  border-radius: 21px;
  border: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.14s;
  cursor: pointer;
  margin: 0 3px;
}
.cookie-banner .accept {
  background: var(--nature-green);
  color: var(--white);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--accent);
  color: var(--primary);
}
.cookie-banner .reject {
  background: var(--accent);
  color: var(--white);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--primary);
  color: var(--white);
}
.cookie-banner .settings {
  background: var(--stone);
  color: var(--primary);
  border: 1px solid var(--nature-green);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #e3eddc;
  color: var(--nature-green);
}
@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 6px;
    font-size: 14px;
    min-height: 0;
  }
  .cookie-banner .cookie-actions {
    gap: 9px;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
  }
}

/* =========================
   COOKIE SETTINGS MODAL
==========================*/
.cookie-modal {
  position: fixed;
  z-index: 800;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(49, 54, 44, 0.42);
  display: flex; /* flexbox, never grid */
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.26s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-dialog {
  background: var(--secondary);
  border-radius: 17px;
  box-shadow: 0 6px 29px 0 rgba(60,54,35,0.18);
  max-width: 344px;
  width: 92%;
  padding: 36px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 2px solid var(--nature-green);
  color: var(--primary);
  position: relative;
}
.cookie-modal-dialog h2 {
  font-size: 1.3rem;
  color: var(--nature-green);
  font-weight: 700;
  margin-bottom: 14px;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f6fbe6;
  border-radius: 8px;
  padding: 12px 10px;
  font-size: 16px;
  color: var(--text-main);
}
.cookie-category .cookie-toggle {
  accent-color: var(--nature-green);
  width: 22px;
  height: 22px;
  cursor: pointer;
}
.cookie-category .locked {
  color: var(--accent);
  margin-left: 10px;
  font-size: 1.05rem;
  font-weight: 600;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 8px;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 17px;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  background: var(--nature-green);
  color: var(--white);
  transition: background 0.17s, color 0.17s;
}
.cookie-modal-actions button.secondary {
  background: var(--accent);
  color: var(--white);
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: var(--accent);
  color: var(--primary);
}
.cookie-modal-actions button.secondary:hover, .cookie-modal-actions button.secondary:focus {
  background: var(--white);
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px; right: 15px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--nature-green);
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: var(--accent);
}

/* ========================
   ORGANIC SHAPES
=========================*/
.hero, .about-hero, .services-hero, .pricing-hero, .testimonial-hero, .faq-hero, .legal-hero {
  border-bottom-left-radius: 100px 34px;
  border-bottom-right-radius: 48px 22px;
  box-shadow: 0 11px 42px 0 rgba(134,120,87,0.09);
  filter: drop-shadow(0px 0.7px 24px rgba(170,130,50,0.03));
}
.cta-banner, .flat-cta, .review-cta, .faq-cta, .contact-cta {
  border-radius: 38px 18px 44px 12px;
}
.service-card, .card, .testimonial-card, .feature-item, .faq-item {
  border-radius: 18px 38px 18px 14px;
}

/* =====================
   SHADOWS & EFFECTS
======================*/
.card, .service-card, .testimonial-card, .faq-item, .feature-item {
  box-shadow: 0 1.5px 9px 0 rgba(101,90,61,0.07);
}
.card:hover, .service-card:hover, .testimonial-card:hover, .faq-item:hover, .feature-item:hover {
  box-shadow: 0 4px 23px 0 rgba(102,90,44,0.13);
}

/* =====================
   ANIMATIONS
======================*/
@media (prefers-reduced-motion: no-preference) {
  .cta-btn, .cookie-banner button, .cookie-modal-actions button {
    transition: background 0.2s, color 0.2s, box-shadow 0.13s, transform 0.15s;
  }
  .service-card, .testimonial-card, .faq-item, .card {
    transition: box-shadow 0.17s, border 0.18s, transform 0.15s;
  }
  .mobile-menu, .cookie-banner, .cookie-modal {
    transition: transform 0.37s cubic-bezier(.74,0,.23,1), opacity 0.21s;
  }
}

/* =====================
   MISC
======================*/
::-webkit-scrollbar {
  width: 7px;
  background: var(--stone);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: var(--nature-green);
  border-radius: 7px;
}

/* END CSS */
