/* ==========================================================================
   FINN · The Luxury Club — Premium Stylesheet
   ========================================================================== */

:root {
  /* Brand palette — restrained, deliberate */
  --ink: #0a0a0a;
  --ink-2: #121212;
  --ink-3: #1a1a1a;
  --ink-4: #242424;
  --paper: #f5f1ea;        /* warm editorial cream — used sparingly */
  --paper-dim: #ebe5db;
  --line: rgba(245, 241, 234, 0.14);
  --line-dim: rgba(245, 241, 234, 0.08);
  --gold: #c9a96e;         /* champagne */
  --gold-deep: #a8884f;
  --gold-soft: rgba(201, 169, 110, 0.18);
  --text: #f0e9dc;
  --text-2: #b8b1a3;
  --text-3: #6b665c;

  /* Type */
  --display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --serif:  'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --max: 1480px;
  --gutter: 32px;
  --pad-x: 48px;
  --sec: clamp(80px, 10vw, 160px);

  /* Motion */
  --ease: cubic-bezier(.6,.05,.18,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--ink);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
::selection { background: var(--gold); color: var(--ink); }

body.no-scroll { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .cursor, .cursor-dot, .scroll-progress { display: none; }
  body { cursor: auto; }
}

/* ==========================================================================
   Cursor (desktop)
   ========================================================================== */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease), height .35s var(--ease), background .35s var(--ease), opacity .3s var(--ease);
  z-index: 9999;
  mix-blend-mode: difference;
}
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10000;
}
.cursor.hover {
  width: 64px; height: 64px;
  background: rgba(201,169,110,0.12);
}
@media (hover: none), (max-width: 1024px) {
  .cursor, .cursor-dot { display: none; }
  body { cursor: auto; }
}

/* ==========================================================================
   Scroll progress
   ========================================================================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 200;
  transition: transform .1s linear;
}

/* ==========================================================================
   Noise
   ========================================================================== */
.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

/* ==========================================================================
   Preloader
   ========================================================================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ink);
  display: grid;
  place-items: center;
  transition: opacity .8s var(--ease), visibility .8s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-mark {
  font-family: var(--display);
  font-size: clamp(60px, 9vw, 120px);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  animation: prePulse 2s ease-in-out infinite;
}
@keyframes prePulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}
.preloader-line {
  height: 1px;
  background: rgba(201,169,110,0.15);
  margin: 24px 0 16px;
  overflow: hidden;
}
.preloader-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: translateX(-100%);
  animation: preLine 1.4s var(--ease-out) forwards;
}
@keyframes preLine { to { transform: translateX(0); } }
.preloader-tag {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-2);
}

/* ==========================================================================
   Layout primitives
   ========================================================================== */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  position: relative;
}
@media (max-width: 768px) {
  :root { --pad-x: 22px; --gutter: 16px; }
}

.display {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--paper);
}
.display em { font-style: italic; color: var(--gold); font-weight: 400; }

.lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--text-2);
  max-width: 56ch;
}

.body-text {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.8;
  max-width: 48ch;
  margin-top: 20px;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 28px;
}
.section-eyebrow.center { justify-content: center; }
.eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap .35s var(--ease);
}
.link-arrow:hover { gap: 18px; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 32px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all .4s var(--ease);
  position: relative;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  border-color: var(--gold);
  color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--ink);
}
.btn-primary svg { transition: transform .35s var(--ease); }
.btn-primary:hover svg { transform: translateX(4px); }

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

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost svg { transition: transform .35s var(--ease); }
.btn-ghost:hover svg { transform: translateX(4px); }

.btn-block { width: 100%; padding: 22px 32px; }

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: padding .4s var(--ease), background .4s var(--ease), backdrop-filter .4s var(--ease);
}
.nav.scrolled {
  padding: 14px 0;
  background: rgba(10,10,10, 0.86);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line-dim);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-mark {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--paper);
}
.brand-sub {
  font-size: 9px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: 36px;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 400;
  position: relative;
  padding: 8px 0;
  transition: color .3s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .4s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 22px;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.nav-cta:hover { background: var(--gold); color: var(--ink); }

.nav-burger {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--paper);
  transition: transform .4s var(--ease), opacity .3s var(--ease);
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { grid-template-columns: auto 1fr; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  transition: opacity .5s var(--ease), visibility .5s;
}
.mobile-menu.open { visibility: visible; opacity: 1; }
.mobile-menu-bg {
  position: absolute;
  inset: 0;
  background: var(--ink);
}
.mobile-menu-inner {
  position: relative;
  height: 100%;
  padding: 100px 32px 60px;
  display: flex;
  flex-direction: column;
}
.mobile-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 22px; left: 32px; right: 32px;
}
.mobile-close { padding: 4px; }
.mobile-nav {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.m-link {
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-family: var(--display);
  font-size: clamp(34px, 8vw, 48px);
  font-weight: 400;
  color: var(--paper);
  padding: 8px 0;
  border-bottom: 1px solid var(--line-dim);
  transition: color .3s var(--ease), padding-left .4s var(--ease);
}
.m-link span {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-3);
  font-weight: 400;
}
.m-link:hover { color: var(--gold); padding-left: 12px; }
.mobile-meta {
  margin-top: auto;
  padding-top: 28px;
}
.mobile-meta a {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.mobile-meta-loc {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 10px;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(60,40,15,0.45), transparent 70%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 60%, #050505 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
}
.hero-bg::after {
  /* Cinematic photo "placeholder" — vertical light beams */
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 400px 800px at 20% 60%, rgba(201,169,110,0.25), transparent 70%),
    radial-gradient(ellipse 500px 600px at 80% 40%, rgba(120,40,90,0.30), transparent 70%),
    radial-gradient(ellipse 600px 400px at 50% 100%, rgba(40,80,120,0.30), transparent 70%);
  filter: blur(20px);
  animation: drift 20s ease-in-out infinite alternate;
}
@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, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.7) 60%, var(--ink) 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
  opacity: 0.25;
  mix-blend-mode: overlay;
}

.hero-frame {
  position: absolute;
  inset: 100px 32px 32px;
  z-index: 2;
  pointer-events: none;
}
.hero-frame > div {
  position: absolute;
  width: 28px; height: 28px;
  border: 1px solid var(--gold-soft);
}
.frame-tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.frame-tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.frame-bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.frame-br { bottom: 0; right: 0; border-left: 0; border-top: 0; }
@media (max-width: 768px) { .hero-frame { display: none; } }

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: rise 1s var(--ease-out) 0.5s forwards;
}
.hero-eyebrow .eyebrow-line { width: 48px; }
.hero-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(56px, 11vw, 180px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 40px;
}
.hero-line {
  display: block;
  overflow: hidden;
  opacity: 0;
  transform: translateY(110%);
  animation: heroLine 1.2s var(--ease-out) forwards;
}
.hero-line:nth-child(1) { animation-delay: 0.7s; }
.hero-line:nth-child(2) { animation-delay: 0.85s; }
.hero-line:nth-child(3) { animation-delay: 1.0s; }
.hero-line em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
@keyframes heroLine {
  to { transform: translateY(0); opacity: 1; }
}
.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.6;
  color: var(--text-2);
  max-width: 540px;
  opacity: 0;
  animation: rise 1s var(--ease-out) 1.2s forwards;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 48px;
  flex-wrap: wrap;
  opacity: 0;
  animation: rise 1s var(--ease-out) 1.4s forwards;
}
.hero-foot {
  position: absolute;
  bottom: -60px;
  left: var(--pad-x);
  right: var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: end;
  opacity: 0;
  animation: rise 1s var(--ease-out) 1.6s forwards;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-2);
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-2);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.hero-scroll:hover { color: var(--gold); border-color: var(--gold); }
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero { padding: 120px 0 60px; }
  .hero-foot {
    position: static;
    margin-top: 60px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee {
  background: var(--ink);
  border-top: 1px solid var(--line-dim);
  border-bottom: 1px solid var(--line-dim);
  padding: 28px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 32px);
  color: var(--text-2);
}
.marquee-track span { flex-shrink: 0; }
.marquee-track span:nth-child(even) { color: var(--gold); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Experience (editorial)
   ========================================================================== */
.experience {
  padding: var(--sec) 0;
  background: var(--ink);
}
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.exp-left .display { margin-bottom: 28px; }
.exp-image {
  position: relative;
}
.exp-image-frame {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--line);
}
.exp-img {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,200,150,0.18) 0%, rgba(50,30,80,0.45) 50%, rgba(0,0,0,0.85) 100%),
    radial-gradient(ellipse at 30% 70%, rgba(201,169,110,0.55), transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(140,40,80,0.4), transparent 70%),
    linear-gradient(180deg, #1a1410, #050505);
  filter: saturate(1.15) contrast(1.05);
  transform: scale(1);
  transition: transform 1.4s var(--ease), filter 1.4s var(--ease);
}
.exp-image:hover .exp-img { transform: scale(1.06); filter: saturate(1.25) contrast(1.08); }
.exp-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.4) 100%);
  pointer-events: none;
}
.exp-badge {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--ink);
  padding: 14px 18px;
  border: 1px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.exp-badge span {
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--text-2);
}
.exp-badge strong {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  color: var(--gold);
  margin-top: 6px;
}
.exp-caption {
  position: absolute;
  bottom: 24px; left: 24px;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-2);
  padding-left: 12px;
  border-left: 1px solid var(--gold);
}

@media (max-width: 1024px) {
  .exp-grid { grid-template-columns: 1fr; gap: 60px; }
  .exp-right { order: -1; }
  .exp-image-frame { aspect-ratio: 16/10; }
}

/* ==========================================================================
   Features
   ========================================================================== */
.features {
  padding: var(--sec) 0;
  background: var(--ink-2);
  border-top: 1px solid var(--line-dim);
  border-bottom: 1px solid var(--line-dim);
}
.features-head {
  margin-bottom: 80px;
  max-width: 720px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-left: 1px solid var(--line-dim);
  border-top: 1px solid var(--line-dim);
}
.feature {
  padding: 48px 32px 0;
  border-right: 1px solid var(--line-dim);
  border-bottom: 1px solid var(--line-dim);
  position: relative;
  min-height: 360px;
  overflow: hidden;
  transition: background .5s var(--ease);
}
.feature:hover { background: rgba(201,169,110,0.04); }
.feature-large {
  grid-column: span 3;
}
.feature-wide { grid-column: span 2; }
.feature:not(.feature-large):not(.feature-wide) {
  grid-column: span 2;
}
.feature-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 100px;
}
.feature h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin-bottom: 16px;
}
.feature p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 36ch;
}
.feature-img {
  position: absolute;
  bottom: 0; right: 0;
  width: 180px; height: 180px;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .7s var(--ease), transform .9s var(--ease);
  filter: grayscale(0.4) contrast(1.1);
}
.feature:hover .feature-img { opacity: 0.45; transform: scale(1.05); }
.fi-1 {
  background:
    linear-gradient(135deg, rgba(201,169,110,0.4), transparent 50%),
    radial-gradient(circle at 40% 60%, #6b3c1a, #1a0a05);
}
.fi-2 {
  background:
    radial-gradient(circle at 50% 30%, #b8862b, #1a0a05);
}
.fi-3 {
  background:
    radial-gradient(circle at 30% 50%, #4a1a3a, #0a0510),
    radial-gradient(circle at 70% 70%, #1a2a4a, transparent);
}
.fi-4 {
  background:
    linear-gradient(135deg, rgba(150,100,40,0.4), #0a0505);
}
.fi-5 {
  background:
    radial-gradient(ellipse at 50% 50%, #2a1010, #050505);
}

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-large { grid-column: span 2; }
  .feature-wide { grid-column: span 2; }
  .feature:not(.feature-large):not(.feature-wide) { grid-column: span 1; }
  .feature-num { margin-bottom: 60px; }
}
@media (max-width: 640px) {
  .feature { padding: 32px 24px 0; min-height: 280px; }
  .feature-large, .feature-wide, .feature:not(.feature-large):not(.feature-wide) { grid-column: span 2; }
}

/* ==========================================================================
   Events
   ========================================================================== */
.events {
  padding: var(--sec) 0;
  background: var(--ink);
}
.events-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 64px;
  gap: 40px;
  flex-wrap: wrap;
}
.events-head-left { max-width: 720px; }
.events-tag {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 12px 20px;
  border: 1px solid var(--gold-soft);
}
.events-list {
  border-top: 1px solid var(--line);
}
.event {
  display: grid;
  grid-template-columns: 200px 1fr 320px;
  gap: 48px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding-left .5s var(--ease), background .4s var(--ease);
}
.event:hover { padding-left: 20px; background: rgba(201,169,110,0.02); }
.event-date {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.event-day-num {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1;
  color: var(--gold);
}
.event-mon {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-2);
}
.event-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
}
.event-dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
}
.event-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.1;
  color: var(--paper);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.event-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 52ch;
}
.event-foot {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line-dim);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-3);
}
.event-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
}
.event-img {
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line-dim);
  filter: saturate(1.05);
  transform: scale(1);
  transition: transform .8s var(--ease);
}
.event:hover .event-img { transform: scale(1.02); }
.ev-1 {
  background:
    linear-gradient(135deg, rgba(201,169,110,0.5), transparent 50%),
    radial-gradient(ellipse at 30% 60%, #5a2820, #0a0505);
}
.ev-2 {
  background:
    radial-gradient(circle at 60% 40%, #b88a4c, #1a0a05),
    radial-gradient(circle at 20% 80%, rgba(201,169,110,0.3), transparent);
}
.ev-3 {
  background:
    linear-gradient(180deg, rgba(40,15,30,0.7), rgba(10,10,10,1)),
    radial-gradient(circle at 50% 50%, #8a3a5a, #1a0a15);
}

@media (max-width: 1024px) {
  .event {
    grid-template-columns: 140px 1fr;
    gap: 28px;
  }
  .event-img { grid-column: span 2; aspect-ratio: 16/9; }
}
@media (max-width: 640px) {
  .event { grid-template-columns: 1fr; padding: 28px 0; }
  .event-day-num { font-size: 56px; }
}

/* ==========================================================================
   Gallery (masonry)
   ========================================================================== */
.gallery {
  padding: var(--sec) 0;
  background: var(--ink-2);
  border-top: 1px solid var(--line-dim);
}
.gallery-head {
  margin-bottom: 64px;
  max-width: 720px;
}
.masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.m-tall   { grid-column: span 2; grid-row: span 2; }
.m-wide   { grid-column: span 2; grid-row: span 1; }
.m-sq     { grid-column: span 1; grid-row: span 2; }
.m-tall + .m-wide { grid-row: span 1; }

.m-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  filter: saturate(1.05) contrast(1.02);
  transition: filter .6s var(--ease);
}
.m-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%);
  opacity: 0;
  transition: opacity .5s var(--ease);
}
figure:hover .m-inner::after { opacity: 1; }
.m-inner::before {
  content: attr(data-caption);
  position: absolute;
  bottom: 18px; left: 22px;
  z-index: 2;
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--paper);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
figure:hover .m-inner::before { opacity: 1; transform: translateY(0); }

.gi-1 { /* Main Lounge */
  background:
    linear-gradient(180deg, rgba(0,0,0,0.3), rgba(0,0,0,0.6)),
    radial-gradient(ellipse at 50% 40%, #8a5a2a, #1a0a05 70%);
}
.gi-2 { /* Cocktails */
  background:
    radial-gradient(circle at 30% 50%, #c9a96e, transparent 60%),
    linear-gradient(135deg, #2a1810, #0a0505);
}
.gi-3 { /* Dance Floor */
  background:
    radial-gradient(circle at 50% 50%, #4a1a3a, #0a0515),
    radial-gradient(circle at 50% 0%, rgba(201,169,110,0.3), transparent 60%);
}
.gi-4 { /* Bar */
  background:
    linear-gradient(90deg, #2a1810 0%, transparent 50%, #2a1810 100%),
    radial-gradient(ellipse at 50% 50%, #b88a4c, #1a0a05);
}
.gi-5 { /* DJ Booth */
  background:
    radial-gradient(circle at 50% 60%, #6a3a8a, #0a0510),
    radial-gradient(circle at 50% 40%, rgba(201,169,110,0.4), transparent 70%);
}
.gi-6 { /* VIP */
  background:
    linear-gradient(135deg, rgba(201,169,110,0.2), transparent),
    radial-gradient(ellipse at 70% 60%, #3a1a2a, #0a0505);
}
.gi-7 { /* Crowd */
  background:
    radial-gradient(circle at 50% 50%, #1a1a2a, #050505);
}
.gi-8 { /* Nightlife */
  background:
    radial-gradient(circle at 30% 30%, #b88a4c, transparent 70%),
    radial-gradient(circle at 70% 70%, #3a1a5a, transparent 70%),
    linear-gradient(180deg, #1a0a15, #050505);
}

@media (max-width: 1024px) {
  .masonry { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .m-tall { grid-column: span 2; }
  .m-wide { grid-column: span 3; }
  .m-sq { grid-column: span 1; grid-row: span 2; }
}
@media (max-width: 640px) {
  .masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: 10px; }
  .m-tall { grid-column: span 2; }
  .m-wide { grid-column: span 2; }
  .m-sq { grid-column: span 1; }
  .m-inner::before { font-size: 16px; }
}

/* ==========================================================================
   Reservations
   ========================================================================== */
.reservations {
  padding: var(--sec) 0;
  background: var(--ink);
  position: relative;
}
.reservations::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--gold));
}
.res-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.res-left .lede { margin: 28px 0 48px; }
.res-details {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 36px;
}
.res-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dim);
  gap: 20px;
}
.res-detail:last-child { border-bottom: 0; }
.res-key {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-3);
}
.res-val {
  font-family: var(--display);
  font-size: 18px;
  color: var(--paper);
}
.res-tel { color: var(--gold); transition: opacity .3s var(--ease); }
.res-tel:hover { opacity: 0.7; }

.res-form {
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 56px;
  position: relative;
}
.res-form::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 60px; height: 60px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}
.res-form::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 60px; height: 60px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.field { display: flex; flex-direction: column; gap: 10px; }
.field label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-3);
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  color: var(--paper);
  font-size: 15px;
  font-family: var(--sans);
  font-weight: 300;
  outline: none;
  transition: border-color .3s var(--ease);
}
.field textarea {
  resize: vertical;
  min-height: 80px;
  border: 1px solid var(--line);
  padding: 14px;
  margin-top: 6px;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--gold); }
.field input::placeholder,
.field textarea::placeholder { color: var(--text-3); }

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1 L5 5 L9 1' stroke='%23c9a96e' stroke-width='1' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  cursor: pointer;
}
.field select option { background: var(--ink); color: var(--paper); }

.res-form button[type=submit] { margin-top: 12px; }
.form-note {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 16px;
  line-height: 1.7;
}

.form-success {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid var(--gold-soft);
  background: var(--gold-soft);
  text-align: center;
}
.form-success h4 {
  font-family: var(--display);
  font-size: 24px;
  color: var(--gold);
  margin: 12px 0 8px;
}
.form-success p { font-size: 14px; color: var(--text); }
.success-mark {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto;
  color: var(--gold);
  font-size: 16px;
}

@media (max-width: 1024px) {
  .res-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 640px) {
  .res-form { padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 22px; margin-bottom: 22px; }
}

/* ==========================================================================
   Location
   ========================================================================== */
.location {
  padding: var(--sec) 0;
  background: var(--ink-2);
  border-top: 1px solid var(--line-dim);
  border-bottom: 1px solid var(--line-dim);
}
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.loc-list {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 36px 0;
}
.loc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dim);
  gap: 20px;
}
.loc-row:last-child { border-bottom: 0; }
.loc-key {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-3);
}
.loc-val {
  font-family: var(--display);
  font-size: 17px;
  color: var(--paper);
}
.loc-val[href] { color: var(--gold); }

.loc-map {
  position: relative;
  aspect-ratio: 4/3;
  border: 1px solid var(--gold-soft);
  background: var(--ink);
  overflow: hidden;
}
.loc-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.5) contrast(1.05) brightness(0.7);
}
.loc-map-frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(10,10,10,0.3), transparent 50%);
  border: 1px solid var(--gold-soft);
}

@media (max-width: 1024px) {
  .loc-grid { grid-template-columns: 1fr; }
  .loc-map { aspect-ratio: 16/10; }
}

/* ==========================================================================
   Social
   ========================================================================== */
.social {
  padding: var(--sec) 0;
  background: var(--ink);
}
.social-inner {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.social .display.center,
.social .lede.center,
.social .section-eyebrow.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.social .lede.center { margin-top: 20px; margin-bottom: 60px; }
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.s-tile {
  position: relative;
  padding: 56px 32px;
  background: var(--ink-2);
  border: 1px solid var(--line-dim);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: border-color .4s var(--ease), background .4s var(--ease), transform .5s var(--ease);
  overflow: hidden;
}
.s-tile::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.06), transparent);
  transition: left .8s var(--ease);
}
.s-tile:hover::before { left: 100%; }
.s-tile:hover { border-color: var(--gold); transform: translateY(-4px); }
.s-label {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-3);
}
.s-handle {
  font-family: var(--display);
  font-size: 24px;
  font-style: italic;
  color: var(--paper);
  margin-top: 12px;
  display: block;
}
.s-arrow {
  position: absolute;
  top: 32px; right: 32px;
  color: var(--gold);
  transition: transform .4s var(--ease);
}
.s-tile:hover .s-arrow { transform: translate(4px, -4px); }

@media (max-width: 768px) {
  .social-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #050505;
  padding: 100px 0 40px;
  border-top: 1px solid var(--line-dim);
  position: relative;
  overflow: hidden;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line-dim);
}
.footer-brand .footer-logo {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--paper);
  line-height: 1;
}
.footer-brand .footer-sub {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
}
.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--text-2);
  margin-top: 24px;
  max-width: 280px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-h {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-col a,
.footer-col p {
  display: block;
  font-size: 13px;
  color: var(--text-2);
  line-height: 2;
  transition: color .3s var(--ease);
}
.footer-col a:hover { color: var(--gold); }
.footer-tel { margin-top: 8px; color: var(--gold) !important; }

.footer-big {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(140px, 22vw, 360px);
  line-height: 0.85;
  letter-spacing: 0.02em;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px var(--line);
  margin: 0;
  user-select: none;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(201,169,110,0.06), transparent);
  -webkit-background-clip: text;
  background-clip: text;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 36px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-3);
  gap: 24px;
}

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-big { font-size: 28vw; }
}
@media (max-width: 640px) {
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ==========================================================================
   Mobile sticky CTA
   ========================================================================== */
.mobile-sticky {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  display: none;
  gap: 0;
  background: var(--ink);
  border-top: 1px solid var(--gold-soft);
  padding: 12px 12px 14px;
  padding-bottom: max(14px, env(safe-area-inset-bottom));
}
.ms-btn {
  flex: 1;
  text-align: center;
  padding: 14px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
}
.ms-primary {
  background: var(--gold);
  color: var(--ink);
}
.ms-call {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
  margin-left: 8px;
}
@media (max-width: 768px) {
  .mobile-sticky { display: flex; }
  body { padding-bottom: 76px; }
}

/* ==========================================================================
   Reveal animations (IntersectionObserver)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }

/* Slow-zoom on in-view for cinematic gallery tiles */
.m-inner.in-view,
.event-img.in-view,
.fi-1.in-view, .fi-2.in-view, .fi-3.in-view, .fi-4.in-view, .fi-5.in-view,
.gi-1.in-view, .gi-2.in-view, .gi-3.in-view, .gi-4.in-view,
.gi-5.in-view, .gi-6.in-view, .gi-7.in-view, .gi-8.in-view,
.ev-1.in-view, .ev-2.in-view, .ev-3.in-view,
#exp-img.in-view {
  animation: tileZoom 1.4s var(--ease-out) both;
}
@keyframes tileZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

/* Focus visible — accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}
.feature:focus-within {
  background: rgba(201,169,110,0.04);
}

/* Subtle line treatment for nav on initial load */
.nav:not(.scrolled) .nav-cta { border-color: var(--gold-soft); }
.nav:not(.scrolled) .brand-mark { text-shadow: 0 1px 0 rgba(0,0,0,0.5); }
