/* ---------------------------------------------------
   CSS RESET & ROOT VARIABLES
----------------------------------------------------- */
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
  background-color: #F7F7F9;
  color: #2F311E;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font: inherit;
  outline: none;
}
button {
  cursor: pointer;
  background: none;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
:root {
  --primary: #223B5F;
  --secondary: #F2B134;
  --accent: #F7F7F9;
  --earth-brown: #6F5A36;
  --nature-green: #72A57A;
  --nature-green-dark: #39694D;
  --nature-sand: #EDDFC3;
  --nature-cream: #FFFBE5;
  --text-main: #2F311E;
  --text-light: #FFFFFF;
  --shadow-soft: 0 2px 16px rgba(102, 90, 68, 0.07);
  --radius-large: 28px;
  --radius: 12px;
  --radius-btn: 32px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* ---------------------------------------------------
   BASE STYLES & TYPOGRAPHY
----------------------------------------------------- */
body {
  font-family: var(--font-body);
  font-size: 16px;
  background-color: var(--accent);
  color: var(--text-main);
  letter-spacing: 0.01em;
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.16;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem;  margin-bottom: 20px; }
h3 { font-size: 1.45rem; margin-bottom: 16px; }
h4 { font-size: 1.2rem; margin-bottom: 12px; }
p, li, blockquote, cite {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 12px;
}
blockquote {
  font-style: italic;
  color: var(--nature-green-dark);
  background: var(--nature-sand);
  border-left: 4px solid var(--nature-green);
  padding: 16px 24px 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 12px;
}
cite {
  display: block;
  font-size: 0.98rem;
  margin-top: 4px;
  color: var(--primary);
  font-style: normal;
}
strong { font-weight: bold; color: var(--primary); }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ---------------------------------------------------
   HEADER & NAVIGATION
----------------------------------------------------- */
header {
  background-color: var(--nature-cream);
  box-shadow: var(--shadow-soft);
  padding: 0;
  position: relative;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}
header img[alt="Obuv Blízko"] {
  height: 44px;
  width: auto;
  margin-right: 24px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  padding: 7px 14px;
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
}
header nav a:hover, header nav a:focus {
  background-color: var(--nature-sand);
  color: var(--nature-green-dark);
}
.cta-btn {
  background: var(--nature-green);
  color: var(--text-light);
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  padding: 12px 30px;
  margin-left: 18px;
  box-shadow: 0 2px 10px rgba(114, 165, 122, 0.10);
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, box-shadow 0.2s;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--nature-green-dark);
  color: var(--secondary);
  box-shadow: 0 4px 18px rgba(34, 59, 95, 0.12);
}

/* Burger button for mobile */
.mobile-menu-toggle {
  display: none;
  background: var(--nature-green);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  color: var(--text-light);
  font-size: 2rem;
  border: none;
  transition: background 0.2s, color 0.2s;
  z-index: 120;
  margin-left: 8px;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:hover {
  background: var(--nature-green-dark);
  color: var(--secondary);
}

/* MOBILE NAVIGATION */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(234, 238, 230, 0.97);
  box-shadow: 0 6px 32px rgba(125,110,82,0.15);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(.65,-0.01,.32,.98), opacity 0.27s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 25px;
  background: var(--secondary);
  color: var(--primary);
  font-size: 2.2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  z-index: 3333;
  box-shadow: 0 2px 10px rgba(242,177,52,0.12);
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--nature-green);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 90px 24px 32px 32px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  background: none;
  color: var(--primary);
  padding: 14px 0 14px 0;
  border-radius: var(--radius);
  transition: background 0.13s, color 0.11s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--nature-sand);
  color: var(--nature-green-dark);
}

@media (max-width: 1100px) {
  header .container { padding: 0 10px; }
}
@media (max-width: 900px) {
  header nav { gap: 11px; }
  .cta-btn { padding: 11px 20px; font-size: 0.99rem; }
}
@media (max-width: 820px) {
  header .container {
    gap: 10px;
  }
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .cta-btn {
    margin-left: 8px;
  }
}

/* ---------------------------------------------------
   SECTION SPACING & FLEX LAYOUTS (MANDATORY PATTERNS)
----------------------------------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--nature-cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  min-width: 260px;
  flex: 1 1 285px;
  padding: 28px 22px;
}
.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;
  background: var(--nature-sand);
  border-radius: var(--radius-large);
  box-shadow: 0 3px 16px rgba(112,90,68,0.06);
  margin-bottom: 20px;
  flex-direction: column;
  min-width: 240px;
  max-width: 520px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ---------------------------------------------------
   HERO & PAGE SECTIONS
----------------------------------------------------- */
.hero {
  margin-bottom: 60px;
  background: linear-gradient(90deg, var(--nature-sand) 58%, var(--accent) 100%);
  border-radius: 0 0 var(--radius-large) var(--radius-large);
  box-shadow: 0 8px 32px rgba(170,179,151,0.06);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 32px;
  padding-top: 45px;
  padding-bottom: 28px;
}
.hero h1 { color: var(--nature-green-dark); }
.hero p { font-size: 1.2rem; color: var(--earth-brown); }

.features, .services, .about, .contact, .gdpr-info, .privacy-policy, .cookie-policy,
.terms-of-use, .thank-you {
  background: var(--nature-cream);
  border-radius: var(--radius-large);
  box-shadow: 0 3px 12px rgba(102,90,68,0.05);
}
.features h2, .services h2, .about h1, .about h2, .contact h2, 
.gdpr-info h1, .privacy-policy h1, .terms-of-use h1, .thank-you h1 {
  color: var(--nature-green-dark);
}

.features ul, .services ul, .about ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-left: 0;
}
.features ul li, .services ul li, .about ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  font-size: 1.09rem;
}
.features ul li img, .services ul li img, .about ul li img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 1px 2px rgba(64,88,52,0.08));
}

.services ol {
  margin-bottom: 20px;
  margin-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.services ol li {
  margin-bottom: 0;
  color: var(--nature-green-dark);
  font-weight: 500;
  font-size: 1rem;
  padding-left: 0;
}
.services ul li strong, .features ul li strong {
  color: var(--primary);
  margin-right: 2px;
}
/* Search and filter bar (katalog-obuvi) */
.search-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}
.search-bar input[type='text'] {
  padding: 11px 14px;
  border: 1px solid var(--nature-green);
  border-radius: var(--radius-btn);
  font-size: 1rem;
  background: #fff;
  flex: 1 1 180px;
}
.search-btn {
  background: var(--nature-green);
  color: #fff;
  border-radius: var(--radius-btn);
  padding: 11px 26px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  border: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(116,147,79,0.10);
}
.search-btn:hover, .search-btn:focus {
  background: var(--nature-green-dark);
  color: var(--secondary);
}
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.category-filters button {
  border: none;
  background: var(--nature-sand);
  color: var(--primary);
  border-radius: var(--radius-btn);
  padding: 7px 21px;
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 600;
  transition: background 0.13s, color 0.13s;
}
.category-filters button:hover, .category-filters button.active {
  background: var(--nature-green);
  color: #fff;
}
.filter-sort-options {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.filter-sort-options button {
  background: var(--nature-sand);
  color: var(--nature-green-dark);
  border-radius: var(--radius-btn);
  font-weight: 500;
  border: none;
  font-family: var(--font-display);
  padding: 6px 16px;
  font-size: 1rem;
  margin-left: 4px;
  transition: background 0.11s, color 0.11s;
}
.filter-sort-options button:hover, .filter-sort-options button.active {
  background: var(--nature-green);
  color: #fff;
}
.size-and-style-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-bottom: 18px;
}
.size-and-style-filters li {
  font-size: 0.99rem;
  font-weight: 500;
  color: var(--earth-brown);
  display: flex;
  align-items: center;
  gap: 7px;
}
.size-and-style-filters select {
  background: #fff;
  color: var(--primary);
  border-radius: 9px;
  border: 1px solid var(--nature-green);
  font-size: 1rem;
  padding: 4px 9px;
}
.product-listings-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-listings-grid ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
}
.product-listings-grid ul li {
  min-width: 200px;
  max-width: 320px;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 0;
  font-family: var(--font-body);
}
.product-listings-grid ul li img {
  width: 32px;
  height: 32px;
  margin-right: 0;
}

.map-embed {
  margin-top: 18px;
  width: 100%;
  max-width: 390px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(34,59,95,0.07);
}

/* ---------------------------------------------------
   FOOTER
----------------------------------------------------- */
footer {
  margin-top: 60px;
  padding: 40px 0 30px 0;
  background: var(--primary);
  color: var(--text-light);
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
footer nav a {
  color: var(--secondary);
  font-size: 1rem;
  transition: color 0.14s;
  font-family: var(--font-display);
}
footer nav a:hover, footer nav a:focus {
  color: var(--nature-green);
}
footer p {
  color: #eee;
  font-size: 0.96rem;
  margin-bottom: 0;
}

/* ---------------------------------------------------
   TESTIMONIALS
----------------------------------------------------- */
.testimonials {
  margin-bottom: 60px;
}
.testimonial-card {
  color: var(--text-main);
  background: var(--nature-sand);
  box-shadow: 0 4px 18px rgba(102,90,68,0.12);
  border-radius: var(--radius-large);
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 20px;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 12px 36px 0 rgba(114, 165, 122, 0.16);
  transform: translateY(-3px) scale(1.01);
}
.testimonial-card blockquote {
  background: none;
  font-size: 1.08rem;
  color: var(--nature-green-dark);
}
.testimonial-card cite {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  margin-left: 6px;
}

/* ---------------------------------------------------
   BUTTONS & INPUTS
----------------------------------------------------- */
button, .cta-btn, .search-btn, .category-filters button, .filter-sort-options button {
  outline: none;
  transition: background 0.15s, color 0.15s, box-shadow 0.14s;
}
button:focus-visible, .cta-btn:focus-visible, .search-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(114,165,122,0.22);
}
input:focus, select:focus {
  border-color: var(--nature-green-dark);
  box-shadow: 0 0 0 2px var(--nature-sand);
}
a:focus-visible {
  outline: 2px dashed var(--nature-green-dark);
  outline-offset: 2px;
}

/* ---------------------------------------------------
   MICRO-INTERACTIONS
----------------------------------------------------- */
.card, .testimonial-card, .features ul li, .category-filters button, .search-btn, .filter-sort-options button {
  transition: box-shadow 0.16s, background 0.15s, color 0.13s, transform 0.13s;
}
.card:hover, .category-filters button:hover, .search-btn:hover, .filter-sort-options button:hover {
  box-shadow: 0 6px 20px rgba(114,165,122,0.08);
  transform: translateY(-2px) scale(0.99);
}
.card:active, .category-filters button:active, .search-btn:active, .filter-sort-options button:active {
  box-shadow: 0 1px 4px rgba(34, 59, 95, 0.06);
  transform: scale(0.98);
}

/* ---------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
----------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 18000;
  background: #ece9e1;
  border-top: 2px solid var(--nature-green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 22px 16px 20px 16px;
  box-shadow: 0 -3px 24px rgba(112, 90, 68, 0.10);
  gap: 19px;
  font-size: 1rem;
  color: var(--primary);
  animation: cookieFadeIn 0.55s cubic-bezier(.35,.65,.42,1.1);
}
@keyframes cookieFadeIn {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}
.cookie-btn {
  background: var(--nature-green);
  color: #fff;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  padding: 10px 22px;
  box-shadow: 0 2px 8px rgba(114, 165, 122, 0.06);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--nature-green-dark);
  color: var(--secondary);
}
.cookie-btn-outline {
  background: none;
  color: var(--nature-green-dark);
  border: 2px solid var(--nature-green);
  padding: 8px 18px;
  border-radius: var(--radius-btn);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-display);
  transition: background 0.13s, color 0.11s, border-color 0.13s;
}
.cookie-btn-outline:hover, .cookie-btn-outline:focus {
  background: var(--nature-green);
  color: #fff;
}

.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,59,95,0.23);
  z-index: 24000;
  display: flex; align-items: center; justify-content: center;
  animation: fadeInBackdrop 0.25s;
}
@keyframes fadeInBackdrop {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: var(--nature-cream);
  box-shadow: 0 6px 32px rgba(34,59,95,0.07);
  border-radius: var(--radius-large);
  max-width: 400px;
  width: 94vw;
  padding: 36px 28px 34px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 21px;
  animation: modalSlideIn 0.29s;
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-modal h3 { font-size: 1.22rem; color: var(--nature-green-dark); }
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 1.07rem;
  color: var(--primary);
}
.cookie-toggle {
  width: 40px; height: 22px;
  border-radius: 12px;
  background: #ccc;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: background 0.13s;
  margin-left: 10px;
}
.cookie-toggle[data-checked="true"] {
  background: var(--nature-green);
}
.cookie-toggle span {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px rgba(34,59,95,0.08);
  position: absolute;
  left: 2px;
  top: 2px;
  transition: left 0.18s;
}
.cookie-toggle[data-checked="true"] span {
  left: 20px;
  background: var(--nature-green-dark);
}
.cookie-close-modal {
  position: absolute; top: 18px; right: 20px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  transition: background 0.15s, color 0.12s;
  z-index: 1;
}
.cookie-close-modal:hover, .cookie-close-modal:focus {
  background: var(--nature-green-dark);
  color: #fff;
}

/* ---------------------------------------------------
   ORGANIC/NATURE THEME EXTRAS
----------------------------------------------------- */
.section, .features, .services, .about, .contact, .testimonial-card {
  border-radius: 36px 18px 28px 48px / 24px 44px 44px 34px;
  /* Imprecise, but evokes organic, asymmetrical shape. */
}
.card, .testimonial-card {
  border-radius: 28px 18px 38px 24px/28px 38px 28px 28px;
}
.hero {
  border-radius: 0 0 60px 48px / 0 0 44px 34px;
}

/* Subtle background texture: optional soft pattern using SVG data URI (sand texture). */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.16;
  background: url('data:image/svg+xml;utf8,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><ellipse fill="%23EDDFC3" cx="30" cy="9" rx="18" ry="4"/><ellipse fill="%2372A57A" opacity=".13" cx="36" cy="39" rx="9" ry="3"/><ellipse fill="%23F2B134" opacity=".085" cx="18" cy="48" rx="9" ry="2.5"/></svg>') repeat;
}

/* Organic separator: between large sections */
.section + .section, .features + .services, .services + .about, .about + .testimonials {
  margin-top: 0;
  border-top: 3px dotted var(--nature-green);
}

/* ---------------------------------------------------
   RESPONSIVE DESIGN (MOBILE-FIRST)
----------------------------------------------------- */
@media (max-width: 800px) {
  .container {
    padding: 0 6vw;
    max-width: 98vw;
  }
  .hero .content-wrapper {
    padding-top: 29px;
    padding-bottom: 20px;
  }
  .hero h1 { font-size: 1.65rem; }
  h2 { font-size: 1.38rem; }
  .features ul, .services ul, .about ul {
    gap: 11px;
  }
}
@media (max-width: 768px) {
  .section, .features, .services, .about, .contact, .testimonial-card, .gdpr-info, .privacy-policy, .cookie-policy, .terms-of-use, .thank-you {
    padding: 28px 8px;
    margin-bottom: 38px;
    border-radius: 22px;
  }
  .testimonials { margin-bottom: 32px; }
  .testimonial-card {
    min-width: 0;
    max-width: 100vw;
    flex-direction: column;
    padding: 16px;
    gap: 9px;
  }
  .card-container {
    flex-direction: column;
    gap: 17px;
    margin-bottom: 22px;
  }
  .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .map-embed { max-width: 100%; }
  .features ul, .services ul, .about ul {
    gap: 8px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.04rem; }
  .footer .container { padding: 0 3vw; }
  .hero .content-wrapper { padding-top: 12px; padding-bottom: 11px; }
  .section, .features, .services, .about, .contact, .testimonial-card, .gdpr-info, .privacy-policy, .cookie-policy, .terms-of-use, .thank-you { padding: 16px 4px; margin-bottom: 22px; border-radius: 11px; }
  .features ul li, .services ul li, .about ul li { font-size: 0.95rem; }
  .search-bar input[type='text'] { min-width: 100px; flex: 1 1 90px; font-size: 0.98rem; }
  .search-btn { padding: 7px 16px; font-size: 0.98rem; }
  .cta-btn { padding: 10px 17px; font-size: 0.99rem; }
}

/* Hide desktop nav & CTA on mobile, show burger */
@media (max-width: 820px) {
  header nav, .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}

/* Cookie banner on smaller screens */
@media (max-width: 600px) {
  .cookie-banner { padding: 18px 7px 15px 7px; font-size: 0.97rem; gap: 10px; }
  .cookie-modal { padding: 26px 9px; max-width: 99vw; }
}

/* ---------------------------------------------------
   A11Y & VISUAL DETAILS
----------------------------------------------------- */
:focus, .cookie-close-modal:focus, .mobile-menu-close:focus {
  outline: 2px dashed var(--nature-green-dark) !important;
  outline-offset: 3px !important;
}
::-webkit-input-placeholder { color: #b5b594; opacity: 1; }
::-moz-placeholder { color: #b5b594; opacity: 1; }
:-ms-input-placeholder { color: #b5b594 !important; }
::placeholder { color: #b5b594; opacity: 1; }

/* Hide scroll when mobile-menu or cookie modal open */
body.menu-open, body.cookie-modal-open {
  overflow: hidden;
}

/* ---------------------------------------------------
   END OF FILE: FLEXBOX-ONLY RESPONSIVE NATURE ORGANIC
----------------------------------------------------- */
