/* --- CSS RESET & BASE --- */
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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
body {
  line-height: 1.6;
  background: #F9F6F2;
  color: #3A2E1B;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}
button {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}

/* --- VARIABLES / FALLBACKS --- */
:root {
  --primary: #3A2E1B;
  --secondary: #E85027;
  --accent: #F3F3EF;
  --brown-light: #E6D1B2;
  --yellow-warm: #FFD9A0;
  --orange-warm: #FCB48F;
  --shadow: 0 2px 16px rgba(233,130,90,0.13);
  --radius: 14px;
  --radius-lg: 24px;
  --transition: 0.2s cubic-bezier(.64,.09,.08,1);
}

/* --- BASE TYPOGRAPHY --- */
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  background: var(--accent);
  color: var(--primary);
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.17rem;
  margin-bottom: 10px;
}
@media (min-width: 900px) {
  h1 { font-size: 2.7rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.4rem; }
}

strong { font-weight: 700; }
p, ul li, ol li, .subheadline {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #52381c;
  letter-spacing: 0;
}
.subheadline {
  font-size: 1.13rem;
  color: var(--secondary);
  font-weight: 400;
  margin-bottom: 20px;
}

/* --- CONTAINERS & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.header .container,
footer .container {
  padding-top: 16px;
  padding-bottom: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 8px 32px 0 #E8502726;
  transform: translateY(-3px) scale(1.025);
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFD9A0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  transition: box-shadow var(--transition);
  max-width: 600px;
}
.testimonial-card p {
  color: #3A2E1B;
  font-size: 1.08rem;
}
.testimonial-meta {
  font-size: 0.98rem;
  font-style: italic;
  color: #9D6937;
  margin-left: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 768px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .text-image-section,
  .content-grid,
  .feature-grid,
  .card-container {
    flex-direction: column !important;
    gap: 16px;
    align-items: stretch;
  }
  .testimonial-card {
    max-width: 100%;
    flex-direction: column;
  }
  .main-nav {
    display: none !important;
  }
}
/* --- HERO SECTIONS --- */
.hero {
  padding: 46px 0 0 0;
  background: linear-gradient(100deg,#FFD9A0 70%, #FCB48F 100%);
  border-radius: 0 0 44px 44px;
  margin-bottom: 42px;
  box-shadow: 0 4px 24px #E8502718;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 22px;
}
.hero h1 {
  color: var(--primary);
  margin-bottom: 18px;
  text-shadow: 0 2px 8px #FFF3;
}
.hero .subheadline {
  max-width: 650px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* --- NAVIGATION --- */
header {
  background: #FFE1C8;
  box-shadow: 0 2px 10px #E8502706;
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
  position: sticky;
  top:0; left:0; right:0;
  z-index: 50;
}
.logo-link {
  display: inline-flex;
  align-items: center;
  padding: 7px 0 7px 0;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
}
.main-nav a {
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 10px;
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover, .footer-nav a:hover, .mobile-nav a:hover {
  background: var(--secondary);
  color: #fff;
}

.header .container, header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  font-size: 2.3rem;
  background: #E85027;
  color: #fff;
  border-radius: 6px;
  padding: 6px 14px;
  margin-left: auto;
  margin-right: 0;
  z-index: 98;
  border: none;
  box-shadow: 0 2px 10px #E8502728;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #813f23;
  color: #FFD9A0;
}
.mobile-menu {
  position: fixed;
  left: 0; top: 0; height: 100vh; width: 100vw;
  background: #F3F3EF;
  z-index: 1600;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 32px #3A2E1B18;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.71,.14,.44,1.07);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 25px;
  font-size: 2rem;
  color: #E85027;
  background: none;
  border: none;
  z-index: 1601;
  border-radius: 6px;
  padding: 3px 9px;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFD9A0;
  color: #3A2E1B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding: 70px 26px 16px 35px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.mobile-nav a {
  font-size: 1.22rem;
  color: #3A2E1B;
  padding: 10px 0 10px 13px;
  border-radius: 10px;
  background: none;
  font-weight: 600;
  min-width: 200px;
  transition: background var(--transition), color var(--transition);
}
/* Show/hide navs for device */
@media (max-width: 960px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 961px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
}

/* --- FEATURE GRID --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 18px;
  width: 100%;
}
.feature-grid > li {
  background: #fffdfa;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 22px 20px 22px;
  min-width: 225px;
  flex: 1 1 225px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow var(--transition), transform var(--transition);
  font-size: 1rem;
}
.feature-grid > li img {
  height: 38px;
  width: 38px;
  margin-bottom: 14px;
  background: #FFD9A0;
  border-radius: 9px;
  padding: 4px;
  box-shadow: 0 2px 6px #FFD9A044;
}
.feature-grid > li h3 {
  color: #E85027;
  font-size: 1.11rem;
}
.feature-grid > li:hover {
  box-shadow: 0 10px 24px #e85027aa;
  transform: translateY(-2px) scale(1.018);
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 15px;
  }
}

/* --- TEAM LIST / STORY, SERVICES, FAQ LISTS --- */
.team-list,
.services-list ul,
.story-summary,
.faq-list,
.our-story ul,
.cuisine-features ul,
.photo-features ul {
  margin-top: 15px;
  margin-bottom: 15px;
  gap: 24px;
}
.team-list li, .story-summary, .faq-list > li,
.services-list ul > li, .photo-features ul > li {
  margin-bottom: 20px;
  padding: 18px 18px 16px 18px;
  border-radius: var(--radius);
  background: #fffdfa;
  box-shadow: var(--shadow);
  position: relative;
  transition: box-shadow var(--transition),transform var(--transition);
}
.team-list li:hover,
.story-summary:hover,
.faq-list > li:hover,
.services-list ul > li:hover,
.photo-features ul > li:hover {
  box-shadow: 0 8px 24px #FFD9A066;
  transform: translateY(-2px) scale(1.011);
}
.price {
  background: #FFD9A0;
  color: #3A2E1B;
  font-weight: 700;
  padding: 3px 13px;
  border-radius: 7px;
  font-size: 1rem;
  margin-top: 10px;
  display: inline-block;
  box-shadow: 0 1px 6px #FFD9A033;
}

/* --- CTA & NEWSLETTER SECTION --- */
.cta, .newsletter {
  background: linear-gradient(99deg,#FFEFDB 70%, #FFD9A0 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px #E8502719;
  margin-bottom: 60px;
  padding: 38px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.cta .btn,
.newsletter .btn {
  margin: 20px 0 0 0;
}

/* --- BUTTONS & LINKS --- */
.btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: 31px;
  padding: 13px 36px;
  margin: 6px 0;
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 2px 14px #e8502738;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  border: none;
  outline: none;
  letter-spacing: 0.01em;
}
.btn:hover, .btn:focus {
  background: #813f23;
  color: #FFD9A0;
  box-shadow: 0 6px 20px #E8502752;
  transform: scale(1.035);
}
.btn-secondary {
  background: #FFD9A0;
  color: var(--primary);
  box-shadow: 0 2px 8px #FFD9A044;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #FCB48F;
  color: #fff;
}
.footer-nav a, .footer-nav a:visited {
  color: #765123;
  padding: 6px 14px;
  margin-right: 10px;
  border-radius: 6px;
  font-size: 0.98rem;
  transition: background var(--transition), color var(--transition);
}

/* --- CONTACT & FOOTER --- */
footer {
  background: #FFE1C8;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  box-shadow: 0 -3px 14px #E8502711;
  margin-top: 45px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #73470d;
  font-size: 0.98rem;
  margin: 14px 0;
}
.footer-contact img {
  height: 17px;
  width: 17px;
  margin-right: 7px;
  vertical-align: middle;
}
.footer-copy {
  padding: 7px 0 14px 0;
  color: #B08C51;
  font-size: 0.93rem;
}
.logo-link img {
  height: 38px;
  width: auto;
  transition: filter var(--transition);
}
.logo-link:hover img {
  filter: brightness(1.13) drop-shadow(0 8px 5px #FFD9A033);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 10px 0 8px 0;
}
@media (max-width: 680px) {
  .footer-contact, .footer-nav {
    flex-direction: column;
    gap: 6px;
  }
}

/* --- CONTACT DETAILS SECTION --- */
.contact-details,
.location-map {
  background: #fffdfa;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 22px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #3A2E1B;
  font-size: 1rem;
}
.contact-details img, .location-map img {
  height: 15px; width: 15px; vertical-align: middle; margin-right: 7px;
}

/* --- GENERIC TABLES / LEGAL --- */
.legal .container {
  max-width: 800px;
}
.legal h1, .legal h2 {
  margin-bottom: 18px;
}
.legal ul li {
  margin-bottom: 9px;
  padding-left: 18px;
  position: relative;
}
.legal ul li:before {
  content: '•';
  color: #E85027;
  margin-right: 8px;
  font-size: 1.1em;
  position: absolute;
  left: 0;
}

/* --- FAQ --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-list > li h3 {
  color: var(--secondary);
}

/* --- SECTION SPACING & ADAPTIVE --- */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
@media (max-width: 700px) {
  section {
    padding: 26px 0;
    margin-bottom: 38px;
  }
}

/* --- STORY SUMMARY --- */
.story-summary {
  background: #fffdfa;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* --- SPECIAL: THANK YOU & MODALS --- */
.thank-you {
  background: linear-gradient(99deg, #FFD9A0 60%, #FFE1C8 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 22px #E8502711;
  margin-bottom: 60px;
  padding: 38px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* --- COOKIE BANNER & COOKIE MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; width: 100vw;
  z-index: 2100;
  background: #fffdfa;
  color: #3A2E1B;
  box-shadow: 0 -2px 12px #E8502740;
  padding: 18px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-size: 1rem;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  transition: transform 0.38s var(--transition), opacity 0.22s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
  width: 100%;
  justify-content: center;
}
.cookie-btn {
  display: inline-block;
  border-radius: 17px;
  font-weight: 700;
  padding: 8px 25px;
  border: none;
  background: #FFD9A0;
  color: #3A2E1B;
  box-shadow: 0 2px 8px #FFD9A044;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.cookie-btn.accept {
  background: #E85027;
  color: #fff;
}
.cookie-btn.reject {
  background: #C6C6C2;
  color: #52381c;
}
.cookie-btn.settings {
  background: #FFD9A0;
  color: #3A2E1B;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #813f23;
  color: #FFD9A0;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #B08C51;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #FCB48F;
  color: #fff;
}

/* Cookie modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(58,46,27,0.14);
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.24s var(--transition);
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-dialog {
  background: #fffdfa;
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 30px #FFD9A033;
  max-width: 420px;
  width: 94vw;
  padding: 35px 28px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  position: relative;
  animation: popIn 0.32s;
}
@keyframes popIn {
  0% { opacity: 0; transform: scale(.92); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.28rem;
  margin-bottom: 9px;
  color: #E85027;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FFD9A0;
  border-radius: var(--radius);
  padding: 11px 17px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.cookie-toggle {
  margin-left: auto;
  width: 40px; height: 22px;
  background: #F3F3EF;
  border-radius: 12px;
  position: relative;
  border: 1.5px solid #E6D1B2;
}
.cookie-toggle input[type=checkbox] {
  display: none;
}
.cookie-toggle-label {
  width: 40px; height: 22px;
  position: absolute;
  left: 0; top: 0;
  border-radius: 12px;
  cursor: pointer;
  background: #E6D1B2;
  transition: background 0.2s;
}
.cookie-toggle-label:after {
  content: '';
  display: block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 2px; left: 2px;
  box-shadow: 0 1px 5px #FFD9A062;
  transition: left 0.2s;
}
.cookie-toggle input[type=checkbox]:checked + .cookie-toggle-label {
  background: #E85027;
}
.cookie-toggle input[type=checkbox]:checked + .cookie-toggle-label:after {
  left: 20px;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 20px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  right: 13px;
  top: 13px;
  font-size: 1.2rem;
  color: #E85027;
  background: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-modal-close:hover {
  background: #FFD9A0;
}


/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .container {
    padding: 0 8px;
  }
  .hero { padding: 36px 0 0 0; }
  .cta, .newsletter, .thank-you { padding: 20px 9px; }
  .section { padding: 27px 7px; }
}
@media (max-width:500px) {
  h1 { font-size: 1.31rem; }
  h2 { font-size: 1.08rem; }
  .section { padding: 15px 3px; }
}

/* --- ACCESSIBILITY --- */
:focus {
  outline: 2px solid #E85027;
  outline-offset: 2px;
}

/* --- CUSTOM SCROLLBAR FOR WARM STYLE --- */
::-webkit-scrollbar {
  width: 10px; background: #FFE9CA;
}
::-webkit-scrollbar-thumb {
  background: #FFC699;
  border-radius: 6px;
}

/* --- MICRO-INTERACTIONS (e.g. card hover calms) --- */
.card,
.testimonial-card,
.feature-grid > li,
.team-list li,
.story-summary,
.faq-list > li,
.services-list ul > li,
.photo-features ul > li {
  transition: box-shadow var(--transition), transform var(--transition);
}

/* --- ANIMATED FADE-IN SECTIONS --- */
@media (prefers-reduced-motion: no-preference) {
  .section, .header, .footer, .card, .feature-grid>li, .testimonial-card {
    animation: fadeInAppear 0.68s cubic-bezier(.4,0,.2,1);
  }
}
@keyframes fadeInAppear {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* --- ENSURE NO OVERLAP --- */
.card, .testimonial-card, .feature-grid > li, .team-list li, .story-summary, .faq-list > li {
  margin-bottom: 20px;
}
.card-container, .feature-grid, .content-grid { gap: 24px; }

/* --- PRINT STYLES --- */
@media print {
  header, footer, .btn, .mobile-menu, .cookie-banner, .cookie-modal {
    display: none !important;
  }
}
