/* 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, main, 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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: #F5EEE7;
}
body {
  color: #23272A;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #F5EEE7;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
a {
  color: #6C977C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A4663A;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
  font-size: 1em;
}
li {
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
  color: #34312D;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ========== TYPOGRAPHY (Vintage Retro) ========== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #34312D;
  text-shadow: 0 2px 0 #FFE7C5, 0 3px 6px rgba(126, 94, 48, 0.07);
  margin-bottom: 18px;
}
h1 { font-size: 2.8rem; margin-top: 12px; }
h2 { font-size: 2rem; margin-top: 10px; }
h3 { font-size: 1.4rem; margin-top: 8px; }
h4, h5, h6 { font-size: 1.1rem; }
p, .text-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #443A2F;
}
.text-section {
  margin-bottom: 18px;
}

/* ========== RETRO COLOR PALETTE ========== */
:root {
  --primary: #23272A;
  --secondary: #6C977C;
  --accent: #FAFAFA;
  --retro-bg: #F5EEE7;
  --retro-dark: #443A2F;
  --retro-light: #FFF7E8;
  --retro-brown: #A4663A;
  --retro-orange: #E2903A;
  --retro-green: #A7C7A1;
  --retro-blue: #98A7C7;
}

body {
  background: var(--retro-bg);
}

/* ========== HEADER STYLES ========== */
header {
  background: var(--retro-light);
  border-bottom: 6px solid var(--retro-brown);
  box-shadow: 0 2px 8px rgba(125,83,48,0.11);
  position: relative;
  z-index: 50;
}
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--retro-dark);
  padding: 5px 2px;
  border-bottom: 2px solid transparent;
  text-shadow: 0 1px 0 #FFE7C5;
  transition: color 0.2s, border-bottom 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--retro-brown);
  border-bottom: 2px solid var(--retro-brown);
}

.cta-btn {
  background: var(--retro-orange);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
  border: none;
  border-radius: 32px;
  padding: 12px 32px;
  margin-left: 12px;
  box-shadow: 0 2px 8px rgba(164,102,58,0.08);
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s;
  position: relative;
}
.cta-btn.primary {
  background: var(--retro-green);
  color: var(--primary);
  text-shadow: 0 1px 0 #EDE3C8;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--retro-brown);
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 18px rgba(164,102,58,0.14);
}

/* ========== MOBILE NAVIGATION ========== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 24px;
  z-index: 160;
  width: 38px;
  height: 38px;
  background: var(--retro-orange);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(164,102,58,0.18);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, box-shadow 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--retro-brown);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--retro-bg);
  box-shadow: 0 8px 24px rgba(68,58,47,0.11);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.82,.02,.28,1);
  z-index: 200;
  padding: 38px 24px 32px;
  overflow-y: auto;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 2.2rem;
  color: var(--retro-brown);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 210;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--retro-orange);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 48px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: var(--primary);
  padding: 14px 4px;
  border-radius: 12px;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--retro-orange);
  color: #fff;
}

@media (max-width: 1080px) {
  .header-wrapper {
    gap: 10px;
  }
  .main-nav {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
  }
  .container {
    max-width: 97vw;
    padding: 0 8px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .header-wrapper {
    flex-wrap: wrap;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ========== GENERAL SECTIONS, SPACING (Retro Patterns) ========== */
section {
  background: var(--retro-light);
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(125, 83, 48, 0.07);
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
  z-index: 4;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ========== Card & List Layouts ========== */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 8px;
}
.features-grid > div, .features-grid > li {
  background: var(--retro-bg);
  border: 2px solid var(--retro-green);
  border-radius: 20px;
  box-shadow: 0 1px 8px rgba(108,151,124,0.15);
  padding: 28px 22px 24px 22px;
  flex: 1 1 260px;
  min-width: 230px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.22s, border 0.2s;
  position: relative;
}
.features-grid > div:hover, .features-grid > li:hover {
  border-color: var(--retro-orange);
  box-shadow: 0 8px 28px rgba(226, 144, 58, 0.14);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
  margin-bottom: 18px;
}
.services-list li {
  background: var(--retro-bg);
  border-radius: 18px;
  border-left: 6px solid var(--retro-orange);
  box-shadow: 0 2px 10px rgba(108,151,124,0.08);
  padding: 18px 24px;
  font-size: 1.04rem;
  color: var(--primary);
  margin-bottom: 0;
  position: relative;
  transition: background 0.18s, box-shadow 0.24s;
}
.services-list li span {
  display: inline-block;
  color: var(--retro-brown);
  font-weight: bold;
  margin-top: 4px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.services-list li:hover {
  background: var(--retro-green);
  box-shadow: 0 4px 18px rgba(167,199,161,0.1);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--retro-bg);
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(164,102,58,0.07);
  border: 2px solid var(--retro-brown);
  position: relative;
  padding: 26px 22px;
  transition: box-shadow 0.22s, border 0.2s;
}
.card:hover {
  box-shadow: 0 10px 34px rgba(164,102,58,0.18);
  border-color: var(--retro-orange);
}

.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: 20px;
  padding: 20px;
  background: #fff;
  border: 2px solid var(--retro-brown);
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px rgba(164,102,58,0.08);
  min-width: 220px;
  max-width: 530px;
}
.testimonial-card p {
  color: #2C1D0E;
  font-style: italic;
  font-size: 1.11rem;
}
.testimonial-card div:last-child {
  font-family: 'Montserrat', Arial;
  color: #E2903A;
  letter-spacing: 0.07em;
  font-weight: 900;
  font-size: 1.22rem;
}
.testimonial-card div {
  color: #6C977C;
}


.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--retro-bg);
  border: 2px dashed var(--retro-orange);
  border-radius: 14px;
  padding: 16px 18px;
}

/* ========== FOOTER ========== */
footer {
  background: var(--retro-dark);
  color: #fff;
  padding: 42px 0 18px 0;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
}
.footer-wrapper a img {
  filter: sepia(58%) hue-rotate(8deg) brightness(0.95) contrast(1.2);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-nav a {
  color: #EDE3C8;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial;
  padding: 3px 0;
  text-decoration: underline dotted var(--retro-green);
  transition: color .17s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--retro-green);
}
.footer-contact p {
  color: #F4F2EC;
  font-size: 1rem;
}
.footer-contact a {
  color: var(--retro-orange);
  font-weight: 700;
}

/* ========== MAP PLACEHOLDER ========== */
.map-embed-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--retro-green);
  color: #fff;
  min-height: 100px;
  border-radius: 16px;
  margin: 20px 0 0 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  font-style: italic;
}

/* ========== COOKIE CONSENT ========== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 6030;
  background: var(--retro-brown);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 16px 20px 16px;
  box-shadow: 0 -4px 24px rgba(68,58,47,0.18);
  gap: 18px;
  animation: cookie-slideup 0.8s cubic-bezier(.41,1.35,.52,.98);
}
@keyframes cookie-slideup {
  0% { transform: translateY(100%);}
  100% { transform: translateY(0);}
}
.cookie-banner__text {
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  margin-bottom: 10px;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 2px;
}
.cookie-banner .cta-btn {
  padding: 10px 18px;
  font-size: 1.01rem;
  border-radius: 16px;
  background: var(--retro-orange);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 1px 8px rgba(68,58,47,0.10);
}
.cookie-banner .cta-btn:hover {
  background: var(--retro-dark);
  color: #FFDAB2;
}
.cookie-banner .cookie-settings-btn {
  background: var(--retro-green);
  color: var(--primary);
  border: none;
  font-size: 1rem;
  border-radius: 16px;
}
.cookie-banner .cookie-settings-btn:hover {
  background: var(--retro-orange);
  color: #fff;
}

.cookie-modal {
  display: none;
  position: fixed;
  z-index: 6050;
  left: 0; right: 0; top: 0; bottom: 0;
  justify-content: center;
  align-items: center;
  background: rgba(33,29,25,.86);
  animation: fadein-cmodal 0.35s cubic-bezier(.44,0,.42,1);
}
@keyframes fadein-cmodal {
  0% { opacity: 0;}
  100% { opacity: 1;}
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal__box {
  background: #fff8f4;
  border-radius: 32px;
  box-shadow: 0 8px 54px rgba(68,58,47,.20);
  padding: 32px 24px;
  min-width: 320px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: var(--retro-orange);
  color: #fff;
  font-size: 1.6rem;
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  cursor: pointer;
  z-index: 12;
}
.cookie-modal h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--retro-brown);
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 12px;
}
.cookie-toggle {
  width: 40px;
  height: 24px;
  background: var(--retro-bg);
  border-radius: 20px;
  border: 2px solid var(--retro-brown);
  position: relative;
  transition: background 0.22s, box-shadow 0.18s;
  cursor: pointer;
}
.cookie-toggle input {
  opacity: 0;
  width: 40px;
  height: 24px;
  position: absolute;
  left: 0; top: 0;
  cursor: pointer;
}
.cookie-toggle .toggle-slider {
  position: absolute;
  left: 1px; top: 1px;
  width: 20px; height: 20px;
  background: var(--retro-orange);
  border-radius: 50%;
  transition: left 0.20s;
}
.cookie-toggle input:checked + .toggle-slider {
  left: 17px;
  background: var(--retro-green);
  box-shadow: 0 0 8px var(--retro-green);
}
.cookie-modal .cta-btn {
  width: 100%;
  padding: 12px 0;
  background: var(--retro-green);
  color: var(--primary);
  font-weight: 700;
}
.cookie-modal .cta-btn:hover {
  background: var(--retro-brown);
  color: #fff;
}

/* ========== FORMS (if present) ========== */
input[type="text"], input[type="email"], textarea {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  padding: 10px 14px;
  background: #fff8f4;
  border: 2px solid var(--retro-green);
  border-radius: 14px;
  margin-top: 5px;
  margin-bottom: 16px;
  outline: none;
  transition: border 0.18s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: var(--retro-orange);
}

/* ========== UTILITY: VINTAGE DECORATIVE LINES, BADGES ========== */
.section-title {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: 'Montserrat', Arial Black, Arial, sans-serif;
  font-size: 2.1rem;
}
.section-title::before, .section-title::after {
  content: '';
  display: inline-block;
  height: 3px;
  width: 38px;
  background: linear-gradient(90deg, var(--retro-brown), #fff 90%);
  border-radius: 6px;
  margin: 0 6px;
}
.badge-retro {
  background: var(--retro-brown);
  color: #fff8f4;
  font-family: 'Montserrat', Arial Black;
  letter-spacing: 0.12em;
  font-size: .96rem;
  padding: 2px 16px 2px 14px;
  border-radius: 11px;
  text-shadow: 0 1px 0 rgba(164, 102, 58, 0.28);
  box-shadow: 0 2px 8px rgba(164,102,58,0.09);
  display: inline-block;
  margin-left: 4px;
}

/* ========== RESPONSIVE LAYOUTS ========== */
@media (max-width: 768px) {
  header {
    border-radius: 0;
    padding: 0;
  }
  section {
    padding: 18px 7px;
    border-radius: 17px;
    margin-bottom: 38px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
    font-size: 1rem;
  }
  .container {
    padding: 0 5px;
  }
  .features-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-bottom: 8px;
  }
  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
  }
}
@media (max-width: 480px) {
  h1 {font-size: 1.65rem;}
  h2 {font-size: 1.25rem;}
  .cta-btn, .footer-contact p, .main-nav a, .footer-nav a {
    font-size: 1rem;
    padding: 9px 16px;
  }
  .section-title {
    font-size: 1.12rem;
  }
  .cookie-modal__box {
    padding: 12px 8px;
  }
}

/* ========== MICRO-INTERACTIONS & TRANSITIONS ========== */
.card, .features-grid > div, .features-grid > li, .services-list li, .testimonial-card {
  transition: box-shadow 0.20s, border 0.18s, background 0.16s;
}
.cta-btn, .cookie-banner .cta-btn, .cookie-banner .cookie-settings-btn {
  transition: background 0.20s, color 0.19s, box-shadow 0.17s, transform 0.13s;
}
.main-nav a, .footer-nav a, .mobile-nav a {
  transition: color 0.18s, border-bottom 0.18s, background 0.18s;
}

::selection {
  background: #F9BC7B;
  color: #23272A;
}

/* ========== Z-INDEXS for Layering (Mobile menu, cookie, etc.) ========== */
header { z-index: 51; }
.mobile-menu { z-index: 200; }
.cookie-banner { z-index: 6030; }
.cookie-modal { z-index: 6050; }

/* ========== HIDE ELEMENTS FOR CLARITY IF NECESSARY ========== */
[hidden] { display: none !important; }

/* -------------- END -------------- */
