*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

:root {
  color-scheme: light;
  --font: "Inter", system-ui, sans-serif;
  --display: "Playfair Display", Georgia, serif;
  --radius: 8px;
  --max: 1180px;
}

body {
  margin: 0;
  font-family: var(--font);
  background: #0d0f14;
  color: #111827;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

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

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

.state-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  gap: 16px;
  padding: 32px;
  text-align: center;
  background: #f7f7f4;
  color: #111827;
}

.loader {
  width: 38px;
  height: 38px;
  border: 3px solid #d1d5db;
  border-top-color: #111827;
  border-radius: 999px;
  animation: spin .8s linear infinite;
}

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

.venue-page {
  min-height: 100vh;
  overflow: hidden;
}

.site-nav {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  font-weight: 900;
  letter-spacing: 0;
}

.nav-menu {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--button);
  font-weight: 800;
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
  border: 1px solid transparent;
}

.btn.primary {
  background: var(--accent);
  color: var(--button);
  box-shadow: var(--shadow);
}

.btn.secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--line);
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.actions .primary,
.actions .secondary {
  grid-column: span 1;
}

.product-card {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .07);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card div {
  padding: 16px;
}

.product-card h3 {
  margin: 0 0 7px;
  font-size: 18px;
}

.product-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.45;
  font-size: 14px;
}

.product-card strong {
  color: var(--accent);
  font-size: 18px;
}

.gallery-card {
  min-height: 210px;
  margin: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,.78));
}

.gallery-card figcaption {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 900;
}

.mobile-bar {
  position: fixed;
  z-index: 60;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.venue-footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 34px 18px 96px;
  background: var(--footer);
  color: var(--footer-text);
  text-align: center;
}

.template-sportsbar {
  --bg: #080b10;
  --surface: #111722;
  --surface2: #192232;
  --text: #f8fafc;
  --muted: #a7b0c0;
  --accent: #f6b51d;
  --accent2: #35d27f;
  --button: #111;
  --line: rgba(246,181,29,.18);
  --shadow: 0 20px 60px rgba(246,181,29,.22);
  --footer: #05070a;
  --footer-text: #f8fafc;
  background: var(--bg);
  color: var(--text);
}

.sports-hero {
  min-height: 100vh;
  padding: 92px 0 44px;
  background:
    linear-gradient(90deg, rgba(8,11,16,.93), rgba(8,11,16,.62)),
    url("/venue-assets/hero-food.jpg") center/cover;
}

.score-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 28px;
}

.score-strip span {
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
  font-weight: 900;
}

.sports-hero h1,
.shisha-hero h1,
.cafe-hero h1,
.restaurant-hero h1,
.grill-hero h1,
.fastfood-hero h1,
.premium-hero h1 {
  margin: 18px 0;
  font-size: clamp(44px, 13vw, 104px);
  line-height: .94;
  letter-spacing: 0;
}

.sports-hero p,
.shisha-hero p,
.cafe-hero p,
.restaurant-hero p,
.grill-hero p,
.fastfood-hero p,
.premium-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.sports-grid,
.shisha-menu,
.cafe-grid,
.restaurant-dishes,
.grill-combos,
.fastfood-grid,
.premium-gallery {
  display: grid;
  gap: 16px;
}

.section-pad {
  padding: 54px 0;
}

.section-title {
  margin: 0 0 22px;
  font-size: clamp(30px, 8vw, 54px);
  line-height: 1;
}

.template-shisha {
  --bg: #08050f;
  --surface: #151020;
  --surface2: #241735;
  --text: #fbf7ff;
  --muted: #b9a8d6;
  --accent: #8e5cff;
  --accent2: #d9a4ff;
  --button: #fff;
  --line: rgba(217,164,255,.18);
  --shadow: 0 20px 70px rgba(142,92,255,.34);
  --footer: #05030a;
  --footer-text: #fbf7ff;
  background: radial-gradient(circle at 75% 10%, rgba(142,92,255,.24), transparent 36%), var(--bg);
  color: var(--text);
}

.shisha-hero {
  padding: 96px 0 42px;
}

.lounge-frame {
  min-height: 420px;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 28px 28px 8px 8px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.7)),
    url("/venue-assets/hero-food.jpg") center/cover;
  box-shadow: var(--shadow);
}

.shisha-panel {
  padding: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: 18px;
}

.template-cafe {
  --bg: #fff9ef;
  --surface: #ffffff;
  --surface2: #ffeccf;
  --text: #26190f;
  --muted: #7b604b;
  --accent: #7b4b24;
  --accent2: #e5a64e;
  --button: #fffaf4;
  --line: rgba(123,75,36,.14);
  --shadow: 0 20px 60px rgba(123,75,36,.14);
  --footer: #2a1b10;
  --footer-text: #fff9ef;
  background: var(--bg);
  color: var(--text);
}

.cafe-hero {
  padding: 92px 0 42px;
  background: linear-gradient(180deg, #fff4df, var(--bg));
}

.cafe-window {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cafe-window .gallery-card:first-child {
  grid-column: 1 / -1;
  min-height: 260px;
}

.template-restaurant {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --surface2: #eaf0f8;
  --text: #101828;
  --muted: #64748b;
  --accent: #17365d;
  --accent2: #8eb5dd;
  --button: #fff;
  --line: rgba(16,24,40,.12);
  --shadow: 0 20px 60px rgba(23,54,93,.16);
  --footer: #0f1d31;
  --footer-text: #fff;
  background: var(--bg);
  color: var(--text);
}

.restaurant-hero {
  padding: 96px 0 58px;
}

.editorial-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.restaurant-photo {
  min-height: 360px;
  border-radius: var(--radius);
  background: url("/venue-assets/hero-food.jpg") center/cover;
}

.template-grill {
  --bg: #160a05;
  --surface: #241108;
  --surface2: #351b0e;
  --text: #fff4ec;
  --muted: #d1a185;
  --accent: #ff5a1f;
  --accent2: #ffb347;
  --button: #fff;
  --line: rgba(255,90,31,.2);
  --shadow: 0 20px 70px rgba(255,90,31,.25);
  --footer: #0d0502;
  --footer-text: #fff4ec;
  background: radial-gradient(circle at 25% 10%, rgba(255,90,31,.25), transparent 30%), var(--bg);
  color: var(--text);
}

.grill-hero {
  padding: 92px 0 44px;
}

.template-koryo {
  --bg: #0a0806;
  --surface: #110e0b;
  --surface2: #1c1612;
  --text: #f0e8dc;
  --muted: #9a8a78;
  --accent: #c94c1a;
  --accent2: #f4a44a;
  --button: #fff;
  --line: rgba(244,164,74,.18);
  --shadow: 0 24px 80px rgba(201,76,26,.26);
  --footer: #050403;
  --footer-text: #f0e8dc;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", var(--font);
}

.template-koryo .site-nav {
  background: linear-gradient(to bottom, rgba(10,8,6,.96), rgba(10,8,6,.55));
  border-bottom-color: rgba(244,164,74,.08);
}

.template-koryo .brand {
  color: var(--accent2);
  font-family: "Playfair Display", Georgia, serif;
}

.template-koryo .nav-menu {
  background: transparent;
  border: 1px solid rgba(244,164,74,.34);
  color: var(--accent2);
  border-radius: 0;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .16em;
}

.koryo-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 96px 0 86px;
  overflow: hidden;
}

.koryo-hero-bg,
.koryo-smoke,
.koryo-embers {
  position: absolute;
  inset: 0;
}

.koryo-hero-bg {
  background:
    radial-gradient(ellipse 60% 50% at 55% 70%, rgba(201,76,26,.24), transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(232,98,42,.13), transparent 60%),
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(28,22,18,.84), transparent 80%),
    var(--bg);
}

.koryo-smoke {
  top: auto;
  height: 70%;
  background: linear-gradient(to top, rgba(30,22,14,.9), rgba(20,15,10,.35), transparent);
}

.koryo-embers span {
  position: absolute;
  bottom: -30px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent2);
  box-shadow: 0 0 22px rgba(244,164,74,.8);
  animation: koryoFloat 7s linear infinite;
}

.koryo-embers span:nth-child(1) { left: 12%; animation-delay: 0s; }
.koryo-embers span:nth-child(2) { left: 30%; animation-delay: 1.4s; width: 4px; height: 4px; }
.koryo-embers span:nth-child(3) { left: 54%; animation-delay: 2.2s; }
.koryo-embers span:nth-child(4) { left: 72%; animation-delay: .7s; width: 5px; height: 5px; }
.koryo-embers span:nth-child(5) { left: 88%; animation-delay: 3.1s; }

@keyframes koryoFloat {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  12% { opacity: 1; }
  85% { opacity: .5; }
  100% { transform: translateY(-110vh) translateX(34px) scale(.25); opacity: 0; }
}

.koryo-hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
}

.koryo-eyebrow,
.koryo-section-label {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.koryo-title {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(64px, 16vw, 144px);
  line-height: .88;
  letter-spacing: .03em;
  color: var(--text);
}

.koryo-title span {
  display: block;
  margin-bottom: 4px;
  color: var(--accent2);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 8vw, 76px);
  letter-spacing: .08em;
}

.koryo-subtitle {
  max-width: 470px;
  margin: 28px 0 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.koryo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.koryo-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid rgba(244,164,74,.28);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 900;
}

.koryo-btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.koryo-btn.secondary {
  color: var(--accent2);
}

.koryo-badge {
  position: absolute;
  z-index: 2;
  right: 40px;
  bottom: 110px;
  display: grid;
  gap: 8px;
  text-align: right;
}

.koryo-badge strong {
  color: var(--accent);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 56px;
  line-height: .8;
}

.koryo-badge strong.small {
  color: var(--accent2);
  font-size: 36px;
  margin-top: 8px;
}

.koryo-badge span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.koryo-divider {
  height: 1px;
  margin: 0 32px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: .34;
}

.koryo-section,
.koryo-menu-section,
.koryo-order-section {
  padding: 88px 32px;
}

.koryo-experience-grid,
.koryo-menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(201,76,26,.18);
}

.koryo-experience-grid article,
.koryo-menu-item {
  position: relative;
  overflow: hidden;
  padding: 34px;
  background: var(--surface);
}

.koryo-experience-grid article span {
  position: absolute;
  right: 22px;
  top: 14px;
  color: rgba(201,76,26,.16);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 72px;
  line-height: 1;
}

.koryo-experience-grid h2,
.koryo-menu-item h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 23px;
}

.koryo-experience-grid p,
.koryo-menu-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.koryo-menu-section {
  background: var(--surface);
}

.koryo-menu-header {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.koryo-menu-header h2 {
  margin: 0;
  color: var(--text);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(48px, 11vw, 96px);
  line-height: .9;
}

.koryo-menu-header span {
  color: var(--accent2);
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: .12em;
}

.koryo-menu-header > p {
  max-width: 330px;
  color: var(--muted);
  line-height: 1.7;
}

.koryo-menu-item {
  background: var(--surface2);
}

.koryo-menu-cat {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.koryo-menu-item strong {
  display: inline-block;
  margin-top: 14px;
  color: var(--accent2);
  font-size: 19px;
}

.koryo-menu-dot {
  position: absolute;
  right: 28px;
  top: 30px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .55;
}

.koryo-order-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(201,76,26,.18), transparent 70%),
    var(--bg);
}

.koryo-order-section h2 {
  margin: 0 0 18px;
  color: var(--text);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(48px, 12vw, 96px);
  line-height: .95;
}

.koryo-order-section h2 em {
  color: var(--accent2);
  font-style: normal;
}

.koryo-order-section p {
  max-width: 560px;
  margin: 0 auto 26px;
  color: var(--muted);
  line-height: 1.75;
}

.koryo-steps,
.koryo-info-bar {
  display: grid;
  gap: 18px;
}

.koryo-steps {
  max-width: 920px;
  margin: 46px auto 0;
}

.koryo-steps div {
  padding: 18px;
  border: 1px solid rgba(244,164,74,.16);
  background: rgba(255,255,255,.03);
}

.koryo-steps strong {
  display: block;
  color: var(--accent);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 38px;
}

.koryo-steps span {
  color: var(--muted);
}

.koryo-info-bar {
  padding: 34px 32px;
  background: var(--surface2);
  border-top: 1px solid rgba(244,164,74,.18);
  border-bottom: 1px solid rgba(244,164,74,.18);
}

.koryo-info-bar small {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.koryo-info-bar strong {
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
}

.template-rodizio {
  --bg: #120807;
  --surface: #1d0f0c;
  --surface2: #2b1510;
  --text: #fff5e8;
  --muted: #caa990;
  --accent: #d8371f;
  --accent2: #ffb23f;
  --button: #fff7e8;
  --line: rgba(255,178,63,.2);
  --shadow: 0 24px 80px rgba(216,55,31,.28);
  --footer: #090302;
  --footer-text: #fff5e8;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", var(--font);
}

.template-rodizio .site-nav,
.template-alhamra .site-nav {
  background: color-mix(in srgb, var(--bg) 82%, transparent);
}

.template-rodizio .brand,
.template-rodizio .nav-menu {
  color: var(--accent2);
}

.template-rodizio .nav-menu,
.template-alhamra .nav-menu {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--accent2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.rodizio-hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: end;
  padding: 98px 18px 54px;
  overflow: hidden;
}

.rodizio-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 28%, rgba(255,178,63,.22), transparent 28%),
    radial-gradient(circle at 82% 68%, rgba(216,55,31,.28), transparent 32%),
    linear-gradient(125deg, rgba(18,8,7,.96), rgba(18,8,7,.74)),
    url("/venue-assets/hero-food.jpg") center/cover;
}

.rodizio-skewers {
  position: absolute;
  top: 94px;
  right: 8%;
  display: grid;
  gap: 16px;
  transform: rotate(-12deg);
  opacity: .42;
}

.rodizio-skewers i {
  width: 220px;
  height: 9px;
  display: block;
  background: linear-gradient(90deg, transparent, var(--accent2), var(--accent), transparent);
  box-shadow: 0 0 28px rgba(216,55,31,.4);
}

.rodizio-copy,
.rodizio-stats {
  position: relative;
  z-index: 1;
}

.rodizio-copy {
  width: min(780px, 100%);
  margin: 0 auto;
}

.rodizio-tag,
.rodizio-eyebrow {
  margin: 0 0 16px;
  color: var(--accent2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.rodizio-copy h1,
.rodizio-about h2,
.rodizio-menu-top h2,
.rodizio-order h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  line-height: .9;
  letter-spacing: .04em;
}

.rodizio-copy h1 {
  max-width: 720px;
  font-size: clamp(72px, 18vw, 150px);
  color: var(--text);
}

.rodizio-copy h1 em,
.rodizio-about h2 em,
.rodizio-menu-top h2 em,
.rodizio-order h2 em {
  color: var(--accent2);
  font-style: normal;
}

.rodizio-copy h1 span {
  display: block;
  margin-top: 12px;
  color: var(--accent);
  font-size: clamp(32px, 7vw, 62px);
}

.rodizio-copy > p {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.rodizio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.rodizio-btn,
.hamra-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.rodizio-btn.primary,
.hamra-btn {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--button);
  box-shadow: var(--shadow);
}

.rodizio-btn.secondary {
  color: var(--accent2);
}

.rodizio-stats {
  width: min(780px, 100%);
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.rodizio-stats div,
.rodizio-metrics div,
.rodizio-info div {
  padding: 18px;
  background: rgba(29,15,12,.8);
}

.rodizio-stats strong,
.rodizio-metrics strong {
  display: block;
  color: var(--accent2);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 46px;
  line-height: .9;
}

.rodizio-stats span,
.rodizio-metrics span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.rodizio-strip {
  display: flex;
  gap: 34px;
  overflow: hidden;
  padding: 18px 0;
  border-block: 1px solid var(--line);
  background: var(--surface);
  color: var(--accent2);
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.rodizio-strip span {
  animation: rodizioMarquee 24s linear infinite;
}

@keyframes rodizioMarquee {
  to { transform: translateX(-420px); }
}

.rodizio-about,
.rodizio-menu,
.rodizio-order,
.rodizio-info {
  padding: 76px 18px;
}

.rodizio-about {
  display: grid;
  gap: 32px;
  background: linear-gradient(145deg, var(--surface), var(--surface2));
}

.rodizio-about > div,
.rodizio-menu > div,
.rodizio-order > * {
  width: min(1080px, 100%);
  margin-inline: auto;
}

.rodizio-about h2,
.rodizio-menu-top h2,
.rodizio-order h2 {
  font-size: clamp(48px, 11vw, 94px);
}

.rodizio-about p,
.rodizio-menu-top p,
.rodizio-order p {
  color: var(--muted);
  line-height: 1.75;
}

.rodizio-metrics,
.rodizio-grid,
.rodizio-info {
  display: grid;
  gap: 14px;
}

.rodizio-card {
  position: relative;
  min-height: 260px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 20%, rgba(255,178,63,.18), transparent 28%),
    var(--surface2);
}

.rodizio-card span {
  position: absolute;
  right: -40px;
  bottom: -70px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 22px solid rgba(216,55,31,.2);
}

.rodizio-card small {
  color: var(--accent2);
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.rodizio-card h3 {
  margin: 26px 0 8px;
  color: var(--text);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 42px;
}

.rodizio-card p {
  color: var(--muted);
}

.rodizio-card strong {
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: var(--accent2);
  font-size: 22px;
}

.rodizio-order {
  text-align: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(216,55,31,.2), transparent 38%),
    var(--bg);
}

.rodizio-info {
  background: var(--surface);
}

.rodizio-info small,
.hamra-info small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.rodizio-info strong,
.hamra-info strong {
  color: var(--text);
}

.template-alhamra {
  --bg: #f8f1e5;
  --surface: #fffaf2;
  --surface2: #efe0cd;
  --text: #2d1611;
  --muted: #7c6355;
  --accent: #8f1f18;
  --accent2: #caa15a;
  --button: #fff8ef;
  --line: rgba(143,31,24,.18);
  --shadow: 0 24px 70px rgba(143,31,24,.18);
  --footer: #2d1611;
  --footer-text: #fff8ef;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", var(--font);
}

.template-alhamra .brand,
.template-alhamra .nav-menu {
  color: var(--accent2);
}

.hamra-hero {
  min-height: 100vh;
  display: grid;
  background: var(--bg);
  color: var(--text);
}

.hamra-left {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 70vh;
  padding: 98px 18px 54px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(45,22,17,.9), rgba(45,22,17,.62)),
    url("/venue-assets/about-food.jpg") center/cover;
  color: #fff8ef;
}

.hamra-ornament,
.hamra-pattern {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(45deg, transparent 44%, currentColor 45%, currentColor 55%, transparent 56%),
    linear-gradient(-45deg, transparent 44%, currentColor 45%, currentColor 55%, transparent 56%);
  background-size: 54px 54px;
  color: var(--accent2);
}

.hamra-copy {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  margin: 0 auto;
}

.hamra-eyebrow {
  margin: 0 0 16px;
  color: var(--accent2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.hamra-copy h1,
.hamra-story h2,
.hamra-menu-top h2,
.hamra-order h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: .98;
}

.hamra-copy h1 {
  max-width: 760px;
  font-size: clamp(48px, 13vw, 118px);
}

.hamra-copy h1 span {
  display: block;
  color: var(--accent2);
  font-size: clamp(32px, 7vw, 70px);
}

.hamra-copy h1 em,
.hamra-story h2 em,
.hamra-menu-top h2 em,
.hamra-order h2 em {
  color: var(--accent2);
  font-style: normal;
}

.hamra-copy p {
  max-width: 540px;
  color: rgba(255,248,239,.78);
  font-size: 18px;
  line-height: 1.75;
}

.hamra-right {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 28px 18px;
  overflow: hidden;
  background: var(--surface);
}

.hamra-location,
.hamra-stats,
.hamra-story,
.hamra-menu,
.hamra-order,
.hamra-info {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  margin-inline: auto;
}

.hamra-location {
  padding: 24px;
  border: 1px solid var(--line);
}

.hamra-location strong {
  display: block;
  color: var(--accent);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
}

.hamra-location span {
  color: var(--muted);
}

.hamra-stats,
.hamra-info {
  display: grid;
  gap: 12px;
}

.hamra-stats div,
.hamra-story aside div,
.hamra-info div {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255,250,242,.72);
}

.hamra-stats strong {
  display: block;
  color: var(--accent);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
}

.hamra-stats span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hamra-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  background: var(--accent);
  color: #fff8ef;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hamra-divider i {
  height: 1px;
  flex: 1;
  background: rgba(255,255,255,.38);
}

.hamra-story,
.hamra-menu,
.hamra-order,
.hamra-info {
  padding: 76px 18px;
}

.hamra-story {
  display: grid;
  gap: 28px;
}

.hamra-story h2,
.hamra-menu-top h2,
.hamra-order h2 {
  font-size: clamp(42px, 10vw, 82px);
}

.hamra-story p,
.hamra-menu-top p,
.hamra-order p {
  color: var(--muted);
  line-height: 1.75;
}

.hamra-menu {
  position: relative;
  overflow: hidden;
  background: var(--surface2);
}

.hamra-menu .hamra-pattern {
  color: var(--accent);
}

.hamra-menu-top {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.hamra-menu-top span {
  color: var(--accent);
  font-weight: 900;
}

.hamra-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.hamra-entry {
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(255,250,242,.86);
}

.hamra-entry small {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hamra-entry h3 {
  margin: 12px 0 2px;
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
}

.hamra-entry span,
.hamra-entry p {
  display: block;
  margin: 0 0 8px;
  color: var(--muted);
}

.hamra-entry strong {
  color: var(--accent);
  font-size: 20px;
}

.hamra-order {
  display: grid;
  gap: 26px;
  align-items: center;
  background: var(--surface);
}

.hamra-qr {
  min-height: 240px;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--accent);
  color: #fff8ef;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 11vw, 82px);
  font-weight: 900;
  line-height: .95;
  text-align: center;
}

.ember-strip {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.ember-strip div {
  padding: 18px;
  background: linear-gradient(145deg, rgba(255,90,31,.2), rgba(255,255,255,.04));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.template-fastfood {
  --bg: #fff2e4;
  --surface: #ffffff;
  --surface2: #ffd7a7;
  --text: #261108;
  --muted: #77513a;
  --accent: #ef3e19;
  --accent2: #ffb000;
  --button: #fff;
  --line: rgba(239,62,25,.18);
  --shadow: 0 18px 50px rgba(239,62,25,.18);
  --footer: #261108;
  --footer-text: #fff2e4;
  background: var(--bg);
  color: var(--text);
}

.fastfood-hero {
  padding: 92px 0 44px;
}

.combo-banner {
  padding: 18px;
  margin: 22px 0;
  background: var(--accent2);
  color: #261108;
  border: 3px solid #261108;
  border-radius: var(--radius);
  font-weight: 900;
  text-transform: uppercase;
}

.template-premium,
.template-event {
  --bg: #080a0f;
  --surface: #111827;
  --surface2: #1f2937;
  --text: #f9fafb;
  --muted: #b9c3d3;
  --accent: #d6b46d;
  --accent2: #ffffff;
  --button: #101010;
  --line: rgba(214,180,109,.18);
  --shadow: 0 24px 80px rgba(214,180,109,.16);
  --footer: #05060a;
  --footer-text: #fff;
  background: var(--bg);
  color: var(--text);
}

.premium-hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 92px 0 54px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.88)),
    url("/venue-assets/hero-food.jpg") center/cover;
}

.premium-panel {
  max-width: 760px;
  padding: 24px;
  background: rgba(0,0,0,.46);
  border: 1px solid var(--line);
  border-radius: 18px;
  backdrop-filter: blur(18px);
}

.info-grid {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.info-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.info-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

@media (min-width: 760px) {
  .site-nav {
    padding: 0 34px;
  }

  .actions {
    display: flex;
    flex-wrap: wrap;
  }

  .actions .btn {
    min-width: 150px;
  }

  .score-strip,
  .ember-strip,
  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sports-grid,
  .shisha-menu,
  .cafe-grid,
  .restaurant-dishes,
  .grill-combos,
  .fastfood-grid,
  .premium-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .koryo-experience-grid,
  .koryo-menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .koryo-menu-header {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .koryo-steps,
  .koryo-info-bar {
    grid-template-columns: repeat(4, 1fr);
  }

  .rodizio-about,
  .hamra-story,
  .hamra-order {
    grid-template-columns: 1fr .9fr;
    align-items: center;
  }

  .rodizio-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .rodizio-metrics,
  .rodizio-info,
  .hamra-stats,
  .hamra-info {
    grid-template-columns: repeat(4, 1fr);
  }

  .hamra-hero {
    grid-template-columns: 1.25fr .75fr;
  }

  .hamra-left {
    min-height: 100vh;
    padding-inline: 42px;
  }

  .hamra-right {
    align-content: center;
    padding-inline: 28px;
  }

  .hamra-menu-top {
    grid-template-columns: 1fr 320px;
    align-items: end;
  }

  .hamra-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-split,
  .restaurant-layout {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 42px;
    align-items: center;
  }

  .mobile-bar {
    display: none;
  }

  .venue-footer {
    padding-bottom: 34px;
  }
}

@media (max-width: 760px) {
  .koryo-hero {
    padding: 92px 0 58px;
  }

  .koryo-badge {
    display: none;
  }

  .koryo-section,
  .koryo-menu-section,
  .koryo-order-section {
    padding: 58px 18px;
  }

  .koryo-experience-grid article,
  .koryo-menu-item {
    padding: 28px 22px;
  }

  .koryo-actions {
    display: grid;
  }

  .koryo-btn {
    width: 100%;
  }

  .rodizio-actions {
    display: grid;
  }

  .rodizio-btn,
  .hamra-btn {
    width: 100%;
  }

  .rodizio-stats {
    grid-template-columns: 1fr;
  }

  .rodizio-copy h1,
  .hamra-copy h1 {
    word-break: break-word;
  }
}

[hidden] {
  display: none !important;
}
