:root {
  --dark: #16110D;
  --dark-mid: #221A12;
  --saffron: #E8A317;
  --saffron-soft: #F4C14F;
  --saffron-deep: #C8870B;
  --herb: #2E7D4F;
  --herb-deep: #226139;
  --accent: #E8A317;
  --accent-2: #2E7D4F;
  --surface: #1E1812;
  --surface-alt: #2A2018;
  --paper: #FBF6EC;
  --paper-warm: #F1E7D2;
  --text: #F5EEE0;
  --text-dark: #16110D;
  --text-muted: #B0A593;
  --muted-dark: #5E5141;
  --white: #FBF6EC;
  --border: #342818;
  --nav-height: 72px;
  --font-heading: "Outfit", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --radius: 10px;
  --grad-dark: linear-gradient(135deg, #16110D 0%, #221A12 60%, #0f0b07 100%);
  --grad-surface: linear-gradient(160deg, #1E1812 0%, #2A2018 100%);
  --grad-paper: linear-gradient(165deg, #FBF6EC 0%, #F1E7D2 100%);
  --grad-saffron: linear-gradient(135deg, #E8A317 0%, #C8870B 100%);
  --grad-herb: linear-gradient(135deg, #2E7D4F 0%, #226139 100%);
  --shadow-raised: 0 18px 46px rgba(0, 0, 0, .22);
  --shadow-dark: 0 24px 70px rgba(0, 0, 0, .42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text-dark);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 0% 0%, rgba(232, 163, 23, .14), transparent 28%),
    linear-gradient(180deg, #fff9ec 0%, var(--paper) 38%, #efe3cc 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .34;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(22, 17, 13, .045) 1px, transparent 1px),
    linear-gradient(rgba(22, 17, 13, .04) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(232, 163, 23, .18) 1px, transparent 1px);
  background-size: 48px 48px, 48px 48px, 14px 14px;
  mask-image: linear-gradient(180deg, black, transparent 86%);
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

h1, h2, h3, h4,
.section-label,
.btn,
.price,
.nav-type {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0;
  line-height: .98;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(3.35rem, 9vw, 8.9rem);
  text-wrap: balance;
}
h2 {
  font-size: clamp(2.4rem, 5.7vw, 5.6rem);
  text-wrap: balance;
}
h3 {
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
  text-wrap: balance;
}
p, li {
  font-size: 1rem;
  line-height: 1.75;
  text-wrap: pretty;
}

a:focus-visible, button:focus-visible, [tabindex]:focus-visible,
input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--accent, #E85D04);
  outline-offset: 2px;
  border-radius: 2px;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: clamp(76px, 10vw, 132px) 0;
}

.section.dark {
  color: var(--white);
  background:
    var(--grad-dark),
    radial-gradient(circle at 82% 8%, rgba(232, 163, 23, .18), transparent 34%),
    radial-gradient(circle at 12% 84%, rgba(46, 125, 79, .14), transparent 34%);
}

.section.paper {
  background:
    var(--grad-paper),
    radial-gradient(circle at 8% 18%, rgba(232, 163, 23, .16), transparent 34%),
    radial-gradient(circle at 88% 92%, rgba(46, 125, 79, .1), transparent 32%);
}

.section.ombre::before,
.section.ombre-reverse::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 110px;
  pointer-events: none;
}

.section.ombre::before {
  background: linear-gradient(to bottom, #0f0b07 0%, rgba(251, 246, 236, 0) 100%);
}

.section.ombre-reverse::before {
  background: linear-gradient(to bottom, #FBF6EC 0%, rgba(22, 17, 13, 0) 100%);
}

.section-head {
  display: grid;
  gap: 16px;
  max-width: 820px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted-dark);
}

.demo-note {
  max-width: 680px;
  color: var(--muted-dark);
  font-size: .93rem;
  line-height: 1.6;
}

.dark .section-head p,
.dark p,
.dark li {
  color: rgba(251, 246, 236, .72);
}

.section-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  color: var(--saffron);
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-label::before,
.eyebrow::before {
  content: "";
  width: 36px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--saffron), var(--herb));
  box-shadow: 0 0 24px rgba(232, 163, 23, .34);
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  min-width: 44px;
  padding: 0 24px;
  border: 0;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  font-size: 1rem;
  text-transform: uppercase;
  transition-property: transform, box-shadow, background-color, color, border-color;
  transition-duration: .22s;
  transition-timing-function: ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -20% auto -20% -38%;
  z-index: -1;
  width: 38%;
  transform: skewX(-18deg);
  background: rgba(255, 255, 255, .35);
  transition: left .42s ease;
}

.btn:hover { transform: translateY(-3px); }
.btn:hover::before { left: 118%; }
.btn:active { transform: translateY(-1px) scale(.985); }

.btn-primary {
  color: var(--dark);
  background: linear-gradient(135deg, var(--saffron), var(--saffron-soft));
  box-shadow: 0 0 44px rgba(232, 163, 23, .26);
}

.btn-herb {
  color: var(--white);
  background: var(--grad-herb);
  box-shadow: 0 0 38px rgba(46, 125, 79, .26);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(251, 246, 236, .3);
  background: rgba(255, 255, 255, .06);
}

.btn-ghost:hover {
  color: var(--saffron);
  border-color: rgba(232, 163, 23, .62);
  background: rgba(232, 163, 23, .08);
}

.btn-dark {
  color: var(--white);
  background: var(--grad-dark);
}

.clicked { animation: clickPop .34s ease; }

.hero {
  min-height: 94vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: var(--grad-dark);
}

.hero-bg,
.page-hero {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/hero-poster.webp");
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(22, 17, 13, .88) 0%, rgba(22, 17, 13, .38) 48%, rgba(22, 17, 13, .12) 100%),
    radial-gradient(circle at 76% 24%, rgba(232, 163, 23, .16), transparent 32%),
    radial-gradient(circle at 12% 72%, rgba(46, 125, 79, .16), transparent 28%);
}

.hero::after,
.featured-grain::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .045;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.65' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: calc(var(--nav-height) + 78px) 24px 82px clamp(24px, 6vw, 72px);
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 22px;
}

.hero p {
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(251, 246, 236, .82);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-badges,
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.halal-badge,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 11px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(46, 125, 79, .82), rgba(34, 97, 57, .74));
  border: 1px solid rgba(87, 190, 128, .38);
  border-radius: 999px;
  font: 900 .72rem/1 var(--font-body);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tag.saffron {
  color: var(--dark);
  background: linear-gradient(135deg, var(--saffron), var(--saffron-soft));
  border-color: rgba(232, 163, 23, .42);
}

.ticker {
  overflow: hidden;
  color: var(--dark);
  background:
    linear-gradient(135deg, #E8A317 0%, #F4C14F 55%, #C8870B 100%),
    radial-gradient(circle at 12% 50%, rgba(255, 255, 255, .36), transparent 28%);
  border-block: 1px solid rgba(22, 17, 13, .14);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker:hover .ticker-track { animation-play-state: paused; }

.ticker span {
  flex: 0 0 auto;
  padding: 14px 24px;
  font: 900 .84rem/1 var(--font-body);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.page-hero {
  min-height: 52vh;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: end start;
  color: var(--white);
  background-image:
    linear-gradient(135deg, rgba(22, 17, 13, .88), rgba(34, 26, 18, .74)),
    url("images/hero-poster.webp");
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(232, 163, 23, .28), transparent 30%),
    radial-gradient(circle at 12% 84%, rgba(46, 125, 79, .18), transparent 34%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-height) + 86px) 0 68px;
}

.page-hero p {
  max-width: 700px;
  color: rgba(251, 246, 236, .78);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.menu-tile,
.service-card,
.order-card,
.team-card,
.review-card,
.gallery-card,
.info-card,
.faq-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(52, 40, 24, .13);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(241, 231, 210, .88)),
    radial-gradient(circle at 82% 0%, rgba(232, 163, 23, .2), transparent 34%);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
  transition-property: transform, border-color, box-shadow, filter;
  transition-duration: .28s;
  transition-timing-function: ease;
}

.menu-tile:hover,
.service-card:hover,
.order-card:hover,
.team-card:hover,
.review-card:hover,
.gallery-card:hover,
.info-card:hover {
  transform: translateY(-7px);
  border-color: rgba(232, 163, 23, .58);
  box-shadow: var(--shadow-raised);
}

.menu-tile {
  min-height: 350px;
  display: grid;
  grid-template-rows: 170px 1fr;
}

.menu-tile.feature { grid-column: span 2; }

.menu-tile img,
.gallery-card img,
.alt-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .68s ease, filter .68s ease;
  outline: 1px solid rgba(0, 0, 0, .1);
  outline-offset: -1px;
}

.menu-tile:hover img,
.gallery-card:hover img,
.alt-row:hover .alt-media img {
  transform: scale(1.055);
  filter: saturate(1.12) contrast(1.04);
}

.tile-body {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.tile-body h3,
.service-card h3,
.order-card h3,
.team-card h3,
.info-card h3 {
  margin: 0;
  color: var(--text-dark);
}

.tile-body p,
.service-card p,
.order-card p,
.team-card p,
.info-card p,
.review-card p {
  color: var(--muted-dark);
}

.price {
  color: var(--saffron-deep);
  font-size: 1.05rem;
  text-transform: uppercase;
}

.bento-icon {
  position: relative;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--dark);
  border-radius: 12px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-soft));
  box-shadow: 0 12px 28px rgba(232, 163, 23, .26);
}

.bento-icon::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(232, 163, 23, .42);
  border-radius: 14px;
  transform: rotate(6deg);
  animation: iconOrbit 5.4s linear infinite;
}

.bento-icon::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 8px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .38), transparent);
  transform: translateX(-120%);
  animation: iconSweep 3.6s ease-in-out infinite;
}

.service-card:hover .bento-icon,
.order-card:hover .bento-icon,
.info-card:hover .bento-icon {
  animation: iconJolt .52s ease;
}

.stats-strip {
  color: var(--white);
  background:
    var(--grad-dark),
    radial-gradient(circle at 84% 30%, rgba(232, 163, 23, .2), transparent 34%);
  border-block: 1px solid rgba(232, 163, 23, .24);
  overflow: hidden;
}

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

.stat {
  position: relative;
  min-height: 230px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 50% 15%, rgba(232, 163, 23, .1), transparent 36%);
}

.stat::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(232, 163, 23, .14);
  transform: skewX(-4deg);
}

.stat-number {
  display: block;
  color: var(--saffron);
  font-family: var(--font-heading);
  font-size: clamp(3.3rem, 8vw, 7.1rem);
  font-weight: 800;
  line-height: .9;
  text-shadow: 0 0 30px rgba(232, 163, 23, .22);
}

.stat-label {
  display: block;
  margin-top: 8px;
  color: rgba(251, 246, 236, .74);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
}

.alternating {
  display: grid;
  gap: 28px;
}

.alt-row {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 36px;
  align-items: center;
}

.alt-row.reverse { grid-template-columns: 1.05fr .95fr; }
.alt-row.reverse .alt-media { order: 2; }

.alt-media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--grad-dark);
  box-shadow: var(--shadow-raised);
}

.alt-content {
  padding: clamp(24px, 4vw, 44px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(241, 231, 210, .84)),
    radial-gradient(circle at 100% 0%, rgba(232, 163, 23, .18), transparent 32%);
  border: 1px solid rgba(52, 40, 24, .1);
}

.dark .alt-content {
  color: var(--white);
  background:
    var(--grad-surface),
    radial-gradient(circle at 100% 0%, rgba(232, 163, 23, .16), transparent 32%);
  border-color: rgba(232, 163, 23, .16);
}

.tick-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.tick-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 700;
}

.tick-list i {
  color: var(--herb);
  margin-top: 4px;
  flex: 0 0 auto;
}

.order-band,
.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(46px, 7vw, 78px) 0;
}

.order-band {
  color: var(--dark);
  background:
    linear-gradient(135deg, #E8A317 0%, #F4C14F 42%, #C8870B 100%),
    radial-gradient(circle at 90% 0%, rgba(255, 255, 255, .58), transparent 30%);
}

.order-band::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(45deg, rgba(22, 17, 13, .22) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(22, 17, 13, .2) 25%, transparent 25%);
  background-size: 28px 28px;
}

.cta-band {
  color: var(--white);
  background:
    var(--grad-dark),
    radial-gradient(circle at 100% 10%, rgba(232, 163, 23, .22), transparent 30%);
}

.band-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.band-grid h2 { margin-bottom: 12px; }
.band-grid p { max-width: 720px; color: rgba(22, 17, 13, .75); }
.cta-band .band-grid p { color: rgba(251, 246, 236, .72); }

.order-options,
.service-grid,
.team-grid,
.review-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.order-card,
.service-card,
.team-card,
.info-card {
  padding: 26px;
}

.order-card h3,
.service-card h3,
.team-card h3,
.info-card h3 {
  margin-top: 18px;
  margin-bottom: 10px;
}

.review-marquee {
  display: grid;
  gap: 18px;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marqueeLeft 36s linear infinite;
}

.marquee-track.reverse {
  animation-name: marqueeRight;
  animation-duration: 42s;
}

.review-marquee:hover .marquee-track { animation-play-state: paused; }

.review-card {
  width: 355px;
  min-height: 218px;
  padding: 24px;
  flex: 0 0 auto;
}

.stars {
  color: var(--saffron-deep);
  letter-spacing: .08em;
  margin-bottom: 14px;
  font-weight: 900;
}

.review-card strong { display: block; margin-top: 14px; }
.review-card span { color: var(--muted-dark); font-size: .9rem; }

.dark .review-card {
  color: var(--text-dark);
}

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

.gallery-card {
  min-height: 260px;
  background: var(--grad-dark);
}

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

.gallery-card figcaption {
  position: absolute;
  inset: auto 14px 14px 14px;
  padding: 14px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(22, 17, 13, .92), rgba(34, 26, 18, .84));
  border-left: 3px solid var(--saffron);
  transform: translateY(18px);
  opacity: 0;
  transition: transform .28s ease, opacity .28s ease;
}

.gallery-card:hover figcaption { transform: translateY(0); opacity: 1; }

.menu-category {
  padding: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(241, 231, 210, .84)),
    radial-gradient(circle at 100% 0%, rgba(232, 163, 23, .14), transparent 30%);
  border: 1px solid rgba(52, 40, 24, .12);
}

.menu-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.menu-list li {
  display: grid;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(52, 40, 24, .12);
}

.menu-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.menu-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.menu-row strong {
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.menu-row .price {
  white-space: nowrap;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: start;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(241, 231, 210, .84)),
    radial-gradient(circle at 92% 0%, rgba(232, 163, 23, .18), transparent 34%);
  border: 1px solid rgba(52, 40, 24, .12);
  box-shadow: var(--shadow-raised);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full { grid-column: 1 / -1; }
.form-hidden { display: none; }
.consent-field {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
}
.consent-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--herb);
}
.consent-field label {
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0;
}
.field-hint {
  margin: -1px 0 2px;
  color: rgba(52, 40, 24, .68);
  font-size: .91rem;
  line-height: 1.45;
}

label {
  font-weight: 900;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

input, select, textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(52, 40, 24, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .8);
  color: var(--text-dark);
  padding: 14px 15px;
  transition-property: border-color, box-shadow, transform;
  transition-duration: .2s;
  transition-timing-function: ease;
}

textarea { min-height: 140px; resize: vertical; }

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--saffron-deep);
  box-shadow: 0 0 0 4px rgba(232, 163, 23, .2);
  transform: translateY(-1px);
}

.contact-card {
  padding: 30px;
  color: var(--white);
  background:
    var(--grad-dark),
    radial-gradient(circle at 90% 0%, rgba(232, 163, 23, .22), transparent 34%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-dark);
}

.contact-card a {
  color: var(--saffron);
  text-decoration: none;
  font-weight: 900;
}

.map-card {
  min-height: 340px;
  overflow: hidden;
  color: rgba(251, 246, 236, .82);
  text-align: center;
  border-radius: var(--radius);
  background: var(--grad-dark);
  box-shadow: var(--shadow-dark);
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 380px;
  border: 0;
}

.faq-list { display: grid; gap: 12px; }

.faq-item button {
  width: 100%;
  min-height: 52px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.faq-item button span {
  color: var(--saffron-deep);
  font-family: var(--font-heading);
  font-size: 1.45rem;
}

.faq-panel {
  padding: 0 20px 18px;
  color: var(--muted-dark);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 1190;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--grad-herb);
  border: 1px solid rgba(251, 246, 236, .18);
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 16px 42px rgba(46, 125, 79, .42);
  transition: transform .22s ease, box-shadow .22s ease;
}

.whatsapp-float span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 50px rgba(46, 125, 79, .52);
}

.mobile-order-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  display: none;
  grid-template-columns: 1fr 1fr;
  background: var(--dark);
  border-top: 1px solid rgba(232, 163, 23, .35);
}

.mobile-order-bar a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  background: var(--grad-herb);
  text-decoration: none;
  font-weight: 900;
}

.mobile-order-bar a:last-child {
  color: var(--dark);
  background: linear-gradient(135deg, var(--saffron), var(--saffron-soft));
}

.split-word { display: inline-block; }
.reveal,
.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes iconOrbit {
  to { transform: rotate(366deg); }
}

@keyframes iconSweep {
  0%, 40% { transform: translateX(-130%); }
  70%, 100% { transform: translateX(130%); }
}

@keyframes iconJolt {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-5deg) scale(1.06); }
  55% { transform: rotate(4deg) scale(1.02); }
}

@keyframes clickPop {
  0% { transform: scale(.99); }
  50% { transform: scale(1.015); }
  100% { transform: scale(1); }
}

@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

@keyframes marqueeRight {
  from { transform: translateX(calc(-50% - 9px)); }
  to { transform: translateX(0); }
}

@media (max-width: 1040px) {
  .menu-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .alt-row,
  .alt-row.reverse,
  .contact-grid,
  .band-grid {
    grid-template-columns: 1fr;
  }
  .alt-row.reverse .alt-media { order: 0; }
  .order-options,
  .service-grid,
  .team-grid,
  .review-grid,
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card.large { grid-column: span 2; }
}

@media (max-width: 768px) {
  .hero-bg,
  .page-hero {
    background-attachment: scroll;
  }
  .whatsapp-float { bottom: 76px; right: 16px; width: 56px; height: 56px; }
}

@media (max-width: 680px) {
  body { padding-bottom: 58px; }
  .container { width: min(100% - 28px, 1200px); }
  .section { padding: 66px 0; }
  .hero { min-height: 88vh; }
  .hero-content {
    padding: calc(var(--nav-height) + 70px) 20px 58px;
  }
  .hero-actions,
  .field-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions .btn,
  .band-grid .btn,
  .quote-form .btn { width: 100%; }
  .menu-grid,
  .stats-grid,
  .order-options,
  .service-grid,
  .team-grid,
  .review-grid,
  .info-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .menu-tile.feature,
  .gallery-card.large { grid-column: auto; }
  .gallery-card.tall { grid-row: auto; }
  .gallery-grid { grid-auto-rows: 260px; }
  .review-card { width: 300px; }
  .mobile-order-bar { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .hero-bg,
  .page-hero {
    background-attachment: scroll;
  }
  .hero-video {
    display: none;
  }
  .ticker-track,
  .marquee-track {
    animation: none !important;
    transform: none !important;
  }
  .reveal,
  .stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
}
