/* ============================================================
   LAVA GRILL — Design Tokens
   Mediterranean + Bangladeshi grill. Warm ember/charcoal palette
   derived from the restaurant's own flame-logo identity.
   ============================================================ */

:root,
[data-theme='light'] {
  /* Surfaces — warm parchment */
  --color-bg: #fbf5e9;
  --color-surface: #ffffff;
  --color-surface-2: #fffdf8;
  --color-surface-offset: #f3ead6;
  --color-surface-offset-2: #ece0c5;
  --color-surface-dynamic: #e3d3ac;
  --color-divider: #e6d9bc;
  --color-border: #d9c7a0;

  /* Text — warm charcoal */
  --color-text: #241a0f;
  --color-text-muted: #7c6a51;
  --color-text-faint: #baa787;
  --color-text-inverse: #fbf5e9;

  /* Primary accent — ember orange-red */
  --color-primary: #c7420c;
  --color-primary-hover: #a2350a;
  --color-primary-active: #7d2a08;
  --color-primary-highlight: #f3d9c8;

  /* Gold — for prices, secondary highlights */
  --color-gold: #a86d08;
  --color-gold-hover: #895905;
  --color-gold-active: #684403;
  --color-gold-highlight: #efdcac;

  --color-success: #3f6f2b;
  --color-error: #a12c2c;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1.25rem;
  --radius-full: 9999px;

  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm: 0 1px 2px oklch(0.25 0.03 40 / 0.1);
  --shadow-md: 0 4px 14px oklch(0.25 0.03 40 / 0.14);
  --shadow-lg: 0 16px 40px oklch(0.25 0.03 40 / 0.2);

  --content-narrow: 640px;
  --content-default: 1000px;
  --content-wide: 1240px;
  --content-full: 100%;

  --font-display: 'Cabinet Grotesk', 'Arial Black', sans-serif;
  --font-body: 'Satoshi', 'Helvetica Neue', sans-serif;
}

[data-theme='dark'] {
  --color-bg: #15110c;
  --color-surface: #1c160f;
  --color-surface-2: #221a12;
  --color-surface-offset: #251d14;
  --color-surface-offset-2: #2d2317;
  --color-surface-dynamic: #392c1c;
  --color-divider: #2c2216;
  --color-border: #3b2e1c;

  --color-text: #f3ead9;
  --color-text-muted: #b6a488;
  --color-text-faint: #6f6250;
  --color-text-inverse: #1c160f;

  --color-primary: #f0672c;
  --color-primary-hover: #f58449;
  --color-primary-active: #d3560f;
  --color-primary-highlight: #402616;

  --color-gold: #e3ab42;
  --color-gold-hover: #edc06b;
  --color-gold-active: #c28c22;
  --color-gold-highlight: #3c2e14;

  --color-success: #7bb454;
  --color-error: #dd6a6a;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.35);
  --shadow-md: 0 6px 18px oklch(0 0 0 / 0.4);
  --shadow-lg: 0 20px 50px oklch(0 0 0 / 0.55);
}

/* ---- Type scale ---- */
:root {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.4rem);
  --text-xl: clamp(1.4rem, 1.15rem + 1.25vw, 2.1rem);
  --text-2xl: clamp(1.9rem, 1.2rem + 2.5vw, 3.25rem);
  --text-3xl: clamp(2.4rem, 1rem + 4vw, 4.6rem);
  --text-hero: clamp(2.8rem, 0.9rem + 6.2vw, 6.8rem);
}

/* ---- Spacing ---- */
:root {
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
}

/* ============================================================
   Base overrides
   ============================================================ */
body {
  background-color: var(--color-bg);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 4vw, var(--space-10));
}

.container--narrow {
  max-width: var(--content-default);
}

section {
  position: relative;
}

.section-pad {
  padding-block: clamp(var(--space-16), 9vw, var(--space-32));
}
.section-pad--tight {
  padding-block: clamp(var(--space-10), 6vw, var(--space-20));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--color-primary);
  display: inline-block;
}

.section-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-top: var(--space-3);
  max-width: 20ch;
}

.section-lede {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 56ch;
  margin-top: var(--space-4);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  white-space: nowrap;
  transition:
    background var(--transition-interactive),
    color var(--transition-interactive),
    box-shadow var(--transition-interactive),
    transform var(--transition-interactive),
    border-color var(--transition-interactive);
}
.btn svg { width: 1.05em; height: 1.05em; }

.btn-primary {
  background: var(--color-primary);
  color: #fff8ef;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid oklch(from var(--color-text) l c h / 0.22);
}
.btn-ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-light {
  background: var(--color-text-inverse);
  color: var(--color-text);
}
.btn-light:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-sm { padding: 0.6rem 1.15rem; font-size: var(--text-xs); }
.btn-block { width: 100%; }

/* ============================================================
   Header
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: oklch(from var(--color-bg) l c h / 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.08);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.header--hidden { transform: translateY(-100%); }
.header--scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-3);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.brand-mark {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 5px 10px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.brand-mark img { height: 30px; width: auto; display: block; }
.brand-text {
  display: none;
}
@media (min-width: 480px) {
  .brand-text { display: block; }
  .brand-text .tagline {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    letter-spacing: 0.04em;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: var(--space-8);
}
@media (min-width: 980px) {
  .nav-desktop { display: flex; }
}
.nav-desktop a {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  position: relative;
  padding-block: var(--space-1);
}
.nav-desktop a:hover { color: var(--color-text); }
.nav-desktop a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-interactive);
}
.nav-desktop a:hover::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text);
}
.icon-btn:hover { background: var(--color-surface-offset); }
.icon-btn svg { width: 19px; height: 19px; }

.menu-toggle {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
}
.menu-toggle:hover { background: var(--color-surface-offset); }
@media (min-width: 980px) { .menu-toggle { display: none; } }

.mobile-nav {
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--color-bg);
  z-index: 70;
  padding: var(--space-6) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-nav nav {
  display: flex;
  flex-direction: column;
}
.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--color-divider);
}
.mobile-nav-cta { margin-top: auto; display: flex; flex-direction: column; gap: var(--space-3); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff8ef;
  overflow: hidden;
  background: #0f0b07;
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.62;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, oklch(0.08 0.02 40 / 0.55) 0%, oklch(0.08 0.02 40 / 0.55) 40%, oklch(0.06 0.02 40 / 0.92) 100%),
    linear-gradient(90deg, oklch(0.06 0.02 40 / 0.75) 0%, oklch(0.06 0.02 40 / 0.15) 62%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(var(--space-24), 14vw, var(--space-32));
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffd9a8;
  background: oklch(0.2 0.05 40 / 0.55);
  border: 1px solid oklch(1 0 0 / 0.14);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
}
.hero h1 {
  margin-top: var(--space-6);
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: 0.98;
  max-width: 16ch;
}
.hero h1 em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(120deg, #ff9b3f, #ff5d2e 55%, #ffcf6b);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-sub {
  margin-top: var(--space-5);
  font-size: var(--text-lg);
  color: #f3e2cc;
  max-width: 46ch;
  font-weight: 500;
}
.hero-actions {
  margin-top: var(--space-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.hero-meta {
  margin-top: var(--space-10);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: #f3e2cc;
}
.hero-meta-item svg { width: 18px; height: 18px; color: #ffb06a; flex-shrink: 0; }

/* ============================================================
   Trust strip
   ============================================================ */
.trust-strip {
  background: var(--color-surface-offset);
  border-bottom: 1px solid var(--color-divider);
}
.trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5) var(--space-6);
  padding-block: var(--space-8);
}
@media (min-width: 720px) {
  .trust-list { grid-template-columns: repeat(4, 1fr); }
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}
.trust-item svg {
  width: 22px; height: 22px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-item h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  font-family: var(--font-body);
}
.trust-item p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ============================================================
   Story / two cuisines
   ============================================================ */
.story-grid {
  display: grid;
  gap: var(--space-10);
  margin-top: var(--space-12);
}
@media (min-width: 860px) {
  .story-grid { grid-template-columns: 1fr 1fr; }
}
.story-card {
  display: grid;
  gap: var(--space-5);
}
@media (min-width: 640px) {
  .story-card { grid-template-columns: 1fr; }
}
.story-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}
.story-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.story-card:hover .story-photo img { transform: scale(1.04); }
.story-copy h3 {
  font-size: var(--text-xl);
  font-weight: 700;
}
.story-copy .tag {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.story-copy p {
  margin-top: var(--space-3);
  color: var(--color-text-muted);
}

/* ============================================================
   Gallery
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-10);
}
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-sm);
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
@media (max-width: 639px) {
  .gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16/11; }
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--space-3) var(--space-3);
  background: linear-gradient(180deg, transparent, oklch(0.08 0.02 40 / 0.82));
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ============================================================
   Menu
   ============================================================ */
.menu-section {
  background: var(--color-surface-offset);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}
.menu-toolbar {
  margin-top: var(--space-10);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.menu-search {
  position: relative;
  max-width: 420px;
}
.menu-search input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.6rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  font-size: var(--text-sm);
  color: var(--color-text);
}
.menu-search input:focus-visible { border-color: var(--color-primary); }
.menu-search svg {
  position: absolute;
  left: 1rem; top: 50%; transform: translateY(-50%);
  width: 17px; height: 17px;
  color: var(--color-text-faint);
}
.menu-tabs {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  padding-bottom: var(--space-2);
  scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  flex-shrink: 0;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  white-space: nowrap;
}
.menu-tab:hover { color: var(--color-text); border-color: var(--color-primary); }
.menu-tab.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff8ef;
}

.menu-panel {
  margin-top: var(--space-10);
}
.menu-category {
  margin-bottom: var(--space-14, 3.5rem);
}
.menu-category-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: var(--space-3);
  margin-bottom: var(--space-5);
}
.menu-category-head h3 {
  font-size: var(--text-lg);
  font-weight: 700;
}
.menu-category-note {
  font-size: var(--text-xs);
  color: var(--color-gold);
  font-weight: 700;
  background: var(--color-gold-highlight);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
}
.menu-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2) var(--space-8);
}
@media (min-width: 760px) {
  .menu-items { grid-template-columns: 1fr 1fr; }
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-4);
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--color-divider);
}
.menu-item-name {
  font-weight: 700;
  font-size: var(--text-base);
}
.menu-item-desc {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 2px;
}
.menu-item-price {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-gold);
  white-space: nowrap;
  font-size: var(--text-base);
}
.menu-empty {
  display: none;
  text-align: center;
  padding: var(--space-16) var(--space-4);
  color: var(--color-text-muted);
}
.menu-empty.is-visible { display: block; }

/* ============================================================
   Catering / order strip
   ============================================================ */
.order-band {
  background: var(--color-text);
  color: var(--color-text-inverse);
  position: relative;
  overflow: hidden;
}
[data-theme='dark'] .order-band { background: var(--color-surface-offset-2); }
.order-band-grid {
  display: grid;
  gap: var(--space-10);
  align-items: center;
}
@media (min-width: 900px) {
  .order-band-grid { grid-template-columns: 1.1fr 0.9fr; }
}
.order-band h2 { font-size: var(--text-2xl); font-weight: 800; }
.order-band p { margin-top: var(--space-4); opacity: 0.82; max-width: 48ch; }
.order-phone {
  display: inline-flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-top: var(--space-6);
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-primary);
}
[data-theme='dark'] .order-phone,
.order-band .order-phone { color: #ff9752; }
.order-band-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-6); }

.partner-card {
  background: oklch(from var(--color-text-inverse) l c h / 0.06);
  border: 1px solid oklch(from var(--color-text-inverse) l c h / 0.14);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}
.partner-card h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}
.partner-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}
.partner-chip {
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  background: oklch(from var(--color-text-inverse) l c h / 0.09);
  border: 1px solid oklch(from var(--color-text-inverse) l c h / 0.16);
}
.partner-divider { margin: var(--space-5) 0; border-top: 1px solid oklch(from var(--color-text-inverse) l c h / 0.14); }
.partner-note { font-size: var(--text-xs); opacity: 0.7; margin-top: var(--space-3); }

/* ============================================================
   Location
   ============================================================ */
.location-grid {
  display: grid;
  gap: var(--space-10);
  margin-top: var(--space-10);
}
@media (min-width: 900px) {
  .location-grid { grid-template-columns: 0.9fr 1.1fr; }
}
.info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
}
.info-row {
  display: flex;
  gap: var(--space-4);
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--color-divider);
}
.info-row:last-child { border-bottom: none; }
.info-row svg {
  width: 22px; height: 22px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.info-row h4 { font-size: var(--text-sm); font-weight: 700; }
.info-row p { font-size: var(--text-sm); color: var(--color-text-muted); margin-top: 2px; }
.info-row a:hover { color: var(--color-primary); }

.map-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 340px;
  border: 1px solid var(--color-border);
  background: var(--color-surface-2);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

.hours-table {
  width: 100%;
  margin-top: 0;
}
.hours-table tr { border-bottom: 1px solid var(--color-divider); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding-block: var(--space-2); font-size: var(--text-sm); }
.hours-table td:last-child { text-align: right; color: var(--color-text-muted); }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: #120e09;
  color: #e8dcc8;
  padding-block: var(--space-16) var(--space-8);
}
.footer-grid {
  display: grid;
  gap: var(--space-10);
}
@media (min-width: 780px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
}
.footer-brand img { height: 34px; }
.footer-brand p { margin-top: var(--space-4); color: #a8977c; font-size: var(--text-sm); max-width: 32ch; }
.footer h5 {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #cbb894;
  margin-bottom: var(--space-4);
}
.footer ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer a { font-size: var(--text-sm); color: #cabb9e; }
.footer a:hover { color: #ff9752; }
.footer-bottom {
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid oklch(1 0 0 / 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: #8a7a60;
}

/* ============================================================
   Floating call bar (mobile)
   ============================================================ */
.call-fab {
  position: fixed;
  bottom: var(--space-4);
  right: var(--space-4);
  z-index: 55;
  display: none;
}
@media (max-width: 719px) {
  .call-fab { display: flex; }
}
.call-fab a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: var(--color-primary);
  color: #fff8ef;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  font-weight: 700;
  font-size: var(--text-sm);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.call-fab svg { width: 22px; height: 22px; flex-shrink: 0; }
.call-fab .call-fab-label { display: none; }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 1; }
@supports (animation-timeline: scroll()) {
  .reveal {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 45%;
  }
}
@keyframes reveal-fade { to { opacity: 1; } }

/* ============================================================
   Misc
   ============================================================ */
.flex-center { display: flex; align-items: center; }
.text-muted { color: var(--color-text-muted); }
.badge-halal {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-success);
  background: oklch(from var(--color-success) l c h / 0.12);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: var(--space-2);
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  z-index: 100;
}
.skip-link:focus { left: var(--space-2); }
