/* === RESET & BASE NORMALIZATION === */
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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  line-height: 1.6;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #121212;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
a { color: #121212; text-decoration: none; transition: color 0.2s; }
a:focus { outline: 2px solid #874C16; outline-offset: 2px; }
a:hover { color: #874C16; }
img { max-width: 100%; display: block; }
ul, ol { margin-bottom: 20px; }
ul li, ol li { margin-left: 20px; margin-bottom: 8px; }
strong, b { font-weight: 600; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #171717;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4, h5, h6 { font-size: 1.1rem; }
p, li, dl, dd, dt {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #212121;
  letter-spacing: 0.01em;
}
address { font-style: normal; color: #212121; font-size: 0.98rem; }
.tagline { font-size: 0.98rem; color: #825531; font-style: italic; display: block; margin: 10px 0; }

/* === CONTAINERS & FLEX Utility === */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}

/* === HEADER / NAVIGATION === */
header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 900;
}
.flex-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 16px 0;
}
.flex-header img {
  height: 54px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #222;
  padding: 4px 2px;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:hover,
.main-nav a.active {
  color: #874C16;
}
.main-nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #874C16;
  transition: width 0.25s;
  margin: 3px auto 0 auto;
}
.main-nav a:hover::after, .main-nav a.active::after {
  width: 100%;
}

.cta.primary {
  background: #171717;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 34px;
  padding: 12px 32px;
  margin-left: 12px;
  font-size: 1rem;
  border: none;
  box-shadow: 0 4px 14px 0 rgba(17,17,17,0.08);
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.18s;
  outline: none;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.cta.primary:hover, .cta.primary:focus {
  background: #874C16;
  color: #fff;
  box-shadow: 0 6px 18px 0 rgba(17,17,17,0.18);
}
.cta-link {
  color: #874C16;
  font-weight: 600;
  text-decoration: underline;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.2s;
}
.cta-link:hover {
  color: #111;
  text-decoration: none;
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: #222;
  cursor: pointer;
  padding: 8px 16px;
  margin-left: 12px;
  border-radius: 4px;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #ededed;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(32,32,32,0.98);
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.79,.14,.15,.86);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  position: absolute;
  right: 24px;
  top: 22px;
  z-index: 2010;
  cursor: pointer;
  padding: 6px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin: 80px 0 0 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 8px 4px;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #874C16;
  color: #fff;
}

@media (max-width: 1040px) {
  .main-nav {
    gap: 14px;
  }
  .flex-header img {
    height: 44px;
  }
}
@media (max-width: 900px) {
  .container {
    padding: 0 10px;
  }
}
@media (max-width: 820px) {
  .flex-header {
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 820px) {
  .cta.primary { font-size: 0.97rem; padding: 10px 22px; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* === HERO & SECTIONS === */
.hero {
  background: #fff;
  padding: 60px 0 40px 0;
  margin-bottom: 0;
  box-shadow: none;
  min-height: 290px;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  min-height: 190px;
  align-items: flex-start;
  gap: 20px;
  margin-top: 20px;
}
.hero h1 { color: #171717; font-size: 2.4rem; max-width: 670px; }
.hero p { font-size: 1.12rem; color: #444; max-width: 470px; line-height: 1.6; }

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features, .about-summary, .testimonials, .services-overview, .contact-info {
  background: #fafafa;
  border-radius: 14px;
  margin-bottom: 60px;
  box-shadow: 0 2px 16px 0 rgba(17,17,17,0.035);
}

@media (max-width: 900px) {
  .hero {
    padding: 35px 0 24px 0;
    min-height: 160px;
  }
  .hero .content-wrapper {
    margin-top: 8px;
    min-height: 120px;
  }
}
@media (max-width: 600px) {
  .section, .about-summary, .features, .testimonials, .services-overview, .contact-info {
    padding: 20px 5px;
    margin-bottom: 35px;
  }
}

/* === FLEXBOX LAYOUTS FOR CARDS AND CONTENT === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 12px 0 rgba(32,32,32,0.08);
  padding: 28px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  transition: box-shadow 0.16s, transform 0.14s;
}
.card:hover {
  box-shadow: 0 2px 22px 0 rgba(34,34,34,0.12);
  transform: translateY(-2px) scale(1.012);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.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;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 14px 0 rgba(32,32,32,0.06);
  margin-bottom: 20px;
  max-width: 390px;
  min-width: 230px;
  flex: 1 1 280px;
  border: 1px solid #ececec;
  transition: box-shadow 0.18s;
}
.testimonial-card p {
  color: #212121;
  font-size: 1.04rem;
  text-align: left;
  margin-bottom: 10px;
}
.testimonial-card span {
  color: #874C16;
  font-size: 0.98rem;
  font-style: italic;
  align-self: flex-end;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 15px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 12px 0 rgba(34,34,34,0.04);
  padding: 26px 18px;
  flex: 1 1 220px;
  min-width: 210px;
  margin-bottom: 12px;
  border: 1px solid #ececec;
  transition: box-shadow 0.18s;
}
.feature-item:hover {
  box-shadow: 0 2px 20px 0 rgba(34,34,34,0.08);
}
.feature-item img {
  height: 48px;
  width: 48px;
  margin-bottom: 6px;
}
.feature-item h3 {
  font-size: 1.18rem;
  margin-bottom: 2px;
  color: #171717;
}
.feature-item p {
  color: #222;
  font-size: 1.01rem;
}

/* Lists & Specialized Section Styles */
.category-list, .world-cuisine-list, .recipe-list, .service-list, .faq-list, .contact-info-list {
  margin-top: 10px;
  margin-bottom: 8px;
  padding-left: 10px;
}
.category-list li, .world-cuisine-list li, .recipe-list li, .service-list li, .faq-list dt, .faq-list dd, .contact-info-list li {
  margin-bottom: 12px;
  color: #292929;
}
.faq-list dt {
  font-family: 'Playfair Display', serif;
  font-size: 1.04rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.faq-list dd {
  font-size: 1rem;
  margin-bottom: 15px;
  margin-left: 17px;
  color: #424242;
}

.cuisine-focus {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fafafa;
  border-radius: 9px;
  padding: 26px 16px;
  margin-top: 18px;
  border: 1px solid #f1f1f1;
}

.map-link a {
  color: #874C16;
  font-weight: 600;
  text-decoration: underline;
}

/* Address for About/Contact */
address {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #232323;
  font-size: 0.98rem;
  margin-top: 6px;
}

/* === FOOTER === */
footer {
  background: #171717;
  color: #f3f3f3;
  border-top: 1px solid #333;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  padding: 45px 0 20px 0;
}
.footer-col {
  flex: 1 1 200px;
  min-width: 190px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col img {
  height: 40px;
  width: auto;
}
.footer-col h3 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  margin-bottom: 5px;
  font-size: 1.12rem;
  letter-spacing: -0.7px;
}
.footer-col a, .footer-col p, .footer-col address {
  color: #f3f3f3;
  font-size: 0.98rem;
  transition: color 0.18s;
}
.footer-col ul { list-style: none; padding-left: 0; }
.footer-col ul li a {
  padding: 2px 0;
  color: #f3f3f3;
  display: inline-block;
}
.footer-col ul li a:hover {
  color: #C7A07A;
}
.footer-bottom {
  width: 100%;
  border-top: 1px solid #252525;
  padding: 12px 0 10px 0;
  text-align: center;
  color: #bbb;
}

@media (max-width: 820px) {
  .footer-main { gap: 24px; }
  .footer-col { min-width: 160px; }
}
@media (max-width: 650px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 0 4px 0;
  }
  .footer-col { min-width: unset; }
}

/* === FORM ELEMENTS (for completeness) === */
input, textarea, select {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: 1px solid #bbb;
  border-radius: 5px;
  padding: 9px 11px;
  width: 100%;
  margin-bottom: 14px;
  background: #fafafa;
  color: #171717;
  transition: border 0.19s, background 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #874C16;
  background: #fff;
  outline: none;
}
button {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  padding: 12px 32px;
  cursor: pointer;
  background: #874C16;
  color: #fff;
  transition: background 0.17s;
}
button:hover {
  background: #6d3f12;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #212121;
  color: #fff;
  padding: 24px 22px 18px 22px;
  box-shadow: 0 -2px 18px 0 rgba(17,17,17,0.13);
  z-index: 5000;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: transform 0.5s cubic-bezier(.86,.01,.29,.99);
}
.cookie-banner.hide {
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner p {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 2px;
}
.cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  border-radius: 32px;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.96rem;
  padding: 8px 22px;
  margin-right: 6px;
  background: #fff;
  color: #171717;
  transition: background 0.15s, color 0.15s;
  border: none;
  cursor: pointer;
}
.cookie-btn.accept {
  background: #874C16;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #C7A07A;
  color: #111;
}
.cookie-btn.reject {
  background: #363636;
  color: #f3f3f3;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #571d00;
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: #874C16;
  border: 1px solid #874C16;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #ede8e3;
  color: #6d3f12;
}

@media (max-width: 540px) {
  .cookie-banner { padding: 20px 6px 14px 6px; }
  .cookie-actions { flex-direction: column; gap: 10px; align-items: flex-start; }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(16,16,16,0.63);
  z-index: 5100;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.29s;
}
.cookie-modal-overlay.active {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  color: #191919;
  border-radius: 10px;
  box-shadow: 0 2px 34px 0 rgba(20,20,22,0.14);
  padding: 30px 28px;
  width: 96vw;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 5200;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(.6,.06,.36,.93);
}
.cookie-modal h2 {
  font-size: 1.22rem;
  color: #874C16;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-category span {
  font-size: 1.03rem;
  color: #181818;
}
.cookie-modal .cookie-btn.close {
  background: none;
  color: #874C16;
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 1.7rem;
  font-weight: bold;
  padding: 6px;
  border-radius: 5px;
  transition: background 0.15s;
}
.cookie-modal .cookie-btn.close:hover, .cookie-modal .cookie-btn.close:focus {
  background: #efe7de;
}
.input-toggle {
  width: 38px;
  height: 22px;
  appearance: none;
  background: #dfdfdf;
  border-radius: 50px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.17s;
}
.input-toggle:checked {
  background: #874C16;
}
.input-toggle:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transform: translateX(0);
  transition: transform 0.17s;
}
.input-toggle:checked:before {
  transform: translateX(15px);
}

/* --- Misc Utility Classes / Custom Spacing --- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-20 { margin-top: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }

/* === RESPONSIVE GENERAL LAYOUT === */
@media (max-width: 1050px) {
  .feature-grid { gap: 16px; }
  .testimonial-slider { gap: 16px; }
  .footer-main { gap: 24px; }
}
@media (max-width: 900px) {
  .feature-item, .testimonial-card {
    padding: 18px 10px;
    min-width: 170px;
    font-size: 0.99rem;
  }
  .feature-grid, .testimonial-slider, .card-container { gap: 12px; }
}
@media (max-width: 768px) {
  .feature-grid, .card-container, .testimonial-slider, .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .card, .feature-item, .testimonial-card { min-width: unset; max-width: unset; }
  .content-wrapper { gap: 10px; }
  .text-image-section { flex-direction: column; gap: 20px; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.28rem; }
  h3 { font-size: 1.12rem; }
  .hero .content-wrapper { padding: 0; }
}

/* === ANIMATIONS & MICRO-INTERACTIONS === */
.card, .testimonial-card, .feature-item {
  transition: box-shadow 0.17s, transform 0.13s;
}
.card:hover, .card:focus,
.feature-item:hover, .feature-item:focus,
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 2px 16px 0 rgba(34,34,34,0.13);
  transform: scale(1.015);
  z-index: 2;
}
.cta.primary, .cookie-btn {
  transition: background 0.23s, color 0.17s, box-shadow 0.11s;
}

/* === ACCESSIBILITY === */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
  z-index: 9000;
  background: #fff;
  color: #171717;
  font-weight: 600;
}
.skip-link:focus {
  left: 10px; top: 10px;
  width: auto; height: auto;
  padding: 10px 15px;
  border-radius: 7px;
  box-shadow: 0 2px 10px #68482b38;
}

/* === PRINT OVERRIDE === */
@media print {
  header, .main-nav, .mobile-menu, .cookie-banner, .cookie-modal-overlay, footer {
    display: none !important;
  }
}
