/* =====================
   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,
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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #232B2B;
  background-color: #F8F6F3;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
ul, ol {
  list-style: none;
}
button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}
input, select, textarea {
  font: inherit;
  border-radius: 0;
  outline: none;
}

/* =====================
   VINTAGE RETRO DESIGN
======================= */
:root {
  --primary: #232B2B;
  --secondary: #E5E3DF;
  --accent: #A4968B;
  --vintage-orange: #CF8C3F;
  --vintage-cream: #FFF8EB;
  --vintage-evergreen: #34605A;
  --vintage-corn: #F4D35E;
  --vintage-red: #E4572E;
  --font-display: 'Montserrat', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  --font-body: 'Open Sans', 'Arial', sans-serif;
  --border-radius-lg: 18px;
  --border-radius-md: 10px;
  --card-shadow: 0 2px 18px 0 rgba(44, 38, 27, 0.09);
  --retro-shadow: 0 4px 16px 0 rgba(142, 78, 24, 0.09);
  --focus-outline: 2px solid var(--vintage-red);
}

/* FONT FACE (for custom fonts; fallback included) */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900,400|Open+Sans:400,600,700&display=swap');

/* Typography scale & retro touch */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--vintage-orange);
  margin-bottom: 20px;
  text-shadow: 1px 2px 0 #FFF8EB, 2px 4px 2px rgba(207,140,63,0.12);
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  color: var(--vintage-evergreen);
  text-shadow: 1px 1px 0 #FFF8EB;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary);
  letter-spacing: 0.5px;
}
h4, .h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vintage-orange);
  margin-bottom: 6px;
}
p, ul, ol {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.7;
}
ul li, ol li {
  margin-bottom: 10px;
}
strong {
  color: var(--vintage-red);
  font-weight: 700;
}

/* Vintage/retro decorations */
hr {
  border: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--vintage-orange), var(--vintage-orange) 6px, transparent 6px, transparent 12px);
  margin: 32px 0;
  opacity: 0.14;
}

/* ===========================
   GENERAL STRUCTURE & SPACING
========================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 10px 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--vintage-cream);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--card-shadow);
}

/* =====================
   HEADER & NAVIGATION
======================= */
header {
  background: var(--vintage-corn);
  border-bottom: 6px double var(--vintage-orange);
  box-shadow: 0 1px 18px 0 rgba(100,90,45,0.05);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
}
header img {
  max-height: 52px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 1.2px;
  color: var(--primary);
  background: none;
  padding: 4px 12px;
  border-radius: 9px;
  position: relative;
  transition: background 0.18s, color 0.16s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--vintage-orange);
  color: #fff;
  outline: none;
}

.cta-btn {
  font-family: var(--font-display);
  background: var(--vintage-red);
  color: #fff;
  padding: 12px 28px;
  border-radius: 32px;
  font-size: 1.1rem;
  font-weight: bold;
  box-shadow: 0 4px 18px 0 rgba(183,81,36,0.12);
  letter-spacing: 1px;
  border: 2px solid var(--vintage-red);
  margin-left: 18px;
  transition: background 0.18s, color 0.18s, border 0.18s;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #fff;
  color: var(--vintage-red);
  border: 2px solid var(--vintage-red);
  outline: none;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--vintage-orange);
  background: #fff7e0;
  border: 2px solid var(--vintage-orange);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  z-index: 1101;
  transition: background 0.2s, box-shadow 0.2s;
}
.mobile-menu-toggle:active {
  background: var(--vintage-orange);
  color: #fff;
}

/* MOBILE MENU (overlay & responsive) */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #FFF8EBE0;
  z-index: 1500;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.75,.01,.2,1);
  box-shadow: -6px 0 30px 0 rgba(44, 38, 27, 0.21);
  padding-top: 48px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2.2rem;
  background: #fff;
  color: var(--vintage-red);
  border-radius: 44px;
  width: 44px;
  height: 44px;
  border: 2px solid var(--vintage-red);
  text-align: center;
  z-index: 1510;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--vintage-red);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-top: 44px;
}
.mobile-nav a {
  font-size: 1.3rem;
  font-family: var(--font-display);
  color: var(--primary);
  background: #FFFAF0;
  border-radius: var(--border-radius-md);
  padding: 10px 28px;
  margin-left: 8px;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--vintage-orange);
  color: #fff;
}

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

@media (min-width: 961px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =====================
   FOOTER
======================= */
footer {
  background: var(--secondary);
  padding: 34px 0 18px 0;
  border-top: 6px double var(--vintage-orange);
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 14px 0 9px 0;
}
.footer-nav a {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--vintage-cream);
  background: var(--vintage-evergreen);
  padding: 4px 14px;
  border-radius: var(--border-radius-md);
  transition: background 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--vintage-red);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 8px 0 8px 0;
  align-items: center;
  font-size: 1rem;
  color: var(--primary);
}
.footer-contact img {
  margin-right: 7px;
  vertical-align: middle;
}
footer span {
  margin-top: 8px;
  color: var(--accent);
  font-size: 0.97rem;
}

/* =====================
   HERO SECTION
======================= */
.hero {
  background: var(--vintage-orange);
  border-radius: 0 0 48px 48px;
  box-shadow: 0 24px 28px -10px rgba(207, 140, 63, 0.09);
  padding: 55px 0 50px 0;
  margin-bottom: 48px;
  min-height: 260px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  color: #fff;
  padding: 0 10px;
  gap: 22px;
  align-items: center;
}
.hero h1, .hero h2, .hero h3, .hero h4 {
  color: #FFF8EB;
  text-shadow: 1px 1px 0 var(--vintage-red), 2px 2px 2px rgba(44,30,10,0.16);
}
.hero p {
  color: #FFF8EB;
  font-size: 1.19rem;
  max-width: 700px;
}
.hero .cta-btn {
  background: var(--vintage-corn);
  color: var(--vintage-orange);
  border: 2px solid #fff8eb;
  margin-top: 14px;
}
.hero .cta-btn:hover {
  background: #fff;
  color: var(--vintage-red);
}

/* =====================
   FLEX LAYOUTS
======================= */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.feature {
  flex: 1 1 260px;
  min-width: 230px;
  background: var(--secondary);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--retro-shadow);
  padding: 30px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  border: 3px solid #fff8eb;
  position: relative;
  transition: box-shadow 0.2s, border 0.2s;
}
.feature img {
  width: 54px;
  height: 54px;
  margin-bottom: 10px;
}
.feature:hover,
.feature:focus-within {
  box-shadow: 0 8px 36px 0 rgba(207,140,63,0.14);
  border: 3px solid var(--vintage-orange);
  z-index: 2;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--card-shadow);
  background: var(--vintage-cream);
  padding: 28px;
  position: relative;
  border: 2px solid #fff8eb;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 24px 30px;
  margin-bottom: 20px;
  border-radius: var(--border-radius-md);
  background: #fff8eb;
  box-shadow: 0 2px 12px 0 rgba(207, 140, 63, 0.10);
  border: 2px solid var(--vintage-orange);
  font-size: 1.14rem;
  color: var(--primary);
  min-width: 220px;
  max-width: 620px;
}
.testimonial-card span {
  color: var(--vintage-red);
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: italic;
  align-self: flex-end;
}
.testimonial-card p {
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 600;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 12px;
}
.faq-item {
  background: var(--secondary);
  border-radius: var(--border-radius-md);
  padding: 20px 24px;
  border-left: 5px solid var(--vintage-evergreen);
  box-shadow: 0 1px 8px 0 rgba(81,95,87,0.07);
  margin-bottom: 10px;
}
.faq-item h4 {
  font-size: 1.15rem;
  color: var(--vintage-orange);
}

.opening-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--vintage-orange);
  padding-left: 16px;
}

.map {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 8px 0;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 1.07rem;
}
.contact-details img {
  margin-right: 8px;
  vertical-align: middle;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--vintage-cream);
  border-radius: var(--border-radius-md);
  padding: 18px 18px;
  margin: 14px 0;
  border: 2px dashed var(--vintage-orange);
}

/* =====================
   BUTTONS & INTERACTIONS
======================= */
button, .cta-btn {
  transition: all 0.16s cubic-bezier(.67,.24,.46,.88);
}
button:focus,
.cta-btn:focus {
  outline: var(--focus-outline);
}

/* =====================
   COOKIE CONSENT BANNER
======================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--secondary);
  color: var(--primary);
  border-top: 4px solid var(--vintage-orange);
  box-shadow: 0 4px 22px rgba(44,38,27,0.18);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 20px 16px 16px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  animation: fadeInUpCookie 0.5s cubic-bezier(.5,1.7,.51,1.0);
}
@keyframes fadeInUpCookie {
  0% { transform: translateY(100%); opacity:0; }
  70% { opacity:1; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 4px;
}
.cookie-btn {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 99px;
  margin-bottom: 4px;
  transition: background 0.16s, color 0.16s, border 0.16s;
  border: 2px solid var(--vintage-orange);
  background: #fff;
  color: var(--primary);
}
.cookie-btn.accept {
  background: var(--vintage-orange);
  color: #fff;
  border-color: var(--vintage-orange);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--vintage-red);
  border-color: var(--vintage-red);
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: var(--vintage-orange);
  border-color: var(--vintage-orange);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--vintage-corn);
  color: var(--primary);
}
.cookie-btn.settings {
  background: var(--vintage-corn);
  border-color: var(--vintage-orange);
  color: var(--vintage-orange);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--vintage-evergreen);
  color: #fff;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44,38,27,0.16);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.3s, opacity 0.3s;
}
.cookie-modal.active {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.cookie-modal-dialog {
  background: #fff8eb;
  border: 3px solid var(--vintage-orange);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 8px 38px 0 rgba(207,140,63,0.15);
  padding: 36px 32px 28px 32px;
  max-width: 430px;
  width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.cookie-modal-header {
  font-family: var(--font-display);
  color: var(--vintage-orange);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.07rem;
  margin-bottom: 3px;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  border-radius: 12px;
  background: #fff;
  border: 2px solid var(--vintage-orange);
  position: relative;
  cursor: pointer;
  margin-right: 6px;
  transition: background 0.13s, border 0.13s;
}
.cookie-toggle[data-checked="true"] {
  background: var(--vintage-orange);
  border-color: var(--vintage-red);
}
.cookie-toggle:after {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  background: var(--vintage-orange);
  border-radius: 50%;
  transition: transform 0.16s;
}
.cookie-toggle[data-checked="true"]:after {
  background: var(--vintage-red);
  transform: translateX(16px);
}
.cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 24px;
  font-size: 1.5rem;
  color: var(--vintage-red);
  background: #fff8eb;
  border: 2px solid var(--vintage-red);
  border-radius: 44px;
  padding: 4px 16px;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--vintage-red);
  color: #fff;
}

/* =====================
   MICRO-INTERACTIONS
======================= */
a, button, .cta-btn, .cookie-btn {
  transition: color 0.16s, background 0.16s, border 0.16s, box-shadow 0.13s;
}
.feature, .testimonial-card, .card, .faq-item {
  transition: box-shadow 0.16s, border 0.16s;
}
a:focus-visible, .cta-btn:focus-visible, .cookie-btn:focus-visible {
  outline: var(--focus-outline);
}

/* =====================
   RESPONSIVE ADJUSTMENTS
======================= */
@media (max-width: 1100px) {
  .container {
    max-width: 100%;
    padding: 0 14px;
  }
  .feature-grid,
  .content-grid {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
  }
  .feature {
    width: 100%;
    min-width: 0;
  }
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 22px 0 24px 0;
    border-radius: 0 0 32px 32px;
    margin-bottom: 24px;
    min-height: 120px;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 40px;
    border-radius: 13px;
  }
  .content-wrapper {
    gap: 19px;
  }
  .feature {
    padding: 16px 10px;
    border-radius: 8px;
  }
  .testimonial-card {
    padding: 19px 11px;
    min-width: unset;
    max-width: 100%;
    font-size: 1rem;
  }
  .faq-item {
    padding: 12px 8px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
  .map {
    max-width: 99vw;
    padding: 4px 0;
  }
  .content-grid,
  .card-container,
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .mobile-nav {
    gap: 16px;
  }
}
@media (max-width: 540px) {
  header .container, 
  footer .container {
    padding: 7px 6px;
  }
  .cta-btn {
    width: 100%;
    margin-left: 0;
    font-size: 1rem;
    padding: 11px 0;
    text-align: center;
  }
  .hero .content-wrapper {
    gap: 14px;
  }
  .cookie-banner {
    font-size: 0.97rem;
    padding: 17px 5px 10px 5px;
  }
  .cookie-modal-dialog {
    padding: 19px 6px;
  }
}

/* =====================
   PRINT ALIGNMENT FOR .CARD and TESTIMONIALS
======================= */
@media print {
  .card, .testimonial-card {
    box-shadow: none !important;
    background: #fff !important;
  }
}

/* =====================
   UTILITY CLASSES
======================= */
.text-center { text-align: center !important; }
.mt-4 { margin-top: 1.6rem!important; }
.mt-2 { margin-top: 0.8rem!important; }
.mb-2 { margin-bottom: 0.8rem!important; }
.mb-4 { margin-bottom: 1.6rem!important; }

/* =====================
   ACCESSIBILTY
======================= */
:focus {
  outline: var(--focus-outline) !important;
  outline-offset: 1px;
}

/* Color contrast for testimonials/reviews */
.testimonial-card {
  background: #fff8eb;
  color: #232B2B;
}
.testimonial-card p, .testimonial-card span {
  color: #232B2B;
}

/* =====================
   END OF CSS
======================= */
