/* =========================================================================
   NASHVILLE DAYS — HOLDING PAGE
   Logo-forward teaser: thunderstorm hero, the logo arriving on its own
   flash of lightning, then three honest asks (play, trade, say hello).
   Loaded after theme-2027.css. Reuses .nd-hero/.nd-play/.nd-field
   infrastructure; this file only adds what's genuinely new.
   ========================================================================= */

/* ---- Hero: darker storm scrim (this footage is moodier than daylight
   drone footage, so the base scrim needs a touch more depth) ---- */
.nd-hero--holding .nd-hero__scrim {
  background:
    radial-gradient(120% 90% at 50% 42%, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 46%, rgba(0,0,0,.15) 78%),
    linear-gradient(180deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.12) 26%, rgba(0,0,0,.22) 58%, hsl(var(--navy) / .55) 84%, hsl(var(--navy)) 100%);
}
.nd-hero--holding .nd-hero__video { animation: none; } /* the footage already moves; no extra Ken Burns needed */

.nd-hero__inner--holding {
  padding-top: 48px; padding-bottom: 56px; gap: 0;
  width: 100%; max-width: none; margin-inline: auto;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}

/* ---- The logo, arriving on a flash of lightning ---- */
.nd-logo-reveal {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1.6rem;
}
.nd-logo-reveal::before {
  content: ""; position: absolute; inset: -35% -25%; z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.95) 0%, rgba(233,214,160,.4) 32%, rgba(255,255,255,0) 68%);
  opacity: 0; pointer-events: none;
}
.nd-logo-reveal__img {
  display: block; width: min(82vw, 620px); height: auto;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,.6)) blur(16px);
  opacity: 0; transform: scale(.8);
  transition: opacity 1.3s cubic-bezier(.16,.84,.44,1) .1s,
              transform 1.6s cubic-bezier(.16,.84,.44,1) .1s,
              filter 1.05s ease-out .1s;
}
.nd-hero.is-ready .nd-logo-reveal__img {
  opacity: 1; transform: scale(1);
  filter: drop-shadow(0 20px 60px rgba(0,0,0,.6)) blur(0px);
}
.nd-hero.is-ready .nd-logo-reveal::before {
  animation: ndLogoFlash 1.7s ease-out .2s 1 both;
}
@keyframes ndLogoFlash {
  0%   { opacity: 0; }
  9%   { opacity: 1; }
  22%  { opacity: .12; }
  34%  { opacity: .65; }  /* a quick double-strike flicker, true to real lightning */
  50%  { opacity: 0; }
  100% { opacity: 0; }
}

.nd-holding__tagline {
  font-family: "DM Serif Display", Georgia, serif; font-style: italic;
  font-size: clamp(1.15rem, 2.6vw, 1.5rem); line-height: 1.4; color: #fff;
  max-width: 34rem; margin: 0 auto; text-shadow: 0 2px 20px rgba(0,0,0,.55);
}
.nd-holding__actions { display: flex; align-items: center; gap: 1rem; margin-top: 1.9rem; flex-wrap: wrap; justify-content: center; }
/* Secondary asks: outlined pill buttons on the storm. Red stays reserved for
   the primary Notify Me, so these are ghost buttons that fill cream on hover. */
.nd-hero__apply {
  font-family: Inter, sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: #fff; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.55); border-radius: 999px; padding: .8rem 1.6rem;
  backdrop-filter: blur(6px); text-shadow: 0 1px 8px rgba(0,0,0,.5);
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.nd-hero__apply:hover {
  color: hsl(var(--navy)); background: hsl(var(--cream-ink)); border-color: hsl(var(--cream-ink));
  text-shadow: none; transform: translateY(-1px);
}
/* The apply links (with their own arrows) carry the "there's more below" cue,
   so the absolute scroll indicator is redundant here and collides with them. */
.nd-hero--holding .nd-hero__scroll { display: none; }

/* ---- Hero email capture: the primary ask, sat on the storm. Glassy input,
   barn-red button; the two apply links below stay understated. ---- */
.nd-hero__notify { margin-top: 1.7rem; width: 100%; max-width: 31rem; }
.nd-hero__notify-label {
  margin: 0 0 .85rem; font-family: Inter, sans-serif; font-size: 13px; line-height: 1.5;
  color: rgba(255,255,255,.9); text-shadow: 0 1px 12px rgba(0,0,0,.6);
}
.nd-hero__notify-form { display: flex; gap: .6rem; }
.nd-hero__notify-form input {
  flex: 1; min-width: 0; font-family: Inter, sans-serif; font-size: 16px; color: #fff;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px; padding: .8rem 1.2rem; backdrop-filter: blur(6px);
  transition: border-color .2s ease, background .2s ease;
}
.nd-hero__notify-form input::placeholder { color: rgba(255,255,255,.55); }
.nd-hero__notify-form input:focus { outline: none; border-color: hsl(var(--tan)); background: rgba(255,255,255,.16); }
.nd-hero__notify-form button {
  flex: none; font-family: Inter, sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: hsl(var(--primary-foreground)); background: hsl(var(--primary));
  border: none; border-radius: 999px; padding: .8rem 1.5rem; cursor: pointer; white-space: nowrap;
  box-shadow: 0 8px 24px -8px hsl(var(--primary) / .7); transition: filter .2s ease, transform .2s ease;
}
.nd-hero__notify-form button:hover { filter: brightness(1.08); transform: translateY(-1px); }
.nd-hero__notify .nd-nl-status { margin: .8rem 0 0; font-size: 13px; text-align: center; }
.nd-hero__notify .nd-nl-status[data-state="ok"] { color: hsl(var(--tan)); }
.nd-hero__notify .nd-nl-status[data-state="err"] { color: #ffb4ad; }
.nd-hero__notify .nd-nl-status[data-state="busy"] { color: rgba(255,255,255,.72); }

/* Staggered arrival: tagline, the "2027" line, the email capture, then the
   two apply links, each a beat after the logo's own flash has settled. */
.nd-hero--holding [data-reveal] { transition-delay: 0s; }
.nd-hero--holding .nd-holding__tagline { transition-delay: .95s; }
.nd-hero--holding .nd-hero__notify { transition-delay: 1.15s; }
.nd-hero--holding .nd-holding__actions { transition-delay: 1.35s; }

@media (max-width: 640px) {
  .nd-logo-reveal__img { width: min(88vw, 380px); }
  .nd-holding__actions { gap: 1.1rem; }
}
@media (max-width: 460px) {
  .nd-hero__notify-form { flex-direction: column; }
  .nd-hero__notify-form button { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .nd-logo-reveal::before { display: none; }
  .nd-logo-reveal__img { filter: drop-shadow(0 20px 60px rgba(0,0,0,.6)); }
}

/* ---- Lightning sync + replay: the logo catches the light when the sky
   flashes (class driven by holding.js from video currentTime). A keyframe
   pulse rather than a transition, so it never fights the reveal's own
   transition stack. ---- */
@keyframes ndLitPulse {
  0%   { filter: drop-shadow(0 20px 60px rgba(0,0,0,.6)); }
  18%  { filter: drop-shadow(0 20px 60px rgba(0,0,0,.6)) drop-shadow(0 0 30px rgba(255,255,255,.6)) brightness(1.14); }
  100% { filter: drop-shadow(0 20px 60px rgba(0,0,0,.6)); }
}
.nd-logo-reveal.is-lit .nd-logo-reveal__img { animation: ndLitPulse .9s ease-out; }

.nd-logo-reveal { cursor: pointer; }
.nd-logo-reveal:focus-visible { outline: 2px solid hsl(var(--tan)); outline-offset: 12px; border-radius: 10px; }
.nd-storm-flash {
  position: fixed; inset: 0; z-index: 80; background: #fff;
  opacity: 0; pointer-events: none;
}
.nd-storm-flash.is-replaying { animation: ndScreenFlash 1.1s ease-out both; }
@keyframes ndScreenFlash {
  0%  { opacity: 0; }
  6%  { opacity: .8; }
  18% { opacity: .06; }
  30% { opacity: .45; }   /* double-strike, matching the logo's own flash */
  55% { opacity: 0; }
  100%{ opacity: 0; }
}
.nd-logo-reveal.is-replaying::before { animation: ndLogoFlash 1.7s ease-out both; }
.nd-logo-reveal.is-replaying .nd-logo-reveal__img { animation: ndLitPulse 1.2s ease-out; }

@media (prefers-reduced-motion: reduce) {
  .nd-logo-reveal.is-lit .nd-logo-reveal__img,
  .nd-logo-reveal.is-replaying .nd-logo-reveal__img { animation: none; }
  .nd-storm-flash.is-replaying { animation: none; }
}

/* ---- Contact: reuses .nd-field throughout (same considered, readable
   fields as the Play/Trade forms), just a two-column outer layout. ---- */
.nd-contact-block { padding: 6rem 0; }
.nd-contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.nd-contact__form { display: flex; flex-direction: column; gap: 1.3rem; }
.nd-contact__btn { display: inline-flex; align-items: center; gap: .55rem; align-self: flex-start; }
@media (max-width: 800px) {
  .nd-contact__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
