/* LIFT Hookah Lounge — website.
   Brand from the PDF: MIDNIGHT #111524, GREEN #364136, BEIGE #D4CCC4,
   LIGHT #F2F2F1, BROWN #8B6C47. Gold is BROWN pulled into a metallic ramp.
   Display: Marcellus (classical, flared, echoes the wordmark). Body: Jost.
   Quotes: Cormorant Garamond italic. Dark by default, one beige palette break
   for the hookah showcase so the white-background renders sit naturally. */

:root {
  --midnight: #111524;
  --midnight-deep: #0B0E19;
  --green: #364136;
  --beige: #D4CCC4;
  --light: #F2F2F1;
  --brown: #8B6C47;
  --gold-1: #8B6C47; --gold-2: #E3C795; --gold-3: #B8925A;
  --gold: linear-gradient(135deg, var(--gold-1), var(--gold-2) 48%, var(--gold-3));
  --gold-flat: #C9A96A;

  --ink: var(--beige);
  --ink-dim: rgba(212, 204, 196, .62);
  --ink-faint: rgba(212, 204, 196, .34);
  --line: rgba(212, 204, 196, .13);
  --line-soft: rgba(212, 204, 196, .07);

  --display: 'Marcellus', 'Georgia', serif;
  --body: 'Jost', system-ui, sans-serif;
  --quote: 'Cormorant Garamond', 'Georgia', serif;

  --wrap: 1180px;
  --pad: clamp(20px, 5vw, 56px);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--midnight-deep); color: var(--ink);
  font-family: var(--body); font-weight: 300; font-size: 16px; line-height: 1.6;
  overflow-x: hidden;
}
/* height:auto is global on purpose: several images carry width/height attributes
   for layout stability, and without it a narrow viewport shrinks the width while
   the attribute height stays fixed, which is exactly what stretched the gold
   cards on a phone. */
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--display); font-weight: 400; margin: 0; line-height: 1.08; letter-spacing: .01em; }
h2 { font-size: clamp(30px, 4.2vw, 52px); }
h3 { font-size: 22px; }
p { margin: 0; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.center { text-align: center; }
.tiny { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); }
.skip { position: absolute; left: -999px; top: 0; }
.skip:focus { left: 16px; top: 16px; z-index: 999; background: var(--beige); color: var(--midnight); padding: 8px 12px; }

/* grain, so the dark sections have air instead of flat pixels */
body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ── type helpers ───────────────────────────────────────────────────────── */
.eyebrow { font-size: 11px; letter-spacing: .36em; text-indent: .36em; text-transform: uppercase; color: var(--gold-flat); font-weight: 400; }
.sec-head { margin-bottom: clamp(36px, 6vw, 72px); }
.sec-head h2 { margin-top: 14px; max-width: 18ch; }

/* wordmark, letter by letter so the tracking is exact */
.wm { display: inline-flex; gap: .46em; font-family: var(--body); font-weight: 200; text-transform: uppercase; line-height: 1; color: var(--beige); }
.wm-nav { font-size: 20px; }
.wm-foot { font-size: 30px; }

/* ── buttons ────────────────────────────────────────────────────────────── */
.btn-gold, .btn-line {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 26px; border-radius: 3px;
  font-family: var(--body); font-size: 12px; font-weight: 500; letter-spacing: .24em; text-indent: .24em; text-transform: uppercase;
  transition: transform .5s var(--ease), background .3s, border-color .3s, color .3s;
}
.btn-gold { background: var(--gold); color: #221A0E; box-shadow: 0 10px 40px rgba(184, 146, 90, .18); }
.btn-gold:hover { transform: translateY(-2px); }
.btn-line { border: 1px solid rgba(212, 204, 196, .3); color: var(--ink); }
.btn-line:hover { border-color: var(--gold-2); color: var(--gold-2); }
.btn-line svg { width: 16px; height: 16px; }

/* ── nav ────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 22px var(--pad); transition: background .4s, padding .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.solid { background: rgba(11, 14, 25, .86); backdrop-filter: blur(18px) saturate(140%); padding: 14px var(--pad); border-bottom-color: var(--line-soft); }
.nav-links { display: flex; gap: 30px; }
.nav-links a, .drawer a { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-dim); transition: color .3s; }
.nav-links a:hover { color: var(--beige); }
.nav-right { display: flex; align-items: center; gap: 22px; }
.nav-right .btn-line { min-height: 40px; padding: 0 18px; font-size: 10px; }
.langs { display: flex; gap: 2px; }
.langs a { font-size: 10px; letter-spacing: .18em; padding: 6px 7px; color: var(--ink-faint); border-radius: 2px; transition: color .3s; }
.langs a.on { color: var(--gold-2); }
.langs a:hover { color: var(--beige); }
.burger { display: none; width: 40px; height: 40px; background: none; border: 0; cursor: pointer; padding: 8px; flex-direction: column; justify-content: center; gap: 6px; }
.burger span { display: block; height: 1px; background: var(--beige); transition: transform .3s, opacity .3s; }
.burger[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.drawer {
  position: fixed; inset: 0; z-index: 40; background: rgba(11, 14, 25, .97); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 26px;
  opacity: 0; pointer-events: none; transition: opacity .4s;
}
.drawer.on { opacity: 1; pointer-events: auto; }
.drawer a { font-family: var(--display); font-size: 28px; letter-spacing: .08em; text-transform: none; color: var(--beige); }
.drawer .drawer-login { font-family: var(--body); font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-2); margin-top: 10px; }
.drawer .langs a { font-size: 12px; }

/* ── hero ───────────────────────────────────────────────────────────────── */
.hero { position: relative; min-height: 100svh; display: grid; align-items: end; overflow: hidden; isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; animation: kb 22s var(--ease) both; transform-origin: 50% 40%; }
@keyframes kb { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero-veil { position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,14,25,.55) 0%, rgba(11,14,25,.05) 30%, rgba(11,14,25,.25) 55%, rgba(11,14,25,.96) 100%),
    radial-gradient(70% 50% at 20% 90%, rgba(11,14,25,.7), transparent 70%);
}
.hero-inner { position: relative; width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad) clamp(64px, 10vh, 120px); }
.hero-title { font-size: clamp(40px, 7.2vw, 96px); max-width: 12ch; margin: 18px 0 22px; color: var(--light); text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.hero-title .w { display: inline-block; opacity: 0; transform: translateY(.6em); animation: rise 1.1s var(--ease) forwards; animation-delay: calc(.12s + var(--i) * .07s); }
.hero-sub { max-width: 48ch; font-size: clamp(16px, 1.5vw, 19px); color: rgba(242,242,241,.8); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-rating { display: inline-flex; align-items: center; gap: 12px; margin-top: 30px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: rgba(242,242,241,.7); }
.stars { display: inline-flex; gap: 3px; }
.stars svg { width: 13px; height: 13px; fill: var(--gold-2); }
.hero-scroll { position: absolute; right: var(--pad); bottom: 34px; width: 1px; height: 64px; background: rgba(242,242,241,.18); overflow: hidden; }
.hero-scroll span { position: absolute; left: 0; top: -100%; width: 100%; height: 100%; background: var(--gold-2); animation: drop 2.2s var(--ease) infinite; }
@keyframes drop { 0% { top: -100%; } 60%, 100% { top: 100%; } }

.rise { opacity: 0; transform: translateY(18px); animation: rise 1.1s var(--ease) forwards; animation-delay: calc(.2s + var(--i, 0) * .07s); }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ── scroll reveal ──────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1.1s var(--ease); transition-delay: calc(var(--i, 0) * .09s); }
.reveal.in { opacity: 1; transform: none; }

/* ── manifesto ──────────────────────────────────────────────────────────── */
.manifest { padding: clamp(90px, 14vw, 170px) 0 0; text-align: center; }
.manifest-line { font-family: var(--display); font-size: clamp(30px, 5.4vw, 68px); line-height: 1.12; color: var(--light); }
.manifest-line-2 { color: var(--gold-2); }
.manifest-sub { margin: 26px auto 0; max-width: 46ch; color: var(--ink-dim); font-size: 17px; }
.strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin-top: clamp(60px, 9vw, 120px); padding: 0 6px; }
/* height:auto is load-bearing: the <img height> attribute otherwise wins over aspect-ratio and every tile renders 960px tall */
.strip img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; filter: saturate(.85); transition: filter .6s; }
.strip img:nth-child(even) { transform: translateY(24px); }
.strip img:hover { filter: saturate(1); }

/* ── space ──────────────────────────────────────────────────────────────── */
.space { padding: clamp(100px, 14vw, 180px) 0 0; }
.space-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.space-card { position: relative; }
.space-media { aspect-ratio: 4/5; overflow: hidden; border-radius: 3px; background: var(--midnight); }
.space-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.space-card:hover .space-media img { transform: scale(1.04); }
.space-body { padding: 22px 4px 0; }
.space-body .num { font-size: 11px; letter-spacing: .3em; color: var(--gold-flat); }
.space-body h3 { margin: 8px 0 8px; font-size: 26px; }
.space-body p { color: var(--ink-dim); max-width: 34ch; }
.space-card:nth-child(2) { transform: translateY(44px); }
.space-card:nth-child(2).reveal.in { transform: translateY(44px); }
.space-wide { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 6px; margin-top: clamp(80px, 10vw, 130px); }
.space-wide img { width: 100%; height: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: 2px; }

/* ── hookah (the beige break) ───────────────────────────────────────────── */
.hookah { background: var(--light); color: var(--midnight); margin-top: clamp(100px, 14vw, 180px); padding: clamp(90px, 12vw, 150px) 0; position: relative; }
.hookah::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(139,108,71,.45), transparent); }
.hookah .eyebrow { color: var(--brown); }
.hookah-head { max-width: 640px; }
.hookah-head h2 { margin-top: 14px; }
.hookah-head p { margin-top: 20px; color: rgba(17,21,36,.66); font-size: 17px; max-width: 50ch; }
.hookah-row { display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 0; align-items: end; justify-items: center; margin-top: clamp(50px, 6vw, 80px); }
/* The renders are pre-cut to transparent WebP (research -> photos), so no blend
   trick is needed; they are just tall images sized by height so all three
   stand on one baseline. */
.hk { margin: 0; will-change: transform; display: flex; justify-content: center; align-items: flex-end; }
.hk img { width: auto; height: clamp(300px, 36vw, 500px); filter: drop-shadow(0 34px 38px rgba(17,21,36,.18)); }
.hk-mid img { height: clamp(320px, 40vw, 560px); }
.hookah-quote { margin: clamp(50px, 7vw, 90px) auto 0; max-width: 720px; text-align: center; }
.hookah-quote blockquote, .review blockquote { font-family: var(--quote); font-style: italic; font-weight: 300; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.35; margin: 0; }
.hookah-quote blockquote::before { content: '“'; color: var(--brown); margin-right: 2px; }
.hookah-quote blockquote::after { content: '”'; color: var(--brown); margin-left: 2px; }
.hookah-quote figcaption, .review figcaption { margin-top: 18px; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; }
.hookah-quote figcaption span, .review figcaption span { opacity: .5; }
.hookah .review-tr { color: rgba(17,21,36,.55); }

/* ── rooftop ────────────────────────────────────────────────────────────── */
.rooftop { position: relative; padding: clamp(110px, 16vw, 200px) 0; isolation: isolate; overflow: hidden; }
.rooftop-media { position: absolute; inset: 0; z-index: -2; }
.rooftop-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.rooftop::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(11,14,25,.95) 0%, rgba(11,14,25,.75) 45%, rgba(11,14,25,.35) 100%); }
.rooftop-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.rooftop-text h2 { margin-top: 14px; color: var(--light); }
.rooftop-text p { margin: 20px 0 30px; color: var(--ink-dim); font-size: 17px; max-width: 46ch; }
.rooftop-side { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; align-items: end; }
.rooftop-side img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 3px; box-shadow: 0 30px 60px rgba(0,0,0,.5); }
.rooftop-side img:first-child { transform: translateY(-30px); }

/* ── reviews ────────────────────────────────────────────────────────────── */
.reviews { padding: clamp(100px, 14vw, 180px) 0; }
.reviews .big { font-size: 1.3em; color: var(--gold-2); }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-bottom: 44px; }
.review { margin: 0; padding: 32px 30px; border: 1px solid var(--line); border-radius: 3px; background: rgba(212,204,196,.025); }
.review .stars { margin-bottom: 18px; }
.review blockquote { font-size: 20px; }
.review-tr { margin-top: 12px; font-size: 14px; color: var(--ink-dim); }

/* ── club ───────────────────────────────────────────────────────────────── */
.club { background: linear-gradient(180deg, var(--midnight-deep), #0E1220 50%, var(--midnight-deep)); padding: clamp(60px, 8vw, 100px) 0 clamp(100px, 14vw, 180px); position: relative; }
.club::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(227,199,149,.4), transparent); }
.club-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.club-media img { border-radius: 4px; box-shadow: 0 40px 90px rgba(0,0,0,.6); }
.club-text h2 { margin-top: 14px; font-size: clamp(30px, 3.8vw, 46px); color: var(--light); }
.club-text > p { margin-top: 20px; color: var(--ink-dim); font-size: 17px; max-width: 48ch; }
.ladder { list-style: none; margin: 30px 0 0; padding: 0; border-top: 1px solid var(--line); }
.ladder li { display: grid; grid-template-columns: 52px 90px 1fr; gap: 14px; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.ladder-n { font-family: var(--display); font-size: 26px; color: var(--gold-2); }
.ladder-u { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-faint); }
.ladder-r { font-size: 14px; letter-spacing: .04em; }
.club-cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 34px; }

/* ── contact ────────────────────────────────────────────────────────────── */
.contact { padding: 0 0 clamp(90px, 12vw, 150px); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.contact-text h2 { margin-top: 14px; }
.contact-list { margin: 34px 0 30px; display: grid; gap: 22px; }
.contact-list div { display: grid; gap: 6px; }
.contact-list dt { display: flex; align-items: center; gap: 10px; font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--ink-faint); }
.contact-list dt svg { width: 15px; height: 15px; color: var(--gold-flat); }
.contact-list dd { margin: 0; font-size: 18px; }
.contact-list dd a:hover { color: var(--gold-2); }
.social a { display: inline-flex; align-items: center; gap: 8px; margin-right: 18px; }
.social svg { width: 18px; height: 18px; }
.contact-map { position: relative; }
.contact-map iframe { width: 100%; aspect-ratio: 4/3; border: 0; border-radius: 3px; filter: grayscale(1) invert(.92) contrast(.9) brightness(.9) sepia(.2); }
.contact-photo { position: absolute; right: -14px; bottom: -34px; width: 34%; aspect-ratio: 3/4; object-fit: cover; border-radius: 3px; box-shadow: 0 30px 60px rgba(0,0,0,.6); border: 1px solid var(--line); }

/* ── footer ─────────────────────────────────────────────────────────────── */
.foot { border-top: 1px solid var(--line-soft); padding: 40px 0 30px; }
.foot-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.foot-mid { display: flex; gap: 26px; font-size: 12px; color: var(--ink-faint); letter-spacing: .06em; }
.foot-mid a { color: var(--ink-dim); }
.foot-mid a:hover { color: var(--gold-2); }
.foot-line { margin-top: 36px; text-align: center; font-size: 10px; letter-spacing: .4em; text-transform: uppercase; color: var(--ink-faint); }

/* ── responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .nav-links, .nav-right .btn-line, .nav-right .langs { display: none; }
  .burger { display: flex; }
  .space-grid { grid-template-columns: 1fr; gap: 40px; }
  .space-card:nth-child(2), .space-card:nth-child(2).reveal.in { transform: none; }
  .space-wide { grid-template-columns: 1fr 1fr; }
  .space-wide img:first-child { grid-column: 1 / -1; aspect-ratio: 16/10; }
  .rooftop-inner, .club-inner, .contact-inner { grid-template-columns: 1fr; }
  .rooftop-side img:first-child { transform: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .strip { grid-template-columns: repeat(3, 1fr); }
  .strip img:nth-child(n+4) { display: none; }
  .contact-photo { display: none; }
}
@media (max-width: 600px) {
  .hero-media img { object-position: 60% 45%; }
  .hero-title { font-size: clamp(38px, 11vw, 52px); }
  .hookah-row { grid-template-columns: 1fr 1fr; row-gap: 26px; }
  .hk-mid { grid-column: 1 / -1; order: -1; }
  .hk img { height: 300px; }
  .hk-mid img { height: 330px; }
  .hero-scroll { display: none; }
  .ladder li { grid-template-columns: 44px 70px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal, .rise, .hero-title .w { opacity: 1; transform: none; }
}
