/* 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.5;
}
ol, ul {
  list-style: none;
  padding-left: 0;
}
a {
  text-decoration: none;
  color: inherit;
  background: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* BRAND COLORS & VARIABLES */
:root {
  --color-primary: #316165;
  --color-primary-light: #457c81;
  --color-secondary: #ECDCC4;
  --color-secondary-dark: #b5a37f;
  --color-background: #fffaf6;
  --color-accent: #997149;
  --color-accent-dark: #7d5d35;
  --color-green-accent: #627d4c;
  --color-error: #d35400;
  --color-success: #229954;
  --shadow-soft: 0 2px 8px rgba(49, 97, 101, 0.10);
  --shadow-card: 0 4px 16px 0 rgba(49, 97, 101, 0.12);
  --radius-card: 18px;
  --transition: all 0.3s cubic-bezier(.28,.8,.51,1);
  --font-display: 'Merriweather', serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

body {
  background: var(--color-background);
  color: #2f3c36;
  font-family: var(--font-body);
  font-size: 16px;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

main {
  flex: 1 0 auto;
  width: 100%;
}

header {
  background: var(--color-secondary);
  box-shadow: 0 2px 16px 0 rgba(49, 97, 101, .05);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

/* LOGO IMAGE */
header img {
  height: 48px;
  width: auto;
  border-radius: 10px;
}

/* MAIN NAV */
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-primary);
  padding: 6px 0;
  font-size: 18px;
  position: relative;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-accent);
  background: var(--color-secondary-dark);
  outline: none;
}

/* CTA BUTTON */
.cta-btn {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 32px;
  font-size: 18px;
  padding: 12px 32px;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--color-primary);
  margin-left: 10px;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-green-accent);
  color: #fff;
  border-color: var(--color-green-accent);
  scale: 1.04;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #f3eee5 70%, #e2ebdc 100%);
  border-bottom-left-radius: 60px 38px;
  border-bottom-right-radius: 260px 70px;
  box-shadow: 0 4px 16px 0 rgba(49,97,101,0.08);
  margin-bottom: 60px;
  padding: 46px 0 60px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.08em;
  margin-bottom: 10px;
  text-shadow: 0px 1px 0px #e5e1d9;
}
.hero p {
  color: #4c6750;
  font-size: 20px;
  font-family: var(--font-body);
  max-width: 640px;
}

/* GENERAL SECTION LAYOUTS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background: #faf9f4;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(49,97,101,.06);
  margin-bottom: 20px;
  padding: 20px;
  border-left: 6px solid var(--color-accent);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-primary);
  margin-bottom: 12px;
}
h1 {
  font-size: 36px;
  font-weight: 700;
}
h2 {
  font-size: 28px;
  font-weight: 700;
}
h3 {
  font-size: 22px;
  font-weight: 600;
}
h4 {
  font-size: 18px;
  font-weight: 500;
}
p, li, ul, ol {
  font-family: var(--font-body);
  color: #2f3c36;
  font-size: 16px;
  line-height: 1.6;
}
strong {
  font-weight: 700;
}

/* UL AND OL STYLE FOR VALUE PROPOS */
ul, ol {
  margin-left: 0;
  margin-bottom: 20px;
  padding-left: 28px;
}
ul li, ol li {
  padding-left: 0;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 13px;
}
ul li img, ol li img {
  height: 22px;
  width: 22px;
  min-width: 22px;
}
.value-props ul li {
  font-size: 15px;
  color: var(--color-primary);
  font-weight: 600;
}

/* TESTIMONIALS */
.testimonials h2 {
  margin-bottom: 18px;
}
.testimonial-card p {
  font-size: 20px;
  color: #184032;
  text-shadow: 0 1px 0 #fff;
  margin-bottom: 12px;
}
.testimonial-card strong {
  font-weight: 700;
  color: var(--color-accent);
}
.testimonial-card span {
  color: #e7b043;
  font-size: 22px;
  letter-spacing: 2px;
  margin-left: 8px;
}

/* CALL-TO-ACTION SECTION */
.cta {
  background: #e7eadd;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 40px;
  padding: 32px 0;
  text-align: center;
}
.cta h2 {
  color: var(--color-green-accent);
  font-size: 28px;
  margin-bottom: 16px;
}
.cta .cta-btn {
  margin-bottom: 12px;
}
.cta p a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color .2s;
}
.cta p a:hover, .cta p a:focus {
  color: var(--color-accent);
}

/* LIST ITEMS WITH ICONS */
ul li img, ol li img {
  border-radius: 50%;
  background: #e8f2e1;
  box-shadow: 0 1px 3px 0 rgba(49,97,101,0.07);
}

/* FOOTER STYLES */
footer {
  background: var(--color-secondary);
  border-top-left-radius: 80px 22px;
  border-top-right-radius: 32px 62px;
  box-shadow: 0 -2px 12px 0 rgba(49,97,101,.07);
  padding: 40px 0 28px 0;
  color: var(--color-primary);
  font-size: 15px;
  margin-top: 48px;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px 38px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand img {
  height: 44px;
  width: auto;
}
.footer-nav, .footer-contact, .social-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav {
  gap: 9px;
}
.footer-nav a {
  color: var(--color-accent);
  font-weight: 600;
  padding: 4px 0;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #ece8e2;
  color: var(--color-green-accent);
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 15px;
}
.footer-contact img {
  height: 18px;
  width: 18px;
}
.social-links {
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  width: 38px;
  background: #eee9df;
  border-radius: 50%;
  transition: background .25s;
}
.social-links a:hover, .social-links a:focus {
  background: #d3dbc0;
}
.social-links img {
  height: 24px; width: 24px;
}
.legal-links {
  font-size: 13px;
  color: #88896d;
  margin-top: 12px;
  width: 100%;
}

/* MOBILE MENU STYLES */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 16px;
  right: 22px;
  z-index: 71;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 32px;
  justify-content: center;
  align-items: center;
  border: 2px solid #fff;
  box-shadow: 0 4px 16px 0 rgba(49,97,101,.12);
  transition: background .2s, color .2s, scale .17s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-accent);
  color: #fff;
  outline: 2px solid var(--color-primary-light);
  scale: 1.07;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(49, 97, 101, 0.14);
  opacity: 0;
  pointer-events: none;
  z-index: 1001;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  transition: opacity .36s cubic-bezier(.13,.81,.29,1);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu nav {
  background: #faf9f4;
  border-left: 7px solid var(--color-accent);
  border-top-left-radius: 36px 80px;
  padding: 60px 42px 40px 30px;
  min-width: 260px;
  box-shadow: -2px 0 18px 0 rgba(49,97,101,0.11);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateX(110%);
  transition: transform .36s cubic-bezier(.13,.81,.29,1);
}
.mobile-menu.open nav {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 32px;
  z-index: 1012;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 26px;
  align-items: center;
  justify-content: center;
  display: flex;
  border: 2px solid #fff;
  box-shadow: 0 3px 8px 0 rgba(153,113,73,0.14);
  transition: background .2s, color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-error);
  color: #fff;
  outline: 2px solid var(--color-accent-dark);
}

.mobile-nav a {
  display: block;
  padding: 12px 8px;
  font-size: 19px;
  font-family: var(--font-display);
  color: var(--color-primary);
  border-radius: 11px;
  font-weight: 600;
  margin-bottom: 2px;
  transition: background .22s, color .22s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #ede6d2;
  color: var(--color-accent);
}
@media (max-width: 1100px) {
  header .container {
    gap: 12px;
  }
  .main-nav {
    gap: 18px;
  }
  .cta-btn {
    padding: 11px 22px;
    font-size: 16px;
  }
  .hero h1 { font-size: 30px; }
  .hero p { font-size: 17px; }
}
@media (max-width:900px) {
  .footer-nav, .footer-contact, .legal-links { font-size:15px; }
}

/* MOBILE FIRST RESPONSIVE NAV */
@media (max-width: 845px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .container {
    justify-content: flex-start;
  }
}
@media (min-width: 846px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
}

/* CONTENT ADAPTIVE SPACING MOBILE */
@media (max-width: 700px) {
  .section, .hero {
    padding-left: 0;
    padding-right: 0;
  }
  .content-wrapper {
    padding: 0;
    gap: 13px;
  }
  .footer-brand img { height: 40px; }
  .footer-contact, .footer-nav, .footer-brand, .social-links, .legal-links {
    width: 100%;
    align-items: flex-start;
  }
  footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* MOBILE LAYOUTS */
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .cta { border-radius: 20px; }
  .hero {
    padding: 30px 0 36px 0;
    border-bottom-left-radius: 22px 16px;
    border-bottom-right-radius: 38px 18px;
  }
  .section {
    margin-bottom: 38px;
    padding: 22px 8px;
  }
  .card {
    padding: 18px 9px;
    font-size: 15px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-brand img { height: 34px; }
  .footer-contact, .footer-brand {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 22px; }
  h2 { font-size: 17px; }
  .hero h1 { font-size: 20px; }
  .cta-btn { padding: 10px 12px; font-size: 15px; }
}

/* Card Styles */
.card {
  background: #fffefb;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-card);
  border: 1.5px solid #ede8e2;
  transition: box-shadow .22s, transform .22s;
  margin-bottom: 20px;
  position: relative;
}
.card:hover, .card:focus-within {
  box-shadow: 0 5px 24px 0 rgba(49,97,101,0.13);
  transform: translateY(-2px) scale(1.02);
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  align-items: flex-start;
}

/* Micro-interactions */
button, .cta-btn, .mobile-menu-toggle, .mobile-menu-close, .footer-nav a {
  transition: var(--transition);
}
li, .testimonial-card, .card, .section, .cta, .card-content {
  transition: box-shadow .24s cubic-bezier(.14,.71,.34,1), background .24s cubic-bezier(.24,.79,.46,1);
}

/* Focus styles for accessibility */
a:focus, button:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px #eedcb3;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 18px;
  z-index: 2012;
  background: #fffefb;
  color: #2f3c36;
  border: 2px solid #d2ba95;
  border-radius: 18px;
  box-shadow: 0 2px 24px 0 rgba(153,113,73,.08);
  padding: 22px 30px 20px 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 22px;
  font-size: 17px;
  max-width: 460px;
  margin: 0 auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px);
  transition: opacity .38s, transform .38s;
}
.cookie-banner.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-left: auto;
}
.cookie-btn {
  padding: 9px 20px;
  font-size: 16px;
  border-radius: 24px;
  border: none;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  transition: background .19s, color .19s, scale .15s;
  margin-bottom: 0;
}
.cookie-btn.cookie-settings {
  background: var(--color-accent);
  color: #fffefb;
}
.cookie-btn.cookie-reject {
  background: #ece8e2;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.cookie-btn:focus, .cookie-btn:hover {
  background: var(--color-green-accent);
  color: #fff;
  scale: 1.04;
}
.cookie-btn.cookie-reject:hover, .cookie-btn.cookie-reject:focus {
  background: #ede1d1;
  color: var(--color-error);
}

@media (max-width: 520px) {
  .cookie-banner {
    flex-direction: column;
    gap: 8px;
    max-width: 98vw;
    padding: 13px 8px 12px 8px;
    left: 2vw; right: 2vw;
    font-size: 15px;
  }
  .cookie-buttons {
    flex-direction: row;
    gap: 7px;
    margin-left: 0;
    justify-content: flex-end;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(49, 97, 101, 0.22);
  z-index: 2013;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .37s;
}
.cookie-modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fffdeb;
  max-width: 400px;
  width: 94vw;
  border-radius: 22px;
  box-shadow: 0 8px 32px 0 rgba(153,113,73,.17);
  padding: 34px 26px 30px 26px;
  color: #2f3c36;
  position: relative;
  font-family: var(--font-body);
}
.cookie-modal h3 {
  font-size: 21px;
  font-family: var(--font-display);
  color: var(--color-primary);
  margin-bottom: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 16px;
  padding: 8px 0;
}
.cookie-category .toggle {
  accent-color: var(--color-primary);
  transform: scale(1.18);
  margin-left: 10px;
}
.cookie-category.required label {
  opacity: 0.7;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 10px; right: 10px;
  width: 38px; height: 38px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  border: none;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .17s;
  z-index: 2;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--color-error);
}

/* Organic/Nature Details */
.section, .hero, .card, .testimonial-card, .footer-brand img, .cta, .cookie-banner, .cookie-modal {
  box-shadow: var(--shadow-soft);
}
.section {
  background: #f6f2ea;
  border-radius: 28px 96px 28px 62px/52px 28px 84px 62px;
}
.card {
  border-radius: 24px 48px 18px 26px/30px 32px 50px 20px;
}
.testimonial-card {
  border-radius: 22px 12px 24px 32px/24px 28px 32px 14px;
}
.cta {
  border-radius: 36px 18px 38px 24px/28px 36px 26px 34px;
}
/* Organic decorative elements (for later extension or pseudo-elements) */

/* Misc. functional spacing */
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }

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

/* End of CSS */
