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

:root {
  --white: #ffffff;
  --off-white: #fafaf8;
  --cream: #f5f0e8;
  --sand: #ebe5da;
  --stone: #d6cfc4;
  --taupe: #a89a8a;
  --text: #1a1714;
  --text-mid: #44403a;
  --text-soft: #8a8279;
  --accent: #c45a3c;
  --accent-light: #f4d8cf;
  --accent-dark: #a14430;
  --accent-glow: rgba(196, 90, 60, 0.15);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --nav-h: 72px;
  --section-pad: clamp(80px, 12vh, 140px);
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

html {
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

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

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════ PRELOADER ═══════════════════ */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-brand {
  font-family: "DM Serif Display", serif;
  font-size: clamp(28px, 5vw, 42px);
  color: var(--off-white);
  display: block;
  margin-bottom: 24px;
  animation: preloader-text 1.2s ease both;
}

@keyframes preloader-text {
  0%   { opacity: 0; transform: translateY(20px); letter-spacing: 0.3em; }
  100% { opacity: 1; transform: translateY(0); letter-spacing: -0.01em; }
}

.preloader-bar {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
}

.preloader-fill {
  width: 100%;
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  animation: preloader-progress 1.6s ease-in-out both;
}

@keyframes preloader-progress {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}

/* ═══════════════════ PAGE TRANSITION ═══════════════════ */

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: var(--text);
  transform: translateY(100%);
  pointer-events: none;
  transition: none;
}

.page-transition.active {
  animation: page-wipe 0.7s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes page-wipe {
  0%   { transform: translateY(100%); }
  50%  { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}

/* ═══════════════════ NAVIGATION ═══════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(250, 250, 248, 0.96);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: "DM Serif Display", serif;
  font-size: 21px;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: color 0.3s;
}

.nav-brand:hover { color: var(--accent); }

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

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-mid);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: var(--radius);
  line-height: 1.2;
}

.nav-cta::after { display: none; }

.nav-cta:hover {
  background: var(--accent-dark);
  color: var(--white) !important;
}

.btn-hover-slide {
  position: relative;
  overflow: hidden;
}

.btn-hover-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-hover-slide:hover::before {
  transform: translateX(100%);
}

.btn-white.btn-hover-slide::before {
  background: linear-gradient(90deg, transparent 0%, rgba(196, 90, 60, 0.15) 50%, transparent 100%);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ═══════════════════ HERO ═══════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -120px;
  right: -160px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: glow-pulse 6s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  0%   { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.15); }
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-text h1 {
  font-size: clamp(40px, 5.2vw, 62px);
  margin-bottom: 24px;
  color: var(--text);
}

.hero-text h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotateX(30deg);
  animation: split-word 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes split-word {
  to { opacity: 1; transform: translateY(0) rotateX(0); }
}

.hero-text p {
  font-size: 16.5px;
  color: var(--text-mid);
  max-width: 440px;
  line-height: 1.75;
  margin-bottom: 40px;
}

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

.hero-images { position: relative; }

.hero-img-stack {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: flex-end;
}

.hero-img {
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 0;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s;
}

.hero-img:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.14);
}

.hero-img img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.hero-img-main { flex: 1.15; }
.hero-img-main img { height: 480px; }
.hero-img-side { flex: 0.85; margin-bottom: 48px; }
.hero-img-side img { height: 380px; }

.hero-img-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(26, 23, 20, 0.6);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 100px;
}

.hero-float-badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  animation: float-badge 4s ease-in-out infinite alternate;
  z-index: 2;
}

@keyframes float-badge {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.hfb-icon { font-size: 20px; color: var(--accent); }
.hero-float-badge strong { display: block; font-size: 15px; color: var(--text); line-height: 1.2; }
.hero-float-badge span { font-size: 12px; color: var(--text-soft); }

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: var(--stone);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--accent);
  border-radius: 2px;
  animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
  0%   { top: -50%; }
  100% { top: 110%; }
}

/* ═══════════════════ BUTTONS ═══════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: var(--radius);
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.btn:hover::before { opacity: 1; }

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px var(--accent-glow);
}

.btn-accent:hover {
  background: var(--accent-dark);
  box-shadow: 0 8px 32px rgba(196, 90, 60, 0.35);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--stone);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--text);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* ═══════════════════ MARQUEE ═══════════════════ */

.marquee {
  padding: 22px 0;
  background: var(--text);
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  animation: marquee-scroll 22s linear infinite;
}

.marquee-track span {
  font-family: "DM Serif Display", serif;
  font-size: 18px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
  flex-shrink: 0;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════ SECTIONS ═══════════════════ */

.section { padding: var(--section-pad) 0; }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-intro {
  max-width: 560px;
  margin-bottom: 56px;
}

.section-intro h2 {
  font-size: clamp(30px, 3.8vw, 44px);
  color: var(--text);
}

/* ═══════════════════ EXPERIENCE ═══════════════════ */

.experience {
  background: var(--cream);
  position: relative;
}

.experience::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.exp-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-xl);
  padding: 36px 28px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.45s;
}

.exp-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.exp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
}

.exp-card:hover::before { transform: scaleX(1); }

.exp-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 14px;
  margin-bottom: 20px;
  transition: background 0.35s, color 0.35s, transform 0.35s;
}

.exp-card:hover .exp-icon {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.08) rotate(-4deg);
}

.exp-num {
  display: inline-block;
  font-family: "DM Serif Display", serif;
  font-size: 28px;
  color: var(--sand);
  margin-bottom: 14px;
  line-height: 1;
}

.exp-card h3 { font-size: 19px; margin-bottom: 10px; color: var(--text); }
.exp-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* ═══════════════════ CHEF ═══════════════════ */

.chef-section {
  position: relative;
  overflow: hidden;
}

.chef-layout {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 64px;
  align-items: center;
}

.chef-visual {
  display: flex;
  justify-content: center;
}

.chef-portrait {
  position: relative;
  width: 280px;
  height: 280px;
}

.chef-portrait-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.chef-initials {
  font-family: "DM Serif Display", serif;
  font-size: 72px;
  color: var(--white);
  opacity: 0.9;
  letter-spacing: -0.03em;
}

.chef-portrait-ring {
  position: absolute;
  inset: -16px;
  border: 1.5px dashed var(--accent);
  border-radius: 50%;
  opacity: 0.3;
  animation: ring-spin 30s linear infinite;
}

@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

.chef-content h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  margin-bottom: 20px;
}

.chef-quote {
  font-family: "DM Serif Display", serif;
  font-size: clamp(18px, 2.2vw, 22px);
  font-style: italic;
  color: var(--accent);
  line-height: 1.5;
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 3px solid var(--accent-light);
}

.chef-content > p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 32px;
}

.chef-stats {
  display: flex;
  gap: 36px;
}

.chef-stat {
  text-align: center;
}

.chef-stat strong {
  display: block;
  font-family: "DM Serif Display", serif;
  font-size: 36px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.chef-stat span {
  font-size: 12px;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ═══════════════════ GALLERY HORIZONTAL ═══════════════════ */

.gallery-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
  overflow: hidden;
}

.gallery-header {
  margin-bottom: 40px;
}

.gallery-header h2 {
  font-size: clamp(30px, 3.8vw, 44px);
}

.gallery-scroll {
  overflow: visible;
  padding-left: 24px;
}


.gallery-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.gallery-item {
  width: 340px;
  height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover { transform: translateY(-8px); }

.gallery-item-img {
  background: var(--stone);
}

.gallery-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item-img:hover img { transform: scale(1.06); }

.gallery-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(26, 23, 20, 0.55);
  backdrop-filter: blur(10px);
  padding: 7px 16px;
  border-radius: 100px;
}

.gallery-item-text {
  background: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px;
}

.gallery-item-accent {
  background: var(--accent);
}

.gallery-item-big {
  font-family: "DM Serif Display", serif;
  font-size: 56px;
  font-style: italic;
  color: var(--white);
  line-height: 1;
}

.gallery-item-sub {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

/* ═══════════════════ NUMBERS BAND ═══════════════════ */

.numbers-band {
  padding: 64px 0;
  background: var(--text);
  position: relative;
  overflow: hidden;
}

.numbers-band::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(196, 90, 60, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.number-item strong {
  font-family: "DM Serif Display", serif;
  font-size: clamp(40px, 5vw, 56px);
  color: var(--white);
  line-height: 1;
}

.number-plus, .number-unit {
  font-family: "DM Serif Display", serif;
  font-size: clamp(28px, 3vw, 36px);
  color: var(--accent);
}

.number-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 8px;
}

/* ═══════════════════ REVIEWS ═══════════════════ */

.reviews { position: relative; }

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

.review-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-xl);
  padding: 32px 28px 28px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.45s;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.07);
}

.review-stars {
  font-size: 15px;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 18px;
}

.review-card > p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.review-author strong { display: block; font-size: 14px; color: var(--text); }
.review-author span { font-size: 12px; color: var(--text-soft); }

/* ═══════════════════ PARALLAX BAND ═══════════════════ */

.parallax-band {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: -60px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  will-change: transform;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 23, 20, 0.65);
}

.parallax-content {
  position: relative;
  z-index: 1;
}

.parallax-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 16px;
}

.parallax-content h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  color: var(--white);
  margin-bottom: 28px;
}

/* ═══════════════════ BOOKING ═══════════════════ */

.booking {
  background: var(--cream);
  position: relative;
}

.booking::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.booking-text h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  margin-bottom: 16px;
}

.booking-text p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
}

.booking-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.booking-info div { display: flex; flex-direction: column; }

.booking-info dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2px;
}

.booking-info dd { font-size: 15px; color: var(--text); }

.booking-form {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

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

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

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-row .field { margin-bottom: 0; }

.field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.field label span {
  text-transform: none;
  font-weight: 400;
  color: var(--text-soft);
  letter-spacing: 0;
}

.field input,
.field select,
.field textarea {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius);
  background: var(--off-white);
  color: var(--text);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.field textarea { resize: vertical; }
.booking-form .btn { margin-top: 8px; }

.form-feedback {
  font-size: 13px;
  margin-top: 12px;
  color: var(--text-mid);
  min-height: 20px;
}

.form-feedback.success { color: #3a7d44; }

/* ═══════════════════ FOOTER ═══════════════════ */

.site-footer {
  padding: 48px 0 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--off-white);
}

.footer-top { margin-bottom: 24px; }

.footer-brand {
  font-family: "DM Serif Display", serif;
  font-size: 22px;
  display: block;
  margin-bottom: 4px;
}

.footer-tagline { font-size: 13px; color: var(--text-soft); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.footer-note { font-size: 12px; color: var(--text-soft); }

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
}

.footer-links span { transition: color 0.3s; }
.footer-links span:hover { color: var(--accent); }

/* ═══════════════════ REVEAL ═══════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════ MENU PAGE ═══════════════════ */

.menu-hero {
  padding: calc(var(--nav-h) + 64px) 0 48px;
  text-align: center;
}

.menu-hero .section-intro { margin: 0 auto; }

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.menu-tab {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--sand);
  background: transparent;
  color: var(--text-mid);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-tab.active,
.menu-tab:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 4px 16px var(--accent-glow);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.menu-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s;
}

.menu-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.07);
}

.menu-card:hover::after { transform: scaleX(1); }

.menu-card h3 { font-size: 18px; margin-bottom: 6px; }

.menu-card .menu-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

.menu-card p { font-size: 13.5px; color: var(--text-mid); line-height: 1.65; }

/* ═══════════════════ RESPONSIVE ═══════════════════ */

@media (max-width: 960px) {
  .hero {
    padding: calc(var(--nav-h) + 32px) 0 48px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 0 20px;
  }

  .hero-text p { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }

  .hero-images {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  .hero-img-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero-img-main,
  .hero-img-side {
    flex: none;
    width: 100%;
    max-width: 340px;
  }

  .hero-img-main img,
  .hero-img-side img {
    height: 200px;
    width: 100%;
    object-fit: cover;
  }

  .hero-float-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 12px;
    justify-content: center;
    animation: none;
  }

  .hero-scroll-hint {
    display: none;
  }

  .chef-layout { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .chef-quote { border-left: none; padding-left: 0; border-top: 3px solid var(--accent-light); padding-top: 20px; }
  .chef-stats { justify-content: center; }

  .booking-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-inner {
    padding: 0 20px;
  }

  .nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: var(--off-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 18px;
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.35s ease, transform 0.35s ease, color 0.3s;
  }

  .nav-links.open a {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links.open a:nth-child(1) { transition-delay: 0.05s; }
  .nav-links.open a:nth-child(2) { transition-delay: 0.1s; }
  .nav-links.open a:nth-child(3) { transition-delay: 0.15s; }
  .nav-links.open a:nth-child(4) { transition-delay: 0.2s; }
  .nav-links.open a:nth-child(5) { transition-delay: 0.25s; }
  .nav-links.open a:nth-child(6) { transition-delay: 0.3s; }

  .nav-toggle { display: flex; z-index: 10001; }

  .experience-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }

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

  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .gallery-item { width: 280px; height: 360px; }

  .parallax-bg { background-attachment: scroll; }
}


@media (max-width: 540px) {
  .hero-inner {
    padding: 0 16px;
  }

  .hero-img-main,
  .hero-img-side {
    max-width: 100%;
  }

  .hero-img-main img,
  .hero-img-side img {
    height: 180px;
  }

  .hero-float-badge {
    padding: 12px 16px;
  }

  .chef-portrait { width: 200px; height: 200px; }
  .chef-initials { font-size: 52px; }
  .chef-stats { flex-direction: column; gap: 20px; }

  .booking-form { padding: 24px 18px; }
  .menu-grid { grid-template-columns: 1fr; }
  .marquee-track span { font-size: 15px; }

  .gallery-item { width: 240px; height: 300px; }
  .gallery-item-big { font-size: 40px; }
}
