:root {
  --black: #080605;
  --espresso: #160e0a;
  --brown: #2b1a12;
  --wood: #4b2b1f;
  --maroon: #641d23;
  --cream: #f7ead7;
  --muted: #c7ad8d;
  --gold: #d7a84d;
  --copper: #ae6b3a;
  --line: rgba(247, 234, 215, 0.14);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(174, 107, 58, 0.12), transparent 28rem),
    linear-gradient(180deg, var(--black), var(--espresso) 34%, #100907);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(247, 234, 215, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 234, 215, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  padding: 18px 28px;
  transition: padding 240ms ease, background-color 240ms ease;
}

.site-header.scrolled {
  padding-block: 10px;
  background: rgba(8, 6, 5, 0.64);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 14px;
  border: 1px solid rgba(247, 234, 215, 0.16);
  border-radius: 999px;
  background: rgba(16, 9, 7, 0.34);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

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

.brand-seal {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(215, 168, 77, 0.68);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  background: rgba(215, 168, 77, 0.08);
}

.brand-mark strong,
.brand-mark em {
  display: block;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand-mark strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.brand-mark em {
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(247, 234, 215, 0.84);
  font-size: 0.9rem;
  transition: background-color 220ms ease, color 220ms ease;
}

.nav-links a:hover {
  color: var(--cream);
  background: rgba(215, 168, 77, 0.13);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(247, 234, 215, 0.06);
  color: var(--cream);
}

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

.nav-toggle span + span {
  margin-top: 5px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-video {
  z-index: -2;
  object-fit: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 6, 5, 0.84), rgba(8, 6, 5, 0.52) 46%, rgba(8, 6, 5, 0.74)),
    linear-gradient(180deg, rgba(8, 6, 5, 0.24), rgba(8, 6, 5, 0.88));
}

.hero-content {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 86px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: 5.8rem;
  font-weight: 700;
}

h2 {
  max-width: 720px;
  font-size: 3.6rem;
  font-weight: 600;
}

h3 {
  font-size: 1.7rem;
  font-weight: 600;
}

.hero-copy {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(247, 234, 215, 0.86);
  font-size: 1.18rem;
}

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

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  overflow: hidden;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.button::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background: rgba(255, 255, 255, 0.13);
  transition: opacity 220ms ease;
}

.button span {
  position: relative;
  z-index: 1;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover::after {
  opacity: 1;
}

.button-primary {
  color: #160e0a;
  background: var(--gold);
  box-shadow: 0 14px 32px rgba(215, 168, 77, 0.22);
}

.button-secondary {
  border: 1px solid rgba(247, 234, 215, 0.34);
  color: var(--cream);
  background: rgba(247, 234, 215, 0.05);
}

.service-note {
  position: absolute;
  right: 5vw;
  bottom: 5vh;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 520px;
  justify-content: flex-end;
}

.service-note span {
  border: 1px solid rgba(247, 234, 215, 0.16);
  border-radius: 999px;
  padding: 9px 13px;
  color: rgba(247, 234, 215, 0.86);
  background: rgba(8, 6, 5, 0.48);
  backdrop-filter: blur(14px);
  font-size: 0.82rem;
}

.section-pad {
  padding: 110px 28px;
}

.section-grid,
.reservation-grid,
.contact-grid,
.chef-panel,
.testimonial-shell {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.section-grid,
.reservation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 62px;
  align-items: center;
}

.section-copy p:not(.eyebrow),
.chef-copy p,
.reservation-grid p {
  max-width: 620px;
  color: rgba(247, 234, 215, 0.74);
}

.image-composition {
  position: relative;
  min-height: 540px;
}

.image-composition img,
.chef-panel img,
.gallery-item img,
.dish-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-composition img {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(247, 234, 215, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.floating-detail {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 260px;
  border: 1px solid rgba(215, 168, 77, 0.22);
  border-radius: 8px;
  padding: 18px;
  background: rgba(22, 14, 10, 0.78);
  backdrop-filter: blur(16px);
}

.floating-detail strong,
.floating-detail span {
  display: block;
}

.floating-detail strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.floating-detail span {
  color: rgba(247, 234, 215, 0.74);
  font-size: 0.92rem;
}

.section-heading {
  width: min(1160px, 100%);
  margin: 0 auto 40px;
}

.dish-grid,
.menu-grid,
.gallery-grid {
  display: grid;
  width: min(1160px, 100%);
  margin: 0 auto;
  gap: 18px;
}

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

.dish-card,
.menu-card,
.reservation-form,
.testimonial-shell,
.contact-grid {
  border: 1px solid rgba(247, 234, 215, 0.12);
  border-radius: 8px;
  background: rgba(247, 234, 215, 0.045);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.dish-card {
  overflow: hidden;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.dish-card:hover {
  transform: translateY(-5px);
  border-color: rgba(215, 168, 77, 0.38);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.dish-card img {
  aspect-ratio: 4 / 3;
  transition: transform 700ms ease;
}

.dish-card:hover img,
.gallery-item:hover img {
  transform: scale(1.045);
}

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

.dish-card span,
.menu-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.dish-card p,
.menu-card p {
  margin-bottom: 0;
  color: rgba(247, 234, 215, 0.72);
}

.menu-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.menu-card {
  min-height: 226px;
  padding: 26px;
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 168, 77, 0.35);
  background: rgba(174, 107, 58, 0.12);
}

.chef-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 42px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(215, 168, 77, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(100, 29, 35, 0.34), rgba(43, 26, 18, 0.72));
  box-shadow: var(--shadow);
}

.chef-copy {
  padding: 48px;
}

.chef-panel img {
  min-height: 500px;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--gold);
  font-weight: 700;
  border-bottom: 1px solid rgba(215, 168, 77, 0.46);
}

.gallery-grid {
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: 330px;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(247, 234, 215, 0.12);
  background: var(--brown);
}

.gallery-item.wide {
  grid-row: span 2;
}

.gallery-item img {
  transition: transform 900ms ease, filter 240ms ease;
}

.gallery-item:hover img {
  filter: saturate(1.08) contrast(1.04);
}

.testimonial-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 40px;
  align-items: center;
  padding: 48px;
  background:
    linear-gradient(135deg, rgba(247, 234, 215, 0.06), rgba(100, 29, 35, 0.16)),
    rgba(8, 6, 5, 0.28);
}

.testimonial-slider {
  position: relative;
  min-height: 230px;
}

.testimonial {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.testimonial.active {
  opacity: 1;
  transform: translateY(0);
}

.testimonial p {
  margin: 0;
  color: rgba(247, 234, 215, 0.88);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.16;
}

.testimonial cite {
  display: block;
  margin-top: 22px;
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
}

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

.reservation-form label {
  display: grid;
  gap: 8px;
}

.reservation-form span {
  color: rgba(247, 234, 215, 0.74);
  font-size: 0.86rem;
  font-weight: 700;
}

.reservation-form input,
.reservation-form textarea {
  width: 100%;
  border: 1px solid rgba(247, 234, 215, 0.14);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--cream);
  background: rgba(8, 6, 5, 0.46);
  font: inherit;
  outline: none;
  transition: border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.reservation-form textarea {
  resize: vertical;
}

.reservation-form input:focus,
.reservation-form textarea:focus {
  border-color: rgba(215, 168, 77, 0.62);
  background: rgba(8, 6, 5, 0.72);
  box-shadow: 0 0 0 4px rgba(215, 168, 77, 0.1);
}

.full-field {
  grid-column: 1 / -1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1.2fr;
  gap: 26px;
  align-items: stretch;
  padding: 28px;
}

address {
  color: rgba(247, 234, 215, 0.74);
  font-style: normal;
}

.contact-list {
  display: grid;
  align-content: center;
  gap: 12px;
}

.contact-list a,
.contact-list span {
  color: rgba(247, 234, 215, 0.82);
}

.contact-list a:hover {
  color: var(--gold);
}

.map-placeholder {
  display: grid;
  min-height: 240px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(215, 168, 77, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(45deg, rgba(215, 168, 77, 0.09) 25%, transparent 25% 50%, rgba(215, 168, 77, 0.08) 50% 75%, transparent 75%),
    rgba(43, 26, 18, 0.58);
  background-size: 28px 28px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 44px 28px;
  border-top: 1px solid var(--line);
  background: #080605;
}

.footer > div {
  width: min(520px, 100%);
}

.footer p {
  color: rgba(247, 234, 215, 0.62);
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  align-items: center;
}

.footer-links a {
  color: rgba(247, 234, 215, 0.72);
}

.footer-links a:hover {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  h1 {
    font-size: 4.4rem;
  }

  h2 {
    font-size: 3rem;
  }

  .dish-grid,
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-grid,
  .reservation-grid,
  .chef-panel,
  .testimonial-shell,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .chef-panel img {
    min-height: 360px;
  }
}

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

  .nav-shell {
    border-radius: 28px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 12px;
    left: 12px;
    display: grid;
    max-height: 0;
    overflow: hidden;
    border: 1px solid rgba(247, 234, 215, 0.14);
    border-radius: 8px;
    background: rgba(8, 6, 5, 0.92);
    opacity: 0;
    transition: max-height 260ms ease, opacity 260ms ease;
  }

  .nav-links.open {
    max-height: 360px;
    padding: 10px;
    opacity: 1;
  }

  .nav-links a {
    padding: 12px;
  }

  .hero {
    min-height: 90svh;
    place-items: end start;
    padding-bottom: 78px;
  }

  .hero-content {
    padding-top: 120px;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  h3 {
    font-size: 1.45rem;
  }

  .hero-copy,
  .testimonial p {
    font-size: 1.15rem;
  }

  .service-note {
    display: none;
  }

  .section-pad {
    padding: 72px 20px;
  }

  .dish-grid,
  .menu-grid,
  .gallery-grid,
  .reservation-form {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 260px;
  }

  .gallery-item.wide {
    grid-row: span 1;
  }

  .image-composition {
    min-height: 420px;
  }

  .chef-copy,
  .testimonial-shell {
    padding: 28px;
  }

  .footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 440px) {
  .brand-mark strong {
    font-size: 1.05rem;
  }

  .brand-seal {
    width: 38px;
    height: 38px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .service-note span {
    font-size: 0.76rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
