/* ═══════════════════════════════════════════════════════════
   AL JADEED RESTAURANT — DESIGN SYSTEM
   Palette: Deep Burgundy · Antique Gold · Warm Cream · Charcoal
   Fonts: Cormorant Garamond (display) + Outfit (body)
═══════════════════════════════════════════════════════════ */

:root {
  --burgundy:      #3D0C11;
  --burgundy-mid:  #5C1A22;
  --burgundy-light:#7A2D38;
  --gold:          #C9A84C;
  --gold-light:    #E2C97E;
  --gold-pale:     #F5EDD0;
  --cream:         #FAF6EE;
  --cream-dark:    #F0E8D5;
  --charcoal:      #1C1C1C;
  --charcoal-mid:  #2E2E2E;
  --text-dark:     #2A1A0E;
  --text-mid:      #5A4A3A;
  --text-light:    #9A8A7A;
  --white:         #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  --shadow-sm:  0 2px 12px rgba(61,12,17,0.08);
  --shadow-md:  0 8px 32px rgba(61,12,17,0.14);
  --shadow-lg:  0 20px 60px rgba(61,12,17,0.22);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: var(--font-body); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── TYPOGRAPHY HELPERS ─── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-label--light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--burgundy); }
.section-title--light { color: var(--cream); }
.section-title--light em { color: var(--gold-light); }

.section-header { text-align: center; margin-bottom: 3.5rem; }

.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 0;
}
.section-header .gold-divider { margin: 0 auto; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn:hover::after { transform: translateX(0); }

.btn--gold {
  background: var(--gold);
  color: var(--burgundy);
  border: 2px solid var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }

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

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: rgba(28, 8, 12, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(2) hue-rotate(5deg) brightness(1.1);
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0.9rem;
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 1px;
  background: var(--gold);
  transition: left 0.3s ease, right 0.3s ease;
}
.nav-link:hover { color: var(--gold-light); }
.nav-link:hover::after { left: 0.9rem; right: 0.9rem; }

.nav-cta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  background: var(--gold);
  padding: 0.6rem 1.4rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  transition: var(--transition);
}

/* ═══════════════════════════════════════════════════════════
   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;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero.loaded .hero-img { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(28,8,12,0.82) 0%,
    rgba(61,12,17,0.65) 50%,
    rgba(28,8,12,0.88) 100%
  );
}

/* Geometric ornaments */
.hero-ornament {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(201,168,76,0.2);
  pointer-events: none;
}
.hero-ornament::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(201,168,76,0.12);
}
.hero-ornament::after {
  content: '';
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(201,168,76,0.08);
}
.hero-ornament--tl { top: 80px; left: 60px; transform: rotate(15deg); }
.hero-ornament--br { bottom: 80px; right: 60px; transform: rotate(-15deg); }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 800px;
}
.hero-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.hero-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(2) hue-rotate(5deg) brightness(1.2);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-title {
  font-family: var(--font-display);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.25rem;
}
.hero-title-line {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  letter-spacing: 0.05em;
}
.hero-title-sub {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(250,246,238,0.75);
  margin-bottom: 2.5rem;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(24px); }
.reveal.active { animation: revealUp 0.8s ease forwards; }
.reveal--delay1.active { animation-delay: 0.15s; }
.reveal--delay2.active { animation-delay: 0.3s; }
.reveal--delay3.active { animation-delay: 0.45s; }
.reveal--delay4.active { animation-delay: 0.6s; }
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ═══════════════════════════════════════════════════════════
   MARQUEE STRIP
═══════════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--burgundy);
  padding: 0.9rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(201,168,76,0.3);
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.marquee-dot { color: var(--gold) !important; font-size: 0.5rem !important; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════ */
.about {
  padding: 7rem 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-col { position: relative; }
.about-img-frame {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 580px;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 2px solid var(--gold);
  opacity: 0.4;
  z-index: 0;
}
.about-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  z-index: 2;
  background: var(--burgundy);
  border: 2px solid var(--gold);
  padding: 1.25rem 1.5rem;
  text-align: center;
  min-width: 110px;
}
.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.badge-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.7);
  margin-top: 0.25rem;
  line-height: 1.4;
}
.about-body {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}
.about-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.3rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--cream-dark);
}

/* ═══════════════════════════════════════════════════════════
   MENU SECTION
═══════════════════════════════════════════════════════════ */
.menu-section {
  position: relative;
  padding: 7rem 0;
  background: var(--burgundy);
  overflow: hidden;
}
.menu-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(201,168,76,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.menu-tab {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.55);
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(201,168,76,0.2);
  transition: var(--transition);
  position: relative;
}
.menu-tab:hover { color: var(--gold-light); border-color: rgba(201,168,76,0.5); }
.menu-tab.active {
  color: var(--burgundy);
  background: var(--gold);
  border-color: var(--gold);
}
.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.menu-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.menu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.menu-card-img {
  height: 180px;
  overflow: hidden;
  position: relative;
}
.menu-card-img img {
  transition: transform 0.6s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.08); }
.menu-card-body {
  padding: 1.25rem;
}
.menu-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.menu-card-top h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
}
.menu-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-card-body p {
  font-size: 0.85rem;
  color: rgba(250,246,238,0.6);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.menu-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.2rem 0.6rem;
}

/* ═══════════════════════════════════════════════════════════
   EXPERIENCE STRIP
═══════════════════════════════════════════════════════════ */
.experience-strip {
  background: var(--cream-dark);
  padding: 4.5rem 0;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.exp-item {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}
.exp-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(201,168,76,0.25);
}
.exp-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--gold);
}
.exp-icon svg { width: 100%; height: 100%; }
.exp-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 0.4rem;
}
.exp-item p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════════════ */
.gallery-section {
  padding: 7rem 0;
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,12,17,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.testimonials {
  padding: 7rem 0;
  background: var(--burgundy-mid);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '"';
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(201,168,76,0.04);
  line-height: 1;
  pointer-events: none;
}
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 2rem;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-4px);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.testimonial-card p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(250,246,238,0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
}
.testimonial-author span {
  font-size: 0.78rem;
  color: rgba(250,246,238,0.5);
}

/* ═══════════════════════════════════════════════════════════
   RESERVATIONS
═══════════════════════════════════════════════════════════ */
.reservations {
  padding: 7rem 0;
  background: var(--cream);
}
.reservations-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.reservations-info .section-title { margin-bottom: 1rem; }
.reservations-info p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.res-contact-items { display: flex; flex-direction: column; gap: 1.25rem; }
.res-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.res-contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.res-contact-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 0.2rem;
}
.res-contact-item span {
  font-size: 0.9rem;
  color: var(--text-mid);
}

/* Form */
.reservations-form-wrap {
  position: relative;
}
.res-form {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.res-form h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--cream-dark);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--cream-dark);
  background: var(--cream);
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 80px; }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-md);
}
.form-success.visible { display: block; }
.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--burgundy);
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--burgundy);
  margin-bottom: 0.75rem;
}
.form-success p { color: var(--text-mid); }

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
.contact-section {
  padding: 7rem 0;
  background: var(--cream-dark);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-map {
  height: 420px;
  border: 2px solid rgba(201,168,76,0.3);
  overflow: hidden;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 0.4rem;
}
.contact-info-item p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.contact-social {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gold);
  color: var(--burgundy);
  border-color: var(--gold);
}
.social-link svg { width: 18px; height: 18px; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--charcoal);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.footer-ornament {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(2) hue-rotate(5deg) brightness(1.1);
}
.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-light);
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}
.footer-links-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links-col li,
.footer-links-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s ease;
}
.footer-links-col a:hover { color: var(--gold-light); }
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--burgundy);
  border-color: var(--gold);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-col { max-width: 480px; margin: 0 auto; }
  .about-img-frame { max-height: 420px; }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-item:nth-child(2)::after { display: none; }
  .reservations-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { height: 320px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(28,8,12,0.98);
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 999;
  }
  .nav-links.open .nav-link {
    font-size: 1.5rem;
    letter-spacing: 0.15em;
  }

  .hero-ornament { display: none; }
  .hero-title-line { font-size: clamp(2.8rem, 12vw, 5rem); }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-item--wide { grid-column: span 2; }

  .testimonials-track { grid-template-columns: 1fr; }

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

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .exp-grid { grid-template-columns: 1fr 1fr; }
  .exp-item::after { display: none; }

  .menu-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .about, .menu-section, .gallery-section, .testimonials,
  .reservations, .contact-section { padding: 4.5rem 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .hero-actions { flex-direction: column; align-items: center; }
  .exp-grid { grid-template-columns: 1fr; }
  .res-form { padding: 1.5rem; }
}