/* CSS RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #27302C;
  background-color: #F6F5F0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #20415E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #457B48;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.1em;
  margin-bottom: 1em;
}
li + li {
  margin-top: 0.35em;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #20415E;
  margin-bottom: 0.6em;
}
h1 {
  font-size: 2.375rem;
  letter-spacing: -1px;
}
h2 {
  font-size: 1.75rem;
}
h3 {
  font-size: 1.25rem;
}
p {
  margin-bottom: 1.2em;
}
strong {
  color: #347758;
  font-weight: 700;
}

/* BRAND COLOR PALETTE (nature_organic) */
:root {
  --color-primary: #20415E;
  --color-secondary: #FAA916;
  --color-accent: #F2F4F8;
  --color-green: #457B48;
  --color-brown: #92775D;
  --color-bg: #F6F5F0;
  --color-card: #fff;
  --color-shadow: rgba(52, 67, 41, 0.08);
  --color-border: #E1DBC9;
}

/* CONTAINER AND SECTION SPACING */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 32px;
  background-color: var(--color-card);
  box-shadow: 0 2px 24px var(--color-shadow);
}
@media (max-width: 768px) {
  .section {
    padding: 24px 10px;
    margin-bottom: 32px;
    border-radius: 18px;
  }
}

/* CONTENT WRAPPER */
.content-wrapper {
  width: 100%;
}

/* NAVIGATION */
header {
  background: linear-gradient(90deg, #E8ECE2 0%, #F6F5F0 100%);
  box-shadow: 0 1px 10px var(--color-shadow);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 0;
}
.main-nav a {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #27302C;
  font-size: 1.03rem;
  letter-spacing: 0.01em;
  padding: 6px 8px;
  border-radius: 21px;
  transition: background 0.19s, color 0.19s;
}
.main-nav a.cta, .main-nav a.primary {
  background: var(--color-green);
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 1.08rem;
  border-radius: 26px 18px 24px 19px;
  padding: 9px 24px 8px 24px;
  margin-left: 26px;
  box-shadow: 0 2px 7px var(--color-shadow);
  border: none;
  transition: background 0.18s, box-shadow 0.18s;
}
.main-nav a.cta:hover, .main-nav a.primary:hover {
  background: #2B6440;
  color: #FFF;
  box-shadow: 0 4px 16px rgba(69,123,72,0.12);
}
.main-nav img {
  height: 44px;
  width: auto;
  margin-right: 14px;
}

/* MOBILE NAV */
.mobile-menu-toggle {
  display: none;
  background: var(--color-green);
  border: none;
  color: #fff;
  font-size: 2.15rem;
  padding: 7px 16px;
  border-radius: 14px;
  margin-left: auto;
  cursor: pointer;
  box-shadow: 0 2px 14px rgba(69,123,72,0.10);
  z-index: 999;
  transition: background 0.17s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #377A48;
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .main-nav a:not(:first-child) {
    font-size: 0.98rem;
  }
}
@media (max-width: 820px) {
  .main-nav a:not(.cta):not(:first-child) {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 1400px) {
  .container {
    max-width: 98vw;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #E8ECE2;
  z-index: 12000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.22, 0.68, 0.42, 1.01);
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: -6px 0 36px rgba(43,100,64,0.13);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--color-green);
  margin: 20px 22px 12px auto;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #20415E;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  padding: 22px 28px 0 32px;
}
.mobile-nav a {
  font-size: 1.17rem;
  color: #263725;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  padding: 12px 6px 12px 2px;
  border-radius: 13px 22px 16px 15px;
  width: 100%;
  transition: background 0.18s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #EAF5E6;
  color: var(--color-green);
}
@media (min-width: 821px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none;
  }
}

/* SECTIONS & LAYOUTS - FLEXBOX ONLY */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--color-card);
  border-radius: 19px 32px 20px 22px;
  box-shadow: 0 2px 16px var(--color-shadow);
  padding: 28px 20px;
  transition: box-shadow 0.22s, transform 0.18s;
  position: relative;
}
.card:hover {
  box-shadow: 0 9px 28px rgba(52,67,41,0.15);
  transform: translateY(-4px) scale(1.02);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch;
}
.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;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 10px 0;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F4EFE7;
  border-radius: 16px 23px 18px 28px;
  box-shadow: 0 1px 9px var(--color-shadow);
  margin-bottom: 20px;
  color: #263725;
  font-size: 1.04rem;
  font-style: italic;
  transition: box-shadow 0.2s, transform 0.13s;
}
.testimonial-card strong {
  color: var(--color-green);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.08em;
  font-style: normal;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px rgba(215,175,82,0.16);
  transform: translateY(-3px) scale(1.01);
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 15px 9px;
  }
}

/* BUTTONS & CTA */
.cta,
.button, 
button, 
input[type='submit'] {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #fff;
  background: var(--color-green);
  padding: 10px 28px;
  border-radius: 24px 18px 22px 17px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  font-size: 1.08rem;
  box-shadow: 0 2px 14px rgba(69,123,72,0.08);
  margin-top: 7px;
  transition: background 0.20s, box-shadow 0.17s, transform 0.13s;
  display: inline-block;
  outline: none;
}
.cta.primary, .button.primary {
  background: var(--color-secondary);
  color: #20415E;
  border-radius: 28px 19px 23px 22px;
  font-size: 1.11rem;
}
.cta.primary:hover, .button.primary:hover {
  background: #FFD384;
  color: #1d1d1d;
}
.cta:hover,
.button:hover,
button:hover,
input[type='submit']:hover,
.cta:focus, .button:focus, button:focus, input[type='submit']:focus {
  background: #2E993C;
  color: #fff;
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 6px 20px rgba(51,120,72,0.10);
}


/* ORGANIC/NATURE VISUALS */
.section, .card, .testimonial-card {
  border-radius: 1.7em 2.2em 1.4em 2em;
}
.card, .testimonial-card {
  background: linear-gradient(104deg, #FDF9F1 72%, #EAF5E6 130%);
  border: 1px solid var(--color-border);
}
.section {
  border: 1.5px solid #D6E2C2;
}

/* White space between content cards and sections */
.section + .section, .content-wrapper + .content-wrapper, .card + .card, .testimonial-card + .testimonial-card {
  margin-top: 28px!important;
}

/* LISTS */
ul, ol {
  line-height: 1.8;
}
ul li, ol li {
  margin-bottom: 0.4em;
}

/* ADDRESS & FOOTER */
footer {
  background: linear-gradient(98deg, #EAF5E6 62%, #F4EFE7 110%);
  color: #20415E;
  font-size: 0.97rem;
  padding: 34px 0 15px 0;
  margin-top: 44px;
  border-radius: 46px 46px 0 0;
  box-shadow: 0 -2px 20px var(--color-shadow);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 1em;
  justify-content: center;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
}
.footer-nav a {
  color: #20415E;
  opacity: 0.88;
  transition: color 0.12s, opacity 0.14s;
}
.footer-nav a:hover {
  color: var(--color-green);
  opacity: 1;
}
address {
  margin: 0 auto 1.5em auto;
  display: block;
  font-style: normal;
  text-align: center;
  line-height: 1.9;
  color: #3A493A;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 1.6em auto 0 auto;
  align-items: center;
}
.footer-brand img {
  height: 44px;
  filter: drop-shadow(0px 3px 12px rgba(52,87,44,0.12));
}

@media (max-width: 600px) {
  footer {
    font-size: 0.92rem;
    padding: 18px 0 10px 0;
    border-radius: 24px 24px 0 0;
  }
}

/* FORM FIELD STYLE */
input, textarea, select {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1.01rem;
  padding: 9px 12px;
  border: 1.3px solid #D6E2C2;
  border-radius: 14px;
  background: #F8F9F6;
  margin-bottom: 18px;
  box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-green);
  background: #EAF5E6;
  outline: none;
}

/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: linear-gradient(90deg, #EAF5E6 85%, #FFD384 110%);
  color: #20415E;
  font-size: 1rem;
  box-shadow: 0 -2px 18px rgba(32, 65, 94, 0.09);
  z-index: 21000;
  padding: 21px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.34s cubic-bezier(0.2,0.75,0.35,1), opacity 0.23s;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner p {
  margin-bottom: 14px;
  text-align: center;
}
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  justify-content: center;
  align-items: center;
}
.cookie-btn {
  background: var(--color-green);
  color: #fff;
  border-radius: 16px 21px 13px 23px;
  padding: 8px 23px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.02rem;
  border: none;
  cursor: pointer;
  margin-top: 2px;
  transition: background 0.15s, transform 0.12s, color 0.12s;
}
.cookie-btn.settings {
  background: #FFD384;
  color: #20415E;
}
.cookie-btn.settings:hover {
  background: var(--color-secondary);
  color: #4A653D;
}
.cookie-btn.reject {
  background: #92775D;
  color: #fff;
}
.cookie-btn.reject:hover {
  background: #7B6048;
}
.cookie-btn:hover, .cookie-btn:focus {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 2px 12px rgba(52,67,41,.13);
  outline: none;
  background: #2B6440;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(32,65,94,0.32);
  z-index: 25000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 28px 21px 22px 30px;
  box-shadow: 0 8px 38px rgba(69,123,72,0.16);
  padding: 36px 30px 26px 30px;
  max-width: 98vw;
  min-width: 340px;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: fadeInModal 0.4s cubic-bezier(0.3,0.9,0.4,1) 1;
}
@keyframes fadeInModal {
  0% { opacity: 0; transform: scale(0.96) translateY(34px); }
  80%{ opacity: 0.56; }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  margin-bottom: 0.6em;
  font-size: 1.29rem;
}
.cookie-modal-section {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-modal-section > label {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.04em;
}
.cookie-switch {
  appearance: none;
  width: 42px;
  height: 24px;
  background: #EAF5E6;
  border-radius: 13px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.16s;
  margin-right: 8px;
}
.cookie-switch:checked {
  background: #458D6B;
}
.cookie-switch:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(87,120,72,0.03);
  transition: left 0.18s;
}
.cookie-switch:checked:before {
  left: 21px;
}
.cookie-modal-close {
  position: absolute;
  top: 11px; right: 18px;
  background: none;
  border: none;
  color: var(--color-green);
  font-size: 1.62rem;
  cursor: pointer;
  transition: color 0.17s;
  border-radius: 10px;
  padding: 3px 7px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #20415E;
  background: #EAF5E6;
}

/* MISC ORGANIC/NATURE TOUCHES */
body {
  background: linear-gradient(112deg, #F6F5F0 90%, #E6EEE7 130%);
}
.section {
  background-image:
    url('assets/organic_blob.svg');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 180px 110px;
}

/* TYPOGRAPHY SCALE RESPONSIVE */
@media (max-width: 600px) {
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.20rem;
  }
  h3 {
    font-size: 1.01rem;
  }
  .container {
    padding: 0 7px;
  }
}

/* UTILITIES */
.text-section {
  margin-bottom: 18px;
}

/* Hide stuff visually only but available for screen readers */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ANIMATIONS */
.card, .testimonial-card, .section, .cta, .button, .cookie-banner, .cookie-modal, .mobile-menu {
  transition: box-shadow 0.21s, transform 0.13s, background 0.21s, color 0.19s;
}

/* RESPONSIVE FLEx WRAPPING */
@media (max-width: 700px) {
  .card-container, .content-grid {
    flex-direction: column;
    gap: 11px;
  }
}

/* Prevent overlapping */
.card, .testimonial-card, .section, .container, .footer-nav, .main-nav, .mobile-nav {
  min-width: 0;
  min-height: 0;
}
.card, .testimonial-card, .section {
  box-sizing: border-box;
}

/* Remove unwanted border/styles for blob backgrounds */
.section {
  border-width: 1.5px 1.8px 2.1px 2.1px;
}

/* ORGANIC SHADOW MICRO-INTERACTIONS */
.card:focus-within, .testimonial-card:focus-within {
  box-shadow: 0 8px 30px rgba(69,123,72,0.18);
}

/* END OF CSS */
