/* ------------------------------
   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.6;
  min-height: 100vh;
  background: #FAF5EF;
  color: #37352F;
  font-family: 'Roboto', Arial, sans-serif;
}
a {
  color: #155263;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus { color: #38876f; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* Font imports (use swap for performance) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500&display=swap');

body {
  font-size: 16px;
  background: #FAF5EF;
  color: #37352F;
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.02em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #155263;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 { font-size: 2rem; margin-bottom: 20px; }
h2 { font-size: 1.5rem; margin-bottom: 20px; }
h3 { font-size: 1.2rem; margin-bottom: 12px; }
h4 { font-size: 1rem; margin-bottom: 8px; }
p, ul, ol { margin-bottom: 16px; }
strong { font-weight: 600; }

/* ------------------------------
   COLORS (Semantic & Organic Tones)
------------------------------ */
:root {
  --primary: #155263;
  --secondary: #FFD166;
  --accent: #FAF5EF;
  --highlight: #3C8310;
  --text: #37352F;
  --earth-brown: #9D7C5B;
  --soft-leaf: #8DC48B;
  --muted-grey: #E3DAC9;
  --danger: #b5543d;
  --shadow: rgba(35, 55, 40, 0.1);
}

/* ------------------------------
   LAYOUT: CONTAINER & SECTION
------------------------------ */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 30px 60px 40px 20px/30px 50px 35px 25px;
  /* organic, soft edge */
  box-shadow: 0 4px 32px var(--shadow);
  /* subtle shadow for natural lift */
}
@media(max-width: 1024px){
  .section { padding: 32px 10px; }
}
@media(max-width: 600px) {
  .section { padding: 18px 4px; margin-bottom: 40px; border-radius: 20px 30px 25px 12px/15px 28px 18px 8px; }
}

/* ------------------------------
   HEADER & NAVIGATION
------------------------------ */
header {
  background: #fff;
  box-shadow: 0 2px 8px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1001;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 16px 12px 16px;
}
.logo img { height: 48px; border-radius: 14px; }
@media(max-width: 600px){ .logo img { height: 38px; } }

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--primary);
  border-radius: 10px;
  padding: 6px 14px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--soft-leaf);
  color: #fff;
}
/* Hide main navigation on mobile */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
}
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  border: none;
  border-radius: 19px 24px 16px 18px/20px 22px 19px 20px; /* organic rounded */
  padding: 11px 26px 11px 26px;
  box-shadow: 0 2px 14px var(--shadow);
  cursor: pointer;
  margin-left: 24px;
  transition: background 0.20s, box-shadow 0.17s, transform 0.13s;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--highlight);
  box-shadow: 0 4px 24px var(--shadow);
  transform: translateY(-2px) scale(1.03);
}
@media (max-width: 900px) {
  .btn-primary {
    margin-left: 0;
    margin-right: 0;
    font-size: 0.95rem;
    padding: 10px 18px;
  }
}

/* ------------------------------
   MOBILE MENU
------------------------------ */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 13px;
  padding: 8px 12px;
  cursor: pointer;
  transition: background .17s;
  z-index: 1202;
  margin-left: 24px;
  box-shadow: 0 1px 8px var(--shadow);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--soft-leaf);
  color: #fff;
}
@media (min-width:901px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  /* hidden by default */
  position: fixed;
  left: 0; top: 0; right:0; bottom:0;
  background: rgba(21,82,99,0.92);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.31s cubic-bezier(.76,0,.24,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  margin: 18px 0 4px 20px;
  cursor: pointer;
  z-index: 2010;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 36px 0 0 26px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  padding: 8px 0 8px 8px;
  border-radius: 10px;
  transition: background .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
@media (min-width:901px) {
  .mobile-menu { display: none !important; }
}

/* ------------------------------
   HERO HEADER
------------------------------ */
.hero {
  background: linear-gradient(105deg,#8DC48B 0 50%,#FFD166 90%);
  border-radius: 0 0 60px 60px/0 0 48px 48px;
  min-height: 315px;
  padding: 38px 0 32px 0;
  box-shadow: 0 6px 32px var(--shadow);
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  max-width: 690px;
  text-align: center;
}
.hero h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0;
  margin-top: 4px;
}
.hero .subheadline {
  color: #2B532C;
  font-size: 1.26rem;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.45;
}
.hero .btn-primary {
  margin-top: 12px;
}
@media(max-width: 768px){
  .hero {
    padding: 23px 0 16px 0;
    min-height: 180px;
    border-radius: 0 0 32px 32px/0 0 28px 28px;
  }
  .hero h1 { font-size: 1.65rem; }
  .hero .content-wrapper { gap: 13px; }
}

/* ------------------------------
   FLEXBOX CONTENT WRAPPERS
------------------------------ */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 8px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section ul, .text-section ul, .feature-grid, .feature-list {
  margin-bottom: 0;
}

/* ------------------------------
   CARDS & FEATURES GRIDS
------------------------------ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px 32px 15px 24px/20px 20px 21px 14px;
  box-shadow: 0 2px 14px var(--shadow);
  padding: 28px 22px 22px 22px;
  flex: 1 1 290px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 240px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.feature-grid, .feature-list {
    display: flex;
    gap: 24px 18px;
    margin-top: 10px;
    align-items: stretch;
}
.feature-grid li, .feature-list li {
  background: #F4F7F2;
  border-radius: 14px 20px 12px 12px/18px 14px 16px 13px;
  box-shadow: 0 1px 8px var(--shadow);
  padding: 14px 18px 10px 14px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  min-width: 210px;
  max-width: 330px;
  flex: 1 1 210px;
}
.feature-grid img, .feature-list img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #E3DAC9;
  padding: 3px;
}

@media (max-width: 768px) {
  .feature-grid, .feature-list {
    flex-direction: column;
    gap: 15px;
  }
  .feature-grid li, .feature-list li {
    min-width: unset; max-width: 100%;
  }
}

/* ------------------------------
   SERVICES LIST & ARTICLE GRID
------------------------------ */
.services-list {
    display: flex;
    gap: 24px;
    flex-direction: row;
}
.service {
  background: #F7FAF1;
  border-radius: 14px 18px 16px 20px/14px 16px 20px 16px;
  box-shadow: 0 2px 10px var(--shadow);
  padding: 23px 18px 16px 20px;
  min-width: 230px;
  width: 100%;
  max-width: 310px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.service strong { color: var(--highlight); }
@media(max-width: 900px){
  .services-list { gap: 16px; }
  .service { min-width: unset; max-width: 100%; }
}
@media(max-width: 700px){
  .services-list { flex-direction: column; gap: 14px; }
}

/* ARTICLES GRID */
.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.articles-grid article {
  background: #fff;
  border-radius: 19px 22px 14px 19px/15px 22px 16px 16px;
  box-shadow: 0 2px 9px var(--shadow);
  padding: 22px 18px;
  min-width: 210px;
  max-width: 350px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.articles-grid article h3 {
  font-size: 1.14rem;
  margin-bottom: 8px;
  color: var(--primary);
}
.articles-grid article a {
  color: var(--highlight);
  margin-top: 6px;
  font-weight: 700;
  line-height: 1.2;
  transition: text-decoration .16s, color .16s;
}
.articles-grid article a:hover, .articles-grid article a:focus {
  color: var(--secondary);
  text-decoration: underline;
}
@media(max-width: 600px){
  .articles-grid { flex-direction: column; gap: 13px; }
  .articles-grid article { max-width: 100%; }
}

.category-filter {
  display: flex;
  align-items: center;
  gap: 12px;
}
.category-filter label {
  font-weight: 500;
  color: var(--primary);
}
.category-filter select {
  border-radius: 9px;
  border: 1px solid #C1B782;
  font-size: 1rem;
  padding: 6px 12px;
  background: #F9FAF7;
  color: #333;
}

/* ------------------------------
   SPECIAL FLEX LAYOUTS (TOPICS & QUICK LINKS)
------------------------------ */
.topic-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.topic-grid > div {
  background: #F8F3E7;
  border-radius: 17px 22px 15px 21px/15px 22px 18px 14px;
  box-shadow: 0 1px 7px var(--shadow);
  padding: 14px 12px 12px 14px;
  min-width: 180px;
  flex: 1 1 190px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.topic-grid img {
  width: 34px;
  height: 34px;
  background: #E3DAC9;
  border-radius: 50%;
}
@media(max-width: 700px){
  .topic-grid { flex-direction: column; gap: 13px; }
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}
.quick-links a {
  background: #8DC48B;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9px 14px 9px 13px/7px 12px 12px 7px;
  padding: 7px 18px;
  transition: background .15s;
}
.quick-links a:hover, .quick-links a:focus { background: var(--primary); color: #FFD166; }

/* ------------------------------
   CONTACT & ICON LISTS
------------------------------ */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.06rem;
}
.contact-list img {
  width: 28px;
  height: 28px;
  background: #E3DAC9;
  border-radius: 50%;
}
.opening-hours {
  margin: 12px 0 12px 0;
  color: var(--primary);
  font-weight: 600;
}

/* ------------------------------
   TESTIMONIALS
------------------------------ */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F7FAF1;
  border-left: 8px solid var(--highlight);
  border-radius: 14px 22px 20px 10px/15px 22px 19px 10px;
  box-shadow: 0 1px 10px var(--shadow);
  margin-bottom: 20px;
  flex: 1 1 270px;
  min-width: 220px;
  transition: box-shadow 0.18s, transform 0.11s;
}
.testimonial-card blockquote {
  color: #184827;
  font-size: 1.05rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-style: italic;
  line-height: 1.44;
  margin: 0;
}
.testimonial-card strong {
  font-weight: 700;
  font-style: normal;
  color: var(--primary);
}
.testimonial-card:hover {
  box-shadow: 0 3px 18px var(--shadow);
  transform: scale(1.015);
}
@media(max-width: 800px){
  .testimonials { flex-direction: column; gap: 10px; }
}

/* Visual contrast rules for testimonial text */
.testimonial-card, .testimonial-card blockquote {
  background: #F7FAF1;
  color: #184827;
}

/* ------------------------------
   FOOTER
------------------------------ */
footer {
  background: #155263;
  color: #fff;
  padding: 0 0 0 0;
  margin-top: 64px;
  border-radius: 50px 50px 0 0/48px 48px 0 0;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 44px;
  padding: 36px 0 0 0;
}
.footer-main img {
  height: 42px;
  margin-bottom: 15px;
  border-radius: 12px;
}
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}
.footer-links a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.99rem;
  text-decoration: none;
  opacity: .95;
  padding: 2px 0 2px 0;
  border-radius: 7px;
  transition: background .15s, color .13s;
}
.footer-links a:hover { background: var(--secondary); color: var(--primary); }

.footer-main p, .footer-main a {
  font-size: 0.98rem;
  line-height: 1.5;
}
.footer-bottom {
  border-top: 1px solid #4a6b6f;
  text-align: center;
  padding: 18px 0 14px 0;
  margin-top: 24px;
  font-size: 0.96rem;
  opacity: 0.84;
}
@media(max-width: 900px){
  .footer-main { flex-direction: column; gap: 20px; }
  .footer-links nav { flex-direction: row; gap: 18px; margin-top: 6px; }
}
@media(max-width: 600px) {
  footer { border-radius: 25px 25px 0 0/19px 19px 0 0; }
}

/* ------------------------------
   TEXT-IMAGE SECTION & GENERAL GRIDS
------------------------------ */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 18px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 19px 16px 13px 16px;
  background: #F8F3E7;
  border-radius: 15px 17px 15px 10px/12px 14px 12px 15px;
}

/* ------------------------------
   FORM ELEMENTS (if any used later)
------------------------------ */
input, textarea, select {
  border: 1px solid #DECEA0;
  border-radius: 10px;
  padding: 10px 14px;
  background: #FEFEFC;
  font-size: 1rem;
  margin-bottom: 12px;
  width: 100%;
  transition: border .15s, box-shadow .15s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--highlight);
  box-shadow: 0 1px 12px 0 #c5e1c0;
}
button {
  cursor: pointer;
}

/* ------------------------------
   MICROINTERACTIONS & BUTTON EFFECTS
------------------------------ */
button, .btn-primary, .quick-links a {
  transition: background .18s, color .15s, box-shadow .13s, transform .1s;
}
button:active, .btn-primary:active, .quick-links a:active {
  transform: scale(0.98);
}

/* FOCUS VISIBLE OUTLINE FOR ACCESSIBILITY */
:focus-visible {
  outline: 2px solid var(--highlight);
  outline-offset: 2px;
}

/* ------------------------------
   COOKIE CONSENT BANNER
------------------------------ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  box-shadow: 0 -5px 32px var(--shadow);
  border-radius: 24px 24px 0 0 / 18px 18px 0 0;
  padding: 20px 18px 18px 18px;
  z-index: 3000;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .28s, transform .32s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100px);
}
.cookie-banner__text {
  color: var(--primary);
  font-size: 0.98rem;
  line-height: 1.4;
  flex: 2 1 210px;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cookie-banner button, .cookie-banner .btn-primary {
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  padding: 9px 20px;
  border-radius: 13px 18px 11px 13px/9px 14px 12px 10px;
  margin-left: 0;
}
.cookie-banner .btn-accept {
  background: var(--highlight);
  color: #fff;
}
.cookie-banner .btn-reject {
  background: #b5543d;
  color: #fff;
}
.cookie-banner .btn-settings {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .btn-accept:hover, .cookie-banner .btn-accept:focus {
  background: #4da73b;
}
.cookie-banner .btn-reject:hover, .cookie-banner .btn-reject:focus {
  background: #642616;
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: #ffe291; color: var(--highlight);
}
@media(max-width:600px){
  .cookie-banner { flex-direction: column; gap: 13px; padding: 11px 5px 9px 6px; font-size: 0.95rem; }
  .cookie-banner__actions { gap: 8px; }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed; left: 0; right:0; top:0; bottom:0;
  z-index: 3999;
  background: rgba(21,82,99,.48);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .22s;
  opacity: 1;
}
.cookie-modal-overlay.hide { opacity:0; pointer-events:none; }
.cookie-modal {
  background: #fff;
  border-radius: 22px 29px 21px 19px/20px 20px 17px 16px;
  box-shadow: 0 8px 40px var(--shadow);
  min-width: 320px;
  max-width: 95vw;
  padding: 29px 27px 22px 27px;
}
.cookie-modal h3 {
  font-size: 1.28rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
}
.cookie-switch {
  width: 34px; height: 18px;
  background: #D3E6D0;
  border-radius: 10px;
  position: relative;
  margin-left: 5px;
  flex-shrink: 0;
}
.cookie-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-switch-slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 15px; height: 14px;
  background: var(--primary);
  border-radius: 7px;
  transition: left .18s, background .14s;
}
.cookie-switch input:checked + .cookie-switch-slider {
  background: var(--highlight);
  left: 16px;
}
.cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 7px 18px;
  border-radius: 10px 14px 8px 10px/8px 12px 10px 6px;
  border: none;
  box-shadow: 0 1px 8px var(--shadow);
  background: var(--secondary);
  color: var(--primary);
  font-weight: 600;
  transition: background .15s;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: var(--highlight); color: #fff;
}
@media(max-width:400px){
  .cookie-modal { padding: 14px 6px 14px 8px; min-width: unset; }
}

/* ------------------------------
   UTILITY CLASSES
------------------------------ */
.noselect {user-select: none;}
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }

/* ------------------------------
   ACCESSIBILITY OVERRIDES
------------------------------ */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ------------------------------
   NATURE ORGANIC DECORATIVE TOUCHES
------------------------------ */
.section, .card, .service, .testimonial-card, .feature-grid li, .feature-list li {
  background-image:
    /* subtle recycled fiber texture: PNG fallback for old browsers, if used */
    /* Or subtle scribble svg */
    repeating-linear-gradient(135deg, #F9FAF5 0 8px, transparent 8px 16px);
  background-blend-mode: multiply;
}

/* Add wavy organic bottom edge to hero */
@media(max-width: 600px){
  .hero::after { height: 18px; }
}

/* Subtle icon pulse animation for organic spirit */
.feature-grid img, .feature-list img, .topic-grid img, .contact-list img {
  animation: organic-pulse 4.2s ease-in-out infinite;
}
@keyframes organic-pulse {
  0%, 100% { box-shadow: 0 0 0 0 #aeccad00; }
  20% { box-shadow: 0 0 0 5px #a7e68435; }
  25% { box-shadow: 0 0 0 8px #f6eebc14; }
  50% { box-shadow: 0 0 0 3px #a7e6841c; }
  70% { box-shadow: 0 0 0 10px #a7e68411; }
}

/* ------------------------------
   RESPONSIVE TYPOGRAPHY
------------------------------ */
@media (max-width: 900px) {
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.07rem; }
}
@media (max-width: 700px) {
  h1 { font-size: 1.44rem; }
  h2 { font-size: 1.06rem; }
}

/* ------------------------------
   END OF SHEET
------------------------------ */
