:root {
  --bg: #15120f;
  --panel: #221c17;
  --paper: #f7efe2;
  --paper-soft: #efe2cf;
  --text: #f9f2e8;
  --muted: #cdbda6;
  --dark-text: #241b15;
  --accent: #a72f2f;
  --accent-dark: #7d2020;
  --border: rgba(255, 255, 255, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

img {
  display: block;
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(21, 18, 15, 0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.header-button {
  padding: 10px 16px;
  background: var(--paper);
  color: var(--dark-text);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  padding: 160px clamp(20px, 7vw, 90px) 90px;
  background:
    linear-gradient(90deg, rgba(21, 18, 15, 0.9), rgba(21, 18, 15, 0.35)),
    url("https://images.unsplash.com/photo-1526318896980-cf78c088247c?auto=format&fit=crop&w=1800&q=80")
      center / cover;
}

.hero-content {
  position: relative;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.05;
}

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(44px, 8vw, 88px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 60px);
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.hero-text {
  max-width: 560px;
  color: var(--paper-soft);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.button.primary {
  background: var(--accent);
  color: white;
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: white;
}

.section {
  padding: 90px clamp(20px, 6vw, 80px);
  background: var(--paper);
  color: var(--dark-text);
}

.section.compact {
  padding-top: 70px;
  padding-bottom: 70px;
}

.section .eyebrow,
.visit-section .eyebrow,
.booking-section .eyebrow {
  color: var(--accent-dark);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading p {
  color: #6c5c4d;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.dish-card {
  background: white;
  border: 1px solid rgba(36, 27, 21, 0.1);
}

.dish-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.dish-card div {
  padding: 22px;
}

.feature-section,
.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 38px;
  padding: 90px clamp(20px, 6vw, 80px);
}

.feature-section {
  background: var(--bg);
}

.feature-section p {
  max-width: 620px;
  color: var(--paper-soft);
}

.feature-box,
.visit-card {
  padding: 30px;
  border: 1px solid var(--border);
  background: var(--panel);
}

.feature-box p {
  color: var(--muted);
}

.menu-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.menu-links a {
  padding: 18px;
  background: white;
  border: 1px solid rgba(36, 27, 21, 0.12);
  font-weight: 700;
}

.visit-section {
  background: #1c1713;
}

.visit-card .label {
  margin: 18px 0 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visit-card .label:first-child {
  margin-top: 0;
}

.visit-card a {
  color: var(--paper);
  font-size: 20px;
}

.booking-section {
  padding: 90px clamp(20px, 6vw, 80px);
  background: var(--paper-soft);
  color: var(--dark-text);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 900px;
}

label {
  display: grid;
  gap: 8px;
  color: #5a4a3f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(36, 27, 21, 0.22);
  background: #fffaf3;
  color: var(--dark-text);
  font: inherit;
  min-height: 52px;
  padding: 14px;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: #6c5c4d;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.form-note.is-success {
  color: #276738;
  font-weight: 700;
}

.form-note.is-error {
  color: #9f2727;
  font-weight: 700;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.wide {
  grid-column: 1 / -1;
}

.footer {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 80px);
  background: #0e0c0a;
  color: var(--muted);
  font-size: 14px;
}

.footer-note {
  grid-column: 1 / -1;
  max-width: 780px;
  color: rgba(205, 189, 166, 0.72);
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 640px;
    padding-top: 110px;
  }

  .dish-grid,
  .feature-section,
  .visit-section,
  .menu-links,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 14px;
  }

  .brand {
    font-size: 20px;
  }

  .header-button {
    padding: 8px 10px;
    font-size: 11px;
  }

  .hero {
    min-height: 600px;
  }

  .button {
    width: 100%;
  }
}
