/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:     #faf6f0;
  --warm:      #f3ece1;
  --terra:     #b5593c;
  --terra-dk:  #8c3f28;
  --brown:     #3b2617;
  --brown-lt:  #6b4c3a;
  --sage:      #7a8c6e;
  --gold:      #d4a84b;
  --white:     #fff;
  --shadow:    0 2px 12px rgba(59,38,23,.08);
  --font:      'DM Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Della Respira', Georgia, serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--brown);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--terra); text-decoration: none; transition: color .2s; }
a:hover { color: var(--terra-dk); }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }

.section-label {
  text-transform: uppercase;
  font-family: var(--font);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .15em;
  color: var(--terra);
  margin-bottom: .5rem;
}

/* ── Layout ── */
.container { width: min(90%, 1100px); margin: 0 auto; }
section { padding: 5rem 0; }

/* ── Nav ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,246,240,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(59,38,23,.06);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 0;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.nav-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.nav-links { display: flex; gap: 1.8rem; list-style: none; }
.nav-links a {
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brown-lt);
}
.nav-links a:hover { color: var(--terra); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--brown); margin: 5px 0;
  transition: .3s;
}

/* ── Hero ── */
.hero {
  min-height: 85vh;
  display: flex; align-items: center;
  background: linear-gradient(160deg, var(--warm) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; right: -5%; top: -10%;
  width: 55%; height: 120%;
  background: radial-gradient(ellipse at 60% 50%, rgba(181,89,60,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 3rem;
}
.hero-content { position: relative; z-index: 1; max-width: 560px; flex: 1; }
.hero-logo {
  flex-shrink: 0;
  width: 320px;
  position: relative;
  z-index: 1;
}
.hero-logo img { width: 100%; height: auto; }
.hero-content .section-label { margin-bottom: 1rem; }
.hero-content h1 { margin-bottom: 1rem; color: var(--brown); }
.hero-content h1 em {
  font-style: normal;
  color: var(--terra);
  letter-spacing: -4px;
  font-weight: 400;
}
.hero-tagline {
  font-size: 1.15rem;
  color: var(--brown-lt);
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero-details {
  display: flex; flex-wrap: wrap; gap: 2rem;
  font-size: .95rem; color: var(--brown-lt);
}
.hero-details strong { color: var(--brown); display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .15rem; }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.8rem;
  background: var(--terra);
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
  border-radius: 6px;
  border: none; cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn:hover { background: var(--terra-dk); color: var(--white); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--terra);
  border: 2px solid var(--terra);
}
.btn-outline:hover { background: var(--terra); color: var(--white); }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

/* ── Food strip ── */
.food-strip {
  padding: 0;
  overflow: hidden;
  background: var(--brown);
}
.food-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
}
.food-strip-inner img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .4s;
}
.food-strip-inner img:hover { transform: scale(1.05); }

/* ── About ── */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text p { color: var(--brown-lt); margin-bottom: 1rem; }
.about-highlights {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin-top: 2rem;
}
.highlight-card {
  padding: 1.2rem;
  background: var(--cream);
  border-radius: 8px;
}
.highlight-card .icon { font-size: 1.5rem; margin-bottom: .5rem; }
.highlight-card h4 { font-size: .95rem; margin-bottom: .25rem; }
.highlight-card p { font-size: .8rem; color: var(--brown-lt); }

.about-image-area {
  display: grid; gap: 1rem;
  grid-template-rows: auto auto;
}
.about-photo {
  border-radius: 12px;
  width: 100%;
  object-fit: cover;
  max-height: 300px;
}
.hours-card {
  background: var(--brown);
  color: var(--cream);
  border-radius: 12px;
  padding: 2rem;
}
.hours-card h3 { color: var(--white); margin-bottom: 1rem; font-size: 1.1rem; }
.hours-row {
  display: flex; justify-content: space-between;
  padding: .4rem 0;
  font-size: .9rem;
  border-bottom: 1px solid rgba(250,246,240,.1);
}
.hours-row:last-child { border-bottom: none; }
.hours-row.closed { color: var(--terra); opacity: .8; }

/* ── Menu ── */
.menu-section { background: var(--cream); }
.menu-header { text-align: center; margin-bottom: 3rem; }
.menu-header p { color: var(--brown-lt); max-width: 520px; margin: .75rem auto 0; }

.menu-images { margin-bottom: 2rem; }
.menu-spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.menu-spread img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  cursor: zoom-in;
  transition: transform .2s, box-shadow .2s;
}
.menu-spread img:hover {
  transform: scale(1.01);
  box-shadow: 0 4px 24px rgba(59,38,23,.15);
}
.menu-pdf-note {
  text-align: center;
  font-size: .9rem;
  color: var(--brown-lt);
}

/* ── Location ── */
.location { background: var(--white); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.location-info h2 { margin-bottom: 1.5rem; }
.location-detail {
  display: flex; gap: 1rem; margin-bottom: 1.5rem;
}
.location-detail .detail-icon {
  width: 40px; height: 40px;
  background: var(--cream);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.location-detail h4 { font-size: .9rem; font-family: var(--font); margin-bottom: .15rem; }
.location-detail p { font-size: .9rem; color: var(--brown-lt); }

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--warm);
  aspect-ratio: 4/3;
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* ── Footer ── */
footer {
  background: var(--brown);
  color: rgba(250,246,240,.7);
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: .5rem;
}
footer p { font-size: .9rem; }
footer h4 {
  color: var(--white);
  font-family: var(--font);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: rgba(250,246,240,.7); font-size: .9rem; }
.footer-links a:hover { color: var(--white); }
.social-links { display: flex; gap: 1rem; }
.social-links a {
  width: 38px; height: 38px;
  background: rgba(250,246,240,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  font-size: .9rem;
  transition: background .2s;
}
.social-links a:hover { background: var(--terra); color: var(--white); }
.location .social-links a {
  background: var(--cream);
  color: var(--brown);
}
.location .social-links a:hover {
  background: var(--terra);
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid rgba(250,246,240,.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: .8rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: var(--shadow);
  }
  .nav-toggle { display: block; }

  .hero { min-height: auto; padding: 4rem 0; }
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-tagline { margin-left: auto; margin-right: auto; }
  .hero-logo { width: 200px; }
  .hero-buttons { justify-content: center; }
  .hero-details { justify-content: center; }

  .food-strip-inner { grid-template-columns: repeat(2, 1fr); }

  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image-area { order: -1; }
  .menu-spread { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-details { gap: 1.2rem; }
}
