/* 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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: #F7F6F3;
}
body {
  line-height: 1.6;
  background: #F7F6F3;
  color: #253858;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
a {
  color: #B05B3B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #8C472B;
  text-decoration: underline;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 10px;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin: 30px 0;
}
th, td {
  border: 1px solid #D9CEC1;
  padding: 12px 16px;
  text-align: left;
  font-family: 'Open Sans', Arial, sans-serif;
}
th {
  background: #F4DEBE;
  color: #253858;
  font-weight: 700;
}

/* Font Imports (Fallbacks for local use) */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Open+Sans:400,700&display=swap');

/* Vintage Retro Color Palette (adds contrast + accents) */
:root {
  --va-primary: #253858;
  --va-secondary: #6699A1;
  --va-accent: #F7F6F3;
  --va-bg: #F7F6F3;
  --va-brown: #B05B3B;
  --va-orange: #F4DEBE;
  --va-yellow: #FAEB85;
  --va-green: #9CAF88;
  --va-border: #D9CEC1;
  --va-shadow: rgba(60,37,8,0.11);
  --va-testimonial-bg: #FFFDF8;
  --va-testimonial-border: #E6DCCB;
}

/* Typography — Retro/Display Headings; readable body */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', 'Arial', sans-serif;
  color: var(--va-primary);
  font-weight: 900;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.3rem;
  color: var(--va-brown);
  text-shadow: 1px 2px 0 #E6DCCB;
  margin-bottom: 20px;
  line-height: 1.11;
}
h2 {
  font-size: 1.7rem;
  color: var(--va-primary);
  margin: 0 0 18px 0;
  border-left: 6px solid var(--va-yellow);
  padding-left: 15px;
  font-weight: 900;
}
h3 {
  font-size: 1.28rem;
  color: var(--va-brown);
  margin: 18px 0 12px 0;
  font-weight: 700;
}

p, li, strong, ol, ul {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--va-primary);
  font-size: 16px;
  line-height: 1.7;
}
strong {
  font-weight: 700;
  color: var(--va-brown);
  letter-spacing: 0.1px;
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--va-bg);
  border-radius: 16px;
  box-shadow: 0 2px 16px var(--va-shadow);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.address-details, .business-hours {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 6px;
}

/* Flex Patterns — Cards/Grids */
.card-container, .card-grid, .feature-list, .footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: #FFFDF8;
  border: 1.5px solid #E6DCCB;
  border-radius: 15px;
  box-shadow: 0 1px 8px var(--va-shadow);
  padding: 26px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.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: center;
  gap: 20px;
  padding: 20px 22px;
  background: var(--va-testimonial-bg);
  border: 2px dashed var(--va-yellow);
  border-radius: 19px;
  margin-bottom: 22px;
  box-shadow: 0 2px 10px var(--va-shadow);
  transition: transform 0.14s, box-shadow 0.14s;
}
.testimonial-card:hover {
  transform: scale(1.03) rotate(-2deg);
  box-shadow: 0 8px 36px #D9CEC1aa;
  border-color: var(--va-orange);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Hero/Features/Lists/Accents */
ul {
  list-style: disc inside;
  padding-left: 25px;
  margin-bottom: 16px;
}
ol {
  list-style: decimal inside;
  padding-left: 25px;
  margin-bottom: 16px;
}
.features ul, .content-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 42px;
  align-items: flex-start;
}
.features ul li, .content-wrapper ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFF8EC;
  border: 1px solid #E6DCCB;
  border-radius: 12px;
  padding: 13px 18px;
  min-width: 215px;
  margin-bottom: 0;
  font-size: 16px;
  color: var(--va-primary);
}
.features ul li img, .content-wrapper ul li img {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

/* Ratings / Stats */
.ratings-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-size: 17px;
  background: #FFF8EC;
  border-radius: 19px;
  padding: 10px 22px;
  box-shadow: 0 1px 4.5px var(--va-shadow);
  color: var(--va-brown);
  font-weight: 700;
}
.ratings-summary img {
  width: 24px;
  vertical-align: middle;
}

/* Buttons — Retro, Chunky, Playful */
.btn {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', 'Arial', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1.2px;
  border-radius: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 33px;
  border: none;
  background: none;
  cursor: pointer;
  transition: background 0.24s, color 0.12s, border-color 0.14s, box-shadow 0.25s;
  box-shadow: 0 2px 9px var(--va-shadow);
  margin-top: 8px;
  gap: 10px;
}
.btn-primary {
  background: var(--va-brown);
  color: #FFFDF5;
  border: 2.5px solid var(--va-brown);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--va-orange);
  color: var(--va-primary);
  border-color: #854227;
  box-shadow: 0 6px 28px #FFD58688;
}
.btn-secondary {
  background: var(--va-yellow);
  color: var(--va-primary);
  border: 2px solid #E6DCCB;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #F4DEBE;
  color: var(--va-brown);
  border-color: #D9CEC1;
}

/* Header/Navbar — Nostalgic Ribbon Navbar */
header {
  background: linear-gradient(90deg, var(--va-yellow), var(--va-orange) 70%);
  border-bottom: 3px solid var(--va-brown);
  padding: 0 0 2px 0;
  margin-bottom: 25px;
  box-shadow: 0 2px 12px var(--va-shadow);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 16px 18px 16px 18px;
}
.logo img {
  height: 56px;
  width: auto;
  margin-right: 26px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-right: 22px;
}
.main-nav a {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-size: 16px;
  color: var(--va-primary);
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 10px;
  background: transparent;
  transition: background 0.16s, color 0.13s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--va-orange);
  color: var(--va-brown);
}

/* Mobile Burger Menu */
.mobile-menu-toggle {
  display: none;
  font-size: 31px;
  background: var(--va-brown);
  color: #FFFDF5;
  border-radius: 9px;
  border: none;
  padding: 6px 14px;
  cursor: pointer;
  box-shadow: 0 2px 8px var(--va-shadow);
  margin-left: 32px;
  transition: background 0.16s, color 0.13s;
  z-index: 1200;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--va-primary);
  color: var(--va-yellow);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--va-yellow);
  z-index: 2000;
  transform: translateX(-120vw);
  transition: transform 0.38s cubic-bezier(0.62,0.18,0.42,1);
  display: flex;
  flex-direction: column;
  padding-top: 25px;
  overflow-y: auto;
  box-shadow: 0 0 40px #CBA77A77;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 34px;
  background: none;
  border: none;
  color: var(--va-primary);
  align-self: flex-end;
  margin: 0 16px 14px 0;
  cursor: pointer;
  transition: color 0.13s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--va-brown);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-size: 22px;
  color: var(--va-brown);
  background: #FFFDF8;
  border: 2px solid var(--va-orange);
  border-radius: 13px;
  padding: 10px 28px;
  margin: 0 0 5px 0;
  transition: background 0.17s, color 0.12s;
  font-weight: 800;
  box-shadow: 0 2px 8px var(--va-shadow);
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--va-orange);
  color: var(--va-primary);
}

/* Footer Styles */
footer {
  background: linear-gradient(90deg, var(--va-orange), var(--va-yellow));
  border-top: 3px solid var(--va-brown);
  color: var(--va-primary);
  margin-top: 64px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 30px 10px 16px 10px;
  justify-content: space-between;
}
.footer-columns > div, .footer-columns > nav {
  flex: 1 1 180px;
  min-width: 180px;
  max-width: 270px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-columns img {
  width: 44px;
  margin-bottom: 12px;
}
.footer-columns strong {
  color: var(--va-brown);
  margin-bottom: 4px;
  font-size: 18px;
}
.footer-columns ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.footer-columns ul li {
  margin-bottom: 9px;
}
.footer-columns ul.social-links {
  flex-direction: row;
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: 12px;
}
.footer-columns ul.social-links li {
  margin: 0;
}
.footer-columns ul.social-links img {
  width: 29px; height: 29px;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--va-primary);
}
.footer-bottom {
  margin-top: 23px;
  padding: 13px 0 4px 0;
  font-size: 13px;
  text-align: center;
  background: transparent;
  letter-spacing: 0.7px;
}

/* Accordions (FAQ) */
.faq-accordion h3 {
  cursor: pointer;
  background: var(--va-orange);
  border-radius: 8px 8px 0 0;
  padding: 10px 20px;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: -1px;
  transition: background 0.12s, box-shadow 0.14s;
  border: 1.5px solid var(--va-yellow);
}
.faq-accordion div {
  display: none;  /* Will be shown by JS */
  background: #FFFAE2;
  border: 1.5px solid var(--va-yellow);
  border-top: none;
  padding: 20px 22px;
  margin-bottom: 11px;
  border-radius: 0 0 8px 8px;
}
.faq-accordion h3.active {
  background: var(--va-yellow);
  font-weight: bold;
  color: var(--va-brown);
  box-shadow: 0 2px 8px var(--va-shadow);
}
.faq-accordion div.active {
  display: block;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: var(--va-brown);
  color: #FFFDF5;
  box-shadow: 0 -3px 28px #00000025;
  padding: 22px 16px 18px 16px;
  z-index: 5500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 17px;
  letter-spacing: 0.1px;
}
.cookie-banner p {
  margin: 0 19px 0 0;
  color: #FFFDF5;
  font-size: 16px;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: 18px;
  margin-right: 9px;
  padding: 9px 22px;
  border: none;
  background: var(--va-yellow);
  color: var(--va-primary);
  cursor: pointer;
  transition: background 0.19s, color 0.12s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--va-orange);
  color: var(--va-brown);
}
.cookie-banner .cookie-btn.settings {
  background: #FFFDF8;
  color: var(--va-brown);
  border: 1.4px solid var(--va-yellow);
}

/* Cookie Modal Popup */
.cookie-modal-source {
  display: none;
}
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(37,56,88,0.35);
  z-index: 5550;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.32s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-window {
  background: #FFF8EC;
  color: var(--va-primary);
  border-radius: 21px;
  padding: 38px 28px 28px 28px;
  box-shadow: 0 11px 48px #B05B3B33;
  min-width: 320px;
  max-width: 97vw;
  border: 2.5px solid var(--va-yellow);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: popin-cookie 0.41s cubic-bezier(0.58,0.7,0.36,1.3);
}
@keyframes popin-cookie {
  from { opacity: 0; transform: scale(0.78); }
  to   { opacity: 1; transform: scale(1);   }
}
.cookie-modal-close {
  position: absolute;
  right: 18px; top: 19px;
  font-size: 28px;
  background: none;
  border: none;
  color: var(--va-brown);
  cursor: pointer;
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: var(--va-primary);
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 9px;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--va-yellow);
  border-radius: 6px;
}
.cookie-category label {
  font-size: 1rem;
  color: var(--va-brown);
}
.cookie-category .essential {
  font-style: italic;
  color: var(--va-brown);
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 15px;
}
.cookie-modal .btn {
  font-size: 15px;
  padding: 9px 18px;
}


/* Responsive Styles */
@media (max-width: 1024px) {
  .container {
    max-width: 97vw;
    padding-left: 8px; padding-right: 8px;
  }
  .footer-columns {
    gap: 22px;
    flex-direction: column;
  }
}
@media (max-width: 900px) {
  .footer-columns > div, .footer-columns > nav {
    min-width: 140px;
    max-width: none;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.09rem;
  }
  .section {
    padding: 24px 4vw;
    margin-bottom: 34px;
  }
  .footer-columns {
    padding: 22px 7px 12px 4px;
  }
  .features ul, .content-wrapper ul {
    gap: 10px 0;
  }
  ul, ol {
    padding-left: 13px;
  }
  .logo img {
    height: 39px;
    margin-right: 12px;
  }
  header .container {
    flex-direction: row;
    padding: 10px 8px 12px 8px;
  }
}
@media (max-width: 750px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (max-width: 620px) {
  .content-wrapper,
  .footer-columns {
    flex-direction: column !important;
    gap: 21px !important;
    align-items: stretch !important;
  }
  .card-container, .card-grid {
    flex-direction: column;
    gap: 19px;
    align-items: stretch !important;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 2vw;
  }
  .section {
    border-radius: 7px;
    padding: 17px 2vw;
  }
  .footer-columns {
    padding-left: 0; padding-right: 0;
  }
  .footer-bottom {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .btn, .btn-primary, .btn-secondary {
    font-size: 15px;
    padding: 9px 16px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 9px;
    font-size: 15px;
    padding: 13px 6px;
  }
  .cookie-banner .cookie-btn {
    font-size: 14px;
    margin-bottom: 7px;
  }
}
@media (max-width: 420px) {
  .card, .testimonial-card {
    padding: 13px 8px 12px 10px;
    border-radius: 10px;
  }
  .footer-columns {
    gap: 8px;
  }
}

/* Microinteractions & Details */
section {
  transition: box-shadow 0.18s;
}
section:hover {
  box-shadow: 0 8px 48px #B05B3B44;
  z-index: 2;
}
.features ul li:hover, .content-wrapper ul li:hover, .ratings-summary:hover {
  background: var(--va-yellow);
  color: var(--va-brown);
  transform: scale(1.04) rotate(-1deg);
  transition: background 0.21s, color 0.11s, transform 0.17s;
}
.table tr:hover td {
  background: #FFF8EC;
}

/* Accessibility Helpers */
:focus {
  outline: 2px dashed var(--va-brown) !important;
}
[tabindex]:focus {
  outline: 2.5px dotted var(--va-primary) !important;
  outline-offset: 3px;
}

/* Print Style minimal (hide nav/footer/banner) */
@media print {
  header, .footer-columns, .footer-bottom, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
}
