/* ==========================================================================
   RASHID SEAFOOD — "The Hearth of East Wharf"
   Complete Design System — Warm Cozy Luxury-Editorial
   ========================================================================== */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,500;0,8..60,700;1,8..60,400;1,8..60,500;1,8..60,700&display=swap');

/* ── Design Tokens ── */
:root {
  /* Warm Cast-Iron Palette */
  --bg-base:        #0C0A09;
  --bg-panel:       #1C1917;
  --bg-accent:      #292524;
  --sizzle:         #EA580C;
  --crisp:          #D97706;
  --cream:          #FAFAF9;
  --ash:            #A8A29E;
  --smoke:          #78716C;

  /* Derived */
  --sizzle-glow:    rgba(234, 88, 12, 0.25);
  --sizzle-soft:    rgba(234, 88, 12, 0.12);
  --panel-border:   rgba(41, 37, 36, 0.8);
  --card-shadow:    0 8px 32px rgba(0, 0, 0, 0.4);
  --card-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);

  /* Typography */
  --font-display: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-body:    'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing & Sizing */
  --header-h:     80px;
  --section-pad:  6rem;
  --container-w:  1280px;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-pill:  50px;

  /* Transitions */
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --t-smooth:     all 0.4s var(--ease-out);
  --t-fast:       all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: var(--bg-base);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  background-color: var(--bg-base);
}

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

ul, ol { list-style: none; }

a {
  color: var(--cream);
  text-decoration: none;
  transition: var(--t-fast);
}

a:hover { color: var(--sizzle); }

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb {
  background: var(--bg-accent);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--sizzle); }

/* ── Selection ── */
::selection {
  background-color: var(--sizzle);
  color: var(--bg-base);
}

/* ── Typography Scale ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--cream);
  line-height: 1.15;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

p {
  line-height: 1.75;
  color: var(--ash);
  font-weight: 400;
}

.text-sizzle { color: var(--sizzle); }
.text-crisp  { color: var(--crisp); }
.text-cream  { color: var(--cream); }
.text-ash    { color: var(--ash); }

/* Serif Italic Accent — luxury culinary magazine style */
.serif-accent {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--sizzle);
  font-weight: 500;
}

/* ── Layout Utilities ── */
.container {
  width: 90%;
  max-width: var(--container-w);
  margin: 0 auto;
}

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

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */
.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--sizzle);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.15s, height 0.15s, background-color 0.15s;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(234, 88, 12, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
              border-color 0.3s, background-color 0.3s;
}

.cursor-dot.hovering {
  width: 12px;
  height: 12px;
  background-color: var(--crisp);
}

.cursor-ring.hovering {
  width: 52px;
  height: 52px;
  border-color: rgba(217, 119, 6, 0.4);
  background-color: rgba(234, 88, 12, 0.08);
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader {
  position: fixed;
  inset: 0;
  background-color: var(--bg-base);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

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

.preloader-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  position: relative;
}

.preloader-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--bg-accent);
  border-top-color: var(--sizzle);
  border-right-color: var(--crisp);
  border-radius: 50%;
  animation: preloader-spin 1.2s linear infinite;
}

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

.preloader-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.preloader-sub {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--ash);
  margin-top: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 900;
  display: flex;
  align-items: center;
  background-color: transparent;
  transition:0.5s ease-in-out;

}

.site-header.scrolled {
  background-color: var(--bg-panel);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  width: 90%;
  max-width: var(--container-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  width: 280px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}


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

.logo-text span {
  color: var(--sizzle);
}

/* Desktop Navigation Pills */
.nav-pills {
  display: none;
  align-items: center;
  gap: 4px;
  background-color: var(--bg-panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-pill);
  padding: 4px;
}

.nav-pill {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ash);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  transition: var(--t-fast);
  text-decoration: none;
  white-space: nowrap;
}

.nav-pill:hover {
  color: var(--cream);
  background-color: var(--bg-accent);
}

.nav-pill.active {
  color: var(--cream);
  background-color: var(--sizzle);
}

/* Header CTA */
.header-cta {
  display: none;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  height: 20px;
  justify-content: center;
  z-index: 1001;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--cream);
  border-radius: 2px;
  transition: var(--t-smooth);
  transform-origin: center;
}

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

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background-color: var(--bg-base);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
}

.mobile-overlay.open {
  transform: translateX(0);
}

.mobile-overlay a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 1px;
  transition: var(--t-fast);
}

.mobile-overlay a:hover,
.mobile-overlay a.active {
  color: var(--sizzle);
}

.mobile-overlay .mob-cta {
  margin-top: 1rem;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--t-smooth);
  text-decoration: none;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-sizzle {
  background-color: var(--sizzle);
  color: var(--cream);
  border-color: var(--sizzle);
}

.btn-sizzle:hover {
  background-color: transparent;
  color: var(--sizzle);
  border-color: var(--sizzle);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--sizzle-glow);
}

.btn-outline {
  background-color: transparent;
  color: var(--cream);
  border-color: var(--bg-accent);
}

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

.btn-sm {
  padding: 10px 22px;
  font-size: 0.8rem;
}

.btn-pill {
  border-radius: var(--radius-pill);
}

/* ==========================================================================
   HERO SECTION — VIDEO LAYERING
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Layer 0: Video */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Layer 1: Dark Vignette Overlay */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient( to top, #0C0A09 0%, rgba(0, 0, 0, 0.77) 35%, rgba(6, 6, 6, 0.45) 60%, rgba(0, 0, 0, 0.39) 100% ), #0000004d;
}

/* Layer 2: Content */
.hero-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  min-height: 100vh;
}

/* Left Column */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #FF6000;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 1200;
}

.hero-tagline::before {
  content: '';
  width: 40px;
  height: 2px;
  background-color: var(--sizzle);
  display: inline-block;
}

.hero-heading {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  max-width: 600px;
}

.hero-heading .serif-accent {
  font-size: inherit;
  line-height: inherit;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--ash);
  max-width: 480px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-stamp {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 1rem;
  border-top: 1px solid var(--bg-accent);
  margin-top: 0.5rem;
}

.hero-stamp-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--smoke);
}

.hero-stamp-line {
  flex: 1;
  height: 1px;
  background-color: var(--bg-accent);
}

/* Right Column */
.hero-right {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-info-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-panel);
  border: 1px solid var(--panel-border);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  color: var(--ash);
  transition: var(--t-fast);
}

.info-pill:hover {
  border-color: var(--sizzle);
  color: var(--cream);
}

.info-pill i { color: var(--sizzle); font-size: 0.9rem; }

/* Menu Teaser Cards */
.teaser-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.teaser-card {
  background-color: var(--bg-panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--t-smooth);
}

.teaser-card:hover {
  border-color: rgba(234, 88, 12, 0.3);
  box-shadow: 0 0 30px var(--sizzle-soft);
  transform: translateY(-3px);
}

.teaser-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.teaser-card-icon {
  width: 42px;
  height: 42px;
  background-color: var(--bg-accent);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sizzle);
  flex-shrink: 0;
}

.teaser-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
}

.teaser-card-price {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--crisp);
}

.teaser-card-desc {
  font-size: 0.9rem;
  color: var(--ash);
  line-height: 1.7;
}

.teaser-card-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sizzle);
  padding: 4px 10px;
  border: 1px solid rgba(234, 88, 12, 0.3);
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   CARD-DECK SCROLL SECTIONS
   ========================================================================== */
.card-section {
  position: relative;
  background-color: var(--bg-base);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  will-change: transform;
  box-shadow: var(--card-shadow-lg);
}

.card-section:first-of-type {
  margin-top: -2rem;
}

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

/* Section Headers */
.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--sizzle);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background-color: var(--sizzle);
}

.section-heading {
  margin-bottom: 1.5rem;
}

.section-desc {
  max-width: 640px;
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

/* Dark mask for card-under effect */
.card-section .card-mask {
  position: absolute;
  inset: 0;
  background-color: rgba(12, 10, 9, 0);
  pointer-events: none;
  z-index: 5;
  border-radius: inherit;
}

/* ==========================================================================
   LEGACY / STORY SECTION
   ========================================================================== */
.legacy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.legacy-img {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 360px;
  border: 1px solid var(--panel-border);
}

.legacy-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.legacy-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background-color: var(--sizzle);
  color: var(--cream);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.legacy-text h2 {
  margin-bottom: 1.5rem;
}

.legacy-text p {
  margin-bottom: 1.5rem;
}

.legacy-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--bg-accent);
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--sizzle);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--ash);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ==========================================================================
   SPECIALITIES / DAILY ROAST SECTION
   ========================================================================== */
.spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.spec-card {
  background-color: var(--bg-panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--t-smooth);
}

.spec-card:hover {
  border-color: rgba(234, 88, 12, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.spec-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.spec-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.spec-card:hover .spec-card-img img {
  transform: scale(1.06);
}

.spec-card-body {
  padding: 1.5rem;
}

.spec-card-category {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sizzle);
  margin-bottom: 8px;
}

.spec-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}

.spec-card-desc {
  font-size: 0.9rem;
  color: var(--ash);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.spec-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.spec-card-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--crisp);
}

.spec-card-btn {
  width: 40px;
  height: 40px;
  background-color: var(--bg-accent);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: var(--t-fast);
}

.spec-card-btn:hover {
  background-color: var(--sizzle);
  border-color: var(--sizzle);
}

/* ==========================================================================
   CTA BANNER SECTION
   ========================================================================== */
.cta-banner {
  text-align: center;
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-panel) 0%, var(--bg-base) 100%);
  border-top: 1px solid var(--bg-accent);
  border-bottom: 1px solid var(--bg-accent);
}

.cta-banner h2 {
  margin-bottom: 1rem;
}

.cta-banner p {
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   MENU PAGE
   ========================================================================== */
.page-hero {
  padding: calc(var(--header-h) + 3rem) 0 3rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-panel) 0%, var(--bg-base) 100%);
  border-bottom: 1px solid var(--bg-accent);
}

.page-hero .section-label {
  justify-content: center;
}

.page-hero p {
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}

/* Menu Category Tabs */
.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 3rem;
}

.menu-tab {
  background-color: var(--bg-panel);
  border: 1px solid var(--panel-border);
  color: var(--ash);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  transition: var(--t-fast);
}

.menu-tab:hover {
  color: var(--cream);
  border-color: var(--sizzle);
}

.menu-tab.active {
  background-color: var(--sizzle);
  border-color: var(--sizzle);
  color: var(--cream);
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.menu-item {
  background-color: var(--bg-panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--t-smooth);
}

.menu-item:hover {
  border-color: rgba(234, 88, 12, 0.25);
  box-shadow: 0 0 24px var(--sizzle-soft);
}

.menu-item-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.menu-item:hover .menu-item-img img {
  transform: scale(1.05);
}

.menu-item-body {
  padding: 1.5rem;
}

.menu-item-cat {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sizzle);
  margin-bottom: 6px;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}

.menu-item-desc {
  font-size: 0.88rem;
  color: var(--ash);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.menu-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--crisp);
}

.menu-item-order {
  width: 38px;
  height: 38px;
  background-color: var(--bg-accent);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: var(--t-fast);
  font-size: 1rem;
}

.menu-item-order:hover {
  background-color: var(--sizzle);
  border-color: var(--sizzle);
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-story-img {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 420px;
  border: 1px solid var(--panel-border);
}

.about-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story-text h2 {
  margin-bottom: 1.5rem;
}

.about-story-text p {
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
}

/* Pull Quote */
.pull-quote {
  text-align: center;
  padding: 3rem 2rem;
  margin: 3rem 0;
  border-top: 1px solid var(--bg-accent);
  border-bottom: 1px solid var(--bg-accent);
  background: linear-gradient(135deg, var(--bg-panel) 0%, var(--bg-base) 100%);
  border-radius: var(--radius-md);
}

.pull-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
}

.pull-quote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sizzle);
  letter-spacing: 1px;
  font-style: normal;
}

/* Services Grid on About */
.about-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Shared card pattern (replaces old pillar-card) */
.pillar-card {
  background-color: var(--bg-panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--t-smooth);
  text-align: center;
}

.pillar-card:hover {
  border-color: rgba(234, 88, 12, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  background-color: var(--bg-accent);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sizzle);
  margin: 0 auto 1.2rem;
  font-size: 1.4rem;
}

.pillar-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.25rem;
}

.pillar-card p {
  font-size: 0.92rem;
  max-width: 400px;
  margin: 0 auto;
}

/* ==========================================================================
   GALLERY PAGE
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.gallery-cell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.gallery-cell:hover img {
  transform: scale(1.08);
}

.gallery-cell-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 10, 9, 0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-cell:hover .gallery-cell-overlay {
  opacity: 1;
}

.gallery-cell-caption {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
}

/* Gallery Filters */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 2rem;
  list-style: none;
}

.gallery-filter {
  background-color: var(--bg-panel);
  border: 1px solid var(--panel-border);
  color: var(--ash);
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  transition: var(--t-fast);
  cursor: pointer;
}

.gallery-filter:hover {
  color: var(--cream);
  border-color: var(--sizzle);
}

.gallery-filter.active {
  background-color: var(--sizzle);
  border-color: var(--sizzle);
  color: var(--cream);
}

/* Span variations */
.gallery-cell.wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-form-card {
  background-color: var(--bg-panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
}

.contact-form-card h3 {
  margin-bottom: 0.5rem;
}

.contact-form-card > p {
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-control {
  background-color: var(--bg-accent);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--t-fast);
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: var(--sizzle);
  box-shadow: 0 0 0 3px var(--sizzle-soft);
}

.form-control::placeholder {
  color: var(--smoke);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A8A29E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

/* Contact Info */
.contact-info-side h3 {
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background-color: var(--bg-panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sizzle);
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-detail h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 2px;
}

.contact-detail p {
  font-size: 0.88rem;
}

.contact-detail a {
  color: var(--sizzle);
  font-weight: 500;
}

/* Map */
.map-wrapper {
  margin-top: 3rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--panel-border);
  height: 380px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.5) contrast(1.1);
}

/* Social pills */
.social-row {
  display: flex;
  gap: 10px;
  margin-top: 1.5rem;
}

.social-pill {
  width: 42px;
  height: 42px;
  background-color: var(--bg-panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ash);
  transition: var(--t-fast);
  font-size: 1rem;
}

.social-pill:hover {
  background-color: var(--sizzle);
  border-color: var(--sizzle);
  color: var(--cream);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--bg-panel);
  border-top: 1px solid var(--bg-accent);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cream);
  margin-bottom: 1.2rem;
}

.footer-links-list li {
  margin-bottom: 0.6rem;
}

.footer-links-list a {
  font-size: 0.9rem;
  color: var(--ash);
}

.footer-links-list a:hover {
  color: var(--sizzle);
  padding-left: 4px;
}

.footer-hours-list li {
  font-size: 0.88rem;
  color: var(--ash);
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
}

.footer-hours-list span {
  color: var(--cream);
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid var(--bg-accent);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--smoke);
}

/* ==========================================================================
   BRANCHES SECTION
   ========================================================================== */
.branches-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.branch-card {
  background-color: var(--bg-panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--t-smooth);
}

.branch-card:hover {
  border-color: rgba(234, 88, 12, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.branch-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.branch-card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
}

.branch-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: var(--bg-accent);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--crisp);
  white-space: nowrap;
  flex-shrink: 0;
}

.branch-card-rating i {
  color: var(--crisp);
  font-size: 0.75rem;
}

.branch-card-address {
  font-size: 0.88rem;
  color: var(--ash);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.branch-card-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background-color: rgba(234, 88, 12, 0.1);
  color: var(--sizzle);
}

.branch-card-status .status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--sizzle);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.branch-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.branch-card-actions .btn {
  flex: 1;
  min-width: 120px;
  padding: 10px 18px;
  font-size: 0.8rem;
}

/* ==========================================================================
   REVIEWS CAROUSEL
   ========================================================================== */
.reviews-section {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.7s var(--ease-out);
  will-change: transform;
  padding: 1rem 0;
}

.review-card {
  flex: 0 0 55%;
  background-color: var(--bg-panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0.25;
  scale: 0.85;
  transition: opacity 0.7s var(--ease-out), scale 0.7s var(--ease-out), border-color 0.7s var(--ease-out);
  filter: blur(2px);
  pointer-events: none;
}

.review-card.active {
  opacity: 1;
  scale: 1;
  filter: blur(0);
  border-color: rgba(234, 88, 12, 0.25);
  pointer-events: auto;
}

.review-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.review-card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--bg-accent);
  border: 2px solid var(--panel-border);
}

.review-card-meta {
  flex: 1;
  min-width: 0;
}

.review-card-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
}

.review-card-badge {
  font-size: 0.72rem;
  color: var(--smoke);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}

.review-card-badge i {
  color: var(--sizzle);
  font-size: 0.65rem;
}

.review-card-stars {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
}

.review-card-stars i {
  color: var(--crisp);
  font-size: 0.85rem;
}

.review-card-price {
  font-size: 0.78rem;
  color: var(--ash);
  background-color: var(--bg-accent);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  display: inline-block;
  align-self: flex-start;
}

.review-card-text {
  font-size: 0.92rem;
  color: var(--ash);
  line-height: 1.75;
  flex: 1;
}

.review-card-ratings {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.75rem;
  border-top: 1px solid var(--bg-accent);
}

.review-card-ratings span {
  font-size: 0.78rem;
  color: var(--ash);
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-card-ratings i {
  color: var(--sizzle);
  font-size: 0.7rem;
}

/* Carousel Controls */
.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.reviews-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-panel);
  border: 1px solid var(--panel-border);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t-fast);
  font-size: 1rem;
  cursor: pointer;
}

.reviews-btn:hover {
  background-color: var(--sizzle);
  border-color: var(--sizzle);
}

.reviews-dots {
  display: flex;
  gap: 8px;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--bg-accent);
  border: none;
  cursor: pointer;
  transition: var(--t-fast);
  padding: 0;
}

.reviews-dot.active {
  background-color: var(--sizzle);
  width: 24px;
  border-radius: 4px;
}

/* ==========================================================================
   ENVIRONMENT / AMBIENCE GALLERY
   ========================================================================== */
.env-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.env-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--panel-border);
  aspect-ratio: 4 / 3;
  transition: var(--t-smooth);
}

.env-card:hover {
  border-color: rgba(234, 88, 12, 0.3);
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.env-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.env-card:hover img {
  transform: scale(1.08);
}

.env-card-tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

/* Tablet */
@media (min-width: 640px) {
  .env-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Desktop */
@media (min-width: 1024px) {
  .env-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   SEO HIDDEN
   ========================================================================== */
.seo-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Container-width alias for legacy */
.container-width {
  width: 90%;
  max-width: var(--container-w);
  margin: 0 auto;
}

/* Tablet */
@media (min-width: 640px) {
  .spec-grid            { grid-template-columns: repeat(2, 1fr); }
  .menu-grid            { grid-template-columns: repeat(2, 1fr); }
  .branches-grid        { grid-template-columns: repeat(2, 1fr); }
  .about-services-grid  { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid         { grid-template-columns: repeat(3, 1fr); }
  .footer-grid          { grid-template-columns: repeat(2, 1fr); }
  .form-row             { grid-template-columns: 1fr 1fr; }
  .contact-split        { grid-template-columns: 1fr 1fr; }
}

/* Desktop */
@media (min-width: 1024px) {
  .nav-pills     { display: flex; }
  .header-cta    { display: block; }
  .hamburger     { display: none; }

  .hero-content        { grid-template-columns: 55% 1fr; gap: 3rem; }
  .hero-right          { display: flex; }

  .legacy-grid         { grid-template-columns: 1fr 1fr; }
  .spec-grid           { grid-template-columns: repeat(3, 1fr); }
  .menu-grid           { grid-template-columns: repeat(3, 1fr); }
  .branches-grid       { grid-template-columns: repeat(3, 1fr); }
  .about-story-grid    { grid-template-columns: 1fr 1fr; }
  .about-services-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid        { grid-template-columns: repeat(4, 1fr); }
  .footer-grid         { grid-template-columns: 1.5fr 1fr 1fr; }

  .review-card { flex: 0 0 40%; }
}

/* Large Desktop */
@media (min-width: 1280px) {
  .hero-heading { font-size: 4.2rem; }
  .review-card { flex: 0 0 35%; }
}

/* Large Desktop */
@media (min-width: 1280px) {
  .hero-heading { font-size: 4.2rem; }
}

/* Touch devices — disable custom cursor */
@media (hover: none) and (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}
