/* --- RESET & BASE --- */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #FFFFFF;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #3E3A37;
  background: #fff;
  min-height: 100vh;
  line-height: 1.55;
  font-size: 1rem;
  letter-spacing: 0.02em;
  -webkit-text-size-adjust: 100%;
  background-color: #fff;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #8B1423;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover,
a:focus {
  color: #3E3A37;
  outline: none;
}
ul, ol {
  list-style-type: disc;
  padding-left: 1.4em;
  margin-bottom: 1.3em;
}
ul li, ol li {
  margin-bottom: 0.5em;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  background: none;
  outline: none;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  color: #3E3A37;
  line-height: 1.15;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 16px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}
p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: #3E3A37;
}
strong, b {
  font-weight: 700;
}
blockquote {
  font-style: italic;
  color: #3E3A37;
  margin-bottom: 12px;
  border-left: 2px solid #8B1423;
  padding-left: 16px;
  background: #F9F2E7;
}
cite {
  display: block;
  color: #8B1423;
  font-size: 1rem;
  font-style: normal;
  padding-top: 2px;
}

/* --- LAYOUT CONTAINERS --- */
.container {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* --- FLEXBOX SPACING/ALIGNMENT --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(62,58,55,0.05);
  transition: box-shadow 0.2s;
  position: relative;
}
.card:hover {
  box-shadow: 0 4px 24px 0 rgba(62,58,55,0.12);
}
.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: 12px;
  background: #F9F2E7;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(62,58,55,0.07);
  padding: 20px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 410px;
  flex: 1 1 320px;
  transition: box-shadow 0.21s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 rgba(62,58,55,0.12);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.feature-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(62,58,55,0.05);
  padding: 28px 18px 24px 18px;
  flex: 1 1 280px;
  min-width: 240px;
  max-width: 345px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s;
}
.feature-grid > div img {
  height: 40px;
  margin-bottom: 18px;
}
.feature-grid > div:hover {
  box-shadow: 0 12px 38px 0 rgba(62,58,55,0.08);
}

.menu-categories, .menu-highlights {
  margin-bottom: 32px;
}
.menu-categories > h3, .menu-highlights > h3 {
  margin-top: 24px;
  margin-bottom: 8px;
}

.next-steps ul {
  margin-bottom: 20px;
  margin-left: 1em;
  list-style: disc inside;
}

.info-banner {
  background: #F9F2E7;
  border-radius: 10px;
  padding: 28px 20px;
  box-shadow: 0 2px 10px 0 rgba(62,58,55,0.07);
}

.text-section {
  max-width: 850px;
  margin: 0 auto;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  border-bottom: 1px solid #ece6de;
  box-shadow: 0 2px 8px 0 rgba(62,58,55,0.03);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 68px;
  padding-top: 8px;
  padding-bottom: 8px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

header nav a {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #3E3A37;
  font-weight: 500;
  padding: 7px 3px;
  border-radius: 6px;
  transition: background 0.17s, color 0.17s;
}
header nav a.active,
header nav a:hover,
header nav a:focus {
  background: #F9F2E7;
  color: #8B1423;
}

.cta-button {
  background: #8B1423;
  color: #fff;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.06rem;
  padding: 11px 28px;
  border-radius: 32px;
  box-shadow: 0 2px 12px 0 rgba(139,20,35,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.22s;
  display: inline-block;
  text-align: center;
  margin-left: 28px;
  letter-spacing: 0.01em;
  border: none;
  outline: none;
  cursor: pointer;
}
.cta-button.secondary {
  background: #fff;
  color: #8B1423;
  border: 1.5px solid #8B1423;
  box-shadow: none;
}
.cta-button:hover,
.cta-button:focus {
  background: #3E3A37;
  color: #fff;
  box-shadow: 0 8px 24px 0 rgba(62,58,55,0.20);
}
.cta-button.secondary:hover,
.cta-button.secondary:focus {
  background: #F9F2E7;
  color: #8B1423;
  box-shadow: 0 2px 8px 0 rgba(62,58,55,0.13);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2rem;
  color: #8B1423;
  padding: 6px 12px;
  margin-left: 10px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 101;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #F9F2E7;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  width: 90vw;
  max-width: 340px;
  height: 100vh;
  box-shadow: -6px 0 22px 2px rgba(62,58,55,0.15);
  z-index: 2002;
  transition: transform 0.33s cubic-bezier(.69,.28,.3,.83);
  will-change: transform;
  flex-direction: column;
  padding: 36px 22px 22px 22px;
  transform: translateX(100%);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #8B1423;
  cursor: pointer;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F9F2E7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 16px;
  flex: 1 1 auto;
}
.mobile-nav a {
  color: #3E3A37;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  padding: 14px 8px;
  border-radius: 7px;
  transition: background 0.19s, color 0.17s;
  font-weight: 500;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F9F2E7;
  color: #8B1423;
}

/* --- FOOTER --- */
footer {
  background: #fff;
  color: #3E3A37;
  border-top: 1px solid #ece6de;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 32px 0 18px 0;
}
.footer-main > * {
  min-width: 200px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 6px;
}
.footer-nav a {
  color: #3E3A37;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.15s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #8B1423;
  text-decoration: underline;
}
.footer-contact p {
  color: #3E3A37;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.footer-bottom {
  padding: 20px 0 8px 0;
  text-align: center;
  font-size: 0.97rem;
  color: #7e7570;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #F9F2E7;
  color: #3E3A37;
  box-shadow: 0 -1px 24px 0 rgba(62,58,55,0.18);
  padding: 21px 20px 20px 20px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  animation: cookieBannerSlide 0.45s cubic-bezier(.42,0,.58,1);
}
@keyframes cookieBannerSlide {
  0% { transform: translateY(48px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 13px;
  margin-top: 8px;
}
.cookie-banner .cookie-btn {
  border-radius: 32px;
  border: none;
  padding: 9px 21px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.15s, color 0.15s, box-shadow 0.18s;
  cursor: pointer;
  background: #fff;
  color: #3E3A37;
  box-shadow: 0 2px 8px 0 rgba(62,58,55,0.08);
}
.cookie-banner .cookie-btn.accept {
  background: #8B1423;
  color: #fff;
}
.cookie-banner .cookie-btn.accept:hover {
  background: #3E3A37;
}
.cookie-banner .cookie-btn.reject {
  background: #fff;
  border: 1.5px solid #8B1423;
  color: #8B1423;
}
.cookie-banner .cookie-btn.reject:hover {
  background: #F9F2E7;
  color: #8B1423;
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  color: #3E3A37;
}
.cookie-banner .cookie-btn.settings:hover {
  background: #ece6de;
  color: #8B1423;
}

/* COOKIE MODAL (dialog) */
.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(62,58,55,0.37);
  z-index: 3100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.16s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  padding: 32px 18px 18px 18px;
  max-width: 390px;
  width: 95vw;
  box-shadow: 0 10px 48px 0 rgba(62,58,55,0.19);
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1.05rem;
  position: relative;
  animation: popUp 0.34s cubic-bezier(.42,0,.58,1);
}
@keyframes popUp {
  0% { transform: scale(0.95); opacity: 0; }
  100% { transform: scale(1.0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 16px;
  background: none;
  border: none;
  color: #8B1423;
  font-size: 1.6rem;
  cursor: pointer;
  border-radius: 50%;
  padding: 3px 10px;
  transition: background 0.15s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: #F9F2E7;
}
.cookie-switch-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-switch {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
}
.cookie-switch label {
  font-size: 1rem;
  cursor: pointer;
  color: #3E3A37;
}
.cookie-switch input[type="checkbox"]:disabled + .toggle {
  opacity: 0.3;
  cursor: not-allowed;
}
.toggle {
  width: 36px;
  height: 20px;
  border-radius: 20px;
  background: #ece6de;
  position: relative;
  transition: background 0.16s;
}
.toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 18px;
  background: #fff;
  transition: left 0.16s;
  box-shadow: 0 1px 3px 0 rgba(62,58,55,0.11);
}
.cookie-switch input[type="checkbox"]:checked + .toggle {
  background: #8B1423;
}
.cookie-switch input[type="checkbox"]:checked + .toggle:before {
  left: 18px;
}

.cookie-modal .cookie-btn-group {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* --- MISC, GENERAL CLASSES --- */
.map-details {
  font-size: 0.98rem;
  color: #67625c;
}

/* --- MEDIA QUERIES: RESPONSIVE FLEX & MOBILE LAYOUTS --- */
@media (max-width: 1100px) {
  .feature-grid {
    gap: 22px;
  }
  .testimonial-card {
    max-width: 525px;
  }
}
@media (max-width: 980px) {
  .footer-main {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
}
@media (max-width: 900px) {
  .feature-grid {
    justify-content: center;
  }
}
@media (max-width: 840px) {
  .testimonial-card {
    max-width: 100%;
    flex-basis: 100%;
  }
}
@media (max-width: 780px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  .feature-grid > div {
    max-width: 98vw;
    min-width: 180px;
    padding: 22px 10px 20px 10px;
  }
  .card-container {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .content-grid,
  .feature-grid,
  .footer-main {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
  .testimonial-card {
    width: 100%;
    min-width: 0;
    padding: 16px;
  }
  .card {
    width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  header .container {
    gap: 6px;
    flex-wrap: wrap;
  }
  .cta-button {
    margin-left: 0;
    margin-top: 10px;
    padding: 10px 18px;
    font-size: 1rem;
  }
  header nav {
    gap: 14px;
  }
}
@media (max-width: 650px) {
  .footer-bottom {
    font-size: 0.92rem;
    padding-top: 12px;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.36rem;
  }
  .feature-grid > div,
  .testimonial-card {
    padding: 14px 4px;
  }
}
@media (max-width: 560px) {
  .cookie-modal {
    padding: 17px 7px 10px 7px;
    font-size: 0.98rem;
  }
}
/* --- SHOW BURGER / HIDE MAIN NAV ON MOBILE --- */
@media (max-width: 1050px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 1051px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
  header nav {
    display: flex !important;
  }
}

/* --- SPECIAL & OVERRIDES --- */

section ul,
section ol {
  margin-bottom: 12px;
}
section ul li,
section ol li {
  margin-bottom: 5px;
}
.info-banner ul {
  margin-bottom: 9px;
}

/* --- Hide focus-marks for mouse users, show for keyboard --- */
:focus {
  outline: 2px solid #8B1423;
  outline-offset: 2px;
}

/* --- SCROLLBAR --- */
body::-webkit-scrollbar {
  width: 11px;
  background: #F9F2E7;
}
body::-webkit-scrollbar-thumb {
  background: #ece6de;
  border-radius: 7px;
}

/* --- MISC UI Details --- */
hr {
  border: none;
  border-top: 1px solid #ece6de;
  margin: 26px 0;
}

/* --- Animations for micro-interactions --- */
.cta-button, .cookie-btn, .feature-grid > div, .card, .testimonial-card {
  transition: box-shadow 0.19s, background 0.19s, color 0.19s, border 0.18s;
}

/* --- PRINT OVERRIDE: Hide navigation/CTAs/banner/footers on print --- */
@media print {
  header, .cta-button, .cookie-banner, .cookie-modal-overlay, footer, .mobile-menu { display: none !important; }
}
