/* ============================================================
   MORAL COFFEE SHOP — UI/UX Pro Max Redesign
   Style: Warm Premium Dark + Glassmorphism + Bento Grid
   Palette: Deep Espresso / Golden Amber / Cream / Terracotta
   Fonts: Playfair Display (headings) + Inter (body)
   ============================================================ */

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  /* Core Palette — Light */
  --bg-0: #FAF8F4;
  --bg-1: #F2EDE4;
  --bg-2: #E8E0D2;
  --surface: #FFFFFF;
  --surface-glass: rgba(255,255,255,0.65);

  /* Text */
  --text-primary: #1C1914;
  --text-secondary: #6B6459;
  --text-muted: #A09890;

  /* Brand */
  --amber: #C8892A;
  --amber-light: #E3A94A;
  --amber-glow: rgba(200,137,42,0.18);
  --terracotta: #C06040;
  --terracotta-light: #D97B5A;
  --cream: #F0E8D8;

  /* UI */
  --border: rgba(0,0,0,0.09);
  --border-strong: rgba(0,0,0,0.16);
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 32px var(--amber-glow);

  /* Nav */
  --nav-bg: rgba(250,248,244,0.82);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Radii */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;
  --r-full: 9999px;

  /* Spacing scale (4pt) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-24: 96px;

  /* Animation */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.64, 0, 0.78, 0);
  --dur-fast: 150ms;
  --dur-mid: 250ms;
  --dur-slow: 400ms;

  /* Layout */
  --max-w: 1200px;
  --section-py: 100px;
}

[data-theme="dark"] {
  --bg-0: #131009;
  --bg-1: #1C1910;
  --bg-2: #252117;
  --surface: #2A2519;
  --surface-glass: rgba(30,26,16,0.75);

  --text-primary: #F0E8D8;
  --text-secondary: #B0A494;
  --text-muted: #726A5E;

  --amber: #E3A94A;
  --amber-light: #F0C070;
  --amber-glow: rgba(227,169,74,0.20);
  --terracotta: #D97B5A;
  --terracotta-light: #E89172;
  --cream: #2A2519;

  --border: rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.14);
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.30);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.40);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.55);

  --nav-bg: rgba(19,16,9,0.88);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  background-color: var(--bg-0);
  color: var(--text-primary);
  transition: background-color var(--dur-slow) var(--ease-out),
              color var(--dur-slow) var(--ease-out);
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--text-primary);
}

h4, h5, h6 { font-family: var(--font-body); font-weight: 600; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--amber);
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  border-radius: 0 0 var(--r-sm) 0;
  font-weight: 600;
  transition: top var(--dur-fast) var(--ease-out);
}
.skip-link:focus { top: 0; }

/* ── Layout Helpers ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.section-py { padding: var(--section-py) 0; }
.bg-alt { background-color: var(--bg-1); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--sp-4);
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--sp-4);
  font-weight: 700;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.65;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform var(--dur-mid) var(--ease-out),
              box-shadow var(--dur-mid) var(--ease-out),
              background-color var(--dur-mid) var(--ease-out);
  touch-action: manipulation;
  min-height: 48px;
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--amber), var(--terracotta));
  color: #fff;
  box-shadow: 0 4px 16px rgba(200,137,42,0.30);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,137,42,0.40);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-strong);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: var(--bg-2);
  border-color: var(--text-primary);
  transform: translateY(-2px);
}

.btn-ghost {
  background: none;
  color: var(--amber);
  padding: 0;
  font-size: 0.9rem;
  gap: var(--sp-1);
  min-height: auto;
}

.btn-ghost:hover { opacity: 0.75; }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.25);
}

.btn-whatsapp:hover {
  background: #1EBE5C;
  transform: translateY(-2px);
}

/* ── Navigation ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--dur-mid) var(--ease-out),
              background-color var(--dur-slow) var(--ease-out);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  letter-spacing: -0.02em;
}

.logo .logo-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--amber), var(--terracotta));
  border-radius: 50%;
  display: inline-block;
}

.nav-links {
  display: flex;
  gap: var(--sp-8);
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--dur-mid) var(--ease-out);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--amber);
  border-radius: 2px;
  transition: width var(--dur-mid) var(--ease-out);
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.icon-btn {
  background: none;
  border: 1px solid var(--border);
  font-size: 1rem;
  color: var(--text-primary);
  cursor: pointer;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}

.icon-btn:hover {
  background-color: var(--bg-2);
  transform: scale(1.05);
}

/* Legacy aliases */
.theme-toggle { @extend .icon-btn; }

.mobile-menu-btn { display: none; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  padding: 140px 0 80px;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Ambient background orbs */
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(200,137,42,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: orbit 18s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(192,96,64,0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: orbit 22s ease-in-out infinite alternate-reverse;
}

@keyframes orbit {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.08); }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--surface-glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: var(--sp-5);
  width: fit-content;
}

.hero-eyebrow .pulse {
  width: 8px; height: 8px;
  background: #4CAF50;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(76,175,80,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(76,175,80,0); }
}

.hero h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-5);
  color: var(--text-primary);
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--amber), var(--terracotta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 88%;
  margin-bottom: var(--sp-10);
}

.hero-buttons {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* Hero Image */
.hero-visual {
  position: relative;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}

.hero-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.hero-image-frame:hover img { transform: scale(1.04); }

/* Hero floating stats card */
.hero-stat-card {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--surface-glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  box-shadow: var(--shadow-md);
  min-width: 180px;
  animation: float 4s ease-in-out infinite;
}

.hero-stat-card .stat-icon {
  font-size: 1.75rem;
}

.hero-stat-card .stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.hero-stat-card .stat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.hero-badge-card {
  position: absolute;
  top: 24px; right: -16px;
  background: var(--surface-glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  box-shadow: var(--shadow-md);
  animation: float 5s ease-in-out 1s infinite;
}

.hero-badge-card .stars {
  color: #FFC107;
  font-size: 0.75rem;
  letter-spacing: 2px;
}

.hero-badge-card .badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 2px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── Our Story ───────────────────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}

.story-text .section-title {
  margin-bottom: var(--sp-5);
}

.story-text p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: var(--sp-8);
}

/* Bento-style feature cards */
.features-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: transform var(--dur-mid) var(--ease-out),
              box-shadow var(--dur-mid) var(--ease-out),
              border-color var(--dur-mid) var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--amber);
}

.feature-card:first-child {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: var(--sp-5);
}

.feature-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--amber-glow);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--amber);
  flex-shrink: 0;
}

.feature-card h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--sp-1);
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ── Menu Carousel ───────────────────────────────────────────── */
.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--sp-8);
}

.menu-controls {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.carousel-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  background: var(--surface);
  color: var(--text-primary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
  touch-action: manipulation;
}

.carousel-btn:hover {
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
  transform: scale(1.08);
}

/* Scrollable carousel track */
.menu-carousel {
  display: flex;
  gap: var(--sp-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: var(--sp-4);
  cursor: grab;
}

.menu-carousel:active { cursor: grabbing; }
.menu-carousel::-webkit-scrollbar { display: none; }

.carousel-item {
  flex: 0 0 260px;
  scroll-snap-align: start;
}

/* Menu Card */
.carousel-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--dur-mid) var(--ease-out),
              box-shadow var(--dur-mid) var(--ease-out),
              border-color var(--dur-mid) var(--ease-out);
  position: relative;
  height: 340px;
}

.carousel-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,137,42,0.25);
}

.carousel-card:hover .card-img img {
  transform: scale(1.07);
}

.card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-2);
  flex-shrink: 0;
}

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

.card-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  color: var(--text-muted);
  background: linear-gradient(135deg, var(--bg-1), var(--bg-2));
}

/* Fav / Badge overlay */
.card-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(255,255,255,0.92);
  color: #1C1914;
  padding: 3px 9px;
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid rgba(0,0,0,0.08);
  z-index: 5;
}

[data-theme="dark"] .card-badge {
  background: rgba(30,26,16,0.90);
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.10);
}

.fav-btn {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(6px);
  border: none;
  display: flex; align-items: center; justify-content: center;
  color: #555;
  cursor: pointer;
  z-index: 5;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
  touch-action: manipulation;
}

.fav-btn:hover {
  background: #fff;
  color: var(--terracotta);
  transform: scale(1.12);
}

.fav-btn.active {
  color: var(--terracotta);
  background: #fff;
}

/* Card Body */
.card-body {
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--sp-2);
}

.card-body h3 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.card-body .subtitle {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border);
}

.rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-primary);
}

.rating i {
  color: #FFC107;
  font-size: 0.7rem;
}

.review-count {
  color: var(--text-muted);
  font-weight: 400;
}

.price {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--amber);
  font-variant-numeric: tabular-nums;
}

/* ── Gallery ─────────────────────────────────────────────────── */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: var(--sp-4);
}

.gallery-item {
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--bg-2);
}

.gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }
.gallery-item:nth-child(4) { grid-column: 4; grid-row: 1 / 3; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  transition: transform 0.5s var(--ease-out);
}

.gallery-item:nth-child(1) img,
.gallery-item:nth-child(4) img { min-height: 380px; }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--dur-mid) var(--ease-out);
}

.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover img { transform: scale(1.05); }

/* ── Location & Hours ────────────────────────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}

.map-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  min-height: 420px;
  position: relative;
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: none;
}

.location-info { }

.location-info .section-title { margin-bottom: var(--sp-8); }

.address-card {
  display: flex;
  gap: var(--sp-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  margin-bottom: var(--sp-6);
}

.address-card .pin-icon {
  font-size: 1.25rem;
  color: var(--amber);
  margin-top: 2px;
  flex-shrink: 0;
}

.address-card .fr { font-weight: 600; margin-bottom: 4px; }
.address-card .ar { direction: rtl; color: var(--text-secondary); font-size: 0.9rem; margin-bottom: var(--sp-2); }
.address-card .landmark {
  display: inline-block;
  font-size: 0.8rem;
  padding: 3px 10px;
  background: var(--amber-glow);
  border: 1px solid rgba(200,137,42,0.2);
  border-radius: var(--r-full);
  color: var(--amber);
  font-weight: 500;
}

.hours-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: var(--sp-5);
}

.hours-head {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  background: var(--amber-glow);
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--amber);
}

.hour-row {
  display: flex;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.hour-row:last-child { border-bottom: none; }

.hour-row.today {
  background: var(--amber-glow);
  color: var(--amber);
  font-weight: 700;
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: var(--sp-24) 0 var(--sp-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--sp-16);
  margin-bottom: var(--sp-16);
}

.footer-brand .logo {
  margin-bottom: var(--sp-4);
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: var(--sp-6);
}

.social-links {
  display: flex;
  gap: var(--sp-3);
}

.social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  font-size: 1rem;
  transition: background-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}

.social-links a:hover {
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-5);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-links a {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color var(--dur-fast) var(--ease-out);
}

.footer-links a:hover { color: var(--amber); }

.contact-link {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color var(--dur-fast) var(--ease-out);
  margin-bottom: var(--sp-4);
  font-weight: 500;
}

.contact-link i { color: var(--amber); width: 18px; }
.contact-link:hover { color: var(--text-primary); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ── Lightbox ────────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
}

.lightbox.active { display: flex; }

.lightbox-content {
  max-width: 90%;
  max-height: 90dvh;
  border-radius: var(--r-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  animation: lb-in 0.3s var(--ease-out);
}

@keyframes lb-in {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.close-lightbox {
  position: absolute;
  top: var(--sp-6); right: var(--sp-6);
  color: rgba(255,255,255,0.7);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color var(--dur-fast);
  background: none;
  border: none;
}

.close-lightbox:hover { color: #fff; }

/* ── Entrance Animations ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

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

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
  }

  .hero {
    padding-top: 110px;
    min-height: auto;
  }

  .hero-image-frame { aspect-ratio: 16/9; }

  .hero-stat-card { bottom: -12px; left: 16px; }

  .story-grid { grid-template-columns: 1fr; }
  .features-bento { grid-template-columns: 1fr 1fr; }
  .feature-card:first-child { grid-column: auto; flex-direction: column; }

  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item img { min-height: 220px !important; }

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

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

@media (max-width: 768px) {
  :root { --section-py: 64px; }

  /* Nav mobile */
  .nav-links {
    display: none;
    position: absolute;
    top: 76px; left: 0;
    width: 100%;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--sp-5) var(--sp-6) var(--sp-6);
    border-bottom: 1px solid var(--border);
    gap: var(--sp-5);
    z-index: 999;
  }

  .nav-links.active { display: flex; }

  .nav-links a { font-size: 1rem; }

  .mobile-menu-btn { display: flex; }

  .hero h1 { font-size: 2.5rem; }
  .hero-sub { max-width: 100%; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-badge-card { display: none; }

  .features-bento { grid-template-columns: 1fr; }
  .feature-card:first-child { flex-direction: column; }

  .menu-header { flex-direction: column; align-items: flex-start; gap: var(--sp-4); }

  .carousel-item { flex: 0 0 240px; }

  .gallery-masonry { grid-template-columns: 1fr 1fr; gap: var(--sp-3); }

  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-10); }
  .footer-bottom { flex-direction: column; gap: var(--sp-3); text-align: center; }
}

@media (max-width: 480px) {
  .gallery-masonry { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-column: auto; grid-row: auto;
  }
}

/* ── Reduced Motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero::before, .hero::after,
  .hero-stat-card, .hero-badge-card { animation: none; }
}
