:root {
  --green: #183523;
  --green-soft: #254532;
  --red: #9d2729;
  --gold: #b08a50;
  --cream: #f7f0e4;
  --paper: #fffaf2;
  --ink: #23231f;
  --muted: #6f675b;
  --line: rgba(176, 138, 80, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px clamp(18px, 4vw, 60px);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 240ms ease, color 240ms ease, min-height 240ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  min-height: 74px;
  color: var(--green);
  background: rgba(255, 250, 242, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 18px 40px rgba(42, 30, 18, 0.08);
  backdrop-filter: blur(16px);
}

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

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border: 1px solid rgba(176, 138, 80, 0.5);
  border-radius: 50%;
  background: var(--cream);
}

.brand strong {
  display: block;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.18rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 2px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 32px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav .nav-order {
  min-width: 148px;
  padding: 13px 18px;
  color: #fff;
  text-align: center;
  background: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.main-nav .nav-order::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 126px clamp(18px, 6vw, 82px) 92px;
  color: #fff;
  background: #14110d;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.hero::before {
  background: linear-gradient(90deg, rgba(18, 22, 16, 0.86), rgba(18, 22, 16, 0.42) 48%, rgba(18, 22, 16, 0.2));
}

.hero::after {
  background: linear-gradient(0deg, rgba(20, 17, 13, 0.78), transparent 42%);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-image: var(--bg);
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  transition: opacity 850ms ease, transform 6500ms linear;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(4rem, 13vw, 10.8rem);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  line-height: 1.65;
}

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

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid currentColor;
}

.btn.primary {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.btn.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.hero-footer {
  position: absolute;
  right: clamp(18px, 6vw, 82px);
  bottom: 30px;
  left: clamp(18px, 6vw, 82px);
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slide-dots {
  position: absolute;
  right: clamp(18px, 4vw, 60px);
  bottom: 112px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.slide-dots button {
  width: 38px;
  height: 3px;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  border: 0;
  cursor: pointer;
}

.slide-dots button.is-active {
  background: var(--gold);
}

.intro,
.menu-section,
.reservation {
  padding: clamp(72px, 9vw, 128px) clamp(18px, 6vw, 82px);
}

.intro {
  background:
    linear-gradient(90deg, rgba(24, 53, 35, 0.08), transparent),
    var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.intro h2,
.menu-heading h2,
.reservation h2 {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 5vw, 4.6rem);
  font-weight: 400;
  line-height: 1.08;
}

.intro p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.signature {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.signature article {
  min-height: 300px;
  padding: clamp(34px, 5vw, 66px);
  border-right: 1px solid var(--line);
}

.signature article:last-child {
  border-right: 0;
}

.signature span {
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 0.16em;
}

.signature h3,
.footer-columns h3 {
  margin: 22px 0 14px;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.menu-section {
  background: #fffaf2;
}

.menu-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.text-link {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.dish-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  align-items: end;
  color: #fff;
  background: #211b15;
}

.dish-card.large {
  grid-row: span 2;
  min-height: 660px;
}

.dish-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(13, 14, 10, 0.86), transparent 68%);
}

.dish-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.dish-card:hover img {
  transform: scale(1.04);
}

.dish-card div {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 4vw, 46px);
}

.dish-card span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dish-card h3 {
  max-width: 560px;
  margin: 10px 0 12px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.1;
}

.dish-card p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.reservation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(24, 53, 35, 0.96), rgba(24, 53, 35, 0.76)),
    url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=2200&q=90") center/cover;
}

.reservation h2 {
  max-width: 900px;
}

.site-footer {
  padding: 64px clamp(18px, 6vw, 82px) 28px;
  color: #e9dfcf;
  background: #122519;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(176, 138, 80, 0.28);
}

.footer-brand img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--gold);
}

.footer-brand p {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 42px 0;
}

.footer-columns h3 {
  color: var(--gold);
}

.footer-columns p {
  margin: 0;
  color: rgba(233, 223, 207, 0.78);
  line-height: 1.8;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(176, 138, 80, 0.28);
  color: rgba(233, 223, 207, 0.62);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 74px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 4px;
    padding: 18px;
    color: var(--green);
    background: rgba(255, 250, 242, 0.98);
    border: 1px solid var(--line);
    box-shadow: 0 22px 50px rgba(38, 27, 15, 0.14);
    transform: translateY(-10px);
    visibility: hidden;
    opacity: 0;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .main-nav a {
    padding: 14px;
  }

  .main-nav .nav-order {
    margin-top: 8px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 118px;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(18, 22, 16, 0.9), rgba(18, 22, 16, 0.54));
  }

  .hero-footer {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 58px;
  }

  .slide-dots {
    right: 18px;
    bottom: 28px;
  }

  .intro-grid,
  .menu-grid {
    grid-template-columns: 1fr;
  }

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

  .signature article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signature article:last-child {
    border-bottom: 0;
  }

  .menu-heading,
  .reservation {
    align-items: start;
    flex-direction: column;
  }

  .dish-card,
  .dish-card.large {
    min-height: 430px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 74px;
    padding: 12px 14px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.56rem;
    letter-spacing: 0.18em;
  }

  .hero {
    padding: 112px 18px 38px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 18vw, 5.1rem);
  }

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

  .hero-footer {
    display: grid;
    justify-content: start;
    font-size: 0.7rem;
  }

  .intro,
  .menu-section,
  .reservation {
    padding: 64px 18px;
  }

  .dish-card,
  .dish-card.large {
    min-height: 390px;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }
}
