:root {
  --ink: #2b211d;
  --muted: #76655d;
  --paper: #f8f1e8;
  --cream: #fffaf2;
  --rust: #a7472b;
  --rust-dark: #7d3021;
  --gold: #c99748;
  --line: #e7d8c5;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Georgia, 'Times New Roman', serif; line-height: 1.6; }
a { color: inherit; }
.site-header { padding: 22px 5vw 100px; color: var(--cream); background: linear-gradient(110deg, rgba(43,33,29,.96), rgba(106,49,35,.88)), url('https://images.unsplash.com/photo-1515003197210-e0cd71810b5f?auto=format&fit=crop&w=1800&q=85') center/cover; }
nav { display: flex; max-width: 1180px; margin: 0 auto 110px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { font-size: 1.3rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.nav-links { display: flex; gap: 28px; font-family: Arial, sans-serif; font-size: .9rem; }
.nav-links a { color: #f7e8d2; text-decoration: none; }
.nav-links a:hover { color: #fff; }
.hero-content { max-width: 760px; margin: 0 auto; text-align: center; }
.eyebrow { color: #e7ba70; font-family: Arial, sans-serif; font-size: .75rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
h1 { margin: 16px 0 20px; font-size: clamp(3.1rem, 8vw, 6.7rem); line-height: .95; font-weight: 400; }
.hero-content p { max-width: 560px; margin: 0 auto 32px; color: #f4dfc7; font-size: 1.2rem; }
.button { display: inline-block; padding: 13px 22px; border: 1px solid var(--gold); color: var(--cream); background: var(--rust); font-family: Arial, sans-serif; font-size: .9rem; font-weight: 700; text-decoration: none; }
.button:hover { background: var(--rust-dark); }
.button-light { margin-left: 10px; color: #f7e8d2; background: transparent; }
main { max-width: 1180px; margin: -48px auto 0; padding: 0 5vw 90px; }
.intro { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding: 34px; background: var(--cream); }
.intro h2, .section-heading h1 { margin: 0; font-size: clamp(2rem, 4vw, 3.3rem); font-weight: 400; line-height: 1.05; }
.intro p { margin: 0; color: var(--muted); }
.section { padding-top: 78px; }
.section-heading { max-width: 650px; margin-bottom: 30px; }
.section-heading p { color: var(--muted); }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.menu-card { min-height: 240px; padding: 26px; border-top: 3px solid var(--gold); background: var(--cream); }
.menu-card h3 { margin: 8px 0; font-size: 1.5rem; font-weight: 400; }
.menu-card p { margin: 0; color: var(--muted); }
.price { color: var(--rust); font-family: Arial, sans-serif; font-size: .9rem; font-weight: 700; }
.callout { display: flex; margin-top: 48px; padding: 30px; align-items: center; justify-content: space-between; gap: 24px; color: var(--cream); background: var(--rust); }
.callout h2 { margin: 0; font-size: 1.8rem; font-weight: 400; }
footer { padding: 28px 5vw; color: #f2dfc7; background: #2b211d; font-family: Arial, sans-serif; font-size: .9rem; }
.footer-inner { display: flex; max-width: 1180px; margin: auto; justify-content: space-between; gap: 20px; }
.page-header { padding-bottom: 72px; }
.page-header nav { margin-bottom: 70px; }
.form-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; }
.info-panel, form { padding: 30px; background: var(--cream); }
.info-panel { border-top: 3px solid var(--gold); }
.info-panel h2 { margin-top: 0; font-size: 1.8rem; font-weight: 400; }
.info-panel p { color: var(--muted); }
.info-list { padding: 0; list-style: none; color: var(--muted); }
.info-list li { margin: 14px 0; }
label { display: block; margin: 15px 0 6px; font-family: Arial, sans-serif; font-size: .9rem; font-weight: 700; }
input, textarea, select { width: 100%; padding: 13px; border: 1px solid var(--line); color: var(--ink); background: #fffdf9; font: inherit; }
textarea { min-height: 130px; resize: vertical; }
button { margin-top: 20px; padding: 13px 22px; border: 0; color: var(--cream); background: var(--rust); font-family: Arial, sans-serif; font-weight: 700; cursor: pointer; }
button:hover { background: var(--rust-dark); }
@media (max-width: 720px) {
  .site-header { padding-bottom: 80px; }
  nav, .nav-links, .footer-inner, .callout { flex-wrap: wrap; }
  nav { margin-bottom: 80px; }
  .nav-links { gap: 14px; }
  .intro, .form-layout { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .button-light { margin-top: 12px; margin-left: 0; }
}
