/* =======================
   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;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #F5F3ED;
  color: #2B2B24;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button, input {
  font-family: inherit;
  font-size: 1rem;
}
*:focus {
  outline: 2px dashed #245B36;
  outline-offset: 2px;
}

/* ===========================
    VINTAGE RETRO COLOR PALETTE
============================== */
:root {
  --primary: #245B36;
  --secondary: #88A67D;
  --neutral: #F5F3ED;
  --contrast: #2B2B24;
  --yellow: #FFD97C;
  --red: #C1440E;
  --accent-blue: #76B5C5;
  --vintage-coral: #D27D60;
  --vintage-pink: #F6B7A5;
  --vintage-cream: #FFF9F0;
  --border: #E5E0D7;
  --shadow: rgba(32,30,18,0.12);
}

/* ===========================
    TYPOGRAPHY RETRO STYLE
============================== */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 1px 2px 0 var(--vintage-cream), 2px 4px 4px rgba(36,91,54,0.03);
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.05rem;
}
p, li, span, blockquote, label {
  font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  color: var(--contrast);
  font-size: 1rem;
}
.subheadline, .thank-you-message {
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--secondary);
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
blockquote.mission-statement {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-size: 1.25rem;
  font-style: italic;
  border-left: 5px solid var(--primary);
  background: #FFF9F0;
  color: var(--primary);
  padding: 18px 28px;
  margin: 28px 0 0 0;
  border-radius: 14px;
  box-shadow: 2px 6px 16px var(--shadow);
}

strong {
  color: var(--primary);
  font-weight: 700;
}

/* ===============================
    SECTION SPACING & CONTAINERS
================================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

/* ===========================
    HEADER & NAVIGATION
============================== */
header {
  width: 100%;
  background: var(--vintage-cream);
  box-shadow: 0 2px 10px var(--shadow);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1050;
}
.logo img {
  height: 54px;
  width: auto;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 20px;
}
.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--vintage-coral);
  border-bottom: 2px solid var(--yellow);
}
.cta-button {
  display: inline-block;
  padding: 12px 32px;
  background: var(--yellow);
  color: var(--primary);
  border-radius: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  border: none;
  box-shadow: 2px 8px 18px var(--shadow);
  cursor: pointer;
  transition: background 0.25s, color 0.2s, transform 0.14s, box-shadow 0.2s;
  margin-left: 24px;
}
.cta-button:hover, .cta-button:focus {
  background: var(--vintage-coral);
  color: #fff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 2px 16px var(--vintage-coral);
}

/* ===========================
   HERO BANNER
============================= */
.hero {
  background: repeating-linear-gradient(-45deg, #F5F3ED 0px, #F5F3ED 22px, #F6B7A5 22px, #F6B7A5 34px), url('../assets/vintage-pattern-bg.svg'), #F5F3ED;
  background-repeat: repeat;
  min-height: 360px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 14px;
}


/* ===========================
    LISTS (features, services)
============================= */
.features-list, .services-list, .usp-list, .benefit-list, .sustainability-principles, .educational-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 8px;
  padding: 0;
}
.features-list li,
.services-list li,
.usp-list li,
.benefit-list li,
.sustainability-principles li,
.educational-facts li {
  background: var(--vintage-cream);
  border-radius: 21px;
  padding: 26px 32px 22px 32px;
  box-shadow: 0 4px 18px var(--shadow);
  border: 1.5px solid var(--border);
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
  font-size: 1rem;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  transition: box-shadow 0.18s, transform 0.14s, border-color 0.16s;
  position: relative;
}
.features-list li img,
.services-list li img,
.usp-list li img {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  filter: sepia(0.2) hue-rotate(-12deg) saturate(1.4);
}
.features-list li:hover,
.services-list li:hover,
.usp-list li:hover,
.benefit-list li:hover {
  box-shadow: 0 2px 32px var(--secondary);
  border-color: var(--vintage-coral);
  transform: translateY(-5px) scale(1.025);
}
.brand-values {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 20px;
  margin-top: 6px;
}

/* ===========================
      TESTIMONIALS CARDS
============================= */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 0 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 26px 22px 26px;
  border-radius: 18px;
  background: #fff;
  border: 2px solid var(--border);
  box-shadow: 0 2px 10px var(--shadow), 0 12px 32px 0 #f5f3ed77;
  min-width: 260px;
  max-width: 400px;
  margin-bottom: 20px;
  position: relative;
  font-size: 1.03rem;
  transition: box-shadow 0.18s, transform 0.14s, border-color 0.15s;
}
.testimonial-card strong {
  color: var(--primary);
}
.testimonial-card p {
  color: var(--contrast);
  font-size: 1.04rem;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: var(--secondary);
}
.testimonial-card:before {
  content: '\201C';
  position: absolute;
  left: 14px;
  top: 8px;
  font-size: 2.5rem;
  color: var(--vintage-coral);
  opacity: 0.12;
  pointer-events: none;
  font-family: 'Montserrat','Arial Rounded MT Bold',sans-serif;
}
.testimonial-card:hover {
  box-shadow: 0 4px 30px var(--accent-blue);
  border-color: var(--accent-blue);
  transform: translateY(-4px) scale(1.025);
}

/* =============================
    GRID & FLEX LAYOUTS
=============================== */
.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--vintage-cream);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 2px 10px var(--shadow);
  padding: 26px;
  min-width: 260px;
  max-width: 340px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 5px 30px var(--secondary);
  transform: translateY(-3px) scale(1.025);
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.company-details {
  margin-bottom: 20px;
}
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.map-info {
  margin-top: 28px;
  padding: 18px 0 0 0;
  border-top: 2px dashed var(--border);
}

.flora-fauna ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.flora-fauna li {
  background: var(--neutral); 
  padding: 8px 16px;
  border-radius: 16px;
  font-size: 0.98rem;
  color: var(--primary);
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
}

/* ================
     FOOTER
=================== */
footer {
  background: var(--vintage-coral);
  color: #fff;
  padding: 36px 0 0 0;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 1rem;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.9;
  border-bottom: 1px solid transparent;
  transition: border-color 0.17s, color 0.18s;
  padding-bottom: 2px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--yellow);
  border-bottom: 1.5px dotted #fff;
}
.company-info {
  font-size: 0.97rem;
  margin: 8px 0 0 0;
  color: #fff;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0.92;
  padding-bottom: 36px;
}

/* ===============
    MOBILE MENU
================== */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: #fff;
  border: none;
  position: fixed;
  right: 24px;
  top: 18px;
  z-index: 2001;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 2rem;
  box-shadow: 0 2px 8px var(--shadow);
  cursor: pointer;
  transition: background 0.18s, transform 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--vintage-coral);
  color: #fff;
  transform: scale(1.08);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(110deg, var(--vintage-coral) 76%, var(--yellow) 124%);
  z-index: 2200;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.85,.01,.7,1.02), opacity 0.26s;
}
.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  top: 20px;
  right: 26px;
  cursor: pointer;
  z-index: 2210;
  padding: 10px;
  transition: color 0.18s, transform 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--yellow);
  transform: scale(1.15);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 86px 0 0 36px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 8px;
  padding: 15px 24px 13px 0;
  transition: background 0.15s, color 0.13s;
  min-width: 220px;
  letter-spacing: 0.04em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--primary);
  background: var(--yellow);
}

/* Hide desktop on mobile */
@media (max-width: 992px) {
  .main-nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Show desktop nav on large */
@media (min-width: 993px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ==========
   BUTTONS
============ */
button, input[type="submit"], .cta-button {
  cursor: pointer;
  border: none;
  transition: background 0.17s, color 0.13s, box-shadow 0.15s, transform 0.08s;
}
button:active, .cta-button:active {
  transform: scale(0.96);
}

/* ================================
   COOKIE CONSENT BANNER & MODAL
================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3000;
  background: var(--primary);
  color: #fff;
  padding: 24px 20px 22px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 -2px 18px var(--shadow);
  border-radius: 24px 24px 0 0;
  font-size: 0.97rem;
  transition: transform 0.44s cubic-bezier(.77,0,.18,1), opacity 0.22s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner .cookie-btn {
  margin-left: 18px;
  background: var(--yellow);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 22px;
  padding: 8px 20px;
  font-weight: 700;
  border: none;
  box-shadow: 0 2px 8px var(--shadow);
}
.cookie-banner .cookie-btn.cookie-settings {
  background: var(--accent-blue);
  color: #fff;
  margin-left: 10px;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--vintage-coral);
  color: #fff;
}
.cookie-banner .cookie-btn.reject {
  background: var(--red);
  color: #fff;
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31,22,11, 0.64);
  z-index: 3200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: var(--vintage-cream);
  border-radius: 18px;
  box-shadow: 0 12px 32px var(--shadow);
  padding: 38px 32px 30px 32px;
  min-width: 320px;
  max-width: 95vw;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 2.4px solid var(--border);
  position: relative;
  animation: cookie-modal-in 0.6s cubic-bezier(.78,.09,.29,1.18);
}
@keyframes cookie-modal-in {
  0% {transform: translateY(80px) scale(.9);opacity:0;}
  100% {transform: translateY(0) scale(1);opacity:1;}
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.85rem;
  cursor: pointer;
  transition: color 0.15s, transform 0.13s;
}
.cookie-modal .cookie-modal-close:hover {
  color: var(--red);
  transform: scale(1.19);
}
.cookie-modal h2 {
  font-size: 1.26rem;
  color: var(--primary);
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  background: #fff;
  border-radius: 10px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  border: 1.3px solid var(--border);
}
.cookie-category.essential {
  opacity: 0.64;
}
.cookie-category-label {
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
}
.cookie-category-toggle {
  width: 36px;
  height: 20px;
  border-radius: 14px;
  background: var(--yellow);
  position: relative;
  border: 1.4px solid var(--accent-blue);
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-category-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.cookie-category-toggle:after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%) scale(1);
  box-shadow: 0 2px 8px var(--shadow);
  transition: left 0.17s, background 0.13s;
}
.cookie-category-toggle.active {
  background: var(--vintage-coral);
}
.cookie-category-toggle.active:after {
  left: 16px;
  background: var(--accent-blue);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}
.cookie-modal .cookie-btn {
  background: var(--primary);
  color: #fff;
  border-radius: 19px;
  padding: 8px 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.19s, color 0.15s;
  box-shadow: 0 2px 8px var(--shadow);
}
.cookie-modal .cookie-btn:hover, .cookie-modal .cookie-btn:focus {
  background: var(--vintage-coral);
  color: #fff;
}
.cookie-modal .cookie-btn.reject {
  background: var(--red);
  color: #fff;
}

/* =============================
   SPECIAL (THANK-YOU)
=============================== */
.thank-you-message {
  background: var(--vintage-cream);
  color: var(--primary);
  padding: 26px 40px;
  border-radius: 14px;
  font-size: 1.18rem;
  margin-bottom: 18px;
  border: 1.5px solid var(--vintage-coral);
  box-shadow: 1px 6px 18px var(--shadow);
}

/* ===============
   MEDIA QUERIES 
================== */
@media (max-width:768px) {
  .container {
    padding: 0 10px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.32rem;
  }
  .main-nav {
    display: none !important;
  }
  .cta-button {
    display: none !important;
  }
  .hero .container,
  .hero .content-wrapper {
    align-items: flex-start;
    text-align: left;
    gap: 12px;
  }
  .features-list,
  .services-list,
  .usp-list, .benefit-list,
  .sustainability-principles,
  .educational-facts, .testimonials {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card, .card {
    min-width: 0;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .contact-details {
    flex-direction: column;
    gap: 16px;
  }
  .footer-nav {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav a {
    font-size: 1rem;
    padding-left: 0;
  }
}

@media (max-width: 520px) {
  .section {
    padding: 22px 5px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 12px;
    border-radius: 16px 16px 0 0;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-btn {
    font-size: 0.97rem;
    margin-left: 0;
    margin-top: 8px;
  }
}

/* ===========================
   RETRO DECORATIVE ELEMENTS
============================= */
ul.features-list li, ul.services-list li, ul.usp-list li, ul.benefit-list li {
  background-image: repeating-linear-gradient(135deg, #FFEDD7 0px, #FFEDD7 16px, transparent 16px, transparent 32px);
  background-size: 100% 36px;
  background-repeat: repeat-x;
}

blockquote.mission-statement:before {
  content: '\201C';
  color: var(--yellow);
  font-size: 2.5rem;
  display: inline-block;
  margin-right: 8px;
  line-height: 0.7;
  font-family: 'Montserrat','Arial Rounded MT Bold',sans-serif;
  vertical-align: middle;
}
/* Subtle paper grain effct for vintage sections */
section, .footer-section {
  background-image: url('../assets/paper-grain.jpg');
  background-size: 620px auto;
  background-repeat: repeat;
  background-blend-mode: lighten;
}

/* =========
   PRINT
=========== */
@media print {
  header, footer, .mobile-menu-toggle, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  .container, .section {
    padding: 0 !important;
  }
}
