/* ============================================================
   DEPOT SQUARE EVENTS — Redesigned
   Historic venue · industrial meets elegance
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --ink: #16120d;
  --ink-2: #1e1912;
  --ink-3: #2a2318;
  --coal: #0f0c09;
  --cream: #f2ead9;
  --paper: #faf5ea;
  --paper-2: #f4ecdd;
  --rust: #b3542b;
  --rust-deep: #8f3f1e;
  --gold: #d9a25e;
  --gold-soft: #e7c18f;
  --text-dark: #1c1711;
  --text-muted: #6d6253;
  --line: rgba(28, 23, 17, 0.14);
  --line-light: rgba(242, 234, 217, 0.16);

  --serif: "Cormorant Garamond", Georgia, serif;
  --script: "Great Vibes", cursive;
  --sans: "Jost", "Segoe UI", sans-serif;

  --shadow-1: 0 20px 50px -20px rgba(22, 18, 13, 0.45);
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--coal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--rust); color: #fff; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--coal); }
::-webkit-scrollbar-thumb { background: #3a3226; border-radius: 8px; border: 2px solid var(--coal); }
::-webkit-scrollbar-thumb:hover { background: var(--rust); }

/* ============================================================
   FIXED BACKGROUND — fills left/right, never empty white
   ============================================================ */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background:
    radial-gradient(1200px 700px at 12% -10%, rgba(179, 84, 43, 0.16), transparent 60%),
    radial-gradient(1100px 800px at 105% 20%, rgba(217, 162, 94, 0.10), transparent 55%),
    linear-gradient(180deg, #15110c 0%, #1d1710 50%, #14100b 100%);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  will-change: transform;
}
.orb--a { width: 46vmax; height: 46vmax; left: -18vmax; top: -12vmax; background: rgba(179, 84, 43, 0.20); animation: drift 26s ease-in-out infinite alternate; }
.orb--b { width: 38vmax; height: 38vmax; right: -16vmax; top: 32%; background: rgba(217, 162, 94, 0.14); animation: drift 32s ease-in-out infinite alternate-reverse; }
.orb--c { width: 40vmax; height: 40vmax; left: 22%; bottom: -22vmax; background: rgba(140, 63, 30, 0.16); animation: drift 38s ease-in-out infinite alternate; }
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(8vmax, -6vmax, 0) scale(1.15); }
}
/* faint train rails motif */
.rails {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(242, 234, 217, 0.03) 0 1px, transparent 1px 140px),
    repeating-linear-gradient(0deg, rgba(242, 234, 217, 0.03) 0 1px, transparent 1px 140px);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 40%, #000 30%, transparent 100%);
          mask-image: radial-gradient(ellipse 90% 90% at 50% 40%, #000 30%, transparent 100%);
}
/* film grain */
.grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  border-radius: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 7px; height: 7px;
  background: var(--gold);
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1px solid rgba(217, 162, 94, 0.65);
  transition: width .3s var(--ease), height .3s var(--ease), border-color .3s;
}
.cursor-ring.is-hover {
  width: 58px; height: 58px;
  border-color: rgba(217, 162, 94, 0.95);
  background: rgba(217, 162, 94, 0.08);
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: var(--coal);
  transition: opacity .7s var(--ease), visibility .7s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__inner { text-align: center; position: relative; padding: 3rem; }
.preloader__ring {
  width: 120px; height: 120px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  border: 1px solid rgba(217, 162, 94, 0.25);
  border-top-color: var(--gold);
  animation: spin 1.1s linear infinite;
  position: relative;
}
.preloader__ring::after {
  content: "";
  position: absolute; inset: 14px;
  border-radius: 50%;
  border: 1px solid rgba(179, 84, 43, 0.3);
  border-bottom-color: var(--rust);
  animation: spin 1.6s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }
.preloader__word {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: 0.08em;
  color: var(--cream);
}
.preloader__tag {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(242, 234, 217, 0.5);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .4s, box-shadow .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(15, 12, 9, 0.82);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border-color: var(--line-light);
  box-shadow: 0 10px 40px -20px rgba(0,0,0,0.6);
}
.site-header__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media (min-width: 1500px) { .site-header__inner { padding: 0 3rem; } }

/* brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--cream);
}
.brand__mark {
  width: 46px; height: 46px;
  border: 1px solid rgba(242, 234, 217, 0.4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
}
.brand__mark::after {
  content: "";
  position: absolute; inset: 5px;
  border-radius: 50%;
  border: 1px dashed rgba(217, 162, 94, 0.55);
  animation: spin 24s linear infinite;
}
.brand__rails {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.brand__rails i {
  display: block;
  width: 20px; height: 2px;
  background: var(--gold);
  transform: rotate(-30deg);
}
.brand__rails i:nth-child(2) { transform: rotate(30deg); margin-top: -7px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__text strong {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.03em;
}
.brand__text em {
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

/* nav */
.site-nav ul { display: flex; gap: 2.1rem; }
.nav-link {
  position: relative;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 234, 217, 0.82);
  padding: 0.4rem 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }

.site-header__actions { display: flex; align-items: center; gap: 1.4rem; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  white-space: nowrap;
}
.header-phone svg { width: 16px; height: 16px; color: var(--gold); }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 34px; height: 34px;
  justify-content: center;
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--cream);
  transition: transform .4s var(--ease), opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.95rem 2.1rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform .35s var(--ease), box-shadow .35s, background .35s, color .35s, border-color .35s;
  white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--ink);
  box-shadow: 0 12px 30px -12px rgba(217, 162, 94, 0.7);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(217, 162, 94, 0.85); }
.btn--dark { background: var(--ink); color: var(--cream); box-shadow: var(--shadow-1); }
.btn--dark:hover { background: var(--ink-2); transform: translateY(-3px); }
.btn--ghost {
  border: 1px solid rgba(242, 234, 217, 0.45);
  color: var(--cream);
  background: transparent;
}
.btn--ghost:hover { background: rgba(242, 234, 217, 0.08); border-color: var(--cream); }
.btn--sm { padding: 0.7rem 1.4rem; font-size: 0.7rem; }
.btn--block { width: 100%; }
.btn--play { padding-left: 1rem; }
.btn__play-ico {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(217, 162, 94, 0.16);
  border: 1px solid rgba(217, 162, 94, 0.5);
  display: grid;
  place-items: center;
}
.btn__play-ico svg { width: 16px; height: 16px; color: var(--gold); }

.text-link {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--rust-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(143, 63, 30, 0.4);
  padding-bottom: 0.3rem;
  transition: gap .35s var(--ease), color .3s;
}
.text-link:hover { gap: 0.9rem; color: var(--rust); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--cream);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.6s var(--ease), transform 8s linear;
}
.hero__slide.is-active { opacity: 1; transform: scale(1); }
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.8s ease;
}
.hero__video.is-loaded { opacity: 1; }
.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,12,9,0.55) 0%, rgba(15,12,9,0.25) 40%, rgba(15,12,9,0.62) 78%, #15110c 100%),
    linear-gradient(90deg, rgba(15,12,9,0.5) 0%, transparent 45%, rgba(15,12,9,0.45) 100%);
}
.hero__vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 220px 60px rgba(10, 8, 6, 0.55);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 1.5rem 8rem;
  max-width: 980px;
  margin: 0 auto;
}
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.eyebrow::before, .eyebrow::after { content: ""; width: 44px; height: 1px; background: rgba(217, 162, 94, 0.6); }
.hero .eyebrow { color: var(--gold-soft); }

.hero__title { margin: 1.4rem 0 1.2rem; }
.hero__script {
  display: block;
  font-family: var(--script);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--gold-soft);
  line-height: 1.1;
}
.hero__big {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3.4rem, 11vw, 8.5rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff 30%, rgba(242,234,217,0.72));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__lede {
  max-width: 560px;
  margin: 0 auto 2.2rem;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: rgba(242, 234, 217, 0.85);
  font-weight: 300;
}
.hero__cta { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.hero__facts {
  display: flex;
  justify-content: center;
  gap: clamp(1.4rem, 4vw, 3.6rem);
  margin-top: 3.2rem;
  flex-wrap: wrap;
}
.hero__facts li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242, 234, 217, 0.62);
}
.hero__facts strong {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--cream);
  letter-spacing: 0.02em;
}

.hero__side {
  position: absolute;
  z-index: 2;
  top: 50%;
  font-size: 0.64rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(242, 234, 217, 0.45);
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}
.hero__side--left { left: 26px; }
.hero__side--right { right: 26px; transform: translateY(-50%) rotate(180deg); }

.hero__scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 2.2rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(242, 234, 217, 0.7);
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}
.hero__scroll i {
  width: 1px; height: 44px;
  background: linear-gradient(180deg, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll i::after {
  content: "";
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--gold-soft);
  animation: scrollDrop 2s var(--ease) infinite;
}
@keyframes scrollDrop { to { top: 100%; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 1.15rem 0;
  z-index: 5;
}
.marquee--ink {
  background: linear-gradient(90deg, var(--ink-2), var(--ink-3), var(--ink-2));
  border-top: 1px solid rgba(217, 162, 94, 0.18);
  border-bottom: 1px solid rgba(217, 162, 94, 0.18);
}
.marquee__track {
  display: flex;
  gap: 3rem;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee__track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--cream);
}
.marquee__track b { color: var(--rust); font-size: 0.9rem; }

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section { position: relative; padding: clamp(5rem, 9vw, 8.5rem) 2rem; }
.section--ink { background: linear-gradient(180deg, var(--ink-2), var(--ink)); color: var(--cream); }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }
.section--open { background: transparent; }

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: 0.005em;
  margin: 0.6rem 0 1.2rem;
}
.section-title__accent { font-style: italic; color: var(--rust); }
.eyebrow + .section-title { margin-top: 0.5rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--paper); }
.about__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.about__media { position: relative; padding-bottom: 3.5rem; padding-right: 2.5rem; }
.about__frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
}
.about__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.about__frame:hover img { transform: scale(1.05); }
.about__frame--main { height: 560px; }
.about__frame--small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 300px;
  border: 8px solid var(--paper);
}
.about__badge {
  position: absolute;
  left: -1.5rem;
  bottom: 4.2rem;
  background: var(--ink);
  color: var(--cream);
  padding: 1.4rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  border-left: 3px solid var(--gold);
}
.about__badge-num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold);
}
.about__badge-label { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(242,234,217,0.7); }

.about__content p { color: var(--text-muted); margin-bottom: 1.1rem; font-size: 1.02rem; }
.about__content strong { color: var(--text-dark); font-weight: 600; }
.about__chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.6rem 0 1.9rem; }
.about__chips li {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--text-dark);
  background: rgba(255,255,255,0.6);
}
.about__quote {
  border-left: 2px solid var(--gold);
  padding: 0.4rem 0 0.4rem 1.5rem;
  margin: 1.8rem 0 2.1rem;
}
.about__quote p { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--text-dark); line-height: 1.5; margin: 0; }
.about__quote cite { display: block; margin-top: 0.6rem; font-size: 0.78rem; font-style: normal; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rust); }
.about__cta { display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap; }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  position: relative;
  background:
    linear-gradient(180deg, var(--ink), var(--ink-2) 100%);
  padding: clamp(3.5rem, 7vw, 5.5rem) 2rem;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 119px, rgba(242,234,217,0.035) 119px 120px);
}
.stats__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; position: relative; }
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 12%;
  width: 1px; height: 76%;
  background: linear-gradient(180deg, transparent, rgba(217,162,94,0.35), transparent);
}
.stat__num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1;
  color: var(--gold);
}
.stat__label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(242,234,217,0.66);
}

/* ============================================================
   SPACE / AMENITIES
   ============================================================ */
.space { background: var(--cream); }
.space__head {
  max-width: 1280px;
  margin: 0 auto 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}
.space__intro { max-width: 380px; color: var(--text-muted); font-size: 1rem; padding-bottom: 0.4rem; }
.space__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.space-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(28,23,17,0.08);
  border: 1px solid rgba(28,23,17,0.06);
  transition: transform .5s var(--ease), box-shadow .5s;
}
.space-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -30px rgba(28,23,17,0.35); }
.space-card__media { position: relative; height: 240px; overflow: hidden; }
.space-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.space-card:hover .space-card__media img { transform: scale(1.08); }
.space-card__tag {
  position: absolute;
  top: 0.9rem; right: 0.9rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(22,18,13,0.72);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
  border: 1px solid rgba(242,234,217,0.25);
}
.space-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  margin: 1.3rem 1.4rem 0.2rem;
}
.space-card__script {
  display: block;
  font-family: var(--script);
  font-size: 1.15rem;
  color: var(--rust);
  margin: 0 1.4rem;
  line-height: 1.2;
}
.space-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
  margin: 0.7rem 1.4rem 1.5rem;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--paper-2); }
.gallery__head {
  max-width: 1280px;
  margin: 0 auto 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}
.gallery__note { max-width: 380px; color: var(--text-muted); font-size: 1rem; padding-bottom: 0.4rem; }
.gallery__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 150px;
  gap: 0.8rem;
}
.g-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--ink-2);
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), opacity .5s; }
.g-item::after {
  content: "⊕";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: #fff;
  background: rgba(22,18,13,0.35);
  opacity: 0;
  transition: opacity .4s;
}
.g-item:hover img { transform: scale(1.09); }
.g-item:hover::after { opacity: 1; }
.g-item--tall { grid-row: span 2; }
.g-item:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 3; }
.g-item:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2; }
.g-item:nth-child(3) { grid-column: 3 / 4; grid-row: 1 / 2; }
.g-item:nth-child(4) { grid-column: 4 / 5; grid-row: 1 / 3; }
.g-item:nth-child(5) { grid-column: 5 / 6; grid-row: 1 / 2; }
.g-item:nth-child(6) { grid-column: 2 / 3; grid-row: 2 / 3; }
.g-item:nth-child(7) { grid-column: 3 / 4; grid-row: 2 / 3; }
.g-item:nth-child(8) { grid-column: 5 / 6; grid-row: 2 / 4; }
.g-item:nth-child(9) { grid-column: 1 / 2; grid-row: 3 / 4; }
.g-item:nth-child(10) { grid-column: 2 / 4; grid-row: 3 / 4; }
.gallery__more { max-width: 1280px; margin: 3rem auto 0; text-align: center; }

/* ============================================================
   OCCASIONS (tabs)
   ============================================================ */
.occasions { background: var(--ink); color: var(--cream); }
.occasions__head { text-align: center; margin-bottom: 2.5rem; }
.occasions .section-title__accent { color: var(--gold); }
.occasions .eyebrow { color: var(--gold); }

.tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.6rem;
}
.tab {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.72rem 1.5rem;
  border: 1px solid rgba(242,234,217,0.2);
  border-radius: 100px;
  color: rgba(242,234,217,0.7);
  transition: all .35s var(--ease);
}
.tab:hover { border-color: var(--gold); color: var(--cream); }
.tab.is-active {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--ink);
  border-color: transparent;
  font-weight: 500;
  box-shadow: 0 10px 26px -12px rgba(217,162,94,0.6);
}

.tabs__panels { max-width: 1080px; margin: 0 auto; }
.tabs__panel {
  display: none;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 3rem);
  box-shadow: 0 30px 70px -40px rgba(0,0,0,0.8);
}
.tabs__panel.is-active { display: grid; animation: fadeUp .6s var(--ease) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.panel-media { border-radius: var(--radius); overflow: hidden; height: 360px; }
.panel-media img { width: 100%; height: 100%; object-fit: cover; }
.panel-body h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}
.panel-body p { color: rgba(242,234,217,0.78); margin-bottom: 1.6rem; font-size: 1rem; }
.panel-body .text-link { color: var(--gold-soft); border-color: rgba(217,162,94,0.4); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--paper); text-align: center; overflow: hidden; }
.reviews .eyebrow { justify-content: center; }
.reviews .eyebrow::before, .reviews .eyebrow::after { width: 34px; }
.reviews__slider { max-width: 860px; margin: 2.5rem auto 0; }
.reviews__viewport { overflow: hidden; }
.reviews__track { display: flex; transition: transform .7s var(--ease); }
.review {
  flex: 0 0 100%;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}
.review__stars { color: var(--gold); font-size: 1.15rem; letter-spacing: 0.3em; }
.review p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  line-height: 1.55;
  color: var(--text-dark);
  max-width: 760px;
}
.review footer { display: flex; flex-direction: column; gap: 0.15rem; }
.review footer strong { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; letter-spacing: 0.04em; }
.review footer span { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
.reviews__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 2rem;
}
.rev-btn {
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all .35s var(--ease);
}
.rev-btn svg { width: 20px; height: 20px; }
.rev-btn:hover { background: var(--ink); color: var(--gold); border-color: var(--ink); transform: scale(1.06); }
.reviews__dots { display: flex; gap: 0.5rem; }
.rev-dot {
  width: 8px; height: 8px;
  border-radius: 100px;
  background: rgba(28,23,17,0.2);
  transition: all .35s var(--ease);
}
.rev-dot.is-active { width: 26px; background: var(--rust); }

/* ============================================================
   CINEMA (video band)
   ============================================================ */
.cinema {
  position: relative;
  height: clamp(60vh, 72vh, 620px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cinema__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cinema__shade { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(22,18,13,0.55) 0%, rgba(15,12,9,0.82) 100%); }
.cinema__content { position: relative; z-index: 2; color: var(--cream); padding: 0 1.5rem; }
.cinema__script {
  font-family: var(--script);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: var(--gold-soft);
  display: block;
  margin-bottom: 0.4rem;
}
.cinema__content h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 2rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--paper); }
.contact__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact__info p:not(.eyebrow) { color: var(--text-muted); margin-bottom: 1.4rem; }
.contact__list { display: flex; flex-direction: column; gap: 1.3rem; margin-top: 1.6rem; }
.contact__list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact__ico {
  flex: 0 0 46px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(179,84,43,0.3);
  display: grid;
  place-items: center;
  color: var(--rust);
  background: rgba(179,84,43,0.06);
}
.contact__ico svg { width: 20px; height: 20px; }
.contact__list div strong { display: block; font-family: var(--serif); font-weight: 600; font-size: 1.1rem; letter-spacing: 0.02em; }
.contact__list div span, .contact__list div a { color: var(--text-muted); font-size: 0.96rem; }
.contact__list div a:hover { color: var(--rust); }

.contact__form-wrap {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 40px 90px -50px rgba(28,23,17,0.5);
  border: 1px solid rgba(28,23,17,0.08);
  padding: clamp(1.6rem, 4vw, 2.6rem);
}
.contact__form .f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.f-field { margin-bottom: 1.2rem; display: flex; flex-direction: column; }
.f-field label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
  font-weight: 500;
}
.f-field label span { text-transform: none; letter-spacing: 0.05em; opacity: 0.7; }
.f-field input, .f-field select, .f-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--paper-2);
  border: 1px solid transparent;
  border-radius: var(--radius);
  outline: none;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.f-field input:focus, .f-field select:focus, .f-field textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(217,162,94,0.18);
}
.f-field input.invalid, .f-field select.invalid, .f-field textarea.invalid { border-color: var(--rust); background: rgba(179,84,43,0.05); }
.f-field textarea { resize: vertical; min-height: 110px; }
.form-note { text-align: center; font-size: 0.74rem; color: var(--text-muted); margin-top: 1rem; }

.form-success { text-align: center; padding: 3rem 1.5rem; }
.form-success__check {
  width: 72px; height: 72px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--ink);
  font-size: 2rem;
  display: grid;
  place-items: center;
  animation: pop .5s var(--ease);
}
@keyframes pop { from { transform: scale(0.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.form-success h3 { font-family: var(--serif); font-size: 1.8rem; margin-bottom: 0.6rem; }
.form-success p { color: var(--text-muted); max-width: 420px; margin: 0 auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: linear-gradient(180deg, var(--ink) 0%, #0f0c09 100%);
  color: rgba(242,234,217,0.8);
  border-top: 1px solid var(--line-light);
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 199px, rgba(242,234,217,0.03) 199px 200px);
  pointer-events: none;
}
.site-footer__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 5.5rem) 2rem 3rem;
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.9fr 1.1fr;
  gap: 2.5rem;
}
.site-footer__brand p { margin: 1.2rem 0 1.4rem; max-width: 340px; font-size: 0.94rem; color: rgba(242,234,217,0.62); }
.site-footer__script { font-family: var(--script); font-size: 1.7rem; color: var(--gold); }
.site-footer h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}
.site-footer ul { display: flex; flex-direction: column; gap: 0.7rem; }
.site-footer ul a, .site-footer ul span {
  font-size: 0.94rem;
  color: rgba(242,234,217,0.68);
  transition: color .3s, padding-left .3s;
}
.site-footer ul a:hover { color: var(--gold); padding-left: 0.35rem; }
.site-footer__hours p { font-size: 0.94rem; color: rgba(242,234,217,0.68); margin-bottom: 1.2rem; }
.site-footer__base {
  position: relative;
  border-top: 1px solid var(--line-light);
  padding: 1.4rem 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: rgba(242,234,217,0.45);
  letter-spacing: 0.06em;
}

/* ============================================================
   TO TOP + LIGHTBOX
   ============================================================ */
.to-top {
  position: fixed;
  right: 1.6rem; bottom: 1.6rem;
  z-index: 900;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 0 16px 36px -14px rgba(217,162,94,0.8);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all .45s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { transform: translateY(-4px); }
.to-top svg { width: 20px; height: 20px; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(10, 8, 6, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__stage { max-width: min(92vw, 1200px); max-height: 86vh; text-align: center; }
.lightbox__stage img {
  max-width: 92vw;
  max-height: 78vh;
  object-fit: contain;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: 0 40px 120px -40px #000;
}
.lightbox__stage figcaption { color: rgba(242,234,217,0.7); font-size: 0.85rem; margin-top: 0.8rem; letter-spacing: 0.08em; }
.lightbox__close, .lightbox__arrow {
  position: absolute;
  color: var(--cream);
  border: 1px solid rgba(242,234,217,0.3);
  border-radius: 50%;
  width: 50px; height: 50px;
  display: grid;
  place-items: center;
  transition: all .3s;
  z-index: 2;
}
.lightbox__close { top: 1.6rem; right: 1.6rem; }
.lightbox__arrow { top: 50%; transform: translateY(-50%); font-size: 1.8rem; }
.lightbox__arrow--prev { left: 1.6rem; }
.lightbox__arrow--next { right: 1.6rem; }
.lightbox__close:hover, .lightbox__arrow:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal-item {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }
.reveal-item[data-reveal="left"] { transform: translateX(-40px); }
.reveal-item[data-reveal="right"] { transform: translateX(40px); }
.reveal-item[data-reveal="left"].is-visible, .reveal-item[data-reveal="right"].is-visible { transform: translateX(0); }

.space-card.reveal-item { transition: opacity 1s var(--ease), transform 1s var(--ease), box-shadow .5s; }
.space-card.reveal-item.is-visible { transform: translateY(0); }

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .gallery__grid { grid-auto-rows: 130px; }
}

@media (max-width: 1024px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-phone span { display: none; }
  .header-cta { display: none; }
  .about__inner { grid-template-columns: 1fr; }
  .about__media { max-width: 640px; }
  .stats__inner { grid-template-columns: repeat(3, 1fr); row-gap: 2.4rem; }
  .stat:nth-child(3)::after { display: none; }
  .space__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 130px; }
  .g-item:nth-child(1) { grid-column: 1/3; grid-row: 1/3; }
  .g-item:nth-child(2) { grid-column: 3/4; grid-row: 1/2; }
  .g-item:nth-child(3) { grid-column: 4/5; grid-row: 1/2; }
  .g-item:nth-child(4) { grid-column: 3/5; grid-row: 2/3; }
  .g-item:nth-child(5) { grid-column: 1/2; grid-row: 3/4; }
  .g-item:nth-child(6) { grid-column: 2/3; grid-row: 3/4; }
  .g-item:nth-child(7) { grid-column: 3/4; grid-row: 3/4; }
  .g-item:nth-child(8) { grid-column: 4/5; grid-row: 3/4; }
  .g-item:nth-child(9) { grid-column: 1/2; grid-row: 4/5; }
  .g-item:nth-child(10) { grid-column: 2/4; grid-row: 4/5; }
  .contact__grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .hero__side { display: none; }
  .space__head, .gallery__head { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 640px) {
  :root { --header-h: 72px; }
  .site-header__inner { padding: 0 1.2rem; }
  .space__grid { grid-template-columns: 1fr; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2)::after, .stat:nth-child(4)::after { display: none; }
  .tabs__panel { grid-template-columns: 1fr; }
  .panel-media { height: 240px; }
  .contact__form .f-row { grid-template-columns: 1fr; }
  .about__frame--main { height: 420px; }
  .about__frame--small { height: 210px; width: 55%; }
  .about__badge { left: 0.5rem; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .g-item:nth-child(1) { grid-column: 1/2; grid-row: 1/3; }
  .g-item:nth-child(2) { grid-column: 2/3; grid-row: 1/2; }
  .g-item:nth-child(3) { grid-column: 2/3; grid-row: 2/3; }
  .g-item:nth-child(4) { grid-column: 1/2; grid-row: 3/5; }
  .g-item:nth-child(5) { grid-column: 2/3; grid-row: 3/4; }
  .g-item:nth-child(6) { grid-column: 2/3; grid-row: 4/5; }
  .g-item:nth-child(7) { grid-column: 1/2; grid-row: 5/6; }
  .g-item:nth-child(8) { grid-column: 2/3; grid-row: 5/7; }
  .g-item:nth-child(9) { grid-column: 1/2; grid-row: 6/7; }
  .g-item:nth-child(10) { grid-column: 1/3; grid-row: 7/8; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__base { justify-content: center; text-align: center; }
  .hero__facts { gap: 1.6rem; }
  .hero__content { padding: 5.5rem 1.2rem 8rem; }
  .about__media { padding-right: 0; }
  .lightbox__arrow--prev { left: 0.5rem; }
  .lightbox__arrow--next { right: 0.5rem; }
}

/* ============================================================
   MOBILE MENU (overlay)
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(15, 12, 9, 0.97);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu nav ul { display: flex; flex-direction: column; gap: 0.4rem; }
.mobile-menu nav a {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 8vw, 3rem);
  color: var(--cream);
  display: inline-flex;
  align-items: baseline;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s;
}
.mobile-menu.is-open nav a { opacity: 1; transform: translateY(0); }
.mobile-menu nav a:hover { color: var(--gold); }
.mobile-menu nav em { font-size: 0.7rem; font-style: normal; color: var(--rust); letter-spacing: 0.3em; }
.mobile-menu__foot {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line-light);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.mobile-menu__foot a { font-family: var(--serif); font-size: 1.5rem; color: var(--gold); }
.mobile-menu__foot span { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(242,234,217,0.55); }
