/* =========================================================
   Arabian Cafe — Paterson, NJ
   Static site by WeWebWorks
   Design system: deep navy + gold, premium hookah lounge
   ========================================================= */

:root {
  /* Brand palette */
  --navy-900: #070d1a;
  --navy-800: #0a1428;
  --navy-700: #0e1c38;
  --navy-600: #14264a;
  --gold-500: #e0b43a;
  --gold-400: #e9c465;
  --gold-600: #c79a2a;
  --ember: #c0392b;
  --cream: #f5efe2;
  --cream-dim: #cdc6b8;
  --line: rgba(224, 180, 58, 0.18);

  /* Type */
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --nav-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--navy-900);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; letter-spacing: 0.5px; }
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-500);
  margin-bottom: 14px;
  display: inline-block;
}
.section-title { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 18px; }
.section-title .accent { color: var(--gold-500); }
.lead { color: var(--cream-dim); font-size: 1.08rem; max-width: 620px; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* gold rule used as a decorative divider */
.divider {
  width: 90px; height: 3px; border: 0; margin: 22px 0;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  border-radius: 3px;
}
.center .divider { margin-inline: auto; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.bg-800 { background: var(--navy-800); }
.bg-700 { background: var(--navy-700); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.96rem;
  padding: 14px 28px; border-radius: 50px; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  border: 1px solid transparent; white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--navy-900);
  box-shadow: 0 10px 30px rgba(224, 180, 58, 0.28);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(224, 180, 58, 0.42); }
.btn-ghost { background: transparent; border-color: var(--gold-500); color: var(--gold-400); }
.btn-ghost:hover { background: var(--gold-500); color: var(--navy-900); transform: translateY(-3px); }
.btn-lg { padding: 17px 38px; font-size: 1.02rem; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; height: var(--nav-h); z-index: 1000;
  display: flex; align-items: center;
  background: rgba(7, 13, 26, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.nav.scrolled {
  background: rgba(7, 13, 26, 0.97);
  box-shadow: 0 6px 24px rgba(0,0,0,.45);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.4px;
  color: var(--cream); position: relative; padding: 6px 0; transition: color .2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold-500); transition: width .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-400); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links .btn { padding: 11px 22px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--cream); margin: 5px 0; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding-top: var(--nav-h); padding-bottom: 84px;
}
.hero-media, .hero-media video, .hero-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(7,13,26,.88) 0%, rgba(7,13,26,.55) 50%, rgba(7,13,26,.2) 100%),
    linear-gradient(180deg, rgba(7,13,26,.45) 0%, rgba(7,13,26,.25) 35%, rgba(7,13,26,.92) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero h1 { font-size: clamp(2.6rem, 7vw, 5.4rem); line-height: 1.04; margin-bottom: 22px; }
.hero h1 .accent { color: var(--gold-500); display: block; }
.hero .lead { font-size: clamp(1.05rem, 2.2vw, 1.3rem); margin-bottom: 36px; max-width: 600px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px;
  background: rgba(224,180,58,.12); border: 1px solid var(--line);
  padding: 8px 18px; border-radius: 50px; font-size: 0.85rem; color: var(--gold-400);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #36d399; box-shadow: 0 0 10px #36d399; }
.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  color: var(--cream-dim); font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-hint .mouse { width: 22px; height: 36px; border: 2px solid var(--cream-dim); border-radius: 12px; position: relative; }
.scroll-hint .mouse::before {
  content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; background: var(--gold-500); border-radius: 2px; animation: scrolldot 1.6s infinite;
}
@keyframes scrolldot { 0%{opacity:0; transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0; transform:translate(-50%,10px)} }

/* ---------- Hero: sporty/fun enhancements ---------- */
/* glowing animated headline accent */
.hero h1 .accent {
  background: linear-gradient(100deg, var(--gold-400) 0%, #fff2cc 45%, var(--gold-500) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 26px rgba(224,180,58,.35));
}
/* floating glow orbs behind the content */
.hero-orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .45; z-index: 1; pointer-events: none; }
.hero-orb.a { width: 360px; height: 360px; background: var(--ember); top: -70px; right: -50px; animation: float 9s ease-in-out infinite; }
.hero-orb.b { width: 320px; height: 320px; background: var(--gold-600); bottom: 30px; left: -70px; animation: float 12s ease-in-out infinite reverse; }
@keyframes float { 0%,100% { transform: translate(0,0); } 50% { transform: translate(26px,-28px); } }

/* LIVE badge (sports) */
.hero-badge.live { background: rgba(192,57,43,.16); border-color: rgba(255,107,94,.45); color: #ff7d70; font-weight: 600; }
.hero-badge.live .dot { background: #ff3b30; box-shadow: 0 0 12px #ff3b30; animation: livepulse 1.3s infinite; }
@keyframes livepulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.6); opacity: .45; } }

/* Sport pills */
.sport-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 6px 0 32px; }
.sport-pills li {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 17px; border-radius: 50px;
  background: rgba(255,255,255,.06); border: 1px solid var(--line); font-size: 0.86rem; font-weight: 500;
  color: var(--cream); backdrop-filter: blur(4px); transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.sport-pills li:hover { transform: translateY(-3px); border-color: var(--gold-500); background: rgba(224,180,58,.14); }

/* Stadium LED ticker at the bottom of the hero */
.ticker {
  position: absolute; bottom: 0; left: 0; width: 100%; z-index: 3; overflow: hidden;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  border-top: 2px solid rgba(0,0,0,.25); box-shadow: 0 -6px 24px rgba(224,180,58,.25);
}
.ticker-track {
  display: inline-flex; align-items: center; white-space: nowrap; padding: 11px 0;
  animation: ticker 30s linear infinite; will-change: transform;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span {
  display: inline-flex; align-items: center; gap: 9px; padding: 0 26px;
  font-weight: 700; font-size: 0.84rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--navy-900);
}
.ticker-track span::after { content: "•"; margin-left: 26px; opacity: .5; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track, .hero-orb, .smoke, .hero-art { animation: none !important; } }

/* ====== Designed hero background (no photos) ====== */
.hero-designed {
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(192,57,43,.22), transparent 55%),
    radial-gradient(100% 80% at 10% 90%, rgba(224,180,58,.16), transparent 55%),
    linear-gradient(160deg, #0a1428 0%, #0b1a30 40%, #070d1a 100%);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }

/* video-background hero: poster shows instantly, video fades in on capable screens */
.hero-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-bg .hero-video,
.hero-designed > video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}

/* arabesque pattern layer */
.hero-pattern {
  position: absolute; inset: -10%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23e0b43a' stroke-width='1' opacity='0.5'%3E%3Cpath d='M60 8 L82 30 L60 52 L38 30 Z'/%3E%3Cpath d='M60 68 L82 90 L60 112 L38 90 Z'/%3E%3Cpath d='M0 30 L22 52 L0 74'/%3E%3Cpath d='M120 30 L98 52 L120 74'/%3E%3Ccircle cx='60' cy='60' r='5'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 130px 130px;
  opacity: .07; mix-blend-mode: screen;
  animation: patterndrift 60s linear infinite;
}
@keyframes patterndrift { from { background-position: 0 0; } to { background-position: 130px 260px; } }

/* drifting smoke wisps */
.smoke {
  position: absolute; bottom: -15%; width: 280px; height: 80%;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(255,255,255,.10), transparent 70%);
  filter: blur(38px); opacity: 0; pointer-events: none;
  animation: rise 16s ease-in infinite;
}
.smoke.s1 { left: 12%; animation-duration: 15s; }
.smoke.s2 { left: 42%; animation-duration: 19s; animation-delay: 4s; }
.smoke.s3 { left: 68%; animation-duration: 17s; animation-delay: 8s; }
.smoke.s4 { left: 86%; animation-duration: 21s; animation-delay: 2s; }
@keyframes rise {
  0% { transform: translateY(20%) scale(.7); opacity: 0; }
  15% { opacity: .55; }
  70% { opacity: .35; }
  100% { transform: translateY(-70%) scale(1.5); opacity: 0; }
}

/* gold hookah line-art on the right */
.hero-art {
  position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
  height: 78%; width: auto; opacity: .16; color: var(--gold-500);
  filter: drop-shadow(0 0 40px rgba(224,180,58,.3));
  animation: artglow 6s ease-in-out infinite;
}
@keyframes artglow { 0%,100% { opacity: .13; } 50% { opacity: .22; } }

/* soft vignette + bottom fade so text & ticker stay crisp */
.hero-vignette {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7,13,26,.85) 0%, rgba(7,13,26,.5) 48%, rgba(7,13,26,.22) 100%),
    linear-gradient(180deg, rgba(7,13,26,.4) 0%, transparent 32%, rgba(7,13,26,.9) 100%);
}
@media (max-width: 760px) {
  .hero-art { right: -10%; opacity: .1; height: 60%; }

  /* Mobile hero: full-bleed video with the text overlaid (like desktop).
     object-position frames the patio toward its upper third so the backyard
     reads, and a bottom-weighted scrim keeps the centered text legible. */
  .hero-bg .hero-video,
  .hero-designed > video {
    object-position: center 32%;
  }
  .hero-vignette {
    display: block;
    background:
      linear-gradient(180deg, rgba(7,13,26,.5) 0%, rgba(7,13,26,.28) 30%, rgba(7,13,26,.62) 70%, rgba(7,13,26,.9) 100%);
  }
  .hero-content { text-align: center; }
  .hero h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-badge, .sport-pills, .hero-cta { justify-content: center; }
  .hero .lead { margin-inline: auto; }
}

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat { padding: 10px; }
.stat .num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); color: var(--gold-500); }
.stat .label { font-size: 0.82rem; letter-spacing: 2px; text-transform: uppercase; color: var(--cream-dim); }

/* ---------- Feature grid ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }

.card {
  background: linear-gradient(160deg, var(--navy-600), var(--navy-700));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--gold-500); box-shadow: var(--shadow); }
.card .icon {
  width: 58px; height: 58px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(224,180,58,.12); margin-bottom: 18px; font-size: 1.6rem;
}
.card h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--cream); }
.card p { color: var(--cream-dim); font-size: 0.97rem; }

/* image with gold frame */
.framed { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.framed img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform .6s ease; }
.framed:hover img { transform: scale(1.05); }
.framed::after { content:""; position:absolute; inset:10px; border:1px solid rgba(224,180,58,.4); border-radius:8px; pointer-events:none; }

/* ---------- Menu preview / menu page ---------- */
.menu-card {
  background: linear-gradient(165deg, var(--navy-700), var(--navy-800));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 34px; height: 100%;
}
.menu-card h3 {
  font-size: 1.5rem; color: var(--gold-500); margin-bottom: 6px;
  display: flex; align-items: center; gap: 12px;
}
.menu-card .sub { color: var(--cream-dim); font-size: 0.9rem; margin-bottom: 22px; }
.menu-row {
  display: flex; align-items: baseline; gap: 10px; padding: 9px 0;
  border-bottom: 1px dashed rgba(224,180,58,.14);
}
.menu-row:last-child { border-bottom: 0; }
.menu-row .name { font-weight: 500; color: var(--cream); }
.menu-row .desc { font-size: 0.82rem; color: var(--cream-dim); display: block; font-weight: 400; }
.menu-row .dots { flex: 1; border-bottom: 1px dotted rgba(224,180,58,.3); transform: translateY(-4px); }
.menu-row .price { font-family: var(--font-display); color: var(--gold-400); font-weight: 700; white-space: nowrap; }
.flavor-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 26px; margin-top: 6px; }
.flavor-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 680px) { .flavor-grid.cols-3 { grid-template-columns: repeat(2, 1fr); } }
.flavor-grid li { padding: 6px 0; color: var(--cream); border-bottom: 1px dashed rgba(224,180,58,.12); font-size: 0.95rem; }
.note { font-size: 0.85rem; color: var(--gold-400); margin-top: 16px; font-style: italic; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; grid-auto-flow: dense; }
.gallery a { position: relative; overflow: hidden; border-radius: 10px; aspect-ratio: 1; display: block; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .3s; }
.gallery a:hover img { transform: scale(1.08); filter: brightness(1.08); }
.gallery a.tall { grid-row: span 2; aspect-ratio: 1/2; }
.gallery a.wide { grid-column: span 2; aspect-ratio: 2/1; }

/* ---------- Video gallery ---------- */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.video-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--navy-800); box-shadow: var(--shadow);
}
.video-card video { width: 100%; aspect-ratio: 9/16; object-fit: cover; background: #000; display: block; }
.video-card.landscape video { aspect-ratio: 16/9; }

/* ---------- Aerial cinematic band (Ken Burns cross-fade) ---------- */
.aerial-show {
  position: relative; width: 100%; height: min(80vh, 760px); overflow: hidden;
  background: var(--navy-900); isolation: isolate;
}
.aerial-show .slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; z-index: 0; will-change: opacity, transform;
  animation: kenburns 32s infinite both;
}
/* 4 slides, evenly staggered across the 32s loop */
.aerial-show .slide:nth-child(1) { animation-delay: 0s; }
.aerial-show .slide:nth-child(2) { animation-delay: 8s; }
.aerial-show .slide:nth-child(3) { animation-delay: 16s; }
.aerial-show .slide:nth-child(4) { animation-delay: 24s; }
@keyframes kenburns {
  0%   { opacity: 0; transform: scale(1.02); }
  3%   { opacity: 1; }
  22%  { opacity: 1; }
  28%  { opacity: 0; }
  100% { opacity: 0; transform: scale(1.14); }
}
.aerial-overlay {
  position: absolute; inset: 0; z-index: 2; display: flex; align-items: center;
  background:
    linear-gradient(90deg, rgba(7,13,26,.82) 0%, rgba(7,13,26,.45) 45%, rgba(7,13,26,.15) 100%),
    linear-gradient(180deg, rgba(7,13,26,.3) 0%, transparent 30%, rgba(7,13,26,.55) 100%);
}
.aerial-overlay .container { width: 100%; }
.aerial-overlay h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); margin-bottom: 16px; }
.aerial-overlay .lead { max-width: 520px; }
.aerial-badge {
  position: absolute; top: 22px; right: 22px; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 15px; border-radius: 50px;
  background: rgba(7,13,26,.55); border: 1px solid var(--line); backdrop-filter: blur(6px);
  font-size: 0.74rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-400);
}
.aerial-badge svg { width: 15px; height: 15px; }
@media (prefers-reduced-motion: reduce) {
  .aerial-show .slide { animation: none; }
  .aerial-show .slide:nth-child(1) { opacity: 1; }
}
@media (max-width: 760px) { .aerial-show { height: 62vh; } }

/* ---------- Instagram ---------- */
.ig-head { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.ig-handle { color: var(--gold-400); font-weight: 500; font-size: 1.05rem; }
.ig-feed { position: relative; }
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.ig-tile { position: relative; aspect-ratio: 1; border-radius: 12px; overflow: hidden; display: block; border: 1px solid var(--line); }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ig-tile:hover img { transform: scale(1.08); }
.ig-tile .ig-ov { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(7,13,26,0); transition: background .3s ease; }
.ig-tile:hover .ig-ov { background: rgba(7,13,26,.55); }
.ig-tile .ig-ov svg { width: 30px; height: 30px; color: #fff; opacity: 0; transform: scale(.6); transition: .3s ease; }
.ig-tile:hover .ig-ov svg { opacity: 1; transform: scale(1); }
.btn-ig {
  background: linear-gradient(80deg, #515BD4, #8134AF 35%, #DD2A7B 70%, #F58529);
  color: #fff; box-shadow: 0 10px 30px rgba(221,42,123,.32);
}
.btn-ig:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(221,42,123,.45); }
@media (max-width: 980px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .ig-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
  background: var(--navy-700); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column; gap: 14px;
}
.review .stars { color: var(--gold-500); letter-spacing: 2px; }
.review p { color: var(--cream); font-style: italic; }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review .avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg,var(--gold-500),var(--ember)); display: grid; place-items: center; font-family: var(--font-display); color: var(--navy-900); font-weight: 700; }
.review .who b { display: block; font-size: 0.95rem; }
.review .who span { font-size: 0.8rem; color: var(--cream-dim); }

/* ---------- CTA banner ---------- */
.cta {
  background: linear-gradient(135deg, var(--navy-600), var(--navy-800));
  border: 1px solid var(--line); border-radius: 20px; padding: clamp(40px, 6vw, 70px);
  text-align: center; position: relative; overflow: hidden;
}
.cta::before { content:""; position:absolute; inset:0; background: radial-gradient(60% 100% at 50% 0%, rgba(224,180,58,.12), transparent); }
.cta > * { position: relative; }
.cta h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }

/* ---------- Info / contact ---------- */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.info-list { display: grid; gap: 22px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item .ico { width: 46px; height: 46px; flex: 0 0 46px; border-radius: 12px; background: rgba(224,180,58,.12); display: grid; place-items: center; font-size: 1.2rem; }
.info-item h4 { font-family: var(--font-body); font-size: 1.05rem; margin-bottom: 2px; }
.info-item p, .info-item a { color: var(--cream-dim); font-size: 0.96rem; }
.info-item a:hover { color: var(--gold-400); }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 320px; height: 100%; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(.3) contrast(1.05); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 10px 0; border-bottom: 1px dashed rgba(224,180,58,.14); font-size: 0.96rem; }
.hours-table td:last-child { text-align: right; color: var(--gold-400); }
.hours-table tr.today td { color: var(--gold-400); font-weight: 600; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 16px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase; color: var(--cream-dim); margin-bottom: 6px; display: block; }
.form input, .form textarea {
  width: 100%; background: var(--navy-800); border: 1px solid var(--line); border-radius: 10px;
  padding: 13px 16px; color: var(--cream); font-family: var(--font-body); font-size: 0.96rem;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(224,180,58,.12); }
.form textarea { resize: vertical; min-height: 130px; }

/* ---------- Page header (sub pages) ---------- */
.page-head {
  padding-top: calc(var(--nav-h) + 70px); padding-bottom: 60px; text-align: center;
  background: radial-gradient(70% 120% at 50% 0%, var(--navy-600), var(--navy-900));
  border-bottom: 1px solid var(--line);
}
.page-head h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
.breadcrumb { font-size: 0.82rem; color: var(--cream-dim); margin-top: 14px; }
.breadcrumb a:hover { color: var(--gold-400); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); border-top: 1px solid var(--line); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-logo img { height: 40px; margin-bottom: 18px; }
.footer p { color: var(--cream-dim); font-size: 0.92rem; }
.footer h4 { font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-500); margin-bottom: 18px; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: var(--cream-dim); font-size: 0.94rem; }
.footer-links a:hover { color: var(--gold-400); padding-left: 4px; }
.socials { display: flex; gap: 12px; margin-top: 8px; }
.socials a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); display: grid; place-items: center; transition: .25s; }
.socials a:hover { background: var(--gold-500); color: var(--navy-900); border-color: var(--gold-500); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid var(--line); padding: 22px 0; text-align: center; font-size: 0.84rem; color: var(--cream-dim); }
.footer-bottom a { color: var(--gold-400); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 2000; background: rgba(5,9,18,.94);
  display: none; align-items: center; justify-content: center; padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 10px; box-shadow: var(--shadow); }
.lightbox .close { position: absolute; top: 22px; right: 28px; font-size: 2.4rem; color: var(--cream); cursor: pointer; line-height: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-3, .reviews, .video-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav-links {
    position: fixed; top: var(--nav-h); right: 0; width: min(80vw, 320px);
    height: calc(100vh - var(--nav-h)); flex-direction: column; align-items: flex-start;
    background: var(--navy-800); padding: 30px 28px; gap: 22px;
    transform: translateX(100%); transition: transform .3s ease; border-left: 1px solid var(--line);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: block; }
  .nav-links .btn { width: 100%; justify-content: center; }
  .split, .info-grid, .grid-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .grid-3, .reviews, .video-grid { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .gallery a.tall, .gallery a.wide { grid-row: auto; grid-column: auto; aspect-ratio: 1; }
}
