:root {
  --ink: #2a1b18;
  --muted: #75625a;
  --paper: #fbf6eb;
  --clay: #b83338;
  --maize: #f2a332;
  --leaf: #158443;
  --rose: #cf2f82;
  --black: #130f0d;
  --cream: #fffaf0;
  --line: rgba(36, 23, 19, 0.14);
  --shadow: 0 24px 70px rgba(42, 27, 24, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(255, 248, 239, 0.2);
  color: var(--cream);
  background: rgba(19, 15, 13, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 250, 240, 0.45);
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 500;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

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

.site-nav a {
  color: rgba(255, 250, 240, 0.82);
}

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

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 750;
  font-family: inherit;
  cursor: pointer;
}

.nav-cta {
  color: var(--ink) !important;
  background: linear-gradient(135deg, var(--maize), #ffd37a);
  border: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 250, 240, 0.35);
  border-radius: 50%;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--cream);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  padding: clamp(110px, 15vw, 180px) clamp(18px, 5vw, 72px) clamp(34px, 5vw, 72px);
  color: var(--cream);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(19, 15, 13, 0.9), rgba(42, 27, 24, 0.36) 55%, rgba(19, 15, 13, 0.72)),
    url("https://images.unsplash.com/photo-1600891964599-f61ba0e24092?auto=format&fit=crop&w=1800&q=82") center/cover;
}

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

.hero-logo {
  width: min(210px, 48vw);
  height: auto;
  margin-bottom: 22px;
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

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

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

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.88;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.94;
}

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

.hero-content p {
  max-width: 620px;
  color: rgba(255, 250, 240, 0.86);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button.primary {
  border: 0;
  color: var(--ink);
  background: linear-gradient(135deg, var(--maize), #ffd37a);
}

.button.secondary {
  border-color: currentColor;
  color: inherit;
  background: rgba(255, 250, 240, 0.08);
}

.hero-card {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(18px, 5vw, 72px);
  width: min(310px, calc(100% - 36px));
  padding: 20px;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 8px;
  background: rgba(19, 15, 13, 0.72);
  backdrop-filter: blur(16px);
}

.hero-card span {
  color: var(--maize);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-card strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
}

.hero-card p {
  margin: 8px 0 0;
  color: rgba(255, 250, 240, 0.75);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.intro-band div {
  padding: 28px clamp(18px, 4vw, 58px);
  border-right: 1px solid var(--line);
}

.intro-band div:last-child {
  border-right: 0;
}

.intro-band span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section {
  padding: clamp(64px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 30px;
}

.section-heading > p:last-child,
.split-section > div > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.menu-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 26px;
  padding-bottom: 8px;
  overflow-x: auto;
}

.tab {
  min-height: 44px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 750;
}

.tab.active {
  border-color: var(--leaf);
  color: #fff;
  background: linear-gradient(135deg, var(--leaf), #0f6334);
}

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

.dish-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(36, 23, 19, 0.08);
}

.dish-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.dish-content {
  padding: 18px;
}

.dish-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.dish-top h3 {
  line-height: 1.12;
}

.price {
  color: var(--clay);
  font-size: 19px;
  font-weight: 900;
  white-space: nowrap;
}

.dish-content p {
  min-height: 52px;
  color: var(--muted);
  line-height: 1.45;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag {
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--leaf);
  background: rgba(21, 132, 67, 0.1);
  font-size: 12px;
  font-weight: 800;
}

.gallery-section {
  background: var(--black);
  color: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 240px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 14px;
}

.gallery-grid figure {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
}

.gallery-grid .wide {
  grid-column: span 2;
}

.gallery-grid .tall {
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  transition: transform 300ms ease, opacity 300ms ease;
}

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

.gallery-grid figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--cream);
  background: rgba(19, 15, 13, 0.7);
  font-size: 14px;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.experience-list {
  display: grid;
  gap: 12px;
}

.experience-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.experience-list span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--clay);
  font-weight: 900;
}

.experience-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 28px;
  padding: clamp(54px, 8vw, 95px) clamp(18px, 5vw, 72px);
  color: var(--cream);
  background:
    linear-gradient(110deg, rgba(42, 27, 24, 0.94), rgba(42, 27, 24, 0.66)),
    url("https://images.unsplash.com/photo-1592861956120-e524fc739696?auto=format&fit=crop&w=1700&q=80") center/cover;
}

.contact-copy {
  max-width: 700px;
}

.contact-copy p {
  color: rgba(255, 250, 240, 0.78);
  font-size: 18px;
  line-height: 1.6;
}

.contact-panel {
  align-self: end;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 8px;
  padding: 24px;
  background: rgba(19, 15, 13, 0.66);
  backdrop-filter: blur(14px);
}

.reservation-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.reservation-modal.open {
  display: flex;
}

.reservation-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 18, 16, 0.72);
  backdrop-filter: blur(10px);
}

.reservation-dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  border-radius: 8px;
  padding: clamp(22px, 4vw, 38px);
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--cream);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.reservation-copy {
  max-width: 590px;
  padding-right: 42px;
}

.reservation-copy h2 {
  font-size: clamp(34px, 5vw, 58px);
}

.reservation-copy p,
.form-note {
  color: var(--muted);
  line-height: 1.55;
}

.reservation-form {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.reservation-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  border: 1px solid rgba(36, 23, 19, 0.2);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--cream);
  font: inherit;
}

.reservation-form textarea {
  resize: vertical;
}

.payment-preview {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 18px;
  border: 1px solid rgba(21, 132, 67, 0.18);
  border-radius: 8px;
  padding: 16px;
  background: rgba(21, 132, 67, 0.08);
}

.payment-preview span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.payment-preview strong {
  color: var(--leaf);
  font-size: 24px;
}

.payment-preview p {
  width: 100%;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  outline: 3px solid rgba(242, 163, 50, 0.45);
  border-color: var(--maize);
}

.form-submit {
  justify-self: start;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-note {
  margin: -6px 0 0;
  font-size: 14px;
}

.reservation-success {
  margin-top: 24px;
  border: 1px solid rgba(21, 132, 67, 0.18);
  border-radius: 8px;
  padding: 24px;
  background: rgba(21, 132, 67, 0.08);
}

.success-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--leaf), var(--rose));
  font-size: 26px;
  font-weight: 900;
}

.reservation-success h3 {
  margin-top: 16px;
}

.reservation-success p {
  color: var(--muted);
  line-height: 1.55;
}

dl {
  margin: 0;
}

.contact-panel div + div {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 250, 240, 0.18);
}

dt {
  margin-bottom: 6px;
  color: var(--maize);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

dd {
  margin: 0;
  color: rgba(255, 250, 240, 0.9);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: rgba(255, 250, 240, 0.74);
  background: var(--black);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream);
}

.mobile-reserve {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: none;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 0;
  padding: 0 20px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--maize), #ffd37a);
  box-shadow: var(--shadow);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

@media (max-width: 980px) {
  .hero {
    min-height: 760px;
  }

  .hero-card {
    position: static;
    margin-top: 28px;
  }

  .intro-band,
  .menu-grid,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .intro-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

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

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255, 248, 239, 0.18);
    border-radius: 8px;
    padding: 14px;
    background: rgba(21, 18, 16, 0.96);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 4px;
  }

  .nav-cta {
    margin-top: 4px;
  }

  .hero {
    min-height: 720px;
    padding-top: 96px;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

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

  .gallery-grid {
    display: block;
  }

  .gallery-grid figure {
    margin-bottom: 14px;
  }

  .dish-content p {
    min-height: auto;
  }

  .mobile-reserve {
    display: inline-flex;
  }
}
