/* ==== CSS RESET AND 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, 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;
}
footer p {
  color: white;
}
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #F7F5ED;
  color: #234567;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #234567;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #409C5D;
  outline: none;
}
ul, ol {
  margin-left: 20px;
}

/* ==== BRAND COLORS & ORGANIC TONE VARIABLES ==== */
:root {
  --color-primary: #234567;
  --color-secondary: #F0F2F5;
  --color-accent: #D6AC5C;
  --color-green: #409C5D;
  --color-earth: #BB9E73;
  --color-bg: #F7F5ED;
  --color-text: #234567;
  --color-muted: #8D7551;
  --color-card-bg: #fffaf3;
  --color-card-glow: #E8E0D6;
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; font-weight: 600; }
h4 { font-size: 1.15rem; margin-bottom: 8px; }
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.13rem; }
}
p, li, details summary, details p {
  font-size: 1rem;
  color: var(--color-text);
}
strong, b { font-weight: 700; }
em, i { color: var(--color-green); }

/* ==== LAYOUT CONTAINERS ==== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 100%;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section, section {
    padding: 32px 8px;
  }
  .container {
    padding: 0 8px;
  }
}

/* ==== HEADER STYLES ==== */
header {
  background: #fff;
  box-shadow: 0 3px 8px 0 rgba(34, 54, 103, 0.04);
  border-bottom: 1.5px solid var(--color-green);
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 22px;
}
.logo { display: flex; align-items: center; height: 48px; }
.logo img { height: 42px; width: auto; }

.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1rem;
  padding: 8px 2px;
  border-radius: 3px;
  transition: color 0.18s, background 0.18s;
  position: relative;
}
.main-nav a.cta-btn {
  background: var(--color-green);
  color: #fff;
  padding: 11px 24px;
  border-radius: 32px;
  font-weight: 600;
  margin-left: 10px;
  box-shadow: 0 3px 10px 0 rgba(64,156,93,0.13);
  transition: background 0.19s, box-shadow 0.16s, color 0.17s;
}
.main-nav a.cta-btn:hover,
.main-nav a.cta-btn:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 7px 18px 0 rgba(214,172,92,0.12);
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-card-glow);
  color: var(--color-green);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  font-size: 2.1rem;
  background: transparent;
  color: var(--color-green);
  border: none;
  cursor: pointer;
  display: none;
  z-index: 102;
  margin-left: 18px;
}
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 40px 0 rgba(34,54,103,0.18);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.51,.05,.3,1.16);
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: none;
  border: none;
  color: var(--color-green);
  align-self: flex-end;
  margin: 18px 32px 10px 0;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover {
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-left: 32px;
}
.mobile-nav a {
  font-size: 1.2rem;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  color: var(--color-primary);
  padding: 15px 0;
  width: 100%;
  border-radius: 10px;
  transition: background 0.18s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-card-glow);
  color: var(--color-green);
}
@media (max-width: 768px) {
  .header .container { padding: 0 4px; }
  .mobile-nav { margin-left: 18px; }
}

/* ==== HERO SECTION ==== */
.hero {
  background: linear-gradient(122deg, var(--color-bg) 65%, #E6F4E1 100%);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 0 0 28px 28px / 0 0 26px 26px;
  box-shadow: 0 5px 43px 5px rgba(64,156,93,0.08);
}
.hero .container {
  flex-direction: row;
  align-items: flex-start;
}
.hero .content-wrapper {
  max-width: 620px;
  gap: 32px;
}
.hero h1 {
  color: var(--color-green);
  font-size: 2.35rem;
  font-family: 'Montserrat', 'Roboto', sans-serif;
}
.hero p {
  font-size: 1.15rem;
  color: var(--color-text);
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    border-radius: 0 0 18px 18px / 0 0 12px 12px;
    padding: 30px 0 10px 0;
  }
  .hero h1 { font-size: 1.5rem; }
}

/* ==== CTA BUTTON ==== */
.cta-btn {
  display: inline-block;
  background: var(--color-green);
  color: #fff;
  font-size: 1.08rem;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 30px / 30px;
  box-shadow: 0 4px 18px 0 rgba(64,156,93,0.19);
  border: none;
  cursor: pointer;
  transition: background 0.17s, box-shadow 0.19s, color 0.17s, transform 0.18s;
  margin-top: 10px;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 6px 28px 0 rgba(214,172,92,0.26);
  transform: translateY(-2px) scale(1.017);
  outline: none;
}

/* ==== FEATURES SECTION ==== */
.features {
  background: var(--color-card-bg);
  border-radius: 28px;
  box-shadow: 0 6px 28px 0 rgba(34,54,103,0.05);
}
.features-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 26px;
  margin-top: 18px;
}
.feature-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 24px 40px 22px 32px / 19px 26px 24px 15px;
  box-shadow: 0 6px 34px 0 rgba(68,107,101,0.09);
  padding: 28px 22px 22px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.17s, transform 0.18s;
}
.feature-card img {
  height: 48px;
  width: auto;
  margin-bottom: 10px;
}
.feature-card h3 {
  color: var(--color-green);
}
.feature-card:hover, .feature-card:focus {
  box-shadow: 0 11px 49px 0 rgba(64,156,93,0.11);
  transform: translateY(-4px) scale(1.03);
}
@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-card { border-radius: 18px 22px 15px 18px; }
}
.feature-benefits {
  list-style: disc inside;
  margin: 10px 0 0 15px;
  color: var(--color-green);
  font-weight: 500;
}
.feature-benefits li {
  margin-bottom: 8px;
  font-size: 1.06rem;
}

/* ==== CARDS LAYOUTS ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 23px;
  box-shadow: 0 3px 24px 0 rgba(34,54,103,0.05);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 20px;
  transition: box-shadow 0.17s, transform 0.14s;
}
.card:hover, .card:focus {
  box-shadow: 0 11px 42px 0 rgba(64,156,93,0.10);
  transform: translateY(-2px) scale(1.01);
}

/* ==== SECTION AND FLEX LAYOUT STYLES ==== */
.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: 18px; align-items: flex-start; }
  .content-grid { flex-direction: column; }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== ABOUT CUSTOM SECTIONS ==== */
.about-preview,
.about,
.about-history,
.usp {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 3px 24px 0 rgba(155,126,78,0.07);
}

/* ==== TABLE STYLES ==== */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 22px 0 rgba(68,107,101,0.08);
  overflow: hidden;
  margin-bottom: 32px;
}
.pricing-table th, .pricing-table td {
  padding: 18px 20px;
  font-size: 1.13rem;
  color: var(--color-text);
  border-bottom: 2px solid var(--color-earth);
}
.pricing-table th {
  background: var(--color-green);
  color: #fff;
  font-weight: 700;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 600px) {
  .pricing-table th, .pricing-table td { padding: 12px 6px; font-size: 0.97rem; }
}
.note {
  color: var(--color-muted);
  font-size: 0.98rem;
  margin-top: 10px;
  font-style: italic;
}

/* ==== SERVICE CARDS ===== */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.service-card {
  flex: 1 1 280px;
  background: var(--color-card-bg);
  border-radius: 19px 23px 24px 15px;
  box-shadow: 0 4px 24px 0 rgba(155,126,78,0.06);
  padding: 24px 18px 19px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 13px;
  transition: box-shadow 0.17s, transform 0.15s;
}
.service-card:hover, .service-card:focus {
  box-shadow: 0 12px 40px 0 rgba(64,156,93,0.16);
  transform: translateY(-3px);
}
.service-card h2 {
  color: var(--color-green);
  font-size: 1.25rem;
}
.service-price {
  background: var(--color-earth);
  color: #fff;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 20px / 14px;
  margin-top: 14px;
  font-size: 1.05rem;
  align-self: flex-end;
  letter-spacing: 0.01em;
}
@media (max-width: 768px) {
  .services-list { flex-direction: column; gap: 16px; }
  .service-card { border-radius: 14px 18px 10px 13px; }
}

/* ==== ORDERED AND UNORDERED LISTS ==== */
ul, ol {
  margin-bottom: 16px;
  margin-top: 5px;
  padding-left: 28px;
}
ul li, ol li {
  padding-left: 0;
  margin-bottom: 7px;
}

/* ==== OL Section Like Process ==== */
.service-process ol {
  padding-left: 30px;
  list-style-type: decimal-leading-zero;
  color: var(--color-green);
}
.service-process li {
  color: var(--color-green);
  font-weight: 600;
  font-size: 1.07rem;
}

/* ==== DETAILS FAQ ==== */
details {
  background: #fffaf3;
  border-radius: 16px;
  margin-bottom: 18px;
  box-shadow: 0 4px 18px 0 rgba(34,54,103,0.03);
  padding: 18px;
  transition: box-shadow 0.13s, border 0.16s;
}
details[open] {
  box-shadow: 0 8px 26px 0 rgba(64,156,93,0.08);
  border: 1.5px solid var(--color-green);
}
details summary {
  cursor: pointer;
  font-weight: bold;
  color: var(--color-green);
  font-size: 1.08rem;
  margin-bottom: 13px;
  outline: none;
}
details p {
  margin-top: 4px;
  color: var(--color-text);
}

/* ==== TESTIMONIAL / REVIEW CARD LAYOUT (EXTENSIBLE) ==== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fafeeb;
  border-radius: 22px;
  box-shadow: 0 4px 32px 0 rgba(34,54,103,0.06);
  margin-bottom: 24px;
  color: var(--color-text);
}
.testimonial-card .author {
  color: var(--color-green);
  font-weight: bold;
  font-family: 'Montserrat', 'Roboto', sans-serif;
}

/* ==== CALL TO ACTION SECTION ==== */
.cta {
  background: linear-gradient(109deg, #e6f4e1 80%, #F7F5ED 100%);
  border-radius: 24px;
  padding: 30px 15px;
  display: flex;
  align-items: center;
  margin-bottom: 55px;
  box-shadow: 0 4px 28px 0 rgba(64,156,93,0.09);
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.cta p {
  font-size: 1.12rem;
  color: var(--color-text);
}
@media (max-width: 768px) {
  .cta { border-radius: 13px; }
  .cta .content-wrapper { gap: 13px; }
}

/* ==== FOOTER ==== */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 46px 0 20px 0;
  border-radius: 30px 30px 0 0 / 18px 18px 0 0;
  box-shadow: 0 -4px 22px 0 rgba(34,54,103,0.07);
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.footer-brand img {
  height: 44px;
  margin-bottom: 2px;
}
.footer-brand p {
  color: #f8f8f8;
  font-size: 0.98rem;
  max-width: 250px;
}
.footer-main-nav,
.footer-legal-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-main-nav a,
.footer-legal-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1.05rem;
  opacity: 0.85;
  padding: 3px 0 3px 0;
  border-radius: 5px;
  transition: background 0.17s, color 0.16s;
}
.footer-main-nav a:hover,
.footer-legal-nav a:hover,
.footer-main-nav a:focus, .footer-legal-nav a:focus {
  background: var(--color-green);
  color: var(--color-accent);
  outline: none;
}
.footer-contacts {
  flex: 1 1 220px;
  color: #fff;
  font-size: 0.97rem;
  line-height: 1.6;
  margin-top: 10px;
  opacity: 0.94;
}
.social-links {
  margin-top: 18px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
  .footer-main-nav,
  .footer-legal-nav { flex-direction: row; gap: 18px; flex-wrap: wrap; }
}
@media (max-width: 550px) {
  footer { padding-top: 25px; border-radius: 15px 15px 0 0; }
  .footer-brand img { height: 32px; }
}

/* ==== FORMS (if any in the future) ==== */
input, textarea, select, button {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  border: 1.3px solid var(--color-muted);
  padding: 9px 13px;
  margin-bottom: 10px;
  transition: border 0.15s, box-shadow 0.15s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-green);
  box-shadow: 0 0 3px 0 var(--color-green);
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: var(--color-text);
  box-shadow: 0 -3px 26px 0 rgba(34,54,103,0.12);
  border-top: 2px solid var(--color-accent);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 30px 18px 22px;
  z-index: 14000;
  font-size: 1rem;
  animation: cookie-slide-in 0.42s cubic-bezier(.7,1.33,.3,1) 1;
  min-height: 64px;
}
@keyframes cookie-slide-in {
  0% { transform: translateY(80px); opacity: 0; }
  80% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-close {
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1.7rem;
  margin-left: 10px;
  cursor: pointer;
}
.cookie-banner-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.cookie-banner-btn {
  background: var(--color-green);
  color: #fff;
  border: none;
  border-radius: 28px;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1rem;
  padding: 10px 24px;
  cursor: pointer;
  margin-right: 0;
  transition: background 0.15s, color 0.15s, box-shadow 0.16s;
}
.cookie-banner-btn.reject {
  background: var(--color-earth);
  color: #fff;
  font-weight: 600;
}
.cookie-banner-btn.settings {
  background: var(--color-accent);
  color: var(--color-primary);
  font-weight: 600;
}
.cookie-banner-btn:hover, .cookie-banner-btn:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  outline: none;
}
.cookie-banner-btn.reject:hover, .cookie-banner-btn.reject:focus {
  background: #bc9256;
  color: #fff;
}
.cookie-banner-btn.settings:hover, .cookie-banner-btn.settings:focus {
  background: var(--color-green);
  color: #fff;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 7px 18px 12px;
    font-size: 0.96rem;
  }
}

/* ==== COOKIE SETTINGS MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,54,103, 0.19);
  z-index: 14200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-fade-in 0.32s;
  visibility: visible;
}
@keyframes cookie-modal-fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 44px 0 rgba(34,54,103,0.13);
  padding: 34px 25px 24px 25px;
  min-width: 300px;
  max-width: 95vw;
  max-height: 90vh;
  overflow-y: auto;
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal h2 {
  color: var(--color-green);
  font-size: 1.12rem;
  margin-bottom: 7px;
}
.cookie-category-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 11px;
}
.cookie-modal .cookie-toggle {
  margin-left: 6px;
  accent-color: var(--color-green);
  width: 16px; height: 16px;
}
.cookie-category-essential {
  color: var(--color-muted);
  font-weight: 500;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 11px;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  padding: 9px 22px;
  border-radius: 22px;
  border: none;
  font-size: 1rem;
  margin-right: 0;
  background: var(--color-green);
  color: #fff;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.cookie-modal-actions button.secondary {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 13px;
  color: var(--color-green);
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal-close:hover {
  color: var(--color-accent);
}

/* ==== THANK YOU PAGE ==== */
.thank-you {
  background: #f3fbe9;
  border-radius: 24px;
  padding: 40px 14px;
  display: flex;
  align-items: center;
  min-height: 320px;
  justify-content: center;
  box-shadow: 0 5px 33px 0 rgba(64,156,93,0.10);
}
.thank-you h1 {
  color: var(--color-green);
}

/* ==== CONTACT PAGE ==== */
.contact {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 24px 0 rgba(64,156,93,0.06);
}
.contact .text-section {
  margin-bottom: 20px;
}
.contact .map-embed {
  background: #faf8f2;
  border-radius: 14px;
  padding: 12px 10px;
  font-style: italic;
  color: var(--color-muted);
}

/* ==== TERMS SECTION ==== */
.terms {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 24px 0 rgba(120,118,65,0.04);
}

/* ==== PRIVACY/GDPR SECTION ==== */
.privacy-policy,
.gdpr-policy,
.cookie-policy {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 24px 0 rgba(120,118,65,0.04);
}

/* ==== UTILITY CLASSES ==== */
.hide { display: none !important; }
.flex-col { display: flex; flex-direction: column; }
.flex-row { display: flex; flex-direction: row; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-16 { margin-bottom: 16px !important; }

/* ==== ORGANIC SHAPES AND ACCENTS ==== */
/* Use border-radius and box-shadow on cards/sections (see above) */

/* ==== SCROLLBARS ==== */
::-webkit-scrollbar {
  width: 7px;
  background: #f3f3eb;
}
::-webkit-scrollbar-thumb {
  background: var(--color-earth);
  border-radius: 4px;
}

/* ==== SELECTION COLORS ==== */
::selection { background: #eddbae; color: var(--color-primary); }

/* ==== MICRO-INTERACTIONS & TRANSITIONS ==== */
button, .cta-btn, .main-nav a, .footer-main-nav a, .feature-card, .service-card, .card {
  transition: box-shadow 0.15s, background 0.15s, color 0.13s, transform 0.11s, outline 0.15s;
}

/* ==== RESPONSIVE HEADINGS ==== */
@media (max-width: 430px) {
  h1 { font-size: 1.13rem; }
  h2 { font-size: 1.03rem; }
}

/* ==== ACCESSIBILITY ==== */
:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ==== PRINT STYLES (if needed) ==== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  main, .container { width: 100%; max-width: 100%; }
}
