/* ==========================================================================
   مطعم لاماسو — استايل الموقع التجريبي الفاخر (Premium Fine Dining UI)
   ========================================================================== */

:root {
  --color-primary: #0c1222;
  --color-secondary: #162038;
  --color-accent: #d4af37;
  --color-accent-hover: #b8952b;
  --color-accent-glow: rgba(212, 175, 55, 0.25);
  --color-bg: #080c18;
  --color-bg-surface: #0f172a;
  --color-card-bg: rgba(22, 32, 56, 0.7);
  --color-card-border: rgba(212, 175, 55, 0.18);
  
  --color-text: #f8fafc;
  --color-text-muted: #94a3b8;
  --color-text-subtle: #64748b;
  
  --font-arabic: 'Tajawal', sans-serif;
  --font-heading-en: 'Cinzel', serif;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.2);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-arabic);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
}

/* Phone Numbers Isolation Rule (Strict Standard) */
bdi, [dir="ltr"] {
  direction: ltr !important;
  unicode-bidi: isolate !important;
  display: inline-block;
  font-family: var(--font-heading-en), monospace;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 2.5rem);
}

/* Typography Fluid Hierarchy */
h1, h2, h3, h4 {
  font-family: var(--font-arabic);
  color: #fff;
  font-weight: 800;
  line-height: 1.25;
}

.gradient-text {
  background: linear-gradient(135deg, #fff 20%, var(--color-accent) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section Common Structure */
.section {
  position: relative;
  z-index: 10;
  background-color: var(--color-bg);
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.85rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-full);
}

.section-title {
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  margin-bottom: 1.2rem;
}

.section-subtitle {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--color-text-muted);
  max-width: 680px;
  line-height: 1.8;
}

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

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-arabic);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn:hover {
  transform: translateY(-3px);
}
.btn:active {
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-accent) 0%, #be9227 100%);
  color: #0c1222;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.35);
  background: linear-gradient(135deg, #e5c358 0%, var(--color-accent) 100%);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 1.1rem 2.2rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Top Banner (Notice)
   ========================================================================== */
.demo-top-banner {
  background: linear-gradient(90deg, #1e293b, #0f172a);
  color: #e2e8f0;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0.4rem 0;
  position: relative;
  z-index: 1001;
}
.banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.close-banner-btn {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
}

/* ==========================================================================
   Header & Navbar (Glassmorphism)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 12, 24, 0.75);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  transition: var(--transition-smooth);
}
.site-header.scrolled {
  background: rgba(8, 12, 24, 0.92);
  border-bottom-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
}
.brand-symbol {
  font-size: 1.6rem;
  color: var(--color-accent);
  filter: drop-shadow(0 2px 8px var(--color-accent-glow));
}
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-name-ar {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}
.brand-name-en {
  font-family: var(--font-heading-en);
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--color-accent);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  text-decoration: none;
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition-fast);
  padding: 0.4rem 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active {
  color: #fff;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-toggle span {
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-bg);
}

.hero-bg {
  position: absolute;
  inset: -10% 0;
  background-size: cover;
  background-position: center 30%;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 12, 24, 0.45) 0%,
    rgba(8, 12, 24, 0.75) 50%,
    rgba(8, 12, 24, 0.98) 100%
  );
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-accent);
}

.hero-title {
  font-size: clamp(2.3rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 2.2rem;
  max-width: 700px;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-features-strip {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.strip-icon {
  font-size: 1.3rem;
}
.strip-text {
  font-size: 0.92rem;
  color: #cbd5e1;
  font-weight: 500;
}

/* Floating Shapes */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  filter: blur(80px);
}
.floating-shape-1 {
  width: 380px;
  height: 380px;
  background: rgba(212, 175, 55, 0.08);
  top: 10%;
  left: -100px;
  animation: floatSlow 12s ease-in-out infinite alternate;
}
.floating-shape-2 {
  width: 320px;
  height: 320px;
  background: rgba(14, 165, 233, 0.06);
  bottom: 5%;
  right: -80px;
  animation: floatSlow 14s ease-in-out infinite alternate-reverse;
}

@keyframes floatSlow {
  0% { transform: translate(0, 0); }
  100% { transform: translate(30px, -25px); }
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-surface) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.about-text-col .lead-text {
  font-size: 1.2rem;
  color: #e2e8f0;
  font-weight: 500;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.about-text-col .body-text {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.about-highlights-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.highlight-box {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  padding: 1.2rem;
  border-radius: var(--radius-md);
}
.highlight-title {
  display: block;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.35rem;
}
.highlight-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.image-frame img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.image-frame:hover img {
  transform: scale(1.05);
}

.image-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  background: rgba(8, 12, 24, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
}
.gold-star {
  color: var(--color-accent);
  font-size: 1.2rem;
}

/* ==========================================================================
   Menu Bento Grid Section
   ========================================================================== */
.menu-section {
  background-color: var(--color-bg);
}

.menu-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-bottom: 2.5rem;
}

.menu-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}
.menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: var(--shadow-gold);
}

.menu-card.card-featured {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  padding: 1.8rem;
  align-items: center;
}

.card-media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 320px;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.menu-card.card-featured:hover .card-media img {
  transform: scale(1.06);
}

.card-pill {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-accent);
  color: #0c1222;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
}

.card-icon-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.dish-emoji {
  font-size: 1.8rem;
}

.card-title {
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.card-tags span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: #cbd5e1;
}

.dish-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.dish-list li {
  position: relative;
  padding-right: 1.4rem;
  font-size: 0.92rem;
  color: #e2e8f0;
}
.dish-list li::before {
  content: '✦';
  position: absolute;
  right: 0;
  color: var(--color-accent);
  font-size: 0.75rem;
}

.menu-delivery-note {
  text-align: center;
  padding: 1.2rem 2rem;
  background: rgba(212, 175, 55, 0.07);
  border: 1px dashed rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-md);
  color: #cbd5e1;
  font-size: 0.95rem;
}

/* ==========================================================================
   Breakfast Section
   ========================================================================== */
.breakfast-section {
  background: linear-gradient(180deg, var(--color-bg-surface) 0%, var(--color-bg) 100%);
}

.breakfast-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.time-floating-pill {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(8, 12, 24, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-accent);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.breakfast-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}
.bf-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.bf-icon {
  font-size: 1.8rem;
  background: rgba(212, 175, 55, 0.1);
  padding: 0.6rem;
  border-radius: var(--radius-md);
  line-height: 1;
}
.bf-item h4 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}
.bf-item p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Ambiance Section
   ========================================================================== */
.ambiance-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ambiance-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}
.ambiance-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-gold);
}

.amb-number {
  font-family: var(--font-heading-en);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(212, 175, 55, 0.15);
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  line-height: 1;
}

.ambiance-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.9rem;
  color: #fff;
}
.ambiance-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================================================
   CTA Banner Section
   ========================================================================== */
.cta-banner-box {
  background: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.15), transparent 50%),
              linear-gradient(135deg, #111a33 0%, #0c1222 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.8rem, 5vw, 3.5rem);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.cta-tag {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 0.8rem;
}

.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  margin-bottom: 1.2rem;
}

.cta-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.cta-buttons-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.phone-chip {
  background: rgba(0, 0, 0, 0.25);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
}

/* ==========================================================================
   Contact Section & Interactive Form
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem;
  align-items: start;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 2.2rem;
}

.contact-item {
  display: flex;
  gap: 1.2rem;
}
.contact-icon {
  font-size: 1.4rem;
  background: rgba(212, 175, 55, 0.1);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.2);
  flex-shrink: 0;
}
.contact-text h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}
.contact-text p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}
.phone-row {
  margin-top: 0.2rem;
}
.phone-link {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  margin-right: 0.4rem;
  transition: color 0.2s;
}
.phone-link:hover {
  color: var(--color-accent);
}

.interactive-booking-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.card-header-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.gold-icon {
  font-size: 1.4rem;
}
.card-header-badge h3 {
  font-size: 1.35rem;
}
.card-intro {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 1.8rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #cbd5e1;
}

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

.booking-form input,
.booking-form select {
  width: 100%;
  background: rgba(8, 12, 24, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: #fff;
  font-family: var(--font-arabic);
  font-size: 0.95rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s;
}
.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: #050811;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: 4.5rem 0 2rem;
  position: relative;
  z-index: 10;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-desc {
  font-size: 0.92rem;
  color: var(--color-text-subtle);
  margin-top: 1rem;
  line-height: 1.8;
  max-width: 380px;
}

.footer-title {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-accent);
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-nav a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: var(--color-accent);
}

.footer-phone {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}
.footer-address {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 0.8rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-disclaimer {
  font-size: 0.85rem;
  color: #cbd5e1;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--color-text-subtle);
}

/* ==========================================================================
   Mobile Drawer & Responsive Breakpoints
   ========================================================================== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -320px;
  width: 300px;
  background: #0c1222;
  border-left: 1px solid rgba(212, 175, 55, 0.2);
  z-index: 2000;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}
.drawer-title {
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
}
.drawer-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

.drawer-body {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.drawer-link {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
}
.drawer-contact-info {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
  color: var(--color-text-muted);
}
.drawer-phone {
  margin-top: 0.4rem;
  font-weight: 700;
  color: #fff;
}

/* ==========================================================================
   Scroll-Reveal System Classes
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal-stagger].revealed > *:nth-child(1) { transition-delay: 0.05s; }
[data-reveal-stagger].revealed > *:nth-child(2) { transition-delay: 0.12s; }
[data-reveal-stagger].revealed > *:nth-child(3) { transition-delay: 0.19s; }
[data-reveal-stagger].revealed > *:nth-child(4) { transition-delay: 0.26s; }
[data-reveal-stagger].revealed > *:nth-child(5) { transition-delay: 0.33s; }
[data-reveal-stagger].revealed > *:nth-child(6) { transition-delay: 0.40s; }

[data-reveal-stagger].revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .about-grid,
  .breakfast-wrapper,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .menu-bento-grid {
    grid-template-columns: 1fr 1fr;
  }
  .menu-card.card-featured {
    grid-column: span 2;
  }
  .ambiance-cards-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .menu-bento-grid {
    grid-template-columns: 1fr;
  }
  .menu-card.card-featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .card-media {
    height: 220px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .about-highlights-row,
  .form-row {
    grid-template-columns: 1fr;
  }
}
