/* =========================================================
   sinit shisha lounge — styles
   Dark / cozy · amber-red glow · mobile-first
   ========================================================= */

:root {
  --bg:        #0d0b0a;   /* charcoal near-black */
  --bg-2:      #14110f;   /* slightly lifted panel */
  --bg-3:      #1c1815;   /* cards */
  --line:      #2a2420;   /* hairlines */
  --text:      #f5efe6;   /* off-white */
  --text-dim:  #b8ad9f;   /* muted */
  --text-mute: #7d7367;   /* very muted */
  --amber:     #e0a93b;   /* warm amber accent */
  --amber-soft:#b8862a;
  --red:       #c0392b;   /* deep red glow */
  --red-deep:  #7a1f1f;
  --gold-glow: rgba(224,169,59,.18);
  --red-glow:  rgba(192,57,43,.20);
  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 10px 30px rgba(0,0,0,.45);
  --font-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --font-head: 'Poppins', var(--font-sans);
  --maxw:      1140px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

/* ---------- typography ---------- */
h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }
.accent { color: var(--amber); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--amber), var(--amber-soft));
  color: #1a1308;
  box-shadow: 0 8px 24px var(--gold-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(224,169,59,.32); }
.btn-ghost {
  border: 1px solid rgba(245,239,230,.28);
  color: var(--text);
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,.03);
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }
.btn-block { width: 100%; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13,11,10,.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease;
}
.site-header.scrolled {
  background: rgba(13,11,10,.88);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}
.wordmark { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; letter-spacing: .02em; }
.wordmark-glow {
  background: linear-gradient(180deg, var(--text), var(--amber));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 24px var(--gold-glow);
}
.main-nav { display: none; gap: 1.75rem; }
.main-nav a {
  color: var(--text-dim); font-size: .95rem; font-weight: 500;
  position: relative; padding: .25rem 0;
  transition: color .2s ease;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px; background: var(--amber); transition: width .25s ease;
}
.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.lang-switch { display: flex; align-items: center; gap: .35rem; font-size: .8rem; font-weight: 600; }
.lang.active { color: var(--amber); }
.lang-sep { color: var(--text-mute); }
.lang-soon { color: var(--text-mute); cursor: not-allowed; opacity: .7; }

.nav-toggle { display: flex; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span {
  width: 24px; height: 2px; background: var(--text); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav open */
.main-nav.open {
  display: flex; flex-direction: column;
  position: absolute; top: 66px; left: 0; right: 0;
  background: rgba(13,11,10,.98);
  border-bottom: 1px solid var(--line);
  padding: 1rem 22px 1.5rem; gap: 0;
}
.main-nav.open a {
  padding: .9rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  padding-top: 70px; padding-bottom: 60px;
  background:
    radial-gradient(1200px 600px at 70% 10%, rgba(192,57,43,.22), transparent 60%),
    radial-gradient(900px 500px at 15% 90%, rgba(224,169,59,.16), transparent 60%),
    linear-gradient(180deg, #100d0b 0%, #0d0b0a 100%);
  overflow: hidden;
}
/* subtle smoke texture */
.hero::before {
  content: '';
  position: absolute; inset: -20%;
  background:
    radial-gradient(40% 30% at 30% 40%, rgba(245,239,230,.04), transparent 60%),
    radial-gradient(35% 25% at 75% 60%, rgba(224,169,59,.06), transparent 65%),
    radial-gradient(30% 20% at 50% 85%, rgba(192,57,43,.05), transparent 60%);
  filter: blur(20px);
  animation: drift 18s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes drift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(2%, -2%, 0) scale(1.05); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13,11,10,.6) 100%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 640px; }
.hero-eyebrow {
  display: inline-block;
  font-size: .8rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--amber);
  padding: .35rem .8rem; border: 1px solid rgba(224,169,59,.3);
  border-radius: 999px; margin-bottom: 1.25rem;
  background: rgba(224,169,59,.06);
}
.hero-title {
  font-size: clamp(2.4rem, 8vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.hero-sub { font-size: clamp(1rem, 2.5vw, 1.25rem); color: var(--text-dim); margin-bottom: 2rem; max-width: 30ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 1.75rem; }
.hero-open {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .9rem; color: var(--text-dim);
  padding: .5rem .9rem; border-radius: 999px;
  background: rgba(46,204,113,.08); border: 1px solid rgba(46,204,113,.25);
  margin-bottom: .5rem;
}
.hero-open.closed { background: rgba(192,57,43,.1); border-color: rgba(192,57,43,.3); }
.hero-open .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2ecc71; box-shadow: 0 0 10px #2ecc71;
}
.hero-open.closed .dot { background: var(--red); box-shadow: 0 0 10px var(--red); }
.hero-age { font-size: .8rem; color: var(--text-mute); letter-spacing: .03em; }

.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll span {
  display: block; width: 22px; height: 34px;
  border: 2px solid var(--text-mute); border-radius: 12px;
  position: relative;
}
.hero-scroll span::after {
  content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; background: var(--amber); border-radius: 2px;
  animation: scrollDown 1.6s ease-in-out infinite;
}
@keyframes scrollDown {
  0%, 100% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translate(-50%, 10px); }
}

/* =========================================================
   SECTIONS (shared)
   ========================================================= */
.section { padding: 88px 0; position: relative; }
.section-alt { background: var(--bg-2); }
.section-head { max-width: 640px; margin-bottom: 2.5rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.kicker {
  font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--amber); margin-bottom: .65rem;
}
.section-head h2 { font-size: clamp(1.8rem, 5vw, 2.6rem); margin-bottom: .75rem; }
.section-lead { color: var(--text-dim); font-size: 1.05rem; }
.stars { color: var(--amber); letter-spacing: 2px; }
.rating-meta { color: var(--text-dim); margin-left: .5rem; }

/* =========================================================
   MENU
   ========================================================= */
.callout {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: linear-gradient(135deg, rgba(224,169,59,.08), rgba(122,31,31,.1));
  border: 1px solid rgba(224,169,59,.25);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  margin-bottom: 2.5rem;
}
.callout-icon { color: var(--amber); flex: none; padding-top: 2px; }
.callout-body h3 { font-size: 1.1rem; margin-bottom: .35rem; color: var(--text); }
.callout-body p { color: var(--text-dim); font-size: .95rem; }
.callout-body strong { color: var(--amber); }

.menu-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
.menu-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: border-color .25s ease, transform .25s ease;
}
.menu-card:hover { border-color: rgba(224,169,59,.35); transform: translateY(-3px); }
.menu-cat {
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 1rem;
  padding-bottom: .65rem; border-bottom: 1px solid var(--line);
}
.menu-list { display: flex; flex-direction: column; gap: 1.1rem; }
.menu-item-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: .2rem; }
.menu-name { font-weight: 600; color: var(--text); }
.menu-price {
  font-weight: 700; color: var(--amber); font-variant-numeric: tabular-nums;
  font-family: var(--font-head); font-size: 1.05rem;
}
.menu-desc { color: var(--text-dim); font-size: .9rem; }
.menu-note { margin-top: 1.75rem; text-align: center; color: var(--text-mute); font-size: .85rem; }

/* =========================================================
   AMBIANCE / GALLERY
   ========================================================= */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  max-width: 900px;
  margin-inline: auto;
}
.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--bg-3);
  height: 300px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.1rem;
}
.review {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  position: relative;
}
.review::before {
  content: '\201C';
  position: absolute; top: -8px; left: 18px;
  font-family: Georgia, serif; font-size: 3rem; line-height: 1;
  color: rgba(224,169,59,.35);
}
.review-stars { color: var(--amber); font-size: .85rem; letter-spacing: 1px; margin-bottom: .65rem; }
.review-meta { color: var(--text-mute); margin-left: .5rem; font-size: .8rem; }
.review blockquote { color: var(--text); font-size: 1rem; margin-bottom: .75rem; }
.reviewer { font-weight: 600; color: var(--text-dim); font-size: .9rem; }

/* =========================================================
   HOURS
   ========================================================= */
.hours-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  max-width: 520px;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}
.hours-table td:first-child { color: var(--text-dim); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--text); font-variant-numeric: tabular-nums; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-note { margin-top: 1rem; color: var(--text-mute); font-size: .85rem; }

/* =========================================================
   LOCATION
   ========================================================= */
.location-wrap {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
.location-info { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
.location-address, .location-hint {
  display: flex; align-items: flex-start; gap: .65rem;
  color: var(--text); font-size: 1.05rem;
}
.location-address svg { color: var(--amber); flex: none; margin-top: 2px; }
.location-hint { color: var(--text-dim); font-size: .92rem; }
.location-hint svg { color: var(--text-mute); flex: none; margin-top: 2px; }
.location-btn { align-self: flex-start; margin-top: .5rem; }

.map {
  height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
/* dark-filter the OSM tiles for atmosphere */
.leaflet-tile-pane { filter: invert(.92) hue-rotate(180deg) brightness(.85) contrast(.9) saturate(.7); }
.leaflet-container { background: var(--bg-2); }
.leaflet-control-attribution { background: rgba(13,11,10,.7) !important; color: var(--text-mute) !important; }
.leaflet-control-attribution a { color: var(--text-dim) !important; }
.map .leaflet-popup-content-wrapper, .map .leaflet-popup-tip {
  background: var(--bg-3); color: var(--text); box-shadow: var(--shadow);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-wrap {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  align-items: start;
}
.contact-links { display: flex; flex-wrap: wrap; gap: .75rem; }
.contact-pill {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .7rem 1.1rem;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 500; font-size: .95rem; color: var(--text);
  transition: border-color .2s ease, transform .2s ease, color .2s ease;
}
.contact-pill svg { color: var(--amber); }
.contact-pill:hover { border-color: var(--amber); transform: translateY(-2px); color: var(--amber); }

.contact-form {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
}
.form-hint { color: var(--text-mute); font-size: .85rem; margin-bottom: 1.1rem; }
.field { margin-bottom: 1rem; display: flex; flex-direction: column; gap: .35rem; }
.field label { font-size: .85rem; font-weight: 600; color: var(--text-dim); }
.field input, .field textarea {
  width: 100%;
  padding: .8rem .95rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  font: inherit;
  resize: vertical;
  transition: border-color .2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-mute); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--amber); }

/* =========================================================
   AGE BANNER
   ========================================================= */
.age-banner {
  background: linear-gradient(90deg, var(--red-deep), var(--red));
  padding: 1.4rem 0;
}
.age-banner .container { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.age-badge {
  font-family: var(--font-head); font-weight: 700;
  background: rgba(0,0,0,.25);
  padding: .35rem .7rem; border-radius: var(--radius-sm);
  font-size: 1.1rem; letter-spacing: .02em;
}
.age-banner p { font-size: .95rem; color: rgba(255,255,255,.92); }
.age-banner a { text-decoration: underline; font-weight: 600; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #08070680;
  background: #070605;
  border-top: 1px solid var(--line);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand .wordmark-glow { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; }
.footer-brand p { color: var(--text-dim); font-size: .9rem; margin-top: .25rem; }
.footer-tag { color: var(--text-mute) !important; font-size: .82rem !important; margin-top: .35rem; }
.footer-nav, .footer-legal { display: flex; flex-direction: column; gap: .6rem; }
.footer-nav a, .footer-legal a { color: var(--text-dim); font-size: .92rem; transition: color .2s ease; }
.footer-nav a:hover, .footer-legal a:hover { color: var(--amber); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem;
  padding-top: 1.5rem; border-top: 1px solid var(--line);
}
.footer-bottom p { color: var(--text-mute); font-size: .82rem; }
.credit a.wbiz { color: var(--amber); font-weight: 600; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (min-width: 640px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-links { gap: 1rem; }
}
@media (min-width: 860px) {
  .main-nav { display: flex; }
  .nav-toggle { display: none; }
  .menu-grid { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .location-wrap { grid-template-columns: 1fr 1.2fr; }
  .contact-wrap { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .map { height: 420px; }
  .section { padding: 110px 0; }

  /* bento gallery: large square + portrait side-by-side */
  .gallery {
    grid-template-columns: 1.6fr 1fr;
    grid-auto-rows: 1fr;
    height: 440px;
    max-width: 1000px;
  }
  .gallery-item { height: 100%; }
}
@media (min-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}