/* ---------- Design tokens ---------- */
:root {
  --cream: #FAF6F0;
  --white: #FFFFFF;
  --burgundy: #6E1E2B;
  --burgundy-dark: #4E141E;
  --black: #1A1A1A;
  --tan: #E8DFD3;
  --tan-light: #F3ECE3;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; object-fit: cover; }

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

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

.section { padding: 96px 0; }

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 600;
  margin-bottom: 12px;
}

.center { text-align: center; }
.eyebrow.center { display: block; }

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  color: var(--black);
}

h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
h3 { font-size: 20px; }

.section-sub {
  max-width: 560px;
  margin: 0 auto 48px;
  color: #4A4A4A;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--burgundy);
  color: var(--white);
}
.btn-primary:hover { background: var(--burgundy-dark); }

.btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--tan);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--burgundy);
  display: flex;
  align-items: center;
}

.logo img {
  height: 48px;
  width: auto;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}

.site-nav a:hover { color: var(--burgundy); }
.site-nav a.active { color: var(--burgundy); font-weight: 600; }

.nav-cta {
  border: 1px solid var(--burgundy);
  color: var(--burgundy) !important;
  padding: 8px 18px;
  border-radius: 2px;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--burgundy); color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--black);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  min-height: 88svh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg, .hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.35) 0%, rgba(26,26,26,0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero .eyebrow { color: var(--tan); }

.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 5.5vw, 56px);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 17px;
  color: var(--tan-light);
  margin-bottom: 32px;
  max-width: 520px;
}

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

/* ---------- Page header (non-hero pages) ---------- */
.page-header { padding-top: 64px; padding-bottom: 48px; }
.page-header h1 { font-size: clamp(30px, 4.5vw, 44px); margin-bottom: 16px; }
.page-header .section-sub { max-width: 620px; }

/* ---------- Menu detail list ---------- */
.menu-list {
  display: flex;
  flex-direction: column;
}

.menu-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--tan);
}
.menu-row:last-child { border-bottom: none; }

.menu-row img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 4px;
}

.menu-row h2 {
  font-size: 22px;
  margin-bottom: 6px;
}

.menu-row p { color: #4A4A4A; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 4px;
}

.about-text p { color: #4A4A4A; margin-bottom: 16px; }
.about-text p:last-child { margin-bottom: 0; }

/* ---------- Menu ---------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.menu-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--tan);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(26,26,26,0.08);
}

.menu-card img {
  width: 100%;
  aspect-ratio: 1/1;
}

.menu-card h3 {
  padding: 16px 18px;
  font-size: 17px;
}

/* ---------- Order steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 56px 0 40px;
}

.step { text-align: center; }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 16px;
}

.step p { color: #4A4A4A; font-size: 15px; }

.order-note {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  color: #4A4A4A;
}
.order-note a { color: var(--burgundy); font-weight: 600; }

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

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 4px;
}

/* ---------- Contact ---------- */
.contact { background: var(--tan-light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}

.contact-info p { color: #4A4A4A; margin-bottom: 24px; }

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-list strong { display: inline-block; width: 90px; color: var(--burgundy); }
.contact-list a:hover { text-decoration: underline; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--white);
  padding: 32px;
  border-radius: 4px;
}

.contact-form label {
  font-size: 13px;
  font-weight: 600;
  margin-top: 14px;
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--tan);
  border-radius: 2px;
  background: var(--cream);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--burgundy);
}

.contact-form button { margin-top: 20px; cursor: pointer; }

.form-note {
  font-size: 13px;
  color: #777;
  margin-top: 12px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: var(--tan-light);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  font-size: 14px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 8px;
}

.site-footer a:hover { color: var(--white); text-decoration: underline; }

/* ---------- Placeholder images ---------- */
.placeholder-img {
  background: var(--tan);
  color: var(--burgundy);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-row { grid-template-columns: 140px 1fr; gap: 20px; }
}

@media (max-width: 560px) {
  .menu-row { grid-template-columns: 1fr; }
  .menu-row img { max-width: 200px; }
}

@media (max-width: 720px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 24px 20px;
    gap: 4px;
    border-bottom: 1px solid var(--tan);
    box-shadow: 0 8px 16px rgba(26,26,26,0.06);
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    padding: 12px 4px;
    border-bottom: 1px solid var(--tan-light);
    font-size: 16px;
  }
  .site-nav a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
  .nav-cta { padding: 10px 16px; font-size: 13px; }
  .section { padding: 56px 0; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-actions .btn { flex: 1 1 auto; text-align: center; }
  .contact-form { padding: 24px; }
}

@media (max-width: 420px) {
  .header-right { gap: 14px; }
  .logo img { height: 40px; }
  .nav-cta { padding: 9px 12px; font-size: 12px; }
}
