@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Raleway:wght@300;400;500;600&display=swap');

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

:root {
  --black:      #0a0a0a;
  --dark:       #111111;
  --dark-2:     #181818;
  --dark-3:     #222222;
  --dark-4:     #2a2a2a;
  --gold:       #c9a96e;
  --gold-light: #e2c799;
  --gold-pale:  #f0e0c0;
  --gold-dark:  #8a6830;
  --cream:      #f0ebe3;
  --text:       #a89f95;
  --text-light: #cec5bb;
  --white:      #f5f0eb;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text-light);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ─────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.serif { font-family: 'Cormorant Garamond', serif; }

.gold { color: var(--gold); }

.eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text);
  max-width: 520px;
  line-height: 1.85;
}

/* ── DIVIDER ──────────────────────────────────────*/
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark));
}
.divider::after {
  background: linear-gradient(to left, transparent, var(--gold-dark));
}
.divider-icon {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── NAVIGATION ──────────────────────────────────*/
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s ease, padding 0.4s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.97);
  padding: 1rem 3rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.12em;
  line-height: 1;
}
.nav-logo-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-reserve {
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 0.65rem 1.5rem;
  transition: background 0.3s;
}
.nav-reserve:hover { background: var(--gold-light); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 1.8rem;
  color: var(--gold);
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Raleway', sans-serif;
}

/* ── HERO ─────────────────────────────────────────*/
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.35) 0%,
    rgba(10,10,10,0.55) 50%,
    rgba(10,10,10,0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 900px;
}
.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.02;
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  letter-spacing: 0.08em;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ──────────────────────────────────────*/
.btn-primary {
  display: inline-block;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 1rem 2.5rem;
  transition: background 0.3s;
}
.btn-primary:hover { background: var(--gold-light); }

.btn-outline {
  display: inline-block;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.5);
  padding: 1rem 2.5rem;
  transition: all 0.3s;
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201,169,110,0.08);
}

/* ── SECTIONS ─────────────────────────────────────*/
.section {
  padding: 7rem 3rem;
}
.section-center {
  text-align: center;
}
.section-center .section-subtitle {
  margin: 0 auto;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── ABOUT ────────────────────────────────────────*/
.about {
  background: var(--dark);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.about-image-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  aspect-ratio: 1;
  border: 1px solid rgba(201,169,110,0.25);
  z-index: -1;
}
.about-text { }
.about-text p {
  color: var(--text);
  margin-bottom: 1.25rem;
  font-size: 0.97rem;
  line-height: 1.9;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(201,169,110,0.15);
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 0.4rem;
  display: block;
}

/* ── SIGNATURE DISHES ─────────────────────────────*/
.dishes {
  background: var(--black);
}
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.dish-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.dish-card:hover .dish-img {
  transform: scale(1.07);
}
.dish-card:hover .dish-overlay {
  opacity: 1;
}
.dish-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
  filter: brightness(0.92);
}
.dish-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.2) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0.85;
  transition: opacity 0.4s;
}
.dish-category {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.dish-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.dish-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── PAGE HERO (inner pages) ──────────────────────*/
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 4rem 3rem;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,0.5) 60%, rgba(10,10,10,0.3) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
}
.page-hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

/* ── MENU (experience page) ───────────────────────*/
.menu-section {
  background: var(--dark);
}
.menu-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(201,169,110,0.15);
  overflow-x: auto;
}
.menu-tab {
  font-family: 'Raleway', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text);
  padding: 1rem 2rem;
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.3s;
  margin-bottom: -1px;
}
.menu-tab:hover { color: var(--gold-light); }
.menu-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.menu-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.menu-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
.menu-item:nth-child(odd) { padding-right: 3rem; }
.menu-item:nth-child(even) { padding-left: 3rem; border-left: 1px solid rgba(255,255,255,0.06); }

.menu-item-info { flex: 1; }
.menu-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.menu-item-desc {
  font-size: 0.78rem;
  color: var(--text);
  line-height: 1.65;
}
.menu-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--gold);
  white-space: nowrap;
  margin-top: 0.15rem;
}

/* ── GALLERY ──────────────────────────────────────*/
.gallery-section {
  background: var(--black);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 300px);
  gap: 4px;
  margin-top: 4rem;
}
.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1;
}
.gallery-item:nth-child(5) {
  grid-column: 2 / 4;
  grid-row: 2;
}
.gallery-item:nth-child(8) {
  grid-column: 1 / 3;
  grid-row: 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease, filter 0.4s;
  filter: brightness(0.88) saturate(0.9);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.95) saturate(1);
}

/* ── CHEF ─────────────────────────────────────────*/
.chef-section {
  background: var(--dark-2);
}
.chef-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.chef-image-wrap {
  position: relative;
}
.chef-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(20%) brightness(0.9);
}
.chef-quote {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--dark-2);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  max-width: 280px;
}
.chef-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
}
.chef-quote cite {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.75rem;
  font-style: normal;
}

.chef-text p {
  color: var(--text);
  margin-bottom: 1.25rem;
  font-size: 0.97rem;
  line-height: 1.9;
}
.chef-awards {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201,169,110,0.15);
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.award {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.award-icon {
  font-size: 1.4rem;
  color: var(--gold);
}
.award-text {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--text-light);
  line-height: 1.4;
}
.award-text strong {
  display: block;
  color: var(--white);
  font-weight: 500;
  font-size: 0.8rem;
}

/* ── RESERVATIONS PAGE ────────────────────────────*/
.reservation-section {
  background: var(--dark);
}
.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.reservation-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.5rem;
  margin-top: 3rem;
}
.reservation-info h3:first-child { margin-top: 0; }

.info-list {
  list-style: none;
}
.info-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.88rem;
  color: var(--text);
}
.info-list li span:last-child { color: var(--text-light); text-align: right; }

.dress-code {
  background: rgba(201,169,110,0.06);
  border: 1px solid rgba(201,169,110,0.15);
  padding: 1.5rem;
  margin-top: 2.5rem;
}
.dress-code p {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.75;
}

.reservation-form-area {
  background: var(--dark-2);
  padding: 3rem;
}
.reservation-form-area h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.reservation-form-area p {
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.booking-cta {
  display: block;
  width: 100%;
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 1.25rem 2rem;
  text-decoration: none;
  transition: background 0.3s;
}
.booking-cta:hover { background: var(--gold-light); }

.booking-note {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--text);
  text-align: center;
  line-height: 1.6;
}

.private-dining {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201,169,110,0.12);
}
.private-dining p {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ── CTA BAND ─────────────────────────────────────*/
.cta-band {
  background: var(--dark-3);
  padding: 6rem 3rem;
  text-align: center;
  border-top: 1px solid rgba(201,169,110,0.1);
  border-bottom: 1px solid rgba(201,169,110,0.1);
}
.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 1.25rem;
}
.cta-band p {
  font-size: 0.95rem;
  color: var(--text);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* ── FOOTER ───────────────────────────────────────*/
footer {
  background: var(--black);
  padding: 5rem 3rem 3rem;
  border-top: 1px solid rgba(201,169,110,0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text);
  margin: 1.25rem 0;
  max-width: 260px;
  line-height: 1.8;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.1em;
}
.footer-brand-sub {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.2rem;
  display: block;
}

.footer-col h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul a {
  text-decoration: none;
  font-size: 0.83rem;
  color: var(--text);
  transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-col p {
  font-size: 0.83rem;
  color: var(--text);
  line-height: 1.85;
}
.footer-col address {
  font-style: normal;
  font-size: 0.83rem;
  color: var(--text);
  line-height: 2;
}
.footer-col address a {
  text-decoration: none;
  color: var(--text);
  transition: color 0.3s;
}
.footer-col address a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.7rem;
  color: var(--text);
  letter-spacing: 0.05em;
}
.footer-bottom span {
  color: var(--gold-dark);
}

/* ── SCROLL REVEAL ────────────────────────────────*/
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ───────────────────────────────────*/
@media (max-width: 1024px) {
  .about-grid,
  .chef-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-image-accent { display: none; }
  .chef-quote { left: 0; max-width: 260px; }
  .dishes-grid { grid-template-columns: 1fr 1fr; }
  .menu-items { grid-template-columns: 1fr; }
  .menu-item:nth-child(odd),
  .menu-item:nth-child(even) { padding: 1.75rem 0; border-left: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reservation-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 1.25rem 1.5rem; }
  .nav.scrolled { padding: 0.9rem 1.5rem; }
  .nav-links, .nav-reserve { display: none; }
  .nav-hamburger { display: flex; }

  .section { padding: 5rem 1.5rem; }
  .page-hero { padding: 3rem 1.5rem; }

  .dishes-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(8) {
    grid-column: auto;
    grid-row: auto;
  }
  .gallery-grid .gallery-item { height: 200px; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand p { max-width: 100%; }
  .cta-band { padding: 4rem 1.5rem; }
  .reservation-form-area { padding: 2rem 1.5rem; }
  .chef-quote { position: static; max-width: 100%; margin-top: 2rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-item { height: 240px; }
  .chef-awards { flex-direction: column; gap: 1.25rem; }
}
