/* THE HOLLOW — Workflow B, full-bleed loop + sparse editorial type.
   Quiet-luxury hospitality. No cards, no glass. Dash-free copy. */

:root {
  --ink:        #f3ede2;          /* warm off-white */
  --ink-soft:   rgba(243,237,226,0.66);
  --ink-faint:  rgba(243,237,226,0.42);
  --amber:      #d8a24a;          /* window-glow accent */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Jost', system-ui, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  background: #0a0c0e;
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Editorial-over-video legibility: a soft halo so type holds up over the
   bright window-glow region without a card or heavy global scrim.
   (text-shadow is the sanctioned approach; glass/frosted cards are not.) */
.display, .lede, .body, .label, .quote, .cite, .fine,
.cta, .logo, .header-cta, .scroll-hint {
  text-shadow: 0 1px 2px rgba(0,0,0,0.45), 0 2px 26px rgba(0,0,0,0.55);
}

a { color: inherit; text-decoration: none; }

/* ---------- Fixed video background ---------- */
.bg { position: fixed; inset: 0; z-index: 0; background: #0a0c0e; }
.bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* Calm scrim: gentle global darken, heavier at the very bottom so type
   never fights the brighter window-glow region of the plate. */
.scrim {
  position: absolute; inset: 0;
  background:
    /* soft borderless pool that darkens the vertical center where the
       centered editorial copy sits, over the bright window glow */
    radial-gradient(ellipse 70% 58% at 50% 50%,
                     rgba(8,10,12,0.52) 0%, rgba(8,10,12,0.30) 55%,
                     rgba(8,10,12,0) 100%),
    linear-gradient(180deg, rgba(8,10,12,0.44) 0%, rgba(8,10,12,0.26) 30%,
                            rgba(8,10,12,0.34) 60%, rgba(8,10,12,0.66) 100%);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 2rem clamp(1.5rem, 4vw, 4rem);
}
.logo {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 0.92rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}
.header-cta {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(243,237,226,0.35);
  transition: color 0.4s ease, border-color 0.4s ease;
}
.header-cta:hover { color: var(--ink); border-color: var(--amber); }

/* ---------- Panels ---------- */
main { position: relative; z-index: 10; }
.panel {
  position: relative;          /* anchor .scroll-hint to the hero, not the document */
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem clamp(1.5rem, 6vw, 6rem);
}

.label {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 2.4rem;
}

.display {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3.4rem, 9.5vw, 9.5rem);
  line-height: 1.02;
  letter-spacing: -0.005em;
}

.lede {
  margin-top: 2.6rem;
  max-width: 30ch;
  font-size: clamp(1.08rem, 1.6vw, 1.42rem);
  font-weight: 400;
  line-height: 1.62;
  color: var(--ink);
}

.body {
  margin-top: 2.4rem;
  max-width: 44ch;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  font-weight: 400;
  line-height: 1.76;
  color: var(--ink);
}

/* ---------- Quote ---------- */
.quote-panel .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.9rem, 4.6vw, 4rem);
  line-height: 1.34;
  max-width: 18ch;
}
.quote-panel .cite {
  margin-top: 3rem;
  font-family: var(--font-ui);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ---------- Reserve ---------- */
.cta {
  margin-top: 3rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 1.15rem 2.6rem;
  border: 1px solid rgba(243,237,226,0.4);
  transition: background 0.45s ease, color 0.45s ease, border-color 0.45s ease;
}
.cta:hover { background: var(--ink); color: #14110c; border-color: var(--ink); }
.fine {
  margin-top: 2.4rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  max-width: 38ch;
  line-height: 1.7;
}

/* ---------- Scroll hint ---------- */
.scroll-hint {
  position: absolute;
  bottom: 2.6rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.scroll-hint::after {
  content: "";
  display: block;
  width: 1px; height: 38px;
  margin: 0.9rem auto 0;
  background: linear-gradient(180deg, rgba(243,237,226,0.5), rgba(243,237,226,0));
}

/* ---------- Reveal animation base ---------- */
.reveal { opacity: 0; will-change: opacity, transform; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .bg video { display: none; }
  .bg { background: #0a0c0e url('../hollow-poster.jpg') center/cover no-repeat; }
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  .site-header   { padding: 1.4rem 1.4rem; }
  .logo          { font-size: 0.8rem; letter-spacing: 0.3em; }
  .header-cta    { font-size: 0.66rem; letter-spacing: 0.2em; }
  .panel         { padding: 7rem 1.6rem; }
  .label         { margin-bottom: 1.8rem; font-size: 0.66rem; letter-spacing: 0.28em; }
  .display       { font-size: clamp(3rem, 15vw, 5rem); }
  .lede          { font-size: 1.05rem; max-width: 26ch; }
  .body          { font-size: 1.04rem; max-width: 90vw; }
  .quote-panel .quote { font-size: clamp(1.8rem, 7vw, 2.6rem); max-width: 16ch; }
  .scroll-hint   { bottom: 2rem; }
  /* Stronger bottom scrim on mobile: portrait crop pushes the bright
     window-glow higher, closer to where text sits. */
  .scrim {
    background:
      linear-gradient(180deg, rgba(8,10,12,0.42) 0%, rgba(8,10,12,0.22) 30%,
                              rgba(8,10,12,0.32) 60%, rgba(8,10,12,0.66) 100%);
  }
}
