/*
RESET & BASICS
*/
html, body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #FDF6EB;
  color: #222016;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Mukta', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: #22543D;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 24px;
  text-shadow: -2px 2px 0 #F9DBA3;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 18px;
  text-shadow: -1px 1px 0 #eab17425;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4, h5, h6 { margin-bottom: 6px; }

p, ul, ol, li {
  margin: 0 0 16px 0;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
ul, ol {
  padding-left: 1.4em;
}
a {
  color: #A35F00;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #22543D;
  text-decoration-style: wavy;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
body {
  min-height: 100vh;
  background-color: #FDF6EB;
}

/* 
TYPOGRAPHY SCALE 
*/
body {
  font-size: 1rem;
}
.text-section {
  margin-bottom: 32px;
}
strong {
  font-weight: 700;
  color: #38531D;
}
em {
  font-style: italic;
  color: #8B5742;
}

/*
CONTAINERS & BASIC FLEX LAYOUT
*/
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fffbe1;
  border-radius: 16px;
  box-shadow: 0 3px 10px 0 #e4cfab44;
}

/*
HEADER & NAVIGATION
*/
header {
  background: #FDF6EB;
  border-bottom: 3px solid #F9DBA3;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  box-shadow: 0 2px 6px #eab17411;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
header img {
  height: 54px;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 1px 3px #ecc58a22;
  background: #fffefb;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Mukta', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #22543D;
  text-decoration: none;
  background: #f6e2b3;
  padding: 7px 18px;
  border-radius: 22px;
  border: 2px solid #eab174;
  box-shadow: 0 1px 3px #dcc48833;
  margin-right: 0px;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  position: relative;
}
.main-nav a:last-child {
  margin-right: 0;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #D78D3A;
  color: #fffbe1;
  box-shadow: 0 2px 12px #eab17455;
}

/*
MOBILE MENU
*/
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 18px;
  top: 18px;
  z-index: 202;
  width: 48px;
  height: 48px;
  background: #f9ddb6;
  color: #A35F00;
  border: 2px solid #eab174;
  border-radius: 50%;
  font-size: 2.1rem;
  box-shadow: 0 2px 8px #eab17499;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #A35F00;
  color: #fffbe1;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: #fdf6ebf7;
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  z-index: 203;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.42s cubic-bezier(.65,.02,.79,.64);
  box-shadow: 6px 0 24px #eab17444;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #A35F00;
  color: #fffbe1;
  border: none;
  font-size: 2rem;
  padding: 0 16px;
  border-radius: 50%;
  margin: 18px 0 10px 16px;
  cursor: pointer;
  box-shadow: 0 2px 7px #eab17455;
  transition: background 0.22s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #D78D3A;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 0 34px 40px 34px;
}
.mobile-nav a {
  font-family: 'Mukta', 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #A35F00;
  background: #fffbe1;
  text-decoration: none;
  border: 2px dashed #eab174cc;
  border-radius: 32px;
  padding: 12px 22px;
  margin-left: 0;
  width: 100%;
  margin-bottom: 4px;
  box-shadow: 0 1px 6px #eab17433;
  transition: background 0.2s, color 0.22s, box-shadow 0.22s;
}
.mobile-nav a:last-child { margin-bottom: 0; }
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #D78D3A;
  color: #fffbe1; 
  box-shadow: 0 4px 22px #eab17499;
}

@media (max-width: 1024px) {
  .main-nav { gap: 10px; }
  header .container {
    flex-wrap: wrap;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/*
 HERO SECTIONS
*/
.hero {
  padding: 0;
  margin-bottom: 60px;
  background: repeat-
    url("data:image/svg+xml,%3Csvg width='60' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='60' height='40' fill='%23FFF9E3'/%3E%3Ccircle cx='8' cy='8' r='3' fill='%23D78D3A'/%3E%3Ccircle cx='40' cy='22' r='2.8' fill='%23A35F00' opacity='0.32'/%3E%3Ccircle cx='30' cy='34' r='3' fill='%2322543D'/%3E%3C/svg%3E")
    0 0 / 120px 80px;
  border-bottom: 3px double #E8CFA1;
  position: relative;
  z-index: 3;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 0 48px 0;
}
.hero .content-wrapper {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 10px;
}
.hero h1 {
  font-size: 2.5rem;
  text-shadow: -4px 4px 0 #FFDCA380, 2px 2px 0 #fffbe1;
  color: #A35F00;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.18rem;
  color: #42531D;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .hero .container {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .hero h1 {
    font-size: 1.55rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

/*
 FEATURE/GRID/FLEX PATTERNS
*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 24px;
}
.feature-grid > div {
  background: #FFF7E5;
  border: 2px solid #eab17488;
  flex: 1 1 180px;
  max-width: 320px;
  min-width: 180px;
  border-radius: 18px;
  box-shadow: 0 2px 10px #eab1741a;
  padding: 26px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 12px;
  position: relative;
  font-size: 1rem;
}
.feature-grid img {
  width: 36px; height: 36px;
  margin-bottom: 10px;
  filter: sepia(27%) hue-rotate(-9deg) brightness(0.95) contrast(1);
}
.feature-grid strong, .feature-item strong { color: #22543D; }
.feature-grid h3 {
  color: #A35F00;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.feature-grid p {
  margin-bottom: 0;
  color: #645330;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #FFF7E5;
  border-radius: 14px;
  box-shadow: 0 2px 8px #eab1741a;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 280px;
  min-width: 210px;
  max-width: 380px;
  border: 2px solid #f2e2ca77;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 18px 20px 18px;
  transition: box-shadow 0.26s, transform 0.26s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 26px #eab17473, 0 1px 7px #a35f0036;
  transform: translateY(-4px) scale(1.015);
}

.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,
  .card-container,
  .feature-grid,
  .testimonial-flex,
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .feature-grid > div, .card {
    max-width: 100%;
    min-width: 0;
  }
}

.figure {
  margin: 0 0 22px 0;
}

/*
TESTIMONIALS
*/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fffdfa;
  border: 2px solid #E8CFA1;
  border-radius: 12px;
  box-shadow: 0 3px 12px #E8CFA166;
  color: #22543D;
  transition: box-shadow 0.2s, transform 0.22s;
  max-width: 660px;
}
.testimonial-card:last-child {
  margin-bottom: 0;
}
.testimonial-card strong {
  font-size: 1.1rem;
  color: #A35F00;
  font-family: 'Mukta', 'Roboto', Arial, sans-serif;
}
.testimonial-card span {
  margin-left: 10px;
  font-size: 1.08rem;
  color: #d6a443;
  letter-spacing: 2px;
}
.testimonial-card p {
  margin-bottom: 0;
  color: #42531D;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px #eab17433;
  transform: translateY(-3px) scale(1.01);
}

/*
BUTTONS/CTA
*/
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Mukta', 'Roboto', Arial, sans-serif;
  border-radius: 28px;
  padding: 13px 32px;
  font-size: 1.14rem;
  font-weight: bold;
  letter-spacing: 0.025em;
  margin-top: 6px;
  margin-bottom: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.13s;
  box-shadow: 0 3px 15px #eab17449;
  text-decoration: none;
}
.cta-btn.primary {
  background: #A35F00;
  color: #fffbe1;
  border: 2px solid #eab174;
  box-shadow: 0 1px 10px #a35f0029;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: #22543D;
  color: #fffbe1;
  box-shadow: 0 8px 28px #22543d59, 0 0px 8px #eab17422;
  transform: translateY(-2px) scale(1.02);
}
.cta-btn.accent {
  background: #D78D3A;
  color: #fffbe1;
  border: 2px solid #E8CFA1;
  box-shadow: 0 1px 8px #eab17455;
}
.cta-btn.accent:hover, .cta-btn.accent:focus {
  background: #22543D;
  color: #ffeabb;
  border-color: #A35F00;
  transform: scale(1.04);
  box-shadow: 0 7px 24px #d78d3a55;
}

/*
BADGES/DECORATIVE VINTAGE ELEMENTS
*/
.badge {
  display: inline-block;
  background: #E8CFA1;
  color: #A35F00;
  font-family: 'Mukta', 'Roboto', Arial, sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  font-weight: 600;
  border-radius: 2em;
  padding: 5px 14px 5px 14px;
  border: 2px double #D78D3A;
  margin-left: 7px;
  margin-right: 5px;
  margin-bottom: 4px;
  box-shadow: 0 1px 4px #fff9e12e;
}

/*
LISTS & CHECKMARKS
*/
ul li, ol li {
  background: none;
  padding-left: 0;
  margin-bottom: 7px;
  position: relative;
}
ul li strong {
  color: #A35F00;
}

/*
FOOTER
*/
footer {
  background: #fffbe1;
  border-top: 3px solid #E8CFA1;
  padding: 35px 0 25px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}
footer img {
  height: 56px;
  border-radius: 14px;
  background: #fffefb;
  box-shadow: 0 1px 5px #eab17432;
}
footer nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
}
footer nav a {
  font-family: 'Mukta', 'Roboto', Arial, sans-serif;
  color: #A35F00;
  font-size: 1rem;
  text-decoration: none;
  border-bottom: 2px solid #A35F00;
  margin-bottom: 1px;
  transition: color 0.22s, border-color 0.22s;
}
footer nav a:hover, footer nav a:focus {
  color: #22543D;
  border-color: #D78D3A;
}
footer p {
  color: #645330;
  font-size: 0.98rem;
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
}
@media (max-width: 700px) { 
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  footer nav {
    gap: 12px;
  }
}

/*
COOKIES CONSENT BANNER
*/
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  z-index: 3002;
  background: #fff6dc;
  border-top: 2px solid #D78D3A;
  box-shadow: 0 -3px 18px #eab17445;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 32px;
  font-size: 1.02rem;
  font-family: 'Roboto', Arial, sans-serif;
  animation: cookie-slide-in 0.92s cubic-bezier(.54,-0.04,.56,1.21);
}
@keyframes cookie-slide-in {
  from { transform: translateY(140%); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-consent-banner p {
  margin: 0 30px 0 0;
  color: #22543D;
}
.cookie-btns {
  display: flex;
  gap: 13px;
}
.cookie-btn {
  font-family: 'Mukta', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: #22543D;
  color: #fffbe1;
  padding: 8px 22px;
  border-radius: 22px;
  border: none;
  margin: 0;
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.18s;
}
.cookie-btn.accept {
  background: #A35F00;
}
.cookie-btn.reject {
  background: #D78D3A;
}
.cookie-btn.settings {
  background: #42531D;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #22543D;
  color: #fff6dc;
  box-shadow: 0 0.5em 1.3em #d78d3a40;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    padding: 12px 10px;
    text-align: center;
    gap: 12px;
    font-size: 1rem;
  }
  .cookie-btns {
    width: 100%;
    justify-content: center;
    gap: 10px;
  }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #2f241255;
  z-index: 3100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.35s;
  animation: cookie-modal-in 0.31s;
}
@keyframes cookie-modal-in { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: #fffbe1;
  border-radius: 22px;
  box-shadow: 0 8px 42px #A35F0022, 0 1px 9px #eab17433;
  padding: 36px 28px 24px 28px;
  max-width: 350px;
  width: 90vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.04rem;
  border: 2px solid #eab17499;
}
.cookie-modal h3 {
  color: #A35F00;
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.cookie-category {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #22543D;
  cursor: pointer;
}
.cookie-modal input[type='checkbox'] {
  appearance: none;
  width: 22px; height: 22px;
  border: 2px solid #A35F00;
  border-radius: 6px;
  background: #fffbe1;
  margin-right: 7px;
  box-shadow: 0 1px 6px #a35f0024;
  outline: none;
  transition: background 0.15s;
}
.cookie-modal input[type='checkbox']:checked {
  background: #A35F00;
  border-color: #A35F00;
}
.cookie-modal input[type='checkbox']:checked:after {
  content: '\2714';
  color: #fffbe1;
  font-size: 1.1rem;
  display: block;
  text-align: center;
}
.cookie-modal .cookie-btns {
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal .cookie-btn {
  min-width: 100px;
}
.cookie-modal .close-cookie-modal {
  position: absolute; right: 13px; top: 11px;
  background: none;
  border: none;
  color: #A35F00;
  font-size: 1.35rem;
  padding: 2px 5px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.14s;
}
.cookie-modal .close-cookie-modal:hover {
  background: #eab17433;
}
@media (max-width: 480px) {
  .cookie-modal { padding: 16px 6vw 14px 6vw; }
}

/*
UTILITY VINTAGE PATTERNS
*/
.vintage-border {
  border: 4px double #eab174;
  border-radius: 10px;
  padding: 18px 10px;
  background: #fffbe1;
  box-shadow: 0 2px 12px #f9e4bdee;
}
.shadow-sm {
  box-shadow: 0 1px 6px #eab17433;
}
.shadow-lg {
  box-shadow: 0 8px 32px #eab17477;
}
.rounded-xl {
  border-radius: 20px;
}

/*
TABLES (for policy/legal pages)
*/
table {
  width: 100%;
  border-collapse: collapse;
  background: #fffbe1;
  margin-bottom: 24px;
  font-size: 1rem;
}
thead {
  background: #E8CFA1;
}
th, td {
  padding: 12px 10px;
  border: 1px solid #E8CFA1;
}
th {
  font-family: 'Mukta', 'Roboto', Arial, sans-serif;
  color: #A35F00;
  font-size: 1.08em;
}

/*
RESPONSIVE TYPOGRAPHY
*/
@media (max-width: 700px) {
  body { font-size: 15px; }
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1.05rem; }
  .cta-btn {
    padding: 11px 20px;
    font-size: 0.98rem;
  }
  .section, .hero {
    padding: 22px 6px;
    margin-bottom: 38px;
  }
}

/*
MICRO-ANIMATIONS
*/
.cta-btn, .main-nav a, .mobile-nav a, .cookie-btn {
  transition: background 0.22s, color 0.22s, box-shadow 0.18s, transform 0.10s;
}
.cta-btn:active, .main-nav a:active, .mobile-nav a:active, .cookie-btn:active {
  transform: scale(0.96);
}

/*
FORMS/Input (Contact/newsletter/checkboxes)
*/
input, textarea, select {
  padding: 12px 10px;
  border-radius: 7px;
  border: 2px solid #eab17477;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 14px;
  width: 100%;
  outline: none;
  background: #fffbe1;
  transition: border-color 0.18s, box-shadow 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #A35F00;
  box-shadow: 0 0 0 2px #a35f0034;
}
label {
  font-family: 'Mukta', 'Roboto', Arial, sans-serif;
  color: #A35F00;
  font-weight: 600;
}

/*
HELPER CLASSES
*/
.hide {
  display: none !important;
}
.d-flex {
  display: flex !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.justify-between {
  justify-content: space-between !important;
}
.align-center {
  align-items: center !important;
}
.text-center {
  text-align: center !important;
}
.mt-4 { margin-top: 32px !important; }
.mb-4 { margin-bottom: 32px !important; }
.mb-2 { margin-bottom: 12px !important; }

/*
PAGE TYPE-BASED SPACING
*/
main {
  min-height: 60vh;
  padding-bottom: 60px;
}

/*
SPECIFIC CLASSES FROM HTML STRUCTURE
*/
.section ul { margin-bottom: 16px; }
.section ul li { margin-bottom: 8px; }

/*
ACCESSIBILITY/MISC
*/
:focus {
  outline: 2px solid #D78D3A;
  outline-offset: 2px;
}

/*
COLORS: Retro Vintage Swatch
Brand primary: #22543D
Brand accent: #A35F00 / #D78D3A
Background: #FDF6EB, #FFFBE1
Borders: #E8CFA1, #f2e2ca

Vintage secondary accents:
- #F9DBA3 (warm tan)
- #FFEABB (pale yellow)
- #BC9348 (deep tan)
- #8B5742 (muted brown)
*/
