:root {
  --deep-espresso: #3C2A21;
  --cream: #D5CEA3;
  --paper: #E5E5CB;
  --text-dark: #221a16;
  --cta-hover: #50372b;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background-color: var(--paper);
  color: var(--text-dark);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  color: var(--deep-espresso);
  line-height: 1.2;
  margin-top: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.container {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
}

.site-header {
  background-color: var(--cream);
  border-bottom: 1px solid rgba(60, 42, 33, 0.15);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  position: relative;
}

.logo {
  width: 150px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  font-weight: 600;
}

.nav-links a {
  color: var(--deep-espresso);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(60, 42, 33, 0.22);
  background: transparent;
  cursor: pointer;
}

.nav-toggle:focus-visible {
  outline: 2px solid rgba(60, 42, 33, 0.35);
  outline-offset: 2px;
}

.nav-toggle-bars {
  width: 22px;
  height: 16px;
  display: grid;
  align-content: space-between;
}

.nav-toggle-bars span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--deep-espresso);
  border-radius: 999px;
}

.hero {
  padding: 3rem 0 2.5rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
}

.page-hero {
  padding: 2.4rem 0 2rem;
}

.hero-content {
  display: grid;
  gap: 1rem;
}

.hero h1 {
  font-size: clamp(1.95rem, 6vw, 3.2rem);
  max-width: 20ch;
}

.subheadline {
  max-width: 58ch;
  margin: 0;
}

.cta-button {
  display: inline-block;
  width: fit-content;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  background-color: var(--deep-espresso);
  color: #fff;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  background-color: var(--cta-hover);
  transform: scale(1.03);
}

.menu-preview {
  padding: 2.5rem 0;
}

.menu-grid {
  display: grid;
  gap: 1rem;
}

.menu-card {
  background-color: #fff;
  border: 1px solid rgba(60, 42, 33, 0.12);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.menu-card:hover,
.menu-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(34, 26, 22, 0.18);
}

.menu-card h3,
.menu-card p {
  padding-inline: 1rem;
}

.menu-card h3 {
  margin: 0.9rem 0 0.35rem;
}

.menu-card p {
  margin: 0 0 1rem;
}

/* --- Why Us Section Optimization --- */
.why-us {
  padding: 60px 20px;
  background-color: var(--paper); /* #E5E5CB - As per requirements */
  text-align: center;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr; /* Mobile-first: single column */
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.why-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 12px;
  border: 1px solid var(--cream); /* #D5CEA3 */
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Tactile Hover Effect for PC Users */
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(60, 42, 33, 0.15); /* Espresso-tinted shadow */
}

.why-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.why-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--deep-espresso); /* #3C2A21 */
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.6;
}

/* --- Responsive Breakpoints --- */

/* Tablet Optimization */
@media (min-width: 600px) {
  .why-us-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 columns for better tablet flow */
  }
}

/* PC/Desktop Optimization */
@media (min-width: 1024px) {
  .why-us-grid {
      grid-template-columns: repeat(3, 1fr); /* 3 columns for desktop */
      gap: 30px;
  }
  
  .why-us {
      padding: 80px 0;
  }
}

.muted {
  color: rgba(34, 26, 22, 0.72);
}

.news-section {
  padding: 0.5rem 0 2.5rem;
}

.news-grid {
  display: grid;
  gap: 1rem;
}

.news-card {
  background-color: #fff;
  border: 1px solid rgba(60, 42, 33, 0.12);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.news-card:hover,
.news-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(34, 26, 22, 0.18);
}

.news-card h3 {
  padding-inline: 1rem;
  margin: 1rem 0 0.6rem;
}

.news-image {
  width: 100%;
  height: auto;
  display: block;
}

.news-meta {
  padding-inline: 1rem;
  margin: 0;
  font-size: 0.95rem;
  color: rgba(60, 42, 33, 0.82);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.news-card > p:not(.news-meta) {
  padding-inline: 1rem;
  margin: 0 0 1rem;
}

.about-section {
  padding: 0.5rem 0 2.5rem;
}

.about-section p {
  margin: 0 0 1rem;
  max-width: 75ch;
}

.about-highlights {
  background-color: #fff;
  border: 1px solid rgba(60, 42, 33, 0.12);
  border-radius: 12px;
  padding: 1rem;
  margin: 0.75rem 0 1.5rem;
}

.about-highlights p {
  margin: 0.3rem 0;
}

.location {
  padding: 0.5rem 0 2.5rem;
}

.location-note {
  margin-top: 0.85rem;
  font-size: 0.95rem;
}

.map-embed {
  margin-top: 1rem;
  border: 1px solid rgba(60, 42, 33, 0.14);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(34, 26, 22, 0.08);
}

.map-frame {
  display: block;
  width: 100%;
  min-height: 320px;
  border: 0;
}

address {
  font-style: normal;
  background-color: var(--cream);
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid rgba(60, 42, 33, 0.12);
}

.footer-address {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  font-style: normal;
}

.hours-section {
  padding: 0.5rem 0 2.5rem;
}

.hours-card {
  background-color: #fff;
  border: 1px solid rgba(60, 42, 33, 0.12);
  border-radius: 12px;
  padding: 1rem;
}

.hours-card p {
  margin: 0.4rem 0;
}

.site-footer {
  background-color: var(--deep-espresso);
  color: var(--paper);
  padding: 1rem 0;
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0.25rem;
    background: var(--cream);
    border: 1px solid rgba(60, 42, 33, 0.16);
    padding: 0.7rem;
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(34, 26, 22, 0.10);
    z-index: 20;
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 0.65rem 0.8rem;
    border-radius: 12px;
    font-weight: 700;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: rgba(60, 42, 33, 0.08);
  }

  .nav-links a:focus-visible {
    outline: 2px solid rgba(60, 42, 33, 0.25);
    outline-offset: 2px;
  }
}

@media (min-width: 640px) {
  .logo {
    width: 180px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .map-frame {
    min-height: 420px;
  }
}



/* --- FAQ Media Optimization --- */

.faq-section {
  padding: 40px 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.responsive-faq-grid {
  display: grid;
  /* Mobile First: 1 column to prevent text crowding */
  grid-template-columns: 1fr; 
  gap: 20px;
  margin-top: 30px;
}

.faq-item {
  background: white; /* #E5E5CB */
  padding: 20px;
  border-radius: 12px;
  border-left: 5px solid var(--deep-espresso); /* #3C2A21 */
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Tactile Hover Effect for PC Users */
.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(60, 42, 33, 0.1);
}

.faq-item h3 {
  font-family: 'Playfair Display', serif;
  color: var(--deep-espresso);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 1rem;
  line-height: 1.5;
  color: #444;
}

/* Tablet & PC Optimization */
@media (min-width: 768px) {
  .faq-section {
      padding: 60px 0;
  }

  .responsive-faq-grid {
      /* 2-column layout to take half the page as requested */
      grid-template-columns: repeat(2, 1fr); 
      gap: 30px;
  }

  .faq-item {
      padding: 30px;
  }

  .faq-item h3 {
      font-size: 1.4rem;
  }
}

/* High-Resolution Large Screens */
@media (min-width: 1200px) {
  .responsive-faq-grid {
      gap: 40px;
  }
}