:root {
  --espresso: #2b1c12;
  --espresso-light: #3d2a1b;
  --rust: #c1652f;
  --rust-dark: #9c4e21;
  --sage: #7c8a63;
  --cream: #fbf4e9;
  --tan: #f0e2c9;
  --gray: #6e6355;
  --radius: 4px;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--espresso);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, .logo {
  font-family: 'Prata', serif;
  font-weight: 400;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

a { color: inherit; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--espresso);
  border-bottom: 3px solid var(--rust);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  font-size: 22px;
  color: #fff;
  text-decoration: none;
}
.logo span { color: var(--rust); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: #ddd2c2;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.nav-links a:hover { color: #fff; }

.btn-nav {
  background: var(--rust);
  padding: 9px 18px;
  border-radius: var(--radius);
  color: #fff !important;
  font-weight: 600 !important;
}
.btn-nav:hover { background: var(--rust-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
}

/* Hero */
.hero {
  background-color: var(--espresso);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 130px 0 100px;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  color: var(--rust);
  margin: 0 0 16px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
.eyebrow-dark { color: var(--rust-dark); }

.hero h1 {
  font-size: clamp(32px, 5.2vw, 54px);
  margin: 0 0 20px;
  line-height: 1.15;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  max-width: 580px;
  margin: 0 auto 34px;
  font-size: 17px;
  color: #ede2d0;
  font-family: 'Inter', sans-serif;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn-primary {
  background: var(--rust);
  color: #fff;
}
.btn-primary:hover { background: var(--rust-dark); }

.btn-outline {
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

/* Badges */
.badges {
  background: var(--tan);
  padding: 26px 0;
}
.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.badge-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--espresso-light);
  letter-spacing: 0.02em;
}

@media (max-width: 700px) {
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Menu */
.menu { padding: 90px 0 40px; background: var(--cream); text-align: center; }
.menu h2 { font-size: 32px; margin: 0 0 44px; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  text-align: left;
}

.menu-card {
  background: #fff;
  border-top: 3px solid var(--rust);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.menu-card h3 {
  font-size: 20px;
  margin: 0 0 10px;
}

.menu-card p {
  margin: 0;
  color: var(--gray);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
}

.menu-note {
  margin: 40px auto 50px;
  font-size: 15px;
  color: var(--gray);
  font-family: 'Inter', sans-serif;
}
.menu-note a { color: var(--rust-dark); font-weight: 600; text-decoration: underline; }

/* Gallery */
.gallery { padding: 30px 0 90px; background: var(--cream); }
.gallery h2 { font-size: 32px; text-align: center; margin-bottom: 40px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
}

.gallery-grid figure.span-2 {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-grid figure:hover img { transform: scale(1.04); }

.gallery-note {
  text-align: center;
  margin: 26px 0 0;
  font-size: 13px;
  color: var(--gray);
  font-family: 'Inter', sans-serif;
}

@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid figure.span-2 { grid-column: span 1; aspect-ratio: 4 / 3; }
}

/* About */
.about {
  padding: 90px 0;
  background: var(--espresso);
  color: #fff;
}

.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.about h2 { font-size: 32px; margin-bottom: 18px; }
.about p { color: #ede2d0; font-size: 16px; font-family: 'Inter', sans-serif; margin-bottom: 20px; }

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 800px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-image { order: -1; aspect-ratio: 4 / 3; }
}

/* Hours & Location */
.hours { padding: 90px 0; background: #fff; }
.hours-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.hours h2 { font-size: 28px; margin: 0 0 24px; }

.hours-table table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid var(--tan);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
}
.hours-table th { font-weight: 600; color: var(--espresso-light); }
.hours-table td { color: var(--gray); text-align: right; }

.hours-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--gray);
  font-family: 'Inter', sans-serif;
}

.hours-location address {
  font-style: normal;
  font-size: 16px;
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
}
.hours-location p {
  margin: 0 0 10px;
  font-family: 'Inter', sans-serif;
}
.hours-location a { color: var(--rust-dark); font-weight: 600; text-decoration: none; }
.hours-location a:hover { text-decoration: underline; }

.hours-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.hours-location .btn-primary { background: var(--rust); color: #fff; }
.hours-location .btn-primary:hover { background: var(--rust-dark); }
.hours-location .btn-outline { border: 1px solid var(--rust); color: var(--rust-dark); }
.hours-location .btn-outline:hover { background: var(--tan); }

@media (max-width: 760px) {
  .hours-inner { grid-template-columns: 1fr; }
}

/* Footer */
.site-footer {
  background: var(--espresso);
  color: #c9bda9;
  padding: 26px 0;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-inner a {
  text-decoration: none;
  color: var(--rust);
}

/* Responsive nav */
@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--espresso);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 28px;
    gap: 18px;
    display: none;
    border-bottom: 3px solid var(--rust);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
}
