/* ============================================================
   BistroLaunch — Shared Stylesheet
   All 12 frontend pages import this file.
   Design: Dark luxury, burgundy + gold, Playfair Display + Inter
   ============================================================ */

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

:root {
  --gold:       #C9973F;
  --gold-light: #e0b86a;
  --gold-dark:  #b8862e;
  --cream:      #FFF8F0;
  --burgundy:   #722F37;
  --burg-dark:  #4a1a1e;
  --dark:       #0d0405;
  --dark-2:     #110508;
  --dark-3:     #1a0a0b;
  --dark-4:     #2d1215;
  --text-muted: #999;
  --text-dim:   #666;
  --border:     rgba(255, 255, 255, 0.07);
  --border-gold: rgba(201, 151, 63, 0.25);
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --transition:  0.25s ease;
  --max-width:  1240px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--dark);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }
ul { list-style: none; }

/* ── Container ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  line-height: 1.2;
  font-weight: 700;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: #1a0a0b;
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: rgba(201, 151, 63, 0.45);
}
.btn-outline:hover {
  background: rgba(201, 151, 63, 0.1);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.35);
}

/* ── Section Tags ──────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 0.76rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 151, 63, 0.1);
  border: 1px solid rgba(201, 151, 63, 0.22);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 4, 5, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  gap: 36px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 1.4rem;
  color: var(--gold);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--cream);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo-text em {
  color: var(--gold);
  font-style: normal;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-links li a {
  display: block;
  padding: 8px 14px;
  font-size: 0.88rem;
  color: rgba(255, 248, 240, 0.75);
  text-decoration: none;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  font-weight: 500;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--gold);
  background: rgba(201, 151, 63, 0.08);
}

/* Nav CTA */
.nav-cta {
  margin-left: auto;
  flex-shrink: 0;
  padding: 10px 22px;
  font-size: 0.86rem;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero Section ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #1a0a0b 0%, #2d1215 40%, #0d0405 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-decoration::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(201,151,63,0.1) 0%, transparent 65%);
}

.hero-bg-decoration::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(114,47,55,0.15) 0%, transparent 65%);
}

.hero-grid-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(201,151,63,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  overflow: hidden;
}

.hero-content { max-width: 580px; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

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

.eyebrow-text {
  font-size: 0.76rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  color: var(--cream);
  line-height: 1.12;
  margin-bottom: 20px;
}

.hero-title em {
  color: var(--gold);
  font-style: normal;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

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

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-dim);
}

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

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 520px;
  min-width: 0;
  overflow: hidden;
}

.hero-card-main {
  background: linear-gradient(145deg, var(--burg-dark), #722F37);
  border: 1px solid rgba(201, 151, 63, 0.2);
  border-radius: var(--radius-lg);
  padding: 48px 40px 72px;
  text-align: center;
  position: relative;
  overflow: visible;
  width: 100%;
  max-width: 380px;
}

.hero-card-main::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(201, 151, 63, 0.1);
}

.hero-dish-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  position: relative;
}

.hero-card-main h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.hero-card-main p {
  font-size: 0.88rem;
  color: rgba(255, 248, 240, 0.7);
  line-height: 1.6;
}

.hero-badge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #1a0a0b;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 20px;
  white-space: nowrap;
}

.hero-stats-row {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
}

.hero-stat {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  text-align: center;
  flex: 1 1 110px;
  min-width: 110px;
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 700;
  display: block;
}

.hero-stat-label {
  font-size: 0.74rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ── Trust Bar ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--text-dim);
}

.trust-bar-icon { font-size: 1.1rem; }

/* ── Section Shared ────────────────────────────────────────── */
.section-center {
  text-align: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 14px;
  line-height: 1.22;
}

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

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── About/Intro Section ───────────────────────────────────── */
.about-intro {
  padding: 100px 0;
  background: var(--dark);
}

.about-intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual-block {
  position: relative;
}

.about-main-visual {
  background: linear-gradient(135deg, var(--burg-dark), var(--burgundy));
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-main-visual::after {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(201,151,63,0.12);
}

.about-visual-icon { font-size: 4rem; margin-bottom: 16px; position: relative; }

.about-main-visual h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 8px;
  position: relative;
}

.about-main-visual p {
  font-size: 0.88rem;
  color: rgba(255,248,240,0.7);
  line-height: 1.6;
  position: relative;
}

.about-float-card {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--dark);
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 18px 22px;
}

.float-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.float-label {
  font-size: 0.74rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.25;
}

.about-text-block h2 em { color: var(--gold); font-style: normal; }

.about-divider {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0;
}

.about-text-block p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 0.97rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.feature-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Menu Preview Section ──────────────────────────────────── */
.menu-preview {
  padding: 100px 0;
  background: var(--dark-2);
}

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

.menu-tab {
  padding: 10px 22px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.86rem;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.menu-tab:hover { border-color: rgba(201,151,63,0.4); color: var(--cream); }
.menu-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a0a0b;
  font-weight: 600;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 48px;
}

.menu-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: border-color var(--transition), transform var(--transition);
}

.menu-card:hover {
  border-color: rgba(201,151,63,0.3);
  transform: translateY(-2px);
}

.menu-card-visual {
  width: 64px; height: 64px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.menu-card-body { flex: 1; }

.menu-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 6px;
}

.menu-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--cream);
  font-weight: 600;
}

.menu-card-price {
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}

.menu-card-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 10px;
}

.menu-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.7rem;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(201,151,63,0.1);
  color: var(--gold);
  border: 1px solid rgba(201,151,63,0.2);
}

.menu-cta-wrap { text-align: center; }

/* ── Why Choose Us ─────────────────────────────────────────── */
.why-us {
  padding: 100px 0;
  background: var(--dark);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 56px;
}

.why-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: border-color var(--transition), transform var(--transition);
}

.why-card:hover {
  border-color: rgba(201,151,63,0.35);
  transform: translateY(-4px);
}

.why-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 10px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ── Process / Experience Section ──────────────────────────── */
.process-section {
  padding: 100px 0;
  background: var(--dark-2);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.3;
}

.step-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}

.step-card:hover {
  border-color: rgba(201,151,63,0.3);
  transform: translateY(-3px);
}

.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201,151,63,0.12);
  border: 1px solid rgba(201,151,63,0.3);
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}

.step-icon { font-size: 2rem; margin-bottom: 14px; }

.step-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.step-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; }

/* ── Gallery Preview ───────────────────────────────────────── */
.gallery-preview {
  padding: 100px 0;
  background: var(--dark);
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin: 48px 0;
}

.gallery-preview-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-preview-card:hover { transform: scale(1.02); }

.gallery-preview-card.tall { grid-row: span 2; }

.gallery-preview-visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}

.gallery-preview-card.tall .gallery-preview-visual { height: 100%; min-height: 416px; }

.gallery-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-preview-card:hover .gallery-preview-overlay { opacity: 1; }

.gallery-preview-overlay span {
  font-size: 0.84rem;
  color: var(--cream);
  font-weight: 500;
}

/* ── Statistics / Counter Section ─────────────────────────── */
.stats-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--dark-4) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,151,63,0.07) 0%, transparent 65%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

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

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.84rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stats-divider {
  width: 1px;
  background: var(--border);
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-section {
  padding: 100px 0;
  background: var(--dark-2);
}

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

.testimonial-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(201,151,63,0.3);
  transform: translateY(-3px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.star { color: var(--gold); font-size: 0.9rem; }

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-avatar-small {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.author-details .name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 2px;
}

.author-details .role {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ── FAQ (Homepage) ────────────────────────────────────────── */
.faq-section-home {
  padding: 100px 0;
  background: var(--dark);
}

.faq-home-grid {
  max-width: 820px;
  margin: 56px auto 0;
}

.faq-item-home {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 10px;
  background: var(--dark-3);
  transition: border-color var(--transition);
}

.faq-item-home.open { border-color: rgba(201,151,63,0.35); }

.faq-q-home {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--cream);
  font-size: 0.93rem;
  font-weight: 500;
  gap: 14px;
  user-select: none;
}

.faq-q-home:hover { color: var(--gold); }
.faq-item-home.open .faq-q-home { color: var(--gold); }

.faq-q-home .faq-arr {
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1.05rem;
  transition: transform 0.3s;
}

.faq-item-home.open .faq-arr { transform: rotate(180deg); }

.faq-a-home {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}

.faq-item-home.open .faq-a-home { max-height: 400px; }

.faq-a-home-inner {
  padding: 0 22px 18px;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.75;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 14px;
}

/* ── Reservation Section ───────────────────────────────────── */
.reservation-section {
  padding: 100px 0;
  background: var(--dark-2);
}

.reservation-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.reservation-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--cream);
  margin-bottom: 14px;
  line-height: 1.25;
}

.reservation-info h2 em { color: var(--gold); font-style: normal; }

.reservation-info p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.reservation-details { display: flex; flex-direction: column; gap: 16px; }

.res-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.res-detail-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.res-detail strong { color: var(--cream); display: block; margin-bottom: 2px; }

/* Reservation Form */
.reservation-form-card {
  background: var(--dark-3);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.reservation-form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.res-form { display: flex; flex-direction: column; gap: 16px; }

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

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.8rem; color: #bbb; }

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--cream);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(201,151,63,0.5);
}

.form-field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23C9973F' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-field select option { background: var(--dark-3); color: var(--cream); }
.form-field textarea { resize: vertical; min-height: 90px; line-height: 1.5; }

.res-submit {
  width: 100%;
  padding: 15px;
  background: var(--gold);
  color: #1a0a0b;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background var(--transition), transform var(--transition);
}

.res-submit:hover { background: var(--gold-dark); transform: translateY(-1px); }
.res-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.res-success {
  display: none;
  background: rgba(45,74,45,0.3);
  border: 1px solid rgba(74,154,74,0.3);
  border-radius: var(--radius-sm);
  padding: 16px;
  color: #a8e6a8;
  font-size: 0.88rem;
  text-align: center;
  line-height: 1.6;
}

.res-success.show { display: block; }

/* ── Map / Location ────────────────────────────────────────── */
.location-section {
  padding: 80px 0;
  background: var(--dark);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.location-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--cream);
  margin-bottom: 24px;
}

.location-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }

.loc-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.loc-icon { font-size: 1.1rem; flex-shrink: 0; }
.loc-detail strong { color: var(--cream); display: block; margin-bottom: 2px; font-size: 0.85rem; }

.hours-grid { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--cream); font-weight: 500; }

.map-visual-block {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.map-placeholder {
  height: 280px;
  background: linear-gradient(135deg, #1a1a2d, #0d0d1a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}

.map-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(201,151,63,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

.map-pin-icon { font-size: 2.5rem; position: relative; }
.map-placeholder p { font-size: 0.9rem; color: var(--text-muted); position: relative; }
.map-placeholder a {
  color: var(--gold);
  font-size: 0.85rem;
  text-decoration: none;
  border: 1px solid rgba(201,151,63,0.3);
  padding: 7px 16px;
  border-radius: 7px;
  position: relative;
}

.map-footer-bar {
  padding: 18px 24px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.map-info-item { font-size: 0.82rem; color: var(--text-muted); }
.map-info-item strong { color: var(--cream); display: block; margin-bottom: 1px; }

/* ── Newsletter Section ────────────────────────────────────── */
.newsletter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark-4) 0%, var(--dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,151,63,0.07) 0%, transparent 65%);
}

.newsletter-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--cream);
  margin-bottom: 10px;
  position: relative;
}

.newsletter-section p {
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.newsletter-form-inline {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.newsletter-form-inline input {
  padding: 13px 20px;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  min-width: 280px;
  transition: border-color var(--transition);
}

.newsletter-form-inline input:focus {
  border-color: rgba(201,151,63,0.45);
}

.newsletter-form-inline button {
  padding: 13px 28px;
  background: var(--gold);
  color: #1a0a0b;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
  font-family: inherit;
}

.newsletter-form-inline button:hover { background: var(--gold-dark); }

.newsletter-note {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-dim);
  position: relative;
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.footer-brand { max-width: 280px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}

.footer-logo .logo-icon { font-size: 1.3rem; color: var(--gold); }
.footer-logo .logo-text { font-family: 'Playfair Display', serif; font-size: 1.2rem; }

.footer-brand p {
  font-size: 0.86rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  text-decoration: none;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: rgba(201,151,63,0.12);
  border-color: rgba(201,151,63,0.3);
  color: var(--gold);
}

.footer-col h4 {
  font-size: 0.8rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-col ul { display: flex; flex-direction: column; gap: 9px; }

.footer-col ul li a {
  font-size: 0.86rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-contact-info p {
  font-size: 0.86rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-contact-info a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer-hours {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.footer-hours p {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.footer-hours strong { color: #bbb; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom p { font-size: 0.82rem; color: var(--text-dim); }

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.82rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color var(--transition);
}

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

/* ── WhatsApp Floating Button ──────────────────────────────── */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  z-index: 900;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

/* ── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Responsive — 1024px ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }

  .about-intro .container { grid-template-columns: 1fr; gap: 56px; }
  .about-float-card { position: static; margin-top: 20px; display: inline-block; }

  .menu-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .reservation-layout { grid-template-columns: 1fr; gap: 48px; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ── Responsive — 768px ────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13, 4, 5, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    z-index: 999;
  }

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

  .nav-links li a {
    font-size: 1.15rem;
    padding: 12px 24px;
    text-align: center;
  }

  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .menu-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-preview-grid { grid-template-columns: 1fr 1fr; }
  .gallery-preview-card.tall { grid-row: span 1; }
  .gallery-preview-card.tall .gallery-preview-visual { min-height: 200px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { max-width: 100%; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 20px; }
  .newsletter-form-inline { flex-direction: column; align-items: center; }
  .newsletter-form-inline input { min-width: 100%; max-width: 400px; }
}

/* ── Responsive — 480px ────────────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-preview-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-stats-row { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
/* ── Hero Overflow Fix ─────────────────────────────────────── */
.hero-card-main,
.hero-stats-row,
.hero-visual,
.hero .container {
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .hero-visual {
    display: none;
  }
}
.admin-footer-link {
  opacity: 0.18;
  font-size: 0.75rem;
}

.admin-footer-link:hover {
  opacity: 1;
  color: var(--gold);
}
/* Wide premium image - no hard border */
.hero-image-wrap {
  position: relative;
  width: 100%;
  height: 590px;
  overflow: hidden;
  border-radius: 28px;
  background: transparent;
  border: none;
  box-shadow:
    0 38px 100px rgba(0, 0, 0, 0.30),
    0 0 90px rgba(114, 47, 55, 0.12);
}

/* Natural blend overlay */
.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: 28px;
  background:
    linear-gradient(to bottom, rgba(13, 4, 5, 0.22), transparent 18%, transparent 72%, rgba(13, 4, 5, 0.42)),
    linear-gradient(to right, rgba(13, 4, 5, 0.30), transparent 16%, transparent 78%, rgba(13, 4, 5, 0.26)),
    radial-gradient(circle at center, transparent 52%, rgba(13, 4, 5, 0.34) 100%);
}

/* Edge fade without visible border */
.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 3;
  pointer-events: none;
  border-radius: 28px;
  box-shadow:
    inset 0 0 58px rgba(13, 4, 5, 0.62),
    inset 0 -70px 95px rgba(13, 4, 5, 0.42),
    inset 0 70px 95px rgba(13, 4, 5, 0.28);
}

/* Image itself */
.hero-food-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.98) contrast(1.08) saturate(1.04);
  transform: scale(1.025);
}
/* =========================================================
   OUR STORY SECTION — PROFESSIONAL LUXURY FIX
   Balanced font size + visible image + natural cinematic blend
========================================================= */

.story-section {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at 75% 45%, rgba(114, 47, 55, 0.16), transparent 42%),
    linear-gradient(180deg, #0b0204 0%, #100405 48%, #090203 100%);
  overflow: hidden;
}

.story-section .story-container {
  width: min(1320px, 88%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
  position: relative;
}

/* LEFT CONTENT */
.story-content {
  position: relative;
  z-index: 5;
  max-width: 560px;
}

.story-content .section-tag {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border: 1px solid rgba(201, 151, 63, 0.42);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(201, 151, 63, 0.06);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.story-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 4.2vw, 4.7rem);
  line-height: 1.04;
  color: var(--cream);
  margin: 0 0 20px;
  max-width: 570px;
}

.story-content h2 em {
  color: var(--gold);
  font-style: italic;
}

.story-content .about-divider {
  width: 74px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0 28px;
}

.story-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(244, 232, 217, 0.78);
  margin: 0 0 18px;
  max-width: 560px;
}

.story-content .about-features {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 18px;
}

.story-content .feature-item {
  color: rgba(244, 232, 217, 0.75);
  font-size: 0.92rem;
}

.story-content .btn {
  margin-top: 16px;
}

/* RIGHT IMAGE */
.story-image-wrap {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 28px;
  background: #120405;
  box-shadow:
    0 34px 95px rgba(0, 0, 0, 0.34),
    0 0 85px rgba(114, 47, 55, 0.14);
}

.story-image {
  width: 100%;
  height: 100%;
  min-height: 620px;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.88) contrast(1.05) saturate(1.02);
  transform: scale(1.02);
}

/* Natural professional blending, not too dark */
.story-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to right,
      rgba(16, 4, 5, 0.72) 0%,
      rgba(16, 4, 5, 0.36) 22%,
      transparent 48%,
      rgba(16, 4, 5, 0.08) 100%
    ),
    linear-gradient(to bottom,
      rgba(16, 4, 5, 0.22) 0%,
      transparent 24%,
      transparent 72%,
      rgba(16, 4, 5, 0.42) 100%
    );
}

.story-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  box-shadow:
    inset 0 0 55px rgba(13, 4, 5, 0.48),
    inset 0 -70px 90px rgba(13, 4, 5, 0.36);
}

/* Optional: make image feel connected to the text */
.story-section::before {
  content: "";
  position: absolute;
  right: 8%;
  top: 18%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(201, 151, 63, 0.10), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .story-section .story-container {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .story-content {
    max-width: 760px;
  }

  .story-content h2 {
    max-width: 720px;
  }

  .story-image-wrap,
  .story-image {
    min-height: 480px;
  }
}

@media (max-width: 700px) {
  .story-section {
    padding: 80px 0;
  }

  .story-section .story-container {
    width: min(100% - 36px, 1320px);
  }

  .story-content h2 {
    font-size: 2.5rem;
  }

  .story-content p {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .story-content .about-features {
    grid-template-columns: 1fr;
  }

  .story-image-wrap,
  .story-image {
    min-height: 360px;
    border-radius: 20px;
  }
}

/* =========================================================
   SIGNATURE HIGHLIGHTS — PREMIUM TRUST BAR
   No emojis, professional luxury style
========================================================= */

.signature-highlights {
  position: relative;
  z-index: 4;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(9, 2, 3, 0.96), rgba(15, 4, 5, 0.98));
  border-top: 1px solid rgba(201, 151, 63, 0.12);
  border-bottom: 1px solid rgba(201, 151, 63, 0.12);
}

.signature-highlights::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 50%, rgba(201, 151, 63, 0.08), transparent 34%),
    radial-gradient(circle at 78% 50%, rgba(114, 47, 55, 0.12), transparent 36%);
  pointer-events: none;
}

.signature-highlights .container {
  position: relative;
  z-index: 2;
}

.signature-highlights-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
}

.signature-highlight-card {
  position: relative;
  min-height: 118px;
  padding: 24px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: rgba(244, 232, 217, 0.82);
  border-right: 1px solid rgba(201, 151, 63, 0.12);
  transition:
    background 0.28s ease,
    transform 0.28s ease,
    color 0.28s ease;
}

.signature-highlight-card:first-child {
  border-left: 1px solid rgba(201, 151, 63, 0.12);
}

.signature-highlight-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 18px;
  border: 1px solid transparent;
  background:
    linear-gradient(145deg, rgba(201, 151, 63, 0.10), rgba(114, 47, 55, 0.06)) border-box;
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.signature-highlight-card:hover {
  color: var(--cream);
  background: rgba(201, 151, 63, 0.035);
  transform: translateY(-2px);
}

.signature-highlight-card:hover::before {
  opacity: 1;
}

.highlight-mark {
  position: relative;
  z-index: 2;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid rgba(201, 151, 63, 0.34);
  background:
    radial-gradient(circle at top, rgba(201, 151, 63, 0.16), transparent 58%),
    rgba(18, 5, 7, 0.88);
  box-shadow:
    inset 0 0 20px rgba(0, 0, 0, 0.26),
    0 8px 24px rgba(0, 0, 0, 0.18);
}

.highlight-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.highlight-content strong {
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(244, 232, 217, 0.92);
}

.highlight-content small {
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(244, 232, 217, 0.52);
}

.signature-highlight-card:hover .highlight-mark {
  border-color: rgba(201, 151, 63, 0.68);
  color: #e0b15d;
}

.signature-highlight-card:hover .highlight-content strong {
  color: var(--gold);
}

/* Responsive */
@media (max-width: 1180px) {
  .signature-highlights-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signature-highlight-card {
    border-bottom: 1px solid rgba(201, 151, 63, 0.10);
  }

  .signature-highlight-card:nth-child(odd) {
    border-left: 1px solid rgba(201, 151, 63, 0.12);
  }
}

@media (max-width: 640px) {
  .signature-highlights-inner {
    grid-template-columns: 1fr;
  }

  .signature-highlight-card {
    min-height: 105px;
    padding: 22px 18px;
    border-left: 1px solid rgba(201, 151, 63, 0.12);
  }

  .highlight-mark {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }
}


/* Fixed: prevent broken image icons from leaving empty image boxes */
img[data-img-fallback="true"] {
  background: linear-gradient(135deg, #722F37, #0d0405);
}

/* =========================================================
   HOMEPAGE HERO REDESIGN — FULL REAL PHOTO SECTION
   Updated from the final real-photo ZIP per homepage reference.
   The first section now uses one full-width real restaurant/food
   photograph instead of the previous split illustration/card layout.
========================================================= */
.homepage-photo-hero {
  min-height: 100vh;
  padding-top: 92px;
  background:
    linear-gradient(90deg, rgba(4, 2, 2, 0.95) 0%, rgba(9, 4, 4, 0.86) 27%, rgba(13, 4, 5, 0.58) 52%, rgba(13, 4, 5, 0.22) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.62) 100%),
    url("https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=2200&q=88");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
}

.homepage-photo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 72% 42%, rgba(201, 151, 63, 0.14), transparent 30%),
    radial-gradient(circle at 16% 22%, rgba(114, 47, 55, 0.30), transparent 32%);
  pointer-events: none;
}

.homepage-photo-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(rgba(201, 151, 63, 0.055) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.42;
  pointer-events: none;
}

.homepage-photo-hero .hero-bg-decoration,
.homepage-photo-hero .hero-grid-dots,
.homepage-photo-hero .hero-visual,
.homepage-photo-hero .hero-stats-row {
  display: none !important;
}

.homepage-photo-hero .container {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 92px);
  max-width: 1280px;
  width: 100%;
  padding: 60px 28px 72px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  overflow: visible;
}

.homepage-photo-hero .hero-content {
  max-width: 670px;
  text-align: left;
  padding: 26px 0 18px;
}

.homepage-photo-hero .hero-eyebrow {
  justify-content: flex-start;
  margin-bottom: 28px;
}

.homepage-photo-hero .eyebrow-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 151, 63, 0.22));
}

.homepage-photo-hero .eyebrow-text {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 3.2px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.82);
}

.homepage-photo-hero .hero-title {
  font-size: clamp(3rem, 6.3vw, 5.45rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  color: #fff8f0;
  text-shadow: 0 7px 34px rgba(0, 0, 0, 0.72);
}

.homepage-photo-hero .hero-title em {
  color: #d6a53e;
  text-shadow: 0 7px 36px rgba(0, 0, 0, 0.75);
}

.homepage-photo-hero .hero-subtitle {
  max-width: 560px;
  color: rgba(255, 248, 240, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.75;
  margin-bottom: 36px;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.70);
}

.homepage-photo-hero .hero-actions {
  justify-content: flex-start;
  gap: 18px;
  margin-bottom: 56px;
}

.homepage-photo-hero .btn-primary {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 236, 178, 0.18) inset;
}

.homepage-photo-hero .btn-outline {
  background: rgba(7, 3, 3, 0.28);
  border-color: rgba(201, 151, 63, 0.78);
  backdrop-filter: blur(8px);
}

.homepage-photo-hero .hero-trust {
  justify-content: flex-start;
  gap: 24px;
}

.homepage-photo-hero .trust-item {
  color: rgba(255, 248, 240, 0.68);
  font-size: 0.9rem;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.75);
}

.homepage-photo-hero .trust-dot {
  background: #d6a53e;
  box-shadow: 0 0 18px rgba(214, 165, 62, 0.55);
}

@media (max-width: 1024px) {
  .homepage-photo-hero {
    background-position: 62% center;
  }

  .homepage-photo-hero .container {
    min-height: calc(100vh - 82px);
    padding-top: 56px;
  }

  .homepage-photo-hero .hero-content {
    max-width: 720px;
    text-align: left;
  }

  .homepage-photo-hero .hero-eyebrow,
  .homepage-photo-hero .hero-actions,
  .homepage-photo-hero .hero-trust {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .homepage-photo-hero {
    min-height: 92vh;
    padding-top: 76px;
    background:
      linear-gradient(90deg, rgba(4, 2, 2, 0.96) 0%, rgba(9, 4, 4, 0.86) 52%, rgba(13, 4, 5, 0.52) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.62) 100%),
      url("https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=1400&q=84");
    background-size: cover;
    background-position: 64% center;
  }

  .homepage-photo-hero .container {
    min-height: calc(92vh - 76px);
    padding: 46px 22px 58px;
  }

  .homepage-photo-hero .hero-title {
    font-size: clamp(2.7rem, 12vw, 4.1rem);
  }

  .homepage-photo-hero .hero-subtitle {
    max-width: 100%;
  }

  .homepage-photo-hero .hero-actions {
    margin-bottom: 38px;
  }
}

@media (max-width: 520px) {
  .homepage-photo-hero {
    background-position: 68% center;
  }

  .homepage-photo-hero .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .homepage-photo-hero .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .homepage-photo-hero .hero-trust {
    gap: 13px;
  }

  .homepage-photo-hero .trust-item {
    font-size: 0.8rem;
  }
}


/* Premium homepage story refresh */
.story-section .story-container {
  align-items: center;
}
.story-section .story-image-wrap {
  position: relative;
  min-height: 560px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(201, 151, 63, 0.24);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46);
}
.story-section .story-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(13,4,5,0.02), rgba(13,4,5,0.50)),
    radial-gradient(circle at 18% 18%, rgba(201,151,63,0.22), transparent 34%);
  pointer-events: none;
}
.story-section .story-image-wrap::after {
  content: "15+ Years of Craft";
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  padding: 15px 18px;
  border-radius: 16px;
  background: rgba(10, 3, 4, 0.72);
  border: 1px solid rgba(201, 151, 63, 0.35);
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
}
.story-section .story-image {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transform: scale(1.02);
}
.menu-preview-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.menu-preview-link:hover .menu-card-name {
  color: var(--gold);
}
@media (max-width: 768px) {
  .story-section .story-image-wrap,
  .story-section .story-image { min-height: 360px; }
}


/* Final polish: keep homepage Our Story image clear and premium */
.story-section .story-image-wrap::before {
  background: linear-gradient(180deg, rgba(13,4,5,0.00), rgba(13,4,5,0.16)) !important;
  opacity: 1 !important;
}
.story-section .story-image-wrap::after {
  left: 24px !important;
  right: auto !important;
  bottom: 24px !important;
  width: auto !important;
  background: rgba(10, 3, 4, 0.62) !important;
  backdrop-filter: blur(8px) !important;
}
.story-section .story-image {
  filter: none !important;
  opacity: 1 !important;
}


/* Final one-thing fix: shorten the homepage Our Story 15+ badge */
body .story-section .story-image-wrap::after {
  content: "15+ Years of Craft" !important;
  position: absolute !important;
  left: 26px !important;
  top: 24px !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 5 !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 10px 16px !important;
  border-radius: 999px !important;
  background: rgba(10, 3, 4, 0.72) !important;
  border: 1px solid rgba(201, 151, 63, 0.42) !important;
  color: var(--gold) !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: 0.02em !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.30) !important;
  transform: none !important;
  pointer-events: none !important;
}

/* Keep the image visible and clean behind the badge */
body .story-section .story-image-wrap::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.00) 54%, rgba(13, 4, 5, 0.32) 100%),
    radial-gradient(circle at 82% 12%, rgba(201,151,63,0.12), transparent 26%) !important;
}

@media (max-width: 640px) {
  body .story-section .story-image-wrap::after {
    left: 16px !important;
    top: 16px !important;
    padding: 9px 13px !important;
    font-size: 0.78rem !important;
  }
}


/* Global compact spacing polish
   Reduces excessive vertical gaps between sections across all pages. */
:root {
  --section-padding-lg: 72px;
  --section-padding-md: 58px;
  --section-padding-sm: 44px;
}

/* Homepage and shared page section spacing */
.trust-bar,
.signature-highlights {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.about-intro,
.story-section,
.menu-preview,
.why-us,
.process-section,
.gallery-preview,
.testimonials,
.reservation-section,
.final-cta,
.faq-section,
.blog-section,
.blog-preview,
.pricing-section,
.packages-section,
.contact-section,
.map-section,
.values-section,
.timeline-section,
.team-section,
.awards-section,
.about-cta,
.menu-section-block,
.menu-reserve-banner,
.gallery-section,
.page-section {
  padding-top: var(--section-padding-lg) !important;
  padding-bottom: var(--section-padding-lg) !important;
}

/* Fix the very large blank area after homepage Our Story */
.homepage-photo-hero + .signature-highlights,
.signature-highlights + .story-section,
.story-section + .menu-preview,
.about-intro + .menu-preview,
.story-section + section,
section + section {
  margin-top: 0 !important;
}

/* Homepage Our Story specific cleanup */
.story-section {
  overflow: hidden;
}

.story-section .story-container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.story-section .story-image-wrap {
  min-height: 440px !important;
}

.story-section .story-image {
  min-height: 440px !important;
}

/* Reduce empty visual height where image/card sections became too tall */
.menu-preview {
  padding-top: 68px !important;
}

.menu-preview .section-center,
.why-us .section-center,
.process-section .section-center,
.gallery-preview .section-center,
.testimonials .section-center {
  margin-bottom: 34px !important;
}

/* Page hero spacing */
.page-hero {
  padding-top: 105px !important;
  padding-bottom: 58px !important;
}

/* About page compact premium sections */
.about-premium-story,
.premium-journey-section {
  padding-top: 68px !important;
  padding-bottom: 68px !important;
}

.premium-story-photo,
.premium-story-photo img {
  min-height: 430px !important;
}

.premium-journey-grid {
  margin-top: 22px !important;
}

/* Contact and menu page compactness */
.quick-contact {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.menu-section-block {
  scroll-margin-top: 105px;
}

.menu-section-header {
  margin-bottom: 28px !important;
}

/* Footer spacing */
.footer {
  padding-top: 58px !important;
}

/* Mobile spacing */
@media (max-width: 980px) {
  .about-intro,
  .story-section,
  .menu-preview,
  .why-us,
  .process-section,
  .gallery-preview,
  .testimonials,
  .reservation-section,
  .final-cta,
  .faq-section,
  .blog-section,
  .blog-preview,
  .pricing-section,
  .packages-section,
  .contact-section,
  .map-section,
  .values-section,
  .timeline-section,
  .team-section,
  .awards-section,
  .about-cta,
  .menu-section-block,
  .menu-reserve-banner,
  .gallery-section,
  .page-section {
    padding-top: var(--section-padding-md) !important;
    padding-bottom: var(--section-padding-md) !important;
  }

  .story-section .story-image-wrap,
  .story-section .story-image {
    min-height: 360px !important;
  }
}

@media (max-width: 640px) {
  .about-intro,
  .story-section,
  .menu-preview,
  .why-us,
  .process-section,
  .gallery-preview,
  .testimonials,
  .reservation-section,
  .final-cta,
  .faq-section,
  .blog-section,
  .blog-preview,
  .pricing-section,
  .packages-section,
  .contact-section,
  .map-section,
  .values-section,
  .timeline-section,
  .team-section,
  .awards-section,
  .about-cta,
  .menu-section-block,
  .menu-reserve-banner,
  .gallery-section,
  .page-section {
    padding-top: var(--section-padding-sm) !important;
    padding-bottom: var(--section-padding-sm) !important;
  }

  .page-hero {
    padding-top: 92px !important;
    padding-bottom: 42px !important;
  }

  .menu-preview {
    padding-top: 46px !important;
  }

  .story-section .story-image-wrap,
  .story-section .story-image {
    min-height: 300px !important;
  }
}


/* Final awards/team visual sizing fix */
.awards-section {
  padding-top: 58px !important;
  padding-bottom: 58px !important;
}

.awards-grid {
  align-items: stretch !important;
}

.award-card {
  min-height: 0 !important;
  height: auto !important;
  padding: 22px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  text-align: center !important;
}

.award-icon {
  width: 100% !important;
  height: 180px !important;
  max-height: 180px !important;
  margin: 0 0 16px !important;
  display: block !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background: rgba(201,151,63,0.08) !important;
}

.award-icon img {
  width: 100% !important;
  height: 100% !important;
  max-height: 180px !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 12px !important;
  display: block !important;
}

.award-card h3 {
  margin-top: 0 !important;
}

.award-card p {
  margin-bottom: 0 !important;
}

/* Make team photos consistent and premium while allowing different images */
.team-avatar {
  height: 220px !important;
  min-height: 220px !important;
  max-height: 220px !important;
  overflow: hidden !important;
}

.team-avatar img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
}

.team-card:nth-child(2) .team-avatar img {
  object-position: center center !important;
}

@media (max-width: 900px) {
  .award-icon,
  .award-icon img {
    height: 160px !important;
    max-height: 160px !important;
  }
  .team-avatar {
    height: 200px !important;
    min-height: 200px !important;
  }
}

@media (max-width: 640px) {
  .award-icon,
  .award-icon img {
    height: 150px !important;
    max-height: 150px !important;
  }
}
.menu-preview-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  display: block;
}

.menu-preview-link:hover .menu-card-name {
  color: var(--gold);
}