/* ---------------------------------------------------------
   CSS RESET AND BASE STYLES
--------------------------------------------------------- */
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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  color: #3D464D;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #3D464D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C1B497;
  outline: none;
}
ul, ol {
  margin-left: 1.2em;
}
li {
  margin-bottom: 8px;
}
section {
  width: 100%;
  background: transparent;
}

/* ---------------------------------------------------------
   BRAND TYPOGRAPHY
--------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #3D464D;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 20px;
  line-height: 1.18;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  line-height: 1.25;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 600;
}
p, .text-section, .map-text, .testimonial-meta, small {
  font-family: 'Roboto', Arial, sans-serif;
  color: #3D464D;
  font-size: 1rem;
  font-weight: 400;
}
p {
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}
small {
  font-size: 0.95rem;
  color: #747C87;
}

/* HEADINGS IN LIGHT BACKGROUNDS */
.hero h1, .hero h2,
.org-spazi-hero h1, .org-spazi-hero h2,
.garden-hero h1, .garden-hero h2,
.diy-hero h1, .diy-hero h2,
.confirmation h1 {
  color: #3D464D;
}

/* ---------------------------------------------------------
   CONTAINER AND LAYOUTS (FLEX ONLY!)
--------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(61,70,77,0.08);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  flex: 1 1 280px;
  border: 1px solid #E7E3D5;
  transition: box-shadow 0.2s, border 0.2s;
}
.card:hover {
  box-shadow: 0 8px 24px 0 rgba(61,70,77,0.14);
  border-color: #C1B497;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 24px; }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
  border-radius: 12px;
  background: #F8F9FA;
  box-shadow: 0px 1px 8px 0px rgba(61,70,77,0.09);
  margin-bottom: 20px;
  border: 1px solid #E7E3D5;
  max-width: 500px;
  transition: box-shadow 0.2s;
}
.testimonial-card p {
  color: #3D464D;
  font-style: italic;
  font-size: 1.1rem;
}
.testimonial-meta {
  color: #747C87;
  font-size: 0.96rem;
  font-style: normal;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 10px;
  padding: 28px 20px;
  box-shadow: 0 2px 12px 0 rgba(61,70,77,0.06);
  border: 1px solid #E7E3D5;
  min-width: 220px;
  flex: 1 1 210px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, border 0.2s;
}
.feature-item img {
  width: 44px; height: 44px; margin-bottom: 10px;
}
.feature-item h3 {
  font-size: 1.1rem; font-weight: 700; margin: 0 0 8px 0;
}
.feature-item p {
  font-size: 1rem; color: #3D464D;
}
.feature-item:hover {
  box-shadow: 0 6px 18px 0 rgba(61,70,77,0.13);
  border-color: #C1B497;
}

.features-grid, .service-list, .projects-list, .workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
@media (max-width: 900px) {
  .features-grid, .service-list, .projects-list, .workshop-list {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .features-grid, .service-list, .projects-list, .workshop-list {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item, .service-item, .project-item, .workshop-item { min-width: 0; width: 100%; }
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border-radius: 10px;
  padding: 28px 20px;
  box-shadow: 0 1.5px 10px 0 rgba(61,70,77,0.08);
  border: 1px solid #E7E3D5;
  min-width: 210px;
  flex: 1 1 210px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, border 0.17s;
}
.service-item img { width: 44px; height: 44px; margin-bottom: 11px; }
.service-item h2 {
  font-size: 1.08rem; margin-bottom: 6px; color: #3D464D; font-weight: 600;
}
.service-item p {
  font-size: 1rem; color: #3D464D; line-height: 1.56;
}
.service-item strong { color: #3D464D; font-weight: 700; }
.service-item:hover {
  border-color: #C1B497;
  box-shadow: 0 6px 22px 0 rgba(61,70,77,0.13);
}

.project-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  padding: 28px 22px;
  box-shadow: 0 1.5px 9px 0 rgba(61,70,77,0.06);
  border: 1px solid #E7E3D5;
  margin-bottom: 20px;
  gap: 16px;
  min-width: 275px;
  transition: box-shadow 0.2s, border 0.2s;
}
.project-item h2 { font-size: 1.14rem; font-weight: 700; }
.project-item p { color: #3D464D; }
.project-item:hover {
  border-color: #C1B497;
  box-shadow: 0 7px 17px 0 rgba(61,70,77,0.12);
}


.workshop-item {
  display: flex;
  flex-direction: column;
  background: #F8F9FA;
  border-radius: 8px;
  padding: 22px 16px;
  border: 1px solid #E7E3D5;
  margin-bottom: 16px;
  min-width: 210px;
  box-shadow: 0 1px 7px 0 rgba(61,70,77,0.06);
  transition: border 0.2s, box-shadow 0.25s;
}
.workshop-item h3 { margin-bottom: 5px; font-size: 1.08rem; font-weight: 600; color: #3D464D; }
.workshop-item p { color: #3D464D; font-size: 1rem; }
.workshop-item:hover { border-color: #C1B497; box-shadow: 0 4px 16px 0 rgba(61,70,77,0.13); }

.benefits-list {
  list-style: disc;
  margin: 18px 0 24px 18px;
  color: #3D464D;
  font-size: 1rem;
  padding-left: 0;
}

@media (max-width: 600px) {
  .container { padding: 0 10px; }
  .section, .org-spazi-hero, .garden-hero, .diy-hero, .confirmation { padding: 28px 4px; }
}

/* ---------------------------------------------------------
   HEADER & NAV STYLE
--------------------------------------------------------- */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #E7E3D5;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 12px;
  position: relative;
  z-index: 29;
}
.logo img { height: 48px; width: auto; display: block; }

.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 1rem;
}
.main-nav a {
  padding: 7px 10px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
  color: #3D464D;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E7E3D5;
  color: #C1B497;
}
.cta-btn {
  background: #3D464D;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px 0 rgba(39,50,61,0.09);
  cursor: pointer;
  margin-left: 16px;
  transition: background 0.14s, color 0.14s, box-shadow 0.19s;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #C1B497;
  color: #3D464D;
  box-shadow: 0 6px 18px 0 rgba(61,70,77,0.14);
}

/* ---------------------------------------------------------
   MOBILE NAVIGATION
--------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #3D464D;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.18s, color 0.12s;
  z-index: 31;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #E7E3D5;
}

@media (max-width: 900px) {
  .main-nav      { display: none; }
  .mobile-menu-toggle { display: inline-block; }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(61,70,77,0.98);
  z-index: 999;
  transform: translateX(100vw);
  transition: transform 0.42s cubic-bezier(0.6, 0.06, 0.31, 0.99);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 24px 0 0 24px;
  align-self: flex-start;
  font-size: 2.2rem;
  color: #fff;
  background: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  padding: 2px 10px;
  transition: background 0.14s, color 0.13s;
  z-index: 1000;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #C1B497;
  color: #3D464D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 48px 32px;
  width: 100%;
  align-items: flex-start;
  margin-top: 26px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.19rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 4px;
  border-radius: 6px;
  transition: background 0.16s, color 0.14s;
  min-width: 160px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #C1B497;
  background: #fff;
}
@media (max-width: 450px) {
  .mobile-nav { padding: 44px 14px; gap: 20px; }
}

/* ---------------------------------------------------------
   HERO & MAIN SECTIONS
--------------------------------------------------------- */
.hero, .org-spazi-hero, .garden-hero, .diy-hero, .confirmation {
  background: #E7E3D5;
  border-bottom: 1px solid #C1B497;
  padding: 70px 0 64px 0;
  display: flex;
  align-items: center;
}
.hero .container, .org-spazi-hero .container, .garden-hero .container, .diy-hero .container, .confirmation .container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper,
.org-spazi-hero .content-wrapper,
.garden-hero .content-wrapper,
.diy-hero .content-wrapper,
.confirmation .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 22px;
}
.hero h1, .org-spazi-hero h1, .garden-hero h1, .diy-hero h1 {
  color: #3D464D;
}
.hero h2, .org-spazi-hero h2, .garden-hero h2, .diy-hero h2 {
  font-weight: 400; font-size: 1.22rem; color: #3D464D; margin-bottom: 18px;
}
.hero .cta-btn, .org-spazi-hero .cta-btn, .garden-hero .cta-btn, .diy-hero .cta-btn, .confirmation .cta-btn {
  margin-top: 16px;
}
@media (max-width: 1000px) {
  .hero, .org-spazi-hero, .garden-hero, .diy-hero, .confirmation {
    padding: 48px 0 29px 0;
  }
}
@media (max-width: 650px) {
  .hero, .org-spazi-hero, .garden-hero, .diy-hero, .confirmation {
    padding: 34px 0 18px 0;
  }
}

/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */
footer {
  width: 100%;
  background: #3D464D;
  color: #fff;
  padding: 32px 0;
  border-top: 1px solid #E7E3D5;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.footer-logo img {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(95%) contrast(103%);
}
.footer-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  transition: color 0.2s;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #C1B497;
}
footer small {
  color: #C1B497;
  margin-left: 24px;
  font-size: 0.96rem;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-nav { flex-wrap: wrap; gap: 12px; }
  footer small { margin-left: 0; }
}

/* ---------------------------------------------------------
   SECTION-SPECIFIC STYLES
--------------------------------------------------------- */
.about-home, .about, .about-usp, .contact-home, .contact, .services, .garden-features, .org-spazi-features, .diy-features, .legal {
  background: #fff;
  border-bottom: 1px solid #E7E3D5;
  padding: 54px 0;
}
.about .content-wrapper,
.about-usp .content-wrapper,
.services .content-wrapper,
.contact-home .content-wrapper,
.contact .content-wrapper,
.garden-features .content-wrapper,
.org-spazi-features .content-wrapper,
.diy-features .content-wrapper,
.legal .content-wrapper {
  gap: 30px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}

.list-section, .benefits-list {
  font-size: 1rem;
  color: #3D464D;
  list-style: disc inside;
}
.text-section ul,
.text-section ol {
  padding-left: 18px;
}
.text-section li {
  font-size: 1rem;
  margin-bottom: 4px;
  color: #3D464D;
}
.text-section img {
  vertical-align: middle;
  margin-right: 9px;
}
.map-text {
  font-size: 1rem;
  background: #F8F9FA;
  padding: 16px 15px;
  border-radius: 8px;
  border: 1px solid #E7E3D5;
  margin-top: 10px;
  color: #3D464D;
  margin-bottom: 10px;
}

.social-section {
  margin-top: 10px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.social-section span { color: #3D464D; font-weight: 500; }
.social-section a img {
  width: 28px;
  height: 28px;
  filter: grayscale(30%) brightness(1.2) contrast(1.1);
  opacity: 0.83;
  transition: filter 0.16s, opacity 0.13s;
}
.social-section a:hover img, .social-section a:focus img {
  filter: none;
  opacity: 1;
}

/* ---------------------------------------------------------
   TESTIMONIALS SECTION
--------------------------------------------------------- */
.testimonials, .projects {
  background: #F8F9FA;
  border-bottom: 1px solid #E7E3D5;
  padding: 54px 0;
}
.testimonials .testimonial-list, .projects-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonials .testimonial-card {
  flex: 1 1 270px;
  min-width: 230px;
  background: #fff;
}

@media (max-width: 900px) {
  .testimonials .testimonial-list, .projects-list {
    gap: 16px;
  }
}
@media (max-width: 700px) {
  .testimonials .testimonial-list, .projects-list {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card { min-width: 0; width: 100%; }
  .project-item { min-width: 0; width: 100%; }
}

/* ---------------------------------------------------------
   COOKIE BANNER & MODAL
--------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 8888;
  background: #fff;
  color: #3D464D;
  border-radius: 12px;
  box-shadow: 0 7px 32px 0 rgba(61,70,77,0.17);
  border: 1.5px solid #E7E3D5;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 28px 30px 18px 30px;
  max-width: 420px;
  transition: transform 0.35s, opacity 0.22s;
  opacity: 1;
}
.cookie-banner.hide {
  pointer-events: none;
  opacity: 0;
  transform: translateY(40px) scale(0.98);
}
.cookie-banner strong {
  color: #3D464D;
}
.cookie-action-row {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}
.cookie-btn,
.cookie-settings-btn {
  background: #3D464D;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 10px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-right: 2px;
  cursor: pointer;
  transition: background 0.15s, color 0.12s, box-shadow 0.16s;
}
.cookie-btn:hover, .cookie-btn:focus, .cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #C1B497;
  color: #3D464D;
}
.cookie-reject-btn {
  background: #E7E3D5;
  color: #3D464D;
  border: 1px solid #C1B497;
}
.cookie-reject-btn:hover, .cookie-reject-btn:focus {
  background: #fff1cb;
  color: #3D464D;
}
@media (max-width: 600px) {
  .cookie-banner {
    left: 5px; right: 5px; bottom: 7px; max-width: 99vw; padding: 18px 10px 11px 13px;
  }
}

/* Cookie preferences modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(61,70,77,0.58);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #3D464D;
  border-radius: 14px;
  padding: 36px 28px 24px 28px;
  box-shadow: 0 10px 34px 0 rgba(61,70,77,0.19);
  min-width: 310px;
  max-width: 98vw;
}
.cookie-modal h2 {
  font-size: 1.22rem;
  margin-bottom: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-pref-list {
  margin: 24px 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-pref-category {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 8px 0;
}
.cookie-toggle {
  cursor: pointer;
  width: 36px;
  height: 20px;
  background: #E7E3D5;
  border-radius: 10px;
  border: 1.5px solid #C1B497;
  position: relative;
  transition: background 0.19s, border 0.19s;
  margin-left: 10px;
}
.cookie-toggle input[type="checkbox"] { display: none; }
.cookie-toggle-thumb {
  position: absolute;
  left: 2px; top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #C1B497;
  transition: left 0.19s;
}
.cookie-toggle input:checked + .cookie-toggle-thumb {
  left: 18px;
  background: #3D464D;
}

.cookie-modal-category-label {
  font-size: 1rem;
  font-weight: 500;
}
.cookie-modal .cookie-btn {
  margin-top: 16px;
}
/* Modal close (absolute, decorative only) */
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 19px;
  background: none;
  border: none;
  color: #3D464D;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 6px;
  padding: 2px 8px;
  transition: background 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #E7E3D5;
}
@media (max-width: 575px) {
  .cookie-modal {padding:18px 6px 15px 10px; min-width: 0; }
}

/* ---------------------------------------------------------
   BUTTONS & INTERACTIONS
--------------------------------------------------------- */
button, .cta-btn, .cookie-btn, .cookie-settings-btn, .cookie-reject-btn {
  cursor: pointer;
  outline: none;
  transition: background 0.17s, color 0.18s, box-shadow 0.17s, border 0.14s;
}
button:focus, .cta-btn:focus, .cookie-btn:focus, .cookie-reject-btn:focus {
  box-shadow: 0 0 0 2px #C1B49744;
}

/* Subtle hover effect for all a:not(.cta-btn) */
a:not(.cta-btn):hover, a:not(.cta-btn):focus {
  color: #C1B497;
}

/* ---------------------------------------------------------
   FORMS (If required)
--------------------------------------------------------- */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  border: 1.5px solid #E7E3D5;
  padding: 9px 13px;
  background: #fff;
  color: #3D464D;
  margin-bottom: 14px;
  transition: border 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: #C1B497;
}

/* ---------------------------------------------------------
   MISC & UTILITIES
--------------------------------------------------------- */
::-webkit-input-placeholder { color: #747C87; }
::-moz-placeholder { color: #747C87; }
:-ms-input-placeholder { color: #747C87; }
::placeholder { color: #747C87; }

hr {
  border: 0;
  height: 1px;
  background: #E7E3D5;
  margin: 32px 0;
}

/* Section padding utility for hero/section alignments */
@media (max-width: 600px) {
  .hero .container, .org-spazi-hero .container, .garden-hero .container, .diy-hero .container, .confirmation .container {
    padding: 0 4px;
  }
}

/* ---------------------------------------------------------
   RESPONSIVE TYPOGRAPHY
--------------------------------------------------------- */
@media (max-width: 900px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.32rem; }
  h3 { font-size: 1.08rem; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.23rem; }
  h2 { font-size: 1.08rem; }
  h3 { font-size: 1.01rem; }
  body { font-size: 0.98rem; }
}

/* ---------------------------------------------------------
   PREVENT OVERLAPPING & GAP CONSISTENCY
--------------------------------------------------------- */
main > section, .section, .about, .about-usp, .features, .contact-home, .testimonials, .projects, .contact, .services, .garden-features, .org-spazi-features, .diy-features, .legal {
  margin-bottom: 60px !important;
  padding-bottom: 10px;
}
.card, .feature-item, .service-item, .project-item, .workshop-item {
  margin-bottom: 20px !important;
  margin-right: 0;
}
.features-grid, .service-list, .projects-list, .workshop-list, .testimonial-list {
  gap: 24px;
}
@media (max-width: 700px) {
  main > section, .section, .about, .about-usp, .features, .contact-home, .testimonials, .projects, .contact, .services, .garden-features, .org-spazi-features, .diy-features, .legal {
    margin-bottom: 34px !important;
    padding-bottom: 0;
  }
}

/* ---------------------------------------------------------
   ANIMATIONS FOR MICRO-INTERACTIONS
--------------------------------------------------------- */
.cta-btn, .cookie-btn, .cookie-settings-btn, .cookie-reject-btn {
  transition: background 0.16s, color 0.14s, box-shadow 0.19s, transform 0.12s;
}
.cta-btn:active, .cookie-btn:active, .cookie-settings-btn:active, .cookie-reject-btn:active {
  transform: scale(0.98);
}
.card, .feature-item, .service-item, .testimonial-card, .workshop-item, .project-item {
  transition: box-shadow 0.2s, border 0.16s, transform 0.13s;
}
.card:hover, .feature-item:hover, .service-item:hover, .testimonial-card:hover, .workshop-item:hover, .project-item:hover {
  transform: translateY(-2px);
}

/* ---------------------------------------------------------
   HIDE/SHOW UTILITIES (for menu/modal)
--------------------------------------------------------- */
.d-none { display: none !important; }

/* END OF CSS */
