/* ===== CSS RESET & 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,
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F5F3EB;
  color: #244047;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
}
ul, ol {
  padding-left: 20px;
  margin-bottom: 1.5em;
}
a {
  color: #244047;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C9B080;
  text-decoration: underline;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
}
*, *:before, *:after {
  box-sizing: border-box;
}

/* ===== BRAND TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #244047;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}
h1 {
  font-size: 2.5rem; /* 40px */
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem; /* 32px */
}
h3 {
  font-size: 1.5rem; /* 24px */
}
h4 {
  font-size: 1.25rem; /* 20px */
}

p, li, span, .subheadline, .testimonial-author {
  font-family: 'Roboto', Arial, sans-serif;
  color: #244047;
  font-size: 1rem; /* 16px */
}
.subheadline {
  font-size: 1.25rem;
  color: #3b5c63;
  margin-bottom: 16px;
  font-style: italic;
  letter-spacing: 0.2px;
}
strong {
  font-weight: 700;
}

/* ===== CONTAINER & SPACING ===== */
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(36, 64, 71, 0.04);
}

@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section {
    padding: 24px 8px;
    margin-bottom: 36px;
    border-radius: 8px;
  }
}

/* ===== HEADER & MAIN NAV ===== */
header {
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(36, 64, 71, 0.07);
  position: sticky;
  top: 0;
  z-index: 1003;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 16px;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #244047;
  letter-spacing: 0.03em;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #C9B080;
  transition: width 0.3s cubic-bezier(.4,0,.2,1);
  border-radius: 1px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #C9B080;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 70%;
}

header img {
  height: 50px;
  width: auto;
}

.cta-primary,
.cta-secondary {
  display: inline-block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 24px;
  box-shadow: 0 2px 8px 0 rgba(36, 64, 71, 0.08);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, box-shadow 0.18s;
  margin-left: 16px;
  text-align: center;
}
.cta-primary {
  background: #244047;
  color: #fff;
  border: 1.5px solid #244047;
}
.cta-primary:hover, .cta-primary:focus {
  background: #C9B080;
  color: #244047;
  border-color: #C9B080;
  box-shadow: 0 4px 16px 0 rgba(36, 64, 71, 0.10);
}
.cta-secondary {
  background: #fff;
  color: #244047;
  border: 1.5px solid #C9B080;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #C9B080;
  color: #244047;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
  }
  .cta-primary, .cta-secondary {
    margin-left: 8px;
    font-size: 1rem;
    padding: 10px 18px;
  }
}

/* ======= MOBILE BURGER MENU ======= */
.mobile-menu-toggle {
  display: none;
  background: #244047;
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  z-index: 1101;
  margin-left: 16px;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #C9B080;
  color: #244047;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(36,64,71,0.92);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.52,.01,.27,.99);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #C9B080;
  color: #244047;
  font-size: 2rem;
  margin: 28px 36px 12px 0;
  align-self: flex-end;
  border-radius: 50%;
  padding: 2px 16px;
  transition: background 0.2s;
  z-index: 1104;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff2e1;
  color: #244047;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 28px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Playfair Display', Georgia, serif;
  color: #fff;
  font-size: 1.5rem;
  padding: 8px 0;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #C9B080;
  color: #244047;
}

@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 450px) {
  .mobile-nav a {
    font-size: 1.2rem;
    padding: 10px 0;
  }
  .mobile-menu-close {
    margin-right: 10px;
    font-size: 1.4rem;
    padding: 1px 9px;
  }
}

/* ===== HERO SECTIONS ===== */
.hero, .about-hero, .menu-hero, .events-hero, .booking-hero, .contact-hero, .thankyou-hero, .thankyou-contact {
  background: #F5F3EB;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 34px;
  padding-bottom: 34px;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 4px 22px 0 rgba(36,64,71,0.06);
  margin-bottom: 46px;
}
.hero h1, .about-hero h1, .menu-hero h1, .events-hero h1, .booking-hero h1, .contact-hero h1, .thankyou-hero h1, .thankyou-contact h1 {
  font-size: 2.7rem;
  color: #244047;
  margin-bottom: 18px;
}
.hero .subheadline {
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .hero, .about-hero, .menu-hero, .events-hero, .booking-hero, .contact-hero, .thankyou-hero, .thankyou-contact {
    min-height: 180px;
    border-radius: 0 0 12px 12px;
    margin-bottom: 26px;
    padding: 18px 0;
  }
  .hero h1, .about-hero h1, .menu-hero h1, .events-hero h1, .booking-hero h1, .contact-hero h1, .thankyou-hero h1, .thankyou-contact h1 {
    font-size: 2rem;
  }
}

/* ===== FEATURE GRID ===== */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin-top: 20px;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(36, 64, 71, 0.06);
  padding: 28px 18px;
  min-width: 220px;
  flex: 1 1 238px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
  position: relative;
}
.feature img {
  width: 34px;
  height: 34px;
}
.feature h3 {
  margin-bottom: 6px;
  font-size: 1.18rem;
  color: #244047;
}
.feature:hover, .feature:focus {
  box-shadow: 0 6px 24px 0 rgba(36, 64, 71, 0.12);
  z-index: 2;
}

@media (max-width: 991px) {
  .features .feature-grid {
    gap: 18px;
  }
  .feature {
    padding: 22px 10px;
    min-width: 160px;
    flex-basis: 40%;
  }
}
@media (max-width: 768px) {
  .features .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature {
    flex-basis: 90%;
  }
}

/* ===== CONTENT LAYOUTS: spacing and flex ===== */
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(36, 64, 71, 0.07);
  padding: 30px 22px;
  flex: 1 1 299px;
  transition: box-shadow .22s;
}
.card:hover, .card:focus {
  box-shadow: 0 4px 22px 0 rgba(36, 64, 71, 0.14);
  z-index: 2;
}

/* Features, Items */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===== TESTIMONIALS ===== */
.testimonials, .event-testimonials {
  background: #F5F3EB;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-left: 4px solid #C9B080;
  border-radius: 10px;
  box-shadow: 0 1px 8px 0 rgba(36,64,71,0.08);
  padding: 20px;
  margin-bottom: 24px;
  min-width: 250px;
  max-width: 560px;
  color: #244047;
  transition: box-shadow 0.16s;
}
.testimonial-card .stars {
  color: #C9B080;
  font-size: 1.35rem;
  letter-spacing: 2px;
  font-family: 'Playfair Display', Georgia, serif;
  margin-bottom: 2px;
}
.testimonial-card p {
  font-size: 1.12rem;
  color: #244047;
  line-height: 1.5;
}
.testimonial-author {
  color: #7d7d7d;
  font-size: 0.97rem;
  font-style: italic;
  margin-top: 4px;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 4px 22px 0 rgba(36,64,71,0.13);
  border-left-color: #244047;
  z-index: 3;
}
@media (max-width: 630px) {
  .testimonial-card {
    max-width: 99%;
    padding: 16px 8px;
  }
}

/* ===== CARDS / TIMELINE / VALUES ===== */
.timeline li, .values li, .mood-words li {
  margin-bottom: 8px;
}
.mood-words {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
}
.mood-words li {
  font-family: 'Playfair Display', Georgia, serif;
  background: #C9B080;
  color: #fff;
  border-radius: 16px;
  padding: 8px 18px;
  font-size: 1rem;
  font-style: italic;
  box-shadow: 0 1px 3px 0 rgba(36,64,71,0.10);
}

/* ===== LISTS & LAYOUTS ===== */
ul, ol {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
ul {
  list-style-type: disc inside;
}
ol {
  list-style-type: decimal inside;
}
ul li, ol li {
  margin-bottom: 8px;
  padding-left: 2px;
}
.summary-points li {
  font-family: 'Roboto', Arial, sans-serif;
  color: #244047;
  background: #FFF9F0;
  border-left: 5px solid #C9B080;
  padding: 10px 18px;
  border-radius: 9px;
  margin-bottom: 14px;
  font-size: 1rem;
}

/* ===== FINE SECTION-SPECIFIC RULES ===== */
.about-preview, .menu-preview, .event-preview {
  background: #FFF9F0;
  border: 1px solid #F5F3EB;
  border-radius: 16px;
  margin-bottom: 40px;
}
.menu-preview ul,
.event-preview ul,
.menu-sections ul,
.menus-offers ul,
.dietary-info ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.founder-story, .heritage-text, .culinary-approach, .local-providers, .directions-text, .parking-info, .public-transport-tips, .plating-philosophy, .culinary-creativity  {
  background: #F5F3EB;
  border-radius: 12px;
  padding: 18px 18px 14px 18px;
  box-shadow: 0 1px 6px 0 rgba(36,64,71,0.042);
}
.staff-highlights ul {
  margin-bottom: 6px;
}

/****** CONTACT LIST ICONS ******/
.contact-details ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

/* ===== FOOTER ===== */
footer {
  background: #244047;
  color: #fff;
  padding: 38px 0 25px 0;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.82;
  transition: color 0.2s, opacity 0.18s;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #C9B080;
  opacity: 1;
}
.brand-signature {
  text-align: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
  color: #C9B080;
}
.footer-contact {
  text-align: center;
  font-size: 0.98rem;
  color: #f5f3eb;
  margin-top: 2px;
  opacity: 0.9;
}
.footer-contact span {
  margin: 0 3px;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
}

/* ===== BUTTONS, HOVERS, TRANSITIONS ===== */
button, .cta-primary, .cta-secondary {
  transition: background 0.22s, color 0.22s, box-shadow 0.18s;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero .content-wrapper, .about-hero .content-wrapper,
.menu-hero .content-wrapper, .events-hero .content-wrapper,
.booking-hero .content-wrapper, .contact-hero .content-wrapper,
.thankyou-hero .content-wrapper, .thankyou-contact .content-wrapper {
  animation: fadeInUp 0.85s both;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #244047;
  color: #fff;
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 2100;
  box-shadow: 0 -3px 22px 0 rgba(36,64,71,0.11);
  font-size: 1.04rem;
  animation: fadeInUp 0.5s;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 7px;
}
.cookie-btn {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  border-radius: 24px;
  border: 1px solid #C9B080;
  background: #C9B080;
  color: #244047;
  padding: 7px 23px;
  cursor: pointer;
  margin: 0 6px;
  box-shadow: 0 1px 6px 0 rgba(36,64,71,0.06);
  transition: background 0.15s, color 0.15s, border 0.14s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fff;
  color: #244047;
  border: 1.5px solid #244047;
}
.cookie-banner .cookie-link {
  color: #fff;
  text-decoration: underline;
  font-size: 0.97rem;
  opacity: 0.8;
  margin-left: 2px;
}

/* Cookie consent modal styles */
.cookie-modal-overlay {
  position: fixed; left:0; top: 0; right:0; bottom:0;
  background: rgba(36,64,71, 0.85);
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.4s;
}
.cookie-modal {
  background: #fff;
  color: #244047;
  border-radius: 18px;
  padding: 40px 28px;
  width: 95%;
  max-width: 430px;
  box-shadow: 0 8px 38px 0 rgba(36,64,71,0.17);
  display: flex;
  flex-direction: column;
  gap: 26px;
  animation: fadeInUp 0.47s;
}
.cookie-modal h2 {
  font-size: 1.45rem;
  margin-bottom: 14px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-toggle {
  width: 38px; height: 22px;
  appearance: none;
  border-radius: 14px;
  background: #C9B080;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .18s;
}
.cookie-toggle:checked {
  background: #244047;
}
.cookie-toggle::after {
  content: '';
  position: absolute;
  left: 4px; top: 4px;
  background: #fff;
  width: 14px; height: 14px;
  border-radius: 50%;
  transition: left 0.22s;
}
.cookie-toggle:checked::after {
  left: 20px;
}
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal .cookie-btn {
  padding: 7px 18px;
}

@media (max-width: 480px) {
  .cookie-modal {
    padding: 22px 8px;
    min-width: 92vw;
    max-width: 99vw;
    font-size: 1rem;
  }
}

/* ===== UTILITIES ===== */
.mt-16 { margin-top: 16px; }
.mb-20 { margin-bottom: 20px; }
.hide { display: none !important; }
.text-center { text-align: center; }
.opacity-70 { opacity: 0.7; }

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

/* ===== SCROLLBARS ===== */
::-webkit-scrollbar { width: 8px; background: #F5F3EB; }
::-webkit-scrollbar-thumb { background: #C9B080; border-radius: 4px; }

/* ===== RESPONSIVE TABLETS/MOBILE ===== */
@media (max-width: 1100px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 900px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.4rem; }
}
@media (max-width: 600px) {
  .section {
    box-shadow: 0 1px 7px 0 rgba(36,64,71,0.07);
    padding: 16px 6px;
    margin-bottom: 20px;
  }
  .feature, .card {
    padding: 16px 6px;
    min-width: 99%;
    flex-basis: 99%;
  }
  .feature-grid { gap: 11px; }
}

/* ===== PRINT ===== */
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  footer, header {
    box-shadow: none !important;
  }
  section, .section, .container, .content-wrapper {
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
  }
}
