/* ==============================
   Luna Negra — Demo landing page
   ============================== */

:root {
  --black: #0b0b0b;
  --black-soft: #111111;
  --charcoal: #1a1a1a;
  --gray-dark: #2a2a2a;
  --gold: #d4a373;
  --gold-light: #e6c29c;
  --wine: #8b1e3f;
  --cream: #f1ebe3;
  --muted: #a7a09a;
  --line: rgba(255, 255, 255, 0.12);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --ease: cubic-bezier(0.2, 0.72, 0.25, 1);
  --container: min(1240px, calc(100% - 80px));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

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

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

button,
input,
select {
  font: inherit;
}

button,
a,
select,
input {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 9999;
  padding: 12px 18px;
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 20px;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s;
}

.site-header.scrolled,
.site-header.menu-active {
  background: rgba(11, 11, 11, 0.9);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: var(--container);
  height: 90px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 163, 115, 0.65);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  letter-spacing: -0.06em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.desktop-nav a,
.nav-cta {
  position: relative;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav a {
  color: rgba(241, 235, 227, 0.7);
  transition: color 0.25s;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--cream);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  right: 0;
}

.nav-cta {
  justify-self: end;
  padding: 11px 0;
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold);
  transition: color 0.25s, border-color 0.25s;
}

.nav-cta:hover {
  color: #fff;
  border-color: #fff;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

/* Shared typography and controls */
.section {
  position: relative;
  padding: 140px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
}

h2 {
  margin-top: 23px;
  font-size: clamp(52px, 6vw, 88px);
  letter-spacing: -0.04em;
}

h1 em,
h2 em {
  color: var(--gold-light);
  font-weight: 500;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 70px;
}

.section-intro {
  max-width: 450px;
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 29px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 0.3s var(--ease);
}

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

.button:hover svg {
  transform: translateX(4px);
}

.button-gold {
  background: var(--gold);
  color: #15110e;
}

.button-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 14px 35px rgba(212, 163, 115, 0.16);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(241, 235, 227, 0.35);
  color: var(--cream);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: color 0.25s, border-color 0.25s;
}

.text-link span {
  color: var(--gold);
  transition: transform 0.25s;
}

.text-link:hover {
  color: var(--gold-light);
  border-color: var(--gold);
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  overflow: hidden;
  background: var(--black);
}

.hero-image {
  position: absolute;
  inset: 0 0 0 40%;
  overflow: hidden;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.2));
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 53%;
  transform: scale(1.015);
  animation: heroZoom 14s ease-out both;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.015); }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--black) 0%, rgba(11, 11, 11, 0.98) 28%, rgba(11, 11, 11, 0.5) 57%, rgba(11, 11, 11, 0.06) 82%),
    linear-gradient(0deg, rgba(11, 11, 11, 0.9) 0%, transparent 25%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-copy {
  margin-top: 72px;
}

.hero h1 {
  margin: 24px 0 27px -7px;
  font-size: clamp(92px, 10.7vw, 164px);
  letter-spacing: -0.065em;
  line-height: 0.72;
}

.hero h1 em {
  display: inline-block;
  margin-left: 0.55em;
  font-size: 0.78em;
  line-height: 1.16;
}

.hero-tagline {
  margin-left: 4px;
  color: rgba(241, 235, 227, 0.78);
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 25px);
  font-style: italic;
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 40px;
}

.hero-note {
  position: absolute;
  right: 0;
  bottom: 62px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding-left: 20px;
  border-left: 1px solid rgba(212, 163, 115, 0.7);
  text-shadow: 0 2px 15px #000;
}

.hero-note-number {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 31px;
}

.hero-note p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 24px;
  bottom: 54px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: left center;
}

.scroll-cue i {
  position: relative;
  width: 58px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 1px;
  background: var(--gold);
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: translateX(-28px); }
  60%, 100% { transform: translateX(62px); }
}

/* Specialties */
.specialties {
  background:
    radial-gradient(circle at 95% 0%, rgba(139, 30, 63, 0.09), transparent 30%),
    var(--black);
}

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

.dish-card {
  min-width: 0;
}

.dish-image {
  position: relative;
  height: 420px;
  display: block;
  overflow: hidden;
  background: var(--charcoal);
}

.dish-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.38), transparent 45%);
  transition: background 0.45s;
}

.dish-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  transition: transform 0.75s var(--ease), filter 0.5s;
}

.dish-card:nth-child(2) .dish-image img {
  object-position: 54% center;
}

.dish-card:hover .dish-image img {
  transform: scale(1.055);
  filter: saturate(1) contrast(1.04);
}

.dish-arrow {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: white;
  font-size: 18px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s, transform 0.35s var(--ease), background 0.3s, color 0.3s;
}

.dish-card:hover .dish-arrow {
  opacity: 1;
  transform: translateY(0);
}

.dish-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.dish-meta {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 22px;
  padding: 25px 2px 0;
}

.dish-number {
  display: block;
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.dish-meta h3 {
  font-size: clamp(25px, 2.3vw, 34px);
  line-height: 1.08;
}

.dish-meta p {
  padding-top: 21px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

/* About */
.about {
  overflow: hidden;
  background: var(--charcoal);
}

.about::before {
  content: "LUNA NEGRA";
  position: absolute;
  right: -25px;
  top: 18px;
  color: rgba(255, 255, 255, 0.018);
  font-family: var(--serif);
  font-size: clamp(100px, 16vw, 230px);
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(70px, 10vw, 145px);
}

.about-visual {
  position: relative;
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: -13px 13px 13px -13px;
  border: 1px solid rgba(212, 163, 115, 0.28);
}

.about-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 610px;
  object-fit: cover;
  object-position: 59% center;
  filter: saturate(0.75) contrast(1.08);
}

.about-stamp {
  position: absolute;
  z-index: 2;
  right: -45px;
  bottom: -40px;
  width: 145px;
  height: 145px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 163, 115, 0.55);
  border-radius: 50%;
  background: var(--black-soft);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.about-stamp::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(212, 163, 115, 0.34);
  border-radius: 50%;
}

.about-stamp span {
  color: var(--gold);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-stamp strong {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
}

.about-copy {
  position: relative;
  z-index: 1;
}

.about-copy h2 {
  margin-bottom: 40px;
}

.about-lead {
  max-width: 530px;
  margin-bottom: 20px;
  color: rgba(241, 235, 227, 0.88);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.6;
}

.about-copy > p:not(.eyebrow):not(.about-lead) {
  max-width: 490px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 55px;
  padding-top: 33px;
  border-top: 1px solid var(--line);
}

.about-stats > div {
  min-width: 0;
  padding: 0 20px;
  border-left: 1px solid var(--line);
}

.about-stats > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.about-stats strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 500;
  line-height: 1;
}

.about-stats span {
  display: block;
  margin-top: 11px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Experience */
.experience {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 15%, rgba(212, 163, 115, 0.08), transparent 30%),
    #0e0e0e;
}

.experience::after {
  content: "03";
  position: absolute;
  right: -25px;
  bottom: -85px;
  color: rgba(255, 255, 255, 0.018);
  font-family: var(--serif);
  font-size: 330px;
  line-height: 1;
  pointer-events: none;
}

.experience-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
  gap: 100px;
  margin-bottom: 80px;
}

.experience-heading blockquote {
  max-width: 510px;
  padding: 4px 0 4px 30px;
  border-left: 1px solid var(--gold);
  color: rgba(241, 235, 227, 0.72);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.75;
}

.experience-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.experience-item {
  position: relative;
  min-height: 330px;
  padding: 42px 42px 45px;
  border-left: 1px solid var(--line);
  transition: background 0.4s var(--ease);
}

.experience-item:first-child {
  border-left: 0;
}

.experience-item:hover {
  background: rgba(255, 255, 255, 0.025);
}

.experience-number {
  position: absolute;
  right: 25px;
  top: 22px;
  color: rgba(212, 163, 115, 0.45);
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
}

.experience-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 50px;
  color: var(--gold);
}

.experience-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.experience-item h3 {
  margin-bottom: 18px;
  font-size: 27px;
  line-height: 1.2;
}

.experience-item p {
  max-width: 315px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
}

/* Gallery */
.gallery {
  background: var(--black);
}

.gallery-heading {
  align-items: end;
}

.gallery-heading .text-link {
  justify-self: end;
  margin-bottom: 9px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-template-rows: 290px 290px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}

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

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

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 52%);
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
  transition: transform 0.8s var(--ease), filter 0.55s;
}

.gallery-large img {
  object-position: center 57%;
}

.gallery-item:hover img {
  transform: scale(1.045);
  filter: saturate(0.95) contrast(1.05);
}

.gallery-item figcaption {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transform: translateY(3px);
  transition: transform 0.35s var(--ease), color 0.3s;
}

.gallery-item:hover figcaption {
  color: var(--gold-light);
  transform: translateY(0);
}

/* Reservation */
.reservation {
  overflow: hidden;
  padding: 150px 0;
  border-top: 1px solid var(--line);
  background: #111;
}

.reservation::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}

.reservation-glow {
  position: absolute;
  width: 470px;
  height: 470px;
  left: -210px;
  bottom: -250px;
  border-radius: 50%;
  background: rgba(139, 30, 63, 0.2);
  filter: blur(100px);
}

.reservation-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
  gap: clamp(70px, 10vw, 150px);
}

.reservation-copy h2 {
  font-size: clamp(48px, 5.3vw, 77px);
}

.reservation-copy > p:not(.eyebrow) {
  max-width: 510px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.reservation-phone {
  display: inline-block;
  margin-top: 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(212, 163, 115, 0.5);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 21px;
  transition: border-color 0.3s, color 0.3s;
}

.reservation-phone:hover {
  color: #fff;
  border-color: #fff;
}

.reservation-form {
  position: relative;
  padding: 45px;
  border: 1px solid var(--line);
  background: rgba(26, 26, 26, 0.82);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-field {
  position: relative;
  margin-bottom: 30px;
}

.form-field label {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.form-field input,
.form-field select {
  width: 100%;
  height: 52px;
  padding: 0 2px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--cream);
  font-size: 14px;
  font-weight: 300;
  transition: border-color 0.3s;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--gold);
}

.form-field input::placeholder {
  color: rgba(241, 235, 227, 0.38);
}

.form-field select {
  cursor: pointer;
  appearance: none;
}

.form-field select option {
  background: var(--charcoal);
  color: var(--cream);
}

.select-wrap {
  position: relative;
}

.select-wrap svg {
  position: absolute;
  right: 2px;
  top: 16px;
  width: 19px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  pointer-events: none;
}

input[type="date"] {
  color-scheme: dark;
}

.field-error {
  display: none;
  margin-top: 7px;
  color: #dc8fa3;
  font-size: 10px;
}

.form-field.invalid .field-error {
  display: block;
}

.form-field.invalid input,
.form-field.invalid select {
  border-color: var(--wine);
}

.form-submit {
  width: 100%;
  margin-top: 2px;
  border: 0;
}

.form-note {
  margin-top: 14px;
  color: rgba(241, 235, 227, 0.4);
  font-size: 10px;
  text-align: center;
}

.form-success {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 40px;
  background: var(--charcoal);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.985);
  transition: opacity 0.4s, visibility 0.4s, transform 0.4s var(--ease);
}

.form-success.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.form-success > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 22px;
}

.form-success strong,
.form-success small {
  display: block;
}

.form-success strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.form-success small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

/* Footer */
.site-footer {
  padding: 80px 0 28px;
  background: #080808;
}

.footer-main {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
  padding-bottom: 65px;
}

.footer-brand p {
  margin-top: 20px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

.footer-label {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-info p,
.footer-info a {
  color: rgba(241, 235, 227, 0.64);
  font-size: 12px;
  line-height: 1.9;
}

.footer-info a {
  transition: color 0.25s;
}

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

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: rgba(241, 235, 227, 0.36);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.social-links {
  display: flex;
  gap: 25px;
}

.social-links a,
.back-top {
  transition: color 0.25s;
}

.social-links a:hover,
.back-top:hover {
  color: var(--gold-light);
}

.back-top {
  justify-self: end;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

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

.reveal.delay-1 {
  transition-delay: 0.12s;
}

.reveal.delay-2 {
  transition-delay: 0.24s;
}

/* Responsive */
@media (max-width: 1120px) {
  :root {
    --container: min(100% - 56px, 1040px);
  }

  .hero-image {
    left: 32%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, var(--black) 0%, rgba(11, 11, 11, 0.94) 34%, rgba(11, 11, 11, 0.4) 68%, rgba(11, 11, 11, 0.08)),
      linear-gradient(0deg, rgba(11, 11, 11, 0.85), transparent 28%);
  }

  .dish-image {
    height: 350px;
  }

  .dish-meta {
    display: block;
  }

  .dish-meta p {
    padding-top: 14px;
  }

  .about-grid {
    gap: 75px;
  }

  .about-visual img {
    height: 540px;
  }

  .about-stats {
    gap: 12px;
  }

  .about-stats > div {
    padding: 0 10px;
  }
}

@media (max-width: 860px) {
  :root {
    --container: calc(100% - 44px);
  }

  .section {
    padding: 105px 0;
  }

  .nav-wrap {
    height: 76px;
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    width: 43px;
    height: 43px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 16px;
    height: 1px;
    background: var(--cream);
    transition: transform 0.3s var(--ease);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    height: calc(100svh - 76px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 30px var(--container);
    border-top: 1px solid var(--line);
    background: rgba(11, 11, 11, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity 0.35s, visibility 0.35s, transform 0.35s var(--ease);
  }

  .mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: clamp(34px, 8vw, 52px);
    line-height: 1.25;
  }

  .hero {
    min-height: 740px;
  }

  .hero h1 {
    font-size: clamp(88px, 18vw, 140px);
  }

  .hero-note {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 55px;
  }

  .section-intro {
    max-width: 580px;
  }

  .experience-heading {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-bottom: 58px;
  }

  .experience-heading blockquote {
    max-width: 620px;
  }

  .experience-item {
    min-height: 350px;
    padding: 34px 28px 38px;
  }

  .experience-icon {
    margin-bottom: 40px;
  }

  .dish-grid {
    gap: 16px;
  }

  .dish-image {
    height: 290px;
  }

  .about-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
  }

  .about-visual img {
    height: 520px;
  }

  .about-stamp {
    right: -30px;
    width: 120px;
    height: 120px;
  }

  .about-copy h2 {
    font-size: clamp(48px, 8vw, 68px);
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 35px;
    padding-top: 25px;
  }

  .about-stats > div,
  .about-stats > div:first-child {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0;
    border-left: 0;
  }

  .about-stats span {
    margin: 0;
  }

  .gallery-grid {
    grid-template-rows: 230px 230px;
  }

  .reservation-wrap {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .reservation-copy {
    max-width: 650px;
  }

  .reservation-form {
    max-width: 650px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100% - 36px);
  }

  html {
    scroll-padding-top: 70px;
  }

  .section {
    padding: 86px 0;
  }

  .nav-wrap {
    height: 70px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .hero {
    min-height: 700px;
    height: 100svh;
  }

  .hero-image {
    inset: 0;
  }

  .hero-image img {
    object-position: 58% 48%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(11, 11, 11, 0.93), rgba(11, 11, 11, 0.46) 78%),
      linear-gradient(0deg, rgba(11, 11, 11, 0.92) 0%, rgba(11, 11, 11, 0.16) 50%, rgba(11, 11, 11, 0.52) 100%);
  }

  .hero-copy {
    width: 100%;
    margin-top: 60px;
  }

  .hero h1 {
    margin: 23px 0 31px -3px;
    font-size: clamp(78px, 25vw, 112px);
    line-height: 0.75;
  }

  .hero-tagline {
    font-size: 19px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-top: 34px;
  }

  .hero-actions .button {
    min-width: 188px;
  }

  .scroll-cue {
    display: none;
  }

  h2 {
    font-size: clamp(47px, 15vw, 68px);
  }

  .section-heading {
    margin-bottom: 43px;
  }

  .dish-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .dish-image {
    height: min(105vw, 440px);
  }

  .dish-meta {
    display: grid;
  }

  .dish-meta p {
    padding-top: 20px;
  }

  .dish-arrow {
    opacity: 1;
    transform: none;
  }

  .about-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 75px;
  }

  .about-visual {
    width: calc(100% - 16px);
  }

  .about-visual img {
    height: 460px;
  }

  .about-stamp {
    right: -16px;
    bottom: -35px;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .about-stats > div,
  .about-stats > div:first-child {
    display: block;
    padding: 0 11px;
    border-left: 1px solid var(--line);
  }

  .about-stats > div:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .about-stats span {
    margin-top: 9px;
    font-size: 7px;
  }

  .experience-heading {
    gap: 30px;
    margin-bottom: 48px;
  }

  .experience-heading blockquote {
    padding-left: 22px;
    font-size: 16px;
  }

  .experience-list {
    grid-template-columns: 1fr;
  }

  .experience-item {
    min-height: auto;
    padding: 36px 8px 38px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .experience-item:first-child {
    border-top: 0;
  }

  .experience-icon {
    margin-bottom: 28px;
  }

  .experience-item p {
    max-width: 470px;
  }

  .gallery-heading .text-link {
    justify-self: start;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 370px 220px 250px;
    gap: 11px;
  }

  .gallery-large {
    grid-row: auto;
    grid-column: span 2;
  }

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

  .reservation {
    padding: 90px 0;
  }

  .reservation-wrap {
    gap: 43px;
  }

  .reservation-form {
    padding: 30px 24px;
  }

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

  .footer-main {
    padding-bottom: 48px;
  }

  .footer-info {
    grid-template-columns: 1fr 1fr;
    gap: 35px 20px;
  }

  .footer-info > div:last-child {
    grid-column: span 2;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    gap: 20px;
  }

  .social-links {
    grid-row: 1;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .back-top {
    justify-self: end;
  }
}

@media (max-width: 390px) {
  .brand-copy {
    display: none;
  }

  .hero h1 {
    font-size: 76px;
  }

  .dish-meta {
    display: block;
  }

  .dish-meta p {
    padding-top: 12px;
  }

  .about-stats strong {
    font-size: 29px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
