/* 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F2F0EB;
  color: #22302d;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #365C2A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #5f882f;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 10px;
}
strong {
  font-weight: 700;
}
/* BRAND FONTS */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Nunito', 'Open Sans', Arial, sans-serif;
  color: #22302d;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.4rem;
}
h4 {
  font-size: 1.1rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }
}
p, em {
  color: #22302d;
  margin-bottom: 14px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
/* CONTAINER */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  padding: 0;
  margin: 0 auto;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(65,90,45,0.09);
}
@media (max-width: 768px) {
  .section {
    padding: 18px 8px;
    margin-bottom: 34px;
  }
}
/* HEADER */
header {
  background: #fff;
  border-bottom: 1.5px solid #A0B97F;
  box-shadow: 0 2px 14px rgba(51,64,63,0.05);
  position: sticky;
  top: 0;
  z-index: 1020;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo img {
  height: 42px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.main-nav a {
  font-size: 1rem;
  color: #22302d;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #365C2A;
}
.cta-btn {
  background: #365C2A;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 11px 26px;
  border-radius: 8px;
  border: none;
  outline: none;
  transition: background 0.22s, box-shadow 0.22s;
  box-shadow: 0 2px 12px rgba(54,92,42,0.12);
  cursor: pointer;
  margin-left: 20px;
  letter-spacing: 0.01em;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #507E38;
  box-shadow: 0 4px 20px rgba(54,92,42,0.15);
}
/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #365C2A;
  cursor: pointer;
  margin-left: 12px;
  padding: 7px 11px;
  border-radius: 4px;
  transition: background 0.22s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #EAF0E5;
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: #fff;
  z-index: 1100;
  box-shadow: 0 4px 40px rgba(50,74,45,0.22);
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  color: #365C2A;
  border: none;
  margin: 16px 18px 0 0;
  cursor: pointer;
  padding: 5px 12px;
  border-radius: 4px;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #EAF0E5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 54px;
  align-items: center;
}
.mobile-nav a {
  color: #22302d;
  font-size: 1.22rem;
  font-weight: 600;
  padding: 11px 25px;
  border-radius: 7px;
  transition: background 0.15s, color 0.15s;
  text-align: center;
  min-width: 180px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: #365C2A;
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}
/* HERO AREA */
.hero {
  background: #EAF0E5;
  border-bottom: 1px solid #D3DEC5;
  padding: 64px 0 32px 0;
  margin-bottom: 40px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
  max-width: 700px;
}
.hero h1, .hero h2 {
  color: #365C2A;
}
.hero p {
  color: #22302d;
  font-size: 1.18rem;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .hero {
    padding: 32px 0 18px 0;
    margin-bottom: 18px;
  }
  .hero .content-wrapper {
    padding: 0 6px;
    gap: 16px;
  }
}
/* FLEXBOX PATTERNS & CARD GRIDS */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 16px;
  margin-bottom: 16px;
  justify-content: space-between;
}
.features-grid > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(54,92,42,0.07);
  flex: 1 1 220px;
  min-width: 180px;
  max-width: 260px;
  padding: 26px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
  transition: box-shadow 0.15s, transform 0.15s;
}
.features-grid > div:hover {
  box-shadow: 0 4px 26px rgba(65,90,45,0.13);
  transform: translateY(-4px) scale(1.025);
}
.features-grid img {
  width: 48px;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .features-grid {
    gap: 18px;
    justify-content: flex-start;
  }
  .features-grid > div {
    max-width: 100%;
    flex: 1 1 100%;
  }
}
@media (max-width: 600px) {
  .features-grid {
    flex-direction: column;
    gap: 16px;
  }
  .features-grid > div {
    width: 100%;
    padding: 20px 8px;
  }
}
.service-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 22px;
  list-style-type: none;
  align-items: center;
  justify-content: flex-start;
}
.service-teasers li {
  background: #fff;
  border: 1.4px solid #D3DEC5;
  border-radius: 10px;
  padding: 17px 16px 13px 16px;
  min-width: 170px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.08rem;
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(54, 92, 42,0.06);
  transition: box-shadow 0.13s, border-color 0.13s;
}
.service-teasers li img {
  min-width: 30px;
  height: 30px;
}
.service-teasers li:hover {
  box-shadow: 0 4px 19px rgba(161,185,127,0.15);
  border-color: #A0B97F;
}
@media (max-width: 600px) {
  .service-teasers {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
}
.values-list ul, .design-details ul, .plant-varieties ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style-type: none;
}
.values-list ul li, .design-details ul li, .plant-varieties ul li {
  display: flex;
  align-items: center;
  background: #F2F0EB;
  border-radius: 7px;
  padding: 9px 18px;
  gap: 9px;
  font-size: 1rem;
  font-weight: 500;
}
.values-list ul li img,
.design-details ul li img,
.plant-varieties ul li img {
  width: 28px;
  height: 28px;
  display: inline;
}
@media (max-width: 600px) {
  .values-list ul, .design-details ul, .plant-varieties ul {
    flex-direction: column;
    gap: 11px;
  }
}
/* CARDS & FLEX GRIDS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(54, 92, 42, 0.09);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  flex: 1 1 340px;
  transition: box-shadow 0.13s, transform 0.13s;
}
.card:hover {
  box-shadow: 0 4px 22px rgba(54,92,42,0.18);
  transform: translateY(-3px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  padding: 22px 22px 15px 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;
}
@media (max-width: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F2F0EB;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(54, 92, 42,0.09);
  color: #22302d;
  font-size: 1rem;
  margin: 18px 0 18px 0;
  line-height: 1.5;
}
.testimonial-card p {
  font-size: 1.02rem;
  margin-bottom: 0;
}
.testimonial-card cite {
  margin-left: 14px;
  font-style: normal;
  color: #365C2A;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.testimonial-card blockquote, .case-listings blockquote {
  border-left: 4px solid #A0B97F;
  padding-left: 15px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* LISTS - PROCESS & SERVICE */
.process-list, .service-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}
.process-list li, .service-list li {
  background: #EAF0E5;
  border-radius: 11px;
  box-shadow: 0 2px 10px rgba(54, 92, 42, 0.07);
  padding: 20px 18px;
  min-width: 220px;
  font-weight: 500;
  color: #22302d;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 13px;
  justify-content: flex-start;
  flex: 1 1 280px;
}
.process-list li img, .service-list li img {
  width: 32px;
}
@media (max-width: 768px) {
  .process-list, .service-list {
    flex-direction: column;
    gap: 13px;
  }
  .process-list li, .service-list li {
    min-width: 0;
    width: 100%;
  }
}
/* SERVICE-LIST in Leistungen */
.service-list {
  flex-direction: column;
  gap: 18px;
}
.service-list li {
  position: relative;
  background: #fff;
  border: 1.3px solid #D3DEC5;
}
.service-list .service-title {
  font-size: 1.13rem;
  color: #365C2A;
  font-weight: 700;
  margin-right: 8px;
}
.service-list .service-price {
  font-size: 1.12rem;
  color: #A0B97F;
  margin-left: auto;
  font-weight: 600;
}
.service-list .service-description {
  font-size: 0.97rem;
  color: #22302d;
  margin-top: 6px;
  margin-bottom: 0;
}
/* CASE LISTINGS (PROJECTS) */
.case-listings {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.project-case {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 13px rgba(54, 92, 42, 0.06);
  padding: 22px 22px 18px 22px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
@media (max-width: 600px) {
  .project-case, .testimonial-card {
    padding: 14px 6px;
  }
}
/* ARTICLE LIST (Ratgeber) */
.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 32px;
}
.article-list article {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 9px rgba(54, 92, 42, 0.08);
  padding: 18px 18px 12px 18px;
  flex: 1 1 250px;
  min-width: 195px;
  max-width: 350px;
  transition: box-shadow 0.13s, transform 0.13s;
}
.article-list article:hover {
  box-shadow: 0 4px 24px rgba(54, 92, 42, 0.14);
  transform: translateY(-3px) scale(1.014);
}
@media (max-width: 700px) {
  .article-list {
    flex-direction: column;
    gap: 13px;
  }
  .article-list article {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    padding: 11px 4px 9px 7px;
  }
}
.faq-teasers {
  margin-top: 30px;
  margin-bottom: 30px;
}
.faq-teasers ul {
  padding: 0 0 0 6px;
}
.faq-teasers li {
  background: #F2F0EB;
  border-radius: 7px;
  margin-bottom: 13px;
  padding: 11px 15px;
  font-size: 1rem;
}
/* CTA BANNER */
.cta {
  background: #365C2A;
  color: #fff;
  border-radius: 13px;
  box-shadow: 0 3px 18px rgba(54, 92, 42, 0.14);
  padding: 45px 0 45px 0;
  margin: 40px 0 60px 0;
}
.cta .cta-btn {
  background: #A0B97F;
  color: #22302d;
  font-weight: 800;
  border-radius: 9px;
  border: none;
  margin-top: 21px;
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: #7d9b51;
  color: #fff;
}
.cta h2, .cta p {
  color: #fff;
}
@media (max-width: 768px) {
  .cta {
    padding: 27px 3px 26px 3px;
    margin: 21px 0 37px 0;
  }
}
/* FOOTER */
footer {
  background: #365C2A;
  color: #fff;
  padding: 38px 0 0 0;
  font-size: 0.97rem;
  border-top: 6px solid #A0B97F;
  margin-top: 60px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 14px;
}
.logo-footer img {
  height: 44px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #fff;
  font-weight: 500;
  transition: color 0.17s;
  font-size: 1rem;
  padding: 2px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #A0B97F;
}
.footer-contact {
  color: #fff;
  max-width: 280px;
  line-height: 1.5;
}
.footer-contact a {
  color: #A0B97F;
  text-decoration: underline;
}
.footer-copy {
  text-align: center;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  background: #304D23;
  padding: 12px 0;
  margin-top: 12px;
  color: #D3DEC5;
  border-radius: 0 0 12px 12px;
}
@media (max-width: 800px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
/* LEGAL & THANK YOU PAGES */
.legal, .thankyou {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 13px rgba(54, 92, 42, 0.06);
  margin-bottom: 56px;
  padding: 32px 0 44px 0;
}
.text-section {
  margin-bottom: 24px;
}
.info-note {
  margin: 8px 0 18px 0;
  background: #F2F0EB;
  border-radius: 7px;
  padding: 10px 13px;
  font-size: 0.98rem;
  color: #365C2A;
}
/* LINKS & CTA-LINKS */
.cta-link {
  color: #365C2A;
  font-weight: 600;
  font-size: 1.05rem;
  border-bottom: 2px solid #A0B97F;
  transition: color 0.15s, border-color 0.15s;
}
.cta-link:hover, .cta-link:focus {
  color: #516E38;
  border-color: #365C2A;
}
/* BUTTONS - Settings & Utilities */
button, .cta-btn {
  outline: none;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, box-shadow 0.13s;
}
/* COOKIES BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #22302d;
  color: #fff;
  padding: 28px 14px 24px 14px;
  box-shadow: 0 -4px 32px rgba(65,90,45,0.18);
  z-index: 1700;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  border-radius: 18px 18px 0 0;
  animation: ckbanner-in 0.6s cubic-bezier(.48,0,.32,1);
}
@media (max-width: 600px) {
  .cookie-banner {
    padding: 18px 4px 18px 4px;
    font-size: 0.97rem;
  }
}
@keyframes ckbanner-in {
  0% { transform: translateY(100%); opacity: 0; } 
  100% { transform: none; opacity: 1; }
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 7px;
}
.cookie-banner button {
  border-radius: 7px;
  padding: 8px 22px;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  background: #F2F0EB;
  color: #365C2A;
  margin: 0 2px;
  transition: background 0.19s, color 0.19s;
  box-shadow: 0 1px 5px rgba(54,92,42,0.05);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #A0B97F;
  color: #22302d;
}
.cookie-banner .cookie-settings-btn {
  background: #A0B97F;
  color: #22302d;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #365C2A;
  color: #fff;
}

/* COOKIES - MODAL POPUP */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 1800;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,48,45,0.48);
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-backdrop.open {
  display: flex;
  animation: fadein 0.32s ease;
}
@keyframes fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #22302d;
  border-radius: 16px;
  max-width: 400px;
  width: 92vw;
  padding: 32px 22px 22px 22px;
  box-shadow: 0 6px 54px rgba(54,92,42,0.18);
  position: relative;
  z-index: 2000;
  animation: popupin 0.35s cubic-bezier(.46,0,.38,1);
}
@keyframes popupin {
  0% { transform: translateY(65px) scale(0.88); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal h3 {
  margin-bottom: 7px;
  font-size: 1.2rem;
  color: #365C2A;
}
.cookie-modal section {
  margin-bottom: 18px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  margin-bottom: 10px;
  gap: 12px;
}
.cookie-modal input[type="checkbox"] {
  appearance: none;
  width: 23px;
  height: 23px;
  border: 2px solid #A0B97F;
  border-radius: 6px;
  background: #fff;
  transition: background 0.16s, border 0.16s;
  position: relative;
  margin-right: 7px;
}
.cookie-modal input[type="checkbox"]:checked {
  background: #A0B97F;
  border-color: #365C2A;
}
.cookie-modal input[type="checkbox"]:checked:after {
  content: '';
  display: block;
  position: absolute;
  width: 14px;
  height: 14px;
  left: 3px; top: 3.4px;
  background: #365C2A;
  border-radius: 2px;
}
.cookie-modal input[disabled] {
  opacity: 0.6;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 9px;
}
.cookie-modal button {
  border-radius: 7px;
  padding: 7px 23px;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  background: #A0B97F;
  color: #22302d;
  box-shadow: 0 1px 8px rgba(54,92,42,0.07);
  transition: background 0.19s, color 0.19s;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #365C2A;
  color: #fff;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 10px; right: 13px;
  background: none;
  color: #A0B97F;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.16s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: #F2F0EB;
  color: #365C2A;
}
/* SMALL ACCESSIBILITY & UTILITY */
.sr-only {
  position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
@media (max-width:420px) {
  .cookie-modal {
    padding: 10px 2vw 16px 2vw;
    max-width: 99vw;
  }
}

/* SCROLLBAR STYLING (modern browsers) */
body::-webkit-scrollbar {
  width: 10px;
  background: #EAF0E5;
}
body::-webkit-scrollbar-thumb {
  background: #A0B97F;
  border-radius: 7px;
}

/* SELECTION STYLING */
::selection {
  background: #A0B97F;
  color: #22302d;
}

/* MICROLEVEL EFFECTS */
.card, .features-grid > div, .service-teasers li, .article-list article, .project-case, .testimonial-card {
  transition: box-shadow 0.16s, transform 0.14s;
}
.card:active,
.features-grid > div:active,
.service-teasers li:active,
.article-list article:active,
.project-case:active {
  transform: scale(0.98);
}

/* Z-INDEX LAYERING & STACKING */
header { z-index: 1020; }
.mobile-menu { z-index: 1100; }
footer { z-index: 900; }
.cookie-banner { z-index: 1700; }
.cookie-modal-backdrop { z-index: 1800; }

/* FORM STYLES */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 13px;
  border-radius: 8px;
  border: 1.2px solid #A0B97F;
  margin-bottom: 16px;
  box-sizing: border-box;
  background: #fff;
  color: #22302d;
  transition: border 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: #365C2A;
}
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 11px;
  }
}
input[type=submit], button[type=submit] {
  background: #365C2A;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  padding: 11px 24px;
  cursor: pointer;
  transition: background 0.19s, color 0.17s;
}
input[type=submit]:hover, button[type=submit]:hover {
  background: #A0B97F;
  color: #22302d;
}

/* ACCESSIBILITY FOCUS OUTLINE */
a:focus, button:focus, input:focus, .cta-btn:focus {
  outline: 2px solid #A0B97F;
  outline-offset: 2px;
}

/* Hide scroll when mobile menu is open */
.body--no-scroll {
  overflow: hidden;
}
