/* ============================================================
   TEVAH VENUE — Editorial Luxury
   Palette: cream / espresso ink / champagne gold
   Fonts: Cormorant Garamond (display) + Plus Jakarta Sans (body)
   ============================================================ */

:root {
  --cream: #FBF8F2;
  --ivory: #F4EEE2;
  --ink: #201B15;
  --ink-soft: #4C4438;
  --gold: #B08D57;
  --gold-deep: #8F6F3F;
  --line: rgba(32, 27, 21, 0.12);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --pad: clamp(4.5rem, 10vw, 9rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

/* Film grain (DESIGN.md texture - fixed, pointer-events-none, multiply) */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 300;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: italic; }

a:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: "Cormorant Garamond", serif; font-weight: 500; line-height: 1.08; }

.eyebrow {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.4rem;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.9rem);
  letter-spacing: -0.01em;
  margin-bottom: 1.6rem;
}
.section-title em { color: var(--gold-deep); }
.section-sub {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  max-width: 32rem;
  margin-bottom: 2.4rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.05rem 1.7rem;
  border-radius: 999px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform 0.6s var(--ease), background 0.6s var(--ease), color 0.6s var(--ease), border-color 0.6s var(--ease);
  will-change: transform;
}
.btn:active { transform: scale(0.98); }

.btn-ic {
  width: 2rem; height: 2rem;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.18);
  transition: transform 0.5s var(--ease);
}
.btn:hover .btn-ic { transform: translate(2px, -2px) scale(1.06); }

.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--gold-deep);
}

.btn-ghost {
  border-color: rgba(251, 248, 242, 0.4);
  color: var(--cream);
  background: rgba(32, 27, 21, 0.25);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--cream); }

/* Magnetic lift: JS sets --mx/--my on fine pointers; degrades to static lift */
.btn:hover {
  transform: translate(calc(var(--mx, 0px) * 0.4), calc(var(--my, 0px) * 0.4 + -2px));
}
.btn:active {
  transform: translate(calc(var(--mx, 0px) * 0.4), calc(var(--my, 0px) * 0.4)) scale(0.98);
}

.btn-sm { padding: 0.8rem 1.15rem; font-size: 0.85rem; }
.btn-sm .btn-ic { width: 1.6rem; height: 1.6rem; }
.btn-lg { padding: 1.3rem 2.2rem; font-size: 1.02rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 90;
  display: flex; justify-content: center;
  padding: 1.1rem 1.2rem 0;
  pointer-events: none;
}
.nav-pill {
  pointer-events: auto;
  display: flex; align-items: center; gap: 2.2rem;
  padding: 0.65rem 0.65rem 0.65rem 1.6rem;
  border-radius: 999px;
  background: rgba(251, 248, 242, 0.82);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 0.5px solid rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 0.5px 0 rgba(255,255,255,0.6), 0 10px 34px -12px rgba(32,27,21,0.25);
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.nav-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  white-space: nowrap;
}
.nav-brand em { color: var(--gold-deep); }

.nav-links { display: flex; gap: 1.7rem; }
.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  padding: 0.35rem 0;
  position: relative;
  transition: color 0.4s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.nav-link:hover, .nav-link.nav-active { color: var(--ink); }
.nav-link.nav-active::after, .nav-link:hover::after { transform: scaleX(1); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  color: var(--cream);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.03);
  will-change: transform;
}
.hero-wash {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 100%, rgba(20, 15, 9, 0.76) 0%, rgba(20, 15, 9, 0.42) 45%, rgba(20, 15, 9, 0.14) 100%),
    linear-gradient(to bottom, rgba(20,15,9,0.55) 0%, rgba(20,15,9,0.05) 35%, rgba(20,15,9,0.3) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 56rem;
  padding: 6.5rem 1.4rem 5.5rem;
}
.hero-eyebrow { color: #D8C49A; }
.hero-title {
  font-size: clamp(3rem, 8.2vw, 6.4rem);
  letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
}
.hero-title em { color: #D8C49A; }
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 400;
  color: rgba(251, 248, 242, 0.98);
  max-width: 36rem;
  margin: 0 auto 2.6rem;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(251,248,242,0.08);
}
.marquee-track {
  display: flex; align-items: center; gap: 2.6rem;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee-track span {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.28rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.marquee-track .star { color: var(--gold); font-style: normal; font-size: 0.9rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Cinema (full-bleed editorial moment) ---------- */
.cinema {
  position: relative;
  height: clamp(420px, 78vh, 720px);
  overflow: hidden;
  color: var(--cream);
}
.cinema-media {
  position: absolute; inset: -7% 0 -4%;
  will-change: transform;
}
.cinema-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}
.cinema-wash {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,15,9,0.62) 0%, rgba(20,15,9,0.18) 45%, rgba(20,15,9,0.38) 100%);
}
.cinema-line {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 0 1.4rem;
}
.cinema-mark {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 1.1rem;
}
.cinema-line p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 40px rgba(20,15,9,0.35);
}
.cinema-line em { color: #D8C49A; }

/* ---------- Story ---------- */
.story {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding: var(--pad) clamp(1.2rem, 6vw, 7rem);
  align-items: center;
}
.story-copy p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.04rem;
  max-width: 34rem;
  margin-bottom: 1.3rem;
}
.story-stats { display: flex; flex-direction: column; gap: 1rem; }
.stat {
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  padding: 1.8rem 1.9rem;
  background: var(--ivory);
  display: flex; flex-direction: column; gap: 0.35rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
  transition: transform 0.6s var(--ease), border-color 0.6s var(--ease);
}
.stat:hover { transform: translateY(-3px); border-color: rgba(176,141,87,0.5); }
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  color: var(--ink);
}
.stat-label { font-size: 0.86rem; color: var(--ink-soft); letter-spacing: 0.02em; }

/* ---------- Bento ---------- */
.spaces { padding: 0 clamp(1.2rem, 6vw, 7rem) var(--pad); }
.spaces-head { margin-bottom: 3.2rem; max-width: 40rem; }
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.1rem;
  grid-auto-flow: dense;
}
.bento-card {
  grid-column: span 2;
  border-radius: 1.7rem;
  padding: 2.4rem 2.2rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
  display: flex; flex-direction: column; gap: 0.8rem;
  transition: transform 0.6s var(--ease), background 0.6s var(--ease);
}
.bento-card:hover { transform: translateY(-4px); background: #F1E9D8; }
.bento-wide { grid-column: span 4; }
.bento-photo {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  color: var(--cream);
  justify-content: flex-end;
  min-height: 15rem;
}
.bento-photo > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.bento-photo:hover > img { transform: scale(1.06); }
.bento-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,15,9,0.72) 0%, rgba(20,15,9,0.28) 55%, rgba(20,15,9,0.05) 100%);
  pointer-events: none;
}
.bento-content {
  position: relative; z-index: 1;
  padding: 3rem 2.2rem 2.2rem;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.bento-photo .bento-kicker { color: #D8C49A; }
.bento-photo h3 { color: var(--cream); }
.bento-photo p { color: rgba(251,248,242,0.82); }
.bento-kicker {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-deep);
}
.bento-card h3 { font-size: 1.65rem; }
.bento-card p { font-size: 1.0625rem; color: var(--ink-soft); max-width: 30rem; }
.bento-photo p { color: rgba(251,248,242,0.82); }

/* ---------- Occasions: editorial index rows ---------- */
.occasions { padding: 0 clamp(1.2rem, 6vw, 7rem) var(--pad); }
.occ-index { border-top: 1px solid var(--line); }
.occ-row {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: clamp(1rem, 3vw, 3.5rem);
  align-items: baseline;
  padding: 2.6rem 0.4rem;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.6s var(--ease), background 0.6s var(--ease);
}
.occ-row:hover { padding-left: 1.4rem; background: rgba(176,141,87,0.06); }
.occ-num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-deep);
  transition: color 0.4s var(--ease), transform 0.6s var(--ease);
}
.occ-row:hover .occ-num { color: var(--gold); transform: translateX(4px); }
.occ-row h3 { font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.occ-body p { font-size: 1.0625rem; color: var(--ink-soft); max-width: 42rem; }

/* ---------- Packages ---------- */
.packages { padding: var(--pad) clamp(1.2rem, 6vw, 7rem); background: var(--ivory); }
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.4vw, 1.8rem);
  align-items: stretch;
}
.tier {
  position: relative;
  display: flex; flex-direction: column;
  border-radius: 1.8rem;
  padding: 2.5rem 2.2rem;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
  gap: 1.1rem;
  transition: transform 0.7s var(--ease);
}
.tier:hover { transform: translateY(-5px); }
.tier-featured {
  background: var(--ink);
  color: var(--cream);
  border: 1px solid rgba(176,141,87,0.5);
  box-shadow: 0 34px 70px -34px rgba(32,27,21,0.6);
}
.tier-featured::after {
  content: "";
  position: absolute; top: 0; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  pointer-events: none;
}
.tier-featured .tier-desc,
.tier-featured .tier-list { color: rgba(251,248,242,0.75); }
.tier-tag {
  position: absolute; top: -0.85rem; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.42rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.tier-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
}
.tier-desc { font-size: 0.88rem; color: var(--ink-soft); }
.tier-list { display: flex; flex-direction: column; gap: 0.65rem; flex: 1; }
.tier-list li {
  font-size: 0.9rem;
  padding-left: 1.3rem;
  position: relative;
  color: var(--ink-soft);
}
.tier-featured .tier-list li { color: rgba(251,248,242,0.8); }
.tier-list li::before {
  content: "";
  position: absolute; left: 0; top: 0.5em;
  width: 0.45rem; height: 0.45rem;
  border-radius: 999px;
  background: var(--gold);
}
.tier-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gold-deep);
}
.tier-featured .tier-price { color: #D8C49A; font-size: 1.3rem; }
.tier .btn-full { margin-top: 0.4rem; }
.tier-featured .btn-primary { background: var(--gold); color: var(--ink); }
.tier-featured .btn-primary:hover { background: #C9A76C; }

/* ---------- Process ---------- */
.process { padding: var(--pad) clamp(1.2rem, 6vw, 7rem); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  position: relative;
}
.steps::before {
  content: "";
  position: absolute; top: 2.1rem; left: 12%; right: 12%;
  height: 1px;
  background: var(--line);
}
.step { position: relative; }
.step::before {
  content: attr(data-num);
  position: absolute;
  top: -2.4rem; left: -0.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(5rem, 9vw, 7.5rem);
  line-height: 1;
  color: rgba(176, 141, 87, 0.14);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.step > * { position: relative; z-index: 1; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 4.2rem; height: 4.2rem;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  margin-bottom: 1.4rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 12px 26px -14px rgba(176,141,87,0.5);
}
.step h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.92rem; color: var(--ink-soft); max-width: 20rem; }

/* ---------- Contact ---------- */
.contact {
  background: var(--ink);
  color: var(--cream);
  padding: var(--pad) clamp(1.2rem, 6vw, 7rem);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute; top: -40%; right: -20%;
  width: 70vw; height: 70vw;
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(176,141,87,0.22), transparent 70%);
  pointer-events: none;
}
.contact-inner { position: relative; text-align: center; max-width: 44rem; margin: 0 auto; }
.contact .eyebrow { color: #D8C49A; }
/* Dark section: primary CTA flips to gold so it pops off the espresso field */
.contact .btn-primary { background: var(--gold); color: var(--ink); }
.contact .btn-primary:hover { background: #C9A76C; }
.contact .btn-primary .btn-ic { background: rgba(32, 27, 21, 0.14); }
.contact-sub {
  color: rgba(251,248,242,0.85);
  font-size: 1.0625rem;
  max-width: 32rem;
  margin: 0 auto 2.4rem;
}
.contact-cta { margin-bottom: 2.6rem; }
.contact-meta {
  display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap;
  font-size: 0.88rem;
  color: rgba(251,248,242,0.72);
  letter-spacing: 0.02em;
}
.contact-meta .dot { color: var(--gold); }

/* ---------- Section containers: full-width with generous padding (original look) ---------- */

/* ---------- Body copy floor: ≥17px desktop (Ron's bar) ---------- */
.story-copy p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.0625rem;
  max-width: 34rem;
  margin-bottom: 1.3rem;
}
.contact-sub {
  color: rgba(251,248,242,0.78);
  font-size: 1.0625rem;
  max-width: 32rem;
  margin: 0 auto 2.4rem;
}
.bento-card p { font-size: 1.0625rem; color: var(--ink-soft); max-width: 30rem; }
.occ-body p { font-size: 1.0625rem; color: var(--ink-soft); }
.tier-desc { font-size: 1rem; color: var(--ink-soft); }
.tier-list li { font-size: 1rem; }
.step p { font-size: 1.0625rem; color: var(--ink-soft); max-width: 20rem; }

/* ---------- Footer credit (Website Man signature contract) ---------- */
.footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.2rem; flex-wrap: wrap;
  padding: 2rem clamp(1.2rem, 6vw, 7rem);
  background: var(--ink);
  border-top: 1px solid rgba(251,248,242,0.1);
  color: rgba(251,248,242,0.55);
  font-size: 0.82rem;
}
.footer-left { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  color: var(--cream);
  white-space: nowrap;
}
.footer-brand em { color: var(--gold); }
.footer-provenance { letter-spacing: 0.04em; }
.footer-credit {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 0.75rem;
  row-gap: 0.1rem;
  color: rgba(251,248,242,0.8);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  transition: color 0.4s var(--ease), background 0.4s var(--ease);
}
.footer-credit:hover { color: var(--cream); background: rgba(176,141,87,0.12); }
/* Medallion mark: echoes the venue's gold-ringed circles (step numerals, stats) */
.credit-mark {
  grid-row: 1 / span 2;
  width: 2.2rem; height: 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(176, 141, 87, 0.55);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.footer-credit:hover .credit-mark {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 0 22px rgba(176, 141, 87, 0.35);
  transform: scale(1.06);
}
.credit-text { white-space: nowrap; font-size: 0.85rem; }
.credit-text strong {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: var(--cream);
  font-size: 1rem;
}
.credit-dot { color: var(--gold); }
.credit-desc {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(251, 248, 242, 0.5);
  white-space: nowrap;
  transition: color 0.4s var(--ease);
}
.footer-credit:hover .credit-desc { color: rgba(251, 248, 242, 0.72); }
.footer-credit:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(176,141,87,0.2), 0 0 0 6px rgba(176,141,87,0.08);
  border-radius: 999px;
}

@media (max-width: 600px) {
  .footer { flex-direction: column; align-items: flex-start; }
  .credit-text { white-space: normal; }
}

/* ---------- Preloader (smart gate: 600ms floor + load + 3s safety) ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--cream);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.1rem;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-line {
  width: 80px; height: 1px;
  background: var(--gold);
  transform-origin: left;
  transform: scaleX(0);
}
.preloader-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  opacity: 0;
}
.preloader-mark em { color: var(--gold-deep); }

/* ---------- Reveal (JS adds .in) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(2.2rem);
  filter: blur(6px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease), filter 1.1s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-pill { gap: 1.1rem; }
  .nav-links { display: none; }
  .cinema { height: 62vh; min-height: 360px; }
  .story { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento-card, .bento-wide { grid-column: span 1; }
  .occ-row { grid-template-columns: 3rem 1fr; padding: 2rem 0.2rem; }
  .tiers { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .step::before { font-size: 5rem; top: -2rem; }
  .hero-cta { flex-direction: column; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; filter: none; }
  .btn:hover, .btn:active { transform: none; }
  .bento-photo:hover > img, .occ-row:hover { transition: none; }
}
