/* ─── TOKENS ─── */
:root {
  --gold: #C9A96E;
  --gold-light: #E8C98A;
  --gold-dim: rgba(201, 169, 110, 0.15);
  --black: #0A0A0A;
  --dark: #111008;
  --dark-warm: #1A1410;
  --dark-card: #161210;
  --cream: #F5F0E8;
  --cream-dim: rgba(245, 240, 232, 0.6);
  --brown: #3D2B1F;
  --text-muted: rgba(245, 240, 232, 0.5);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-arabic: 'Noto Naskh Arabic', 'Playfair Display', serif;

  --nav-h: 80px;
  --r: 4px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-arabic);
  direction: rtl;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: none; font-family: inherit; }
input, select, textarea {
  font-family: var(--font-arabic);
  direction: rtl;
}

/* ─── CURSOR ─── */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
  mix-blend-mode: difference;
}
.cursor-follower {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.5;
}
.cursor.cursor--hover { width: 20px; height: 20px; }
.cursor-follower.cursor--hover { width: 60px; height: 60px; opacity: 0.2; }

/* ─── PRELOADER ─── */
.preloader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s, visibility 0.8s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-content { text-align: center; }
.preloader-logo {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6rem);
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.3s forwards;
}
.preloader-line {
  width: 200px; height: 1px;
  background: var(--dark-warm);
  margin: 0 auto;
  overflow: hidden;
}
.preloader-fill {
  height: 100%; width: 0;
  background: var(--gold);
  animation: fillLine 1.8s 0.5s forwards cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes fillLine { to { width: 100%; } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── CONTAINER ─── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; inset-inline: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.8; }
.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--cream-dim);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; right: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  border-radius: 2px;
  transition: background var(--transition), color var(--transition);
}
.nav-cta:hover { background: var(--gold); color: var(--black); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px; padding: 8px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--cream);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-burger.open span:first-child { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:last-child { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(380px, 90vw);
  height: 100dvh;
  background: var(--dark-warm);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 3rem;
  gap: 2rem;
  transition: right var(--transition-slow);
  border-left: 1px solid rgba(201, 169, 110, 0.1);
}
.mobile-menu.open { right: 0; }
.mobile-link {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream-dim);
  transition: color var(--transition);
}
.mobile-link:hover { color: var(--gold); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: var(--r);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}
.btn:hover::before { transform: scaleX(1); }
.btn span, .btn > * { position: relative; z-index: 1; }
.btn--gold {
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
}
.btn--gold:hover { color: var(--black); }
.btn--ghost {
  border: 1px solid rgba(201, 169, 110, 0.4);
  color: var(--cream);
}
.btn--ghost::before { background: rgba(201, 169, 110, 0.1); }
.btn--full { width: 100%; justify-content: center; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(61, 43, 31, 0.7) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 60%, rgba(26, 20, 16, 0.8) 0%, transparent 50%),
    var(--dark);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.6) 0%,
    rgba(10, 10, 10, 0.2) 50%,
    rgba(10, 10, 10, 0.7) 100%
  );
}
.hero-grain {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.04;
  pointer-events: none;
}

/* Floating dish images */
.hero-float {
  position: absolute;
  border-radius: 50%;
  overflow: visible;
  will-change: transform;
}
.hero-float img {
  border-radius: 50%;
  filter: saturate(0.8) brightness(0.75);
}
.float-border {
  position: absolute; inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.25);
  pointer-events: none;
}
.hero-float--1 {
  width: clamp(180px, 22vw, 320px);
  height: clamp(180px, 22vw, 320px);
  top: 8%; left: 5%;
  animation: floatA 8s ease-in-out infinite;
}
.hero-float--2 {
  width: clamp(120px, 14vw, 220px);
  height: clamp(120px, 14vw, 220px);
  bottom: 15%; left: 18%;
  animation: floatB 10s ease-in-out infinite;
}
.hero-float--3 {
  width: clamp(200px, 28vw, 400px);
  height: clamp(200px, 28vw, 400px);
  top: 12%; right: -3%;
  animation: floatA 12s 2s ease-in-out infinite;
}
@keyframes floatA {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(15px) rotate(-1.5deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--nav-h) 0 4rem;
  max-width: 680px;
  padding-right: clamp(1.5rem, 8vw, 8rem);
  padding-left: 1.5rem;
  margin-right: 0;
  margin-left: auto;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 2.2s forwards;
}
.eyebrow-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  max-width: 60px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}
.title-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: revealLine 0.9s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.title-line--italic {
  font-style: italic;
  color: var(--gold);
  animation-delay: 120ms;
}
.title-line:nth-child(1) { animation-delay: calc(2.4s + 0ms); }
.title-line:nth-child(2) { animation-delay: calc(2.4s + 120ms); }
.title-line:nth-child(3) { animation-delay: calc(2.4s + 240ms); }
@keyframes revealLine {
  to { opacity: 1; transform: translateY(0); }
}
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--cream-dim);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 3.1s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 3.4s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  z-index: 2;
  animation: bounce 2s 4s ease-in-out infinite;
  opacity: 0;
  animation-fill-mode: forwards;
}
@keyframes bounce {
  0% { opacity: 0; transform: translateX(-50%) translateY(0); }
  10% { opacity: 1; }
  50% { transform: translateX(-50%) translateY(8px); }
  100% { transform: translateX(-50%) translateY(0); opacity: 1; }
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.hero-divider {
  position: absolute;
  bottom: 0; inset-inline: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ─── MARQUEE ─── */
.marquee-bar {
  background: var(--dark-warm);
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
  overflow: hidden;
  padding: 1rem 0;
}
.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-dot { color: var(--gold); }

/* ─── SECTION TYPOGRAPHY ─── */
.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.body-text {
  color: var(--cream-dim);
  line-height: 1.9;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

/* ─── ABOUT ─── */
.about {
  padding: clamp(5rem, 10vw, 10rem) 0;
  background: var(--dark);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img-accent {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(10, 10, 10, 0.6) 100%
  );
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 8px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  z-index: 1;
  pointer-events: none;
}
.about-stat-card {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: var(--dark-warm);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  letter-spacing: 0.1em;
}
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.pillar-icon { color: var(--gold); font-size: 0.8rem; margin-top: 0.2rem; }
.pillar strong {
  display: block;
  font-size: 0.95rem;
  color: var(--cream);
  margin-bottom: 0.2rem;
}
.pillar span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ─── GOLD RULE ─── */
.gold-rule-section {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  overflow: hidden;
  background: var(--dark);
}
.gold-rule-text {
  white-space: nowrap;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.gold-rule-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
}

/* ─── MENU ─── */
.menu-section {
  padding: clamp(5rem, 10vw, 10rem) 0;
  background: var(--dark);
}
.section-header { margin-bottom: 3rem; }
.menu-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  padding-bottom: 0;
}
.menu-tab {
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
  bottom: -1px;
}
.menu-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.menu-tab:hover { color: var(--cream); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.menu-item {
  background: var(--dark-card);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.06);
  transition: transform var(--transition), border-color var(--transition);
}
.menu-item:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 110, 0.2);
}
.menu-item-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.menu-item-img img {
  transition: transform 0.6s ease;
}
.menu-item:hover .menu-item-img img { transform: scale(1.07); }
.menu-item-tag {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  font-weight: 600;
}
.menu-item-body { padding: 1.5rem; }
.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.menu-item-header h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  line-height: 1.3;
}
.menu-price {
  color: var(--gold);
  font-size: 0.95rem;
  white-space: nowrap;
  font-weight: 500;
}
.menu-item-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.menu-footer {
  text-align: center;
  margin-top: 3rem;
}

/* ─── EXPERIENCE STRIP ─── */
.experience-strip {
  background: var(--dark-warm);
  border-top: 1px solid rgba(201, 169, 110, 0.08);
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 3.5rem 2rem;
  gap: 0;
}
.exp-item {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 1rem 2rem;
}
.exp-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold);
  line-height: 1;
}
.exp-number span { font-size: 0.6em; }
.exp-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.exp-divider {
  width: 1px;
  height: 60px;
  background: rgba(201, 169, 110, 0.15);
}

/* ─── GALLERY ─── */
.gallery-section {
  padding: clamp(5rem, 10vw, 10rem) 0;
  background: var(--black);
}
.gallery-section .section-header {
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}
.gallery-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 6px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
}
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item img {
  transition: transform 0.8s ease;
  filter: saturate(0.7) brightness(0.7);
}
.gallery-item:hover img { transform: scale(1.08); filter: saturate(1) brightness(0.8); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--cream);
}

/* ─── TESTIMONIAL ─── */
.testimonial-section {
  padding: clamp(5rem, 8vw, 8rem) 0;
  background: var(--dark-warm);
  border-top: 1px solid rgba(201, 169, 110, 0.08);
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}
.testimonial-wrap {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 0.5;
  margin-bottom: 2rem;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  transition: opacity 0.4s, transform 0.4s;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.author-name {
  font-size: 0.95rem;
  color: var(--cream);
}
.author-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.2);
  transition: background var(--transition), width var(--transition);
  cursor: pointer;
}
.dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ─── RESERVATION ─── */
.reservation-section {
  position: relative;
  padding: clamp(5rem, 10vw, 10rem) 0;
  overflow: hidden;
}
.reservation-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 100% at 80% 50%, rgba(61, 43, 31, 0.4) 0%, transparent 60%),
    var(--dark);
}
.reservation-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}
.contact-info {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--cream-dim);
}
.contact-icon { font-size: 1rem; }
.contact-item a { color: var(--gold); }
.reservation-form-wrap {
  background: var(--dark-card);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 12px;
  padding: 2.5rem;
}
.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: var(--r);
  padding: 0.85rem 1rem;
  color: var(--cream);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select option { background: var(--dark-card); }
.guest-counter {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: var(--r);
  padding: 0.85rem 1rem;
  width: fit-content;
}
.counter-btn {
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
  transition: background var(--transition);
}
.counter-btn:hover { background: var(--gold-dim); }
.counter-val {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
  min-width: 2rem;
  text-align: center;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--dark-warm);
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  padding-top: 5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 260px;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-family: var(--font-body);
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-links h4,
.footer-hours h4,
.footer-location h4 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cream); }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  margin-bottom: 0.75rem;
}
.footer-location p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.map-link {
  font-size: 0.8rem;
  color: var(--gold);
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
  padding-bottom: 2px;
  transition: border-color var(--transition);
}
.map-link:hover { border-color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-credit a { color: var(--gold); }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  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: none; }
.reveal[data-delay="100"] { transition-delay: 0.1s; }
.reveal[data-delay="200"] { transition-delay: 0.2s; }
.reveal[data-delay="300"] { transition-delay: 0.3s; }
.reveal[data-delay="400"] { transition-delay: 0.4s; }

/* ─── SUCCESS TOAST ─── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark-warm);
  border: 1px solid var(--gold);
  color: var(--cream);
  padding: 1rem 2rem;
  border-radius: var(--r);
  font-size: 0.9rem;
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item--tall, .gallery-item--wide { grid-column: auto; grid-row: auto; }
}

@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .hero-float--1 { width: 130px; height: 130px; top: 5%; left: 2%; }
  .hero-float--2 { display: none; }
  .hero-float--3 { width: 160px; height: 160px; right: -2%; top: 8%; }
  .hero-content {
    padding-right: 1.5rem;
    margin: 0;
    text-align: center;
  }
  .hero-eyebrow { justify-content: center; }
  .hero-actions { justify-content: center; }

  .about-grid { grid-template-columns: 1fr; }
  .about-stat-card { left: 1rem; }

  .reservation-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-rows: repeat(4, 220px); }
  .exp-divider { display: none; }
  .experience-strip { padding: 2rem 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

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