/* -----------------------------------------
   RESET & BASELINE
----------------------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #F6F6F6;
  color: #453526;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.02em;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  color: #1C5476;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #3CB371;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #312212;
  margin-bottom: .5em;
  letter-spacing: 0.05em;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.4rem;
}
h4 {
  font-size: 1.125rem;
}
p {
  margin-bottom: 1em;
}
strong {
  font-weight: bold;
}

/* -----------------------------------------
   VINTAGE RETRO: COLORS & PATTERNS
----------------------------------------- */
:root {
  --primary: #1C5476;
  --secondary: #3CB371;
  --accent: #F6F6F6;
  --retro-sand: #FFE0B5;
  --retro-brown: #bb7e39;
  --retro-orange: #E66C2B;
  --retro-green: #3CB371;
  --retro-blue: #3289c7;
  --retro-red: #DA3D25;
  --base-dark: #312212;
  --white: #FFF;
  --card-radius: 18px;
  --card-shadow: 0 2px 12px 0 rgba(120, 92, 41, 0.13), 0 1.5px 0 rgba(220,210,200,0.13);
}

body {
  background: var(--accent);
  /* subtle light patterned background */
  background-image: repeating-linear-gradient(135deg, #FFE0B511 0 3px, transparent 3px 25px);
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
}

/* -----------------------------------------
   HEADER & NAVIGATION
----------------------------------------- */
header {
  background: var(--retro-sand);
  border-bottom: 3px solid var(--retro-brown);
  box-shadow: 0 1px 9px #ad11770108;
  position: relative;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 78px;
}
.brand-logo img {
  height: 58px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
}
.main-nav a {
  color: var(--base-dark);
  padding: 6px 14px;
  border-radius: 8px;
  position: relative;
  transition: background 0.16s, color 0.16s;
}
.main-nav a:not(.cta-primary):hover, .main-nav a:not(.cta-primary):focus {
  background: var(--retro-orange);
  color: var(--white);
}
.main-nav .cta-primary {
  background: var(--primary);
  color: var(--white);
  padding: 7px 28px;
  border-radius: 24px;
  border: 2.5px solid var(--retro-orange);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  margin-left: 6px;
  letter-spacing: 0.03em;
  box-shadow: 0px 2px 4px #51210011;
  transition: background 0.16s, color 0.16s, box-shadow 0.23s;
  cursor: pointer;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: var(--retro-brown);
  color: var(--retro-sand);
}

.mobile-menu-toggle {
  display: none;
  background: var(--retro-orange);
  color: var(--white);
  border-radius: 9px;
  border: none;
  font-size: 2rem;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  box-shadow: 0px 2px 8px #c77b2d28;
  z-index: 201;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--retro-brown);
  color: var(--retro-sand);
}

/* MOBILE SLIDE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 88vw;
  max-width: 345px;
  height: 100vh;
  background: var(--retro-sand);
  box-shadow: -8px 0 40px #75421b1a;
  transform: translateX(120%);
  transition: transform .37s cubic-bezier(0.83,0,0.17,1);
  z-index: 210;
  display: flex;
  flex-direction: column;
  padding: 30px 0 0 0;
  gap: 20px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: var(--retro-red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1.8rem;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 250;
  transition: background .2s, color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--retro-brown);
  color: var(--retro-sand);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 62px;
  padding: 0 30px;
}
.mobile-nav a {
  color: var(--base-dark);
  background: none;
  padding: 14px 0 10px 0;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-bottom: 1px dashed var(--primary);
  border-radius: 0;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--retro-orange);
  color: var(--white);
}

@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 993px) {
  .mobile-menu-toggle,
  .mobile-menu {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
}

/* Overlay for mobile menu opening */
.mobile-menu::before {
  content: '';
  display: none;
}
.mobile-menu.open::before {
  content: '';
  display: block;
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.2);
  z-index: 205;
}

/* -----------------------------------------
   HERO SECTION
----------------------------------------- */
.hero {
  background: var(--primary);
  color: var(--white);
  padding: 60px 0 48px 0;
  border-bottom: 5px solid var(--retro-brown);
  box-shadow: 0 6px 40px #1C547613;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 680px;
  gap: 22px;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  color: #FFE0B5;
  letter-spacing: 0.09em;
  text-shadow: 2px 2px 0 #2e1910, 8px 8px 32px #1C547629;
  margin-bottom: 16px;
}
.hero p {
  color: #fffcd7;
  font-size: 1.25rem;
}
.hero .cta-primary {
  margin-top: 20px;
  background: var(--retro-orange);
  color: var(--retro-sand);
  border: none;
  box-shadow: 0px 2px 12px #E66C2B38;
  font-size: 1.28rem;
  border-radius: 32px;
  padding: 13px 44px;
  letter-spacing: 0.04em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: background .16s, color .16s, box-shadow .21s;
}
.hero .cta-primary:hover,
.hero .cta-primary:focus {
  background: var(--retro-red);
  color: var(--retro-sand);
  box-shadow: 0px 4px 22px #E66C2B44;
}

/* -----------------------------------------
   FEATURES/GRID/CARDS
----------------------------------------- */
.features {
  margin-bottom: 60px;
}
.feature-grid,
.features .content-wrapper.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 26px;
}
.feature {
  flex: 1 1 220px;
  min-width: 210px;
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 26px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .18s, transform .22s;
  border: 3.5px solid var(--retro-sand);
  margin-bottom: 20px;
  position: relative;
}
.feature img {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  filter: sepia(0.23) hue-rotate(7deg) saturate(0.55);
}
.feature h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  color: var(--retro-brown);
  text-shadow: 1px 1px 0 #FFE0B5, 0px 0px 1px #FFF;
  margin-bottom: 8px;
}
.feature p {
  font-size: 1rem;
  color: #4f4e48;
  line-height: 1.6;
  margin-bottom: 0;
}
.feature:hover,
.feature:focus-within {
  box-shadow: 0 8px 32px #E66C2B25, 0 2px 6px #F6F6F6ee;
  transform: translateY(-7px) scale(1.012);
  border-color: var(--retro-orange);
  z-index: 2;
}

/* -----------------------------------------
   TESTIMONIALS
----------------------------------------- */
.testimonials {
  margin-bottom: 60px;
}
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  padding: 23px 26px 22px 24px;
  border-radius: var(--card-radius);
  box-shadow: 0 3px 24px #00633C09, 0 2px 8px #77420004;
  border-left: 5px solid var(--retro-green);
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 380px;
  flex: 1 1 280px;
  transition: box-shadow .19s, border-left-color .22s, transform .13s;
}
.testimonial-card p {
  font-size: 1.06rem;
  color: var(--base-dark);
  font-family: 'Lato',Arial,sans-serif;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1.7;
}
.testimonial-card span {
  font-size: 1rem;
  color: var(--retro-brown);
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 500;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0px 9px 32px #3CB37134, 0 1.5px 2px #D7B29922;
  border-left-color: var(--retro-orange);
  transform: scale(1.018);
}

/* -----------------------------------------
   BUTTONS/CALLS TO ACTION
----------------------------------------- */
.cta-primary {
  background: var(--retro-orange);
  color: var(--white);
  border-radius: 32px;
  padding: 13px 33px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  box-shadow: 0 2px 14px #E66C2B1a;
  border: none;
  letter-spacing: 0.04em;
  transition: background .16s, color .16s, box-shadow .19s, transform .18s;
  cursor: pointer;
  display: inline-block;
  margin-top: 10px;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--retro-brown);
  color: var(--retro-sand);
  transform: scale(1.04);
  box-shadow: 0 6px 18px #bb7e3940;
}

/* -----------------------------------------
   ABOUT & CONTENT WRAPPER
----------------------------------------- */
.about .content-wrapper, .services .content-wrapper,
.legal .content-wrapper, .contact .content-wrapper {
  background: var(--retro-sand);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 40px 26px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about .content-wrapper ul,
.legal .content-wrapper ul,
.contact .content-wrapper ul,
.services .content-wrapper ul {
  margin-left: 1.2em;
  margin-bottom: 18px;
}
.about .content-wrapper li, .legal .content-wrapper li, .contact .content-wrapper li {
  color: var(--retro-brown);
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1.04rem;
  margin-bottom: 8px;
  position: relative;
  padding-left: 22px;
}
.about .content-wrapper li::before,
.legal .content-wrapper li::before,
.contact .content-wrapper li::before {
  content: '\25B6';
  color: var(--retro-orange);
  position: absolute;
  left: 0; top: 1px;
  font-size: .95em;
  font-family: Arial, sans-serif;
}

/* Cards (if needed in inner content) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 26px 28px 18px 28px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 240px;
  transition: box-shadow .16s, transform .14s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 8px 24px #1C547618;
  transform: translateY(-5px) scale(1.012);
}

/* Content Grid Layouts */
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.map-placeholder {
  background: #fff7ec;
  border: 2.5px dashed var(--retro-brown);
  border-radius: 14px;
  padding: 28px 16px;
  color: var(--base-dark);
  font-family: 'Montserrat',Arial,sans-serif;
  text-align: center;
  margin-top: 16px;
}

/* -----------------------------------------
   FOOTER
----------------------------------------- */
footer {
  background: var(--retro-brown);
  color: var(--retro-sand);
  padding: 42px 0 34px 0;
  border-top: 6px double var(--primary);
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}
.footer-brand img {
  height: 38px;
  width: auto;
  margin-right: 8px;
}
.footer-brand span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  letter-spacing: .04em;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: var(--retro-sand);
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1.07rem;
  opacity: 0.94;
  transition: color .15s, opacity .18s;
  margin-bottom: 3px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--retro-orange);
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: 'Lato',Arial,sans-serif;
  font-size: 1rem;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--retro-sand);
  font-size: 1em;
  margin-bottom: 0;
}
.footer-contact img {
  width: 20px;
  height: 20px;
  opacity: 0.83;
}

/* -----------------------------------------
   COOKIE CONSENT BANNER & MODAL
----------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--retro-sand);
  color: var(--base-dark);
  box-shadow: 0 -2px 32px #bb7e3933;
  border-top: 4px solid var(--retro-brown);
  padding: 22px 10vw 22px 10vw;
  z-index: 800;
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.47s cubic-bezier(0.7,0,0.43,1);
}
.cookie-banner.hide {
  transform: translateY(160%);
}
.cookie-banner__content {
  flex: 1 0 0;
  font-size: 1.02rem;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  padding: 8px 18px;
  border: none;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Montserrat', Arial,sans-serif;
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .18s;
  box-shadow: 0 1px 3px #e3c48119;
  outline: none;
}
.cookie-btn.accept {
  background: var(--retro-orange);
  color: var(--white);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--retro-red);
  color: var(--retro-sand);
}
.cookie-btn.reject {
  background: var(--retro-brown);
  color: var(--retro-sand);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--primary);
  color: var(--retro-sand);
}
.cookie-btn.settings {
  background: var(--accent);
  color: var(--base-dark);
  border: 2px solid var(--retro-brown);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--retro-sand);
  color: var(--retro-orange);
}

.cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  z-index: 860;
  background: rgba(36,26,8,0.18);
  align-items: center;
  justify-content: center;
}
.cookie-modal.open {
  display: flex;
  animation: cookieFadeIn .29s cubic-bezier(.47,.12,.74,.9);
}
@keyframes cookieFadeIn {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal__content {
  background: var(--retro-sand);
  border-radius: 18px;
  max-width: 410px;
  box-shadow: 0 6px 48px #1C54761b, 0 2px 9px #51210022;
  padding: 38px 32px 28px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 870;
}
.cookie-modal__title {
  font-size: 1.21rem;
  font-family: 'Montserrat',Arial,sans-serif;
  color: var(--retro-orange);
  font-weight: 700;
  margin-bottom: 8px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
}
.cookie-modal__category label {
  font-size: 1.07rem;
  color: var(--base-dark);
  font-family: 'Montserrat',Arial,sans-serif;
}
.cookie-modal__category input[type=checkbox] {
  accent-color: var(--retro-orange);
  width: 21px;
  height: 21px;
  border-radius: 4px;
}
.cookie-modal__category.essential {
  opacity: 0.58;
}
.cookie-modal__actions {
  display: flex;
  gap: 14px;
}
.cookie-modal__close {
  position: absolute;
  right: 15px;
  top: 13px;
  background: none;
  border: none;
  font-size: 1.38rem;
  color: var(--retro-orange);
  cursor: pointer;
  transition: color .12s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: var(--retro-red);
}

/* -----------------------------------------
   TYPOGRAPHY & VINTAGE DETAILS
----------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600|Lato:400,700&display=swap');

h1, h2, h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.04em;
}
h1 {
  font-size: 2.28rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.6em;
}
h2 {
  font-size: 1.47rem;
  color: var(--retro-orange);
  margin-bottom: 0.4em;
  border-bottom: 2.5px dashed var(--retro-brown);
  display: inline-block;
  padding-bottom: 3px;
}
h3 {
  font-size: 1.22rem;
  color: var(--retro-brown);
  margin-bottom: 0.3em;
}
@media (min-width: 600px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.28rem; }
}

/* Decorative vintage pattern bar */
.section:after {
  content: '';
  display: block;
  margin: 26px auto 0 auto;
  width: 20%;
  height: 5px;
  background: repeating-linear-gradient(90deg, var(--retro-orange), var(--retro-brown) 40px, var(--retro-brown) 80px, var(--retro-orange) 120px, var(--retro-sand) 170px);
  border-radius: 4px;
  opacity: 0.13;
}

/* -----------------------------------------
   RESPONSIVE DESIGN
----------------------------------------- */
@media (max-width: 992px) {
  .container {
    padding: 0 14px;
  }
  .footer-brand, .footer-contact {
    font-size: 0.94rem;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 7px;
  }
  header .container {
    flex-direction: row;
    padding: 0 8px;
    gap: 8px;
    height: 62px;
  }
  .hero {
    padding: 34px 0 20px 0;
  }
  .hero h1 {
    font-size: 1.6rem;
    margin-bottom: 9px;
  }
  .hero .content-wrapper {
    gap: 13px;
  }
  .features .content-wrapper.feature-grid, .feature-grid, .content-grid, .testimonials-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature {
    padding: 18px 12px 14px 14px;
    min-width: unset;
    font-size: 0.99rem;
  }
  .testimonial-card {
    padding: 17px 15px 16px 14px;
    max-width: 100%;
  }
  .about .content-wrapper, .services .content-wrapper, .legal .content-wrapper, .contact .content-wrapper {
    padding: 20px 8px;
    font-size: 0.97rem;
  }
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 21px;
    padding: 15px 14px 15px 14px;
    font-size: 0.99rem;
  }
  .cookie-banner__actions {
    width: 100%;
    justify-content: flex-end;
    gap: 8px;
  }
  .cookie-modal__content {
    padding: 22px 7px 16px 13px;
    max-width: 95vw;
  }
  .map-placeholder {
    padding: 18px 7px;
    font-size: .96rem;
  }
}

@media (max-width: 500px) {
  .hero .content-wrapper {
    padding: 0 2px;
  }
  h1, .hero h1 {
    font-size: 1.14rem;
  }
}

/* Prevent overlapping and spacing */
.section, .features, .testimonials, .about, .cta, .services, .legal, .contact {
  margin-bottom: 60px;
}
.card, .feature, .testimonial-card {
  margin-bottom: 20px;
}

/* Hide scroll in overlay menu */
body.mobile-menu-open {
  overflow: hidden;
}

/* INTERACTIVE ELEMENTS FOCUS VISIBLE */
:focus-visible {
  outline: 2.5px dashed var(--retro-orange);
  outline-offset: 2px;
  z-index: 2000;
}

/* Utility classes if needed */
.d-flex {
  display: flex!important;
}
.flex-col {
  flex-direction: column!important;
}
.align-center {
  align-items: center;
}
.gap-20 {
  gap: 20px;
}

