/* =========================================================================
   NASHVILLE DAYS 2027 — full festival site
   Layered on top of site.css + theme-2027.css. Everything here is new
   structure for the 2027 build: hero, headliner video facade, line-up,
   tickets, farm, traders, the Get Involved form, sticky book bar.
   ========================================================================= */

/* ---------- shared section rhythm ---------- */
.nd-intro, .nd-lineup, .nd-tickets, .nd-family,
.nd-food, .nd-getting, .nd-faq { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.nd-headliner, .nd-farm, .nd-involved { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.nd-sec__title--center { text-align: center; }
.nd-sec__title--center + p { text-align: center; }

/* =========================================================================
   HERO
   ========================================================================= */
.nd-hero--2027 { min-height: 100svh; }
/* the hero trailer loop — same cover/Ken-Burns treatment as the base
   .nd-hero__video rule in site.css, just a slower drift and a slightly
   lower object-position so the stage (not the sky) stays in frame */
.nd-hero--2027 .nd-hero__video {
  object-position: center 38%;
  animation-duration: 34s;
}
@media (prefers-reduced-motion: reduce) { .nd-hero--2027 .nd-hero__video { animation: none; } }

.nd-hero--2027 .nd-hero__scrim {
  background:
    radial-gradient(118% 78% at 50% 44%, rgba(0,0,0,.62) 0%, rgba(0,0,0,.34) 46%, rgba(0,0,0,.08) 78%),
    linear-gradient(180deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.18) 22%, rgba(0,0,0,.22) 58%,
                    hsl(var(--navy) / .6) 86%, hsl(var(--navy)) 100%);
}

.nd-hero__place {
  margin: .75rem 0 0; font-family: Inter, sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: hsl(var(--tan));
  text-shadow: 0 1px 10px rgba(0,0,0,.55);
}
.nd-hero__lead strong { color: #fff; font-weight: 600; }

.nd-hero__book--big { padding: 1.15rem 2.8rem; font-size: 13.5px; }

@media (max-width: 600px) {
  .nd-hero__place { font-size: 10.5px; letter-spacing: .14em; }
}

/* ---- Countdown: card-based, fixed-width digits so 3-figure day counts
   never shift the layout, no stray gradient fill on the numerals. ---- */
.nd-hero__count { display: inline-flex; align-items: stretch; gap: .7rem; margin-top: 2.3rem; }
.nd-count {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 4.5rem; padding: .9rem .5rem .8rem; border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.02));
  border: 1px solid rgba(233,195,114,.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 10px 26px -18px rgba(0,0,0,.6);
}
.nd-count__n {
  background: none !important; color: #ecd6a0 !important;
  font-size: 2.05rem; line-height: 1; font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1; text-shadow: 0 2px 14px rgba(0,0,0,.5);
}
.nd-count__l { margin-top: .55rem; }
.nd-count__sep { display: none; }
@media (max-width: 600px) {
  .nd-hero__count { gap: .45rem; }
  .nd-count { min-width: 3.6rem; padding: .7rem .3rem .6rem; border-radius: 11px; }
  .nd-count__n { font-size: 1.55rem; }
}

/* =========================================================================
   INTRO
   ========================================================================= */
.nd-intro__grid {
  display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.nd-intro__lead {
  font-size: 1.08rem; line-height: 1.75; font-weight: 300;
  color: hsl(var(--foreground) / .86); margin: 0 0 1.3rem;
}
.nd-intro__body {
  font-size: 1rem; line-height: 1.75; font-weight: 300;
  color: hsl(var(--foreground) / .78); margin: 0;
}
.nd-intro__body em { font-style: italic; color: hsl(var(--primary)); font-weight: 500; }
.nd-intro__aside { padding-top: .5rem; }
@media (max-width: 880px) { .nd-intro__grid { grid-template-columns: 1fr; } }

/* =========================================================================
   HEADLINER + VIDEO FACADE
   ========================================================================= */
.nd-headliner { text-align: center; }
.nd-headliner__lead {
  max-width: 44rem; margin: 0 auto 2.4rem; font-weight: 300;
  font-size: 1.05rem; line-height: 1.7; color: hsl(var(--cream-ink) / .84);
}

/* Click-to-play: only the poster loads until the visitor asks for the video. */
.nd-video { max-width: 62rem; margin: 0 auto; }
.nd-video__btn {
  position: relative; display: block; width: 100%; padding: 0; border: 0;
  border-radius: 14px; overflow: hidden; cursor: pointer; background: #0b1a2b;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.8);
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease;
}
.nd-video__btn:hover { transform: translateY(-3px); box-shadow: 0 38px 84px -30px rgba(0,0,0,.9); }
.nd-video__poster { display: block; width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; }
.nd-video__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 78px; height: 78px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  background: hsl(var(--primary)); color: #fff;
  box-shadow: 0 12px 40px -8px hsl(var(--primary) / .8);
  transition: transform .35s ease, filter .35s ease;
}
.nd-video__play svg { width: 34px; height: 34px; margin-left: 4px; }
.nd-video__btn:hover .nd-video__play { transform: translate(-50%, -50%) scale(1.08); filter: brightness(1.08); }
.nd-video__label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 2.6rem 1.4rem 1.1rem;
  font-family: Inter, sans-serif; font-size: 11.5px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: #fff; text-align: center;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
}
.nd-video video { display: block; width: 100%; border-radius: 14px; background: #000; }

.nd-headliner__foot { margin-top: 2rem; }
.nd-headliner__link {
  display: inline-flex; align-items: center; gap: .5rem; min-height: 44px;
  font-family: Inter, sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: hsl(var(--tan));
  border-bottom: 1px solid hsl(var(--tan) / .45); transition: color .3s, border-color .3s;
}
.nd-headliner__link svg { width: 14px; height: 14px; }
.nd-headliner__link:hover { color: #fff; border-color: #fff; }

/* =========================================================================
   LINE-UP
   ========================================================================= */
.nd-lineup__lead { max-width: 40rem; margin: 0 auto 2.8rem; text-align: center; font-weight: 300; color: hsl(var(--foreground) / .75); }
.nd-artist--head { grid-column: span 2; aspect-ratio: 16/10; }
.nd-artist--head .nd-artist__name { font-size: 2rem; }
@media (max-width: 639px) { .nd-artist--head { grid-column: span 1; aspect-ratio: 4/5; } }

/* =========================================================================
   TICKETS
   ========================================================================= */
.nd-tickets { background: hsl(var(--muted) / .5); }

.nd-price-flash {
  display: flex; align-items: center; justify-content: center; gap: .8rem;
  flex-wrap: wrap; margin: 0 0 2.4rem;
}
.nd-price-flash__was {
  font-family: "DM Serif Display", Georgia, serif; font-size: 1.7rem;
  color: hsl(var(--foreground) / .4); text-decoration: line-through;
}
.nd-price-flash__arrow { color: hsl(var(--tan)); font-size: 1.2rem; }
.nd-price-flash__now {
  font-family: "DM Serif Display", Georgia, serif; font-size: 2.6rem; line-height: 1;
  color: hsl(var(--primary));
}
.nd-price-flash__note {
  width: 100%; text-align: center; font-family: Inter, sans-serif; font-size: 11px;
  font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: hsl(var(--foreground) / .6);
}

.nd-tier-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2.6rem;
}
.nd-tier {
  background: #fff; border: 1px solid hsl(var(--border)); border-radius: 12px;
  padding: 1.5rem 1.1rem; text-align: center;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.nd-tier:hover { transform: translateY(-4px); box-shadow: 0 20px 44px -24px rgba(20,30,28,.4); }
.nd-tier__label {
  font-family: Inter, sans-serif; font-size: 10.5px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase; color: hsl(var(--sage)); margin: 0 0 .6rem;
}
.nd-tier__price {
  font-family: "DM Serif Display", Georgia, serif; font-size: 2.5rem; line-height: 1;
  color: hsl(var(--foreground)); margin: 0 0 .5rem;
}
.nd-tier__price span { font-size: .55em; vertical-align: .35em; margin-right: .05em; }
.nd-tier__sub { font-size: .76rem; line-height: 1.45; color: hsl(var(--foreground) / .62); margin: 0; }
@media (max-width: 880px) { .nd-tier-grid { grid-template-columns: repeat(2, 1fr); } }

.nd-included {
  max-width: 40rem; margin: 0 auto 2.4rem; padding: 1.6rem 1.8rem;
  border: 1px solid hsl(var(--border)); border-radius: 12px; background: #fff;
}
.nd-included__title {
  font-family: Inter, sans-serif; font-size: 10.5px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase; color: hsl(var(--sage));
  margin: 0 0 1rem; text-align: center;
}
.nd-included__list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: .55rem 1.4rem;
}
.nd-included__list li {
  position: relative; padding-left: 1.4rem; font-size: .88rem;
  line-height: 1.5; color: hsl(var(--foreground) / .8);
}
.nd-included__list li::before {
  content: "\2713"; position: absolute; left: 0; top: 0;
  color: hsl(var(--primary)); font-weight: 700;
}
@media (max-width: 640px) { .nd-included__list { grid-template-columns: 1fr; } }

.nd-tickets__cta { text-align: center; }
.nd-tickets__note {
  max-width: 32rem; margin: 1.1rem auto 0; font-size: .82rem; line-height: 1.6;
  color: hsl(var(--foreground) / .62);
}

/* =========================================================================
   FAMILY
   ========================================================================= */
.nd-family__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 4.5rem); align-items: center; }
.nd-family__lead { font-size: 1.02rem; line-height: 1.7; font-weight: 300; color: hsl(var(--foreground) / .8); margin: 0 0 1.8rem; }
.nd-family__pics { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.nd-family__pics img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; display: block; }
.nd-family__pics picture:first-child { grid-row: span 2; }
.nd-family__pics picture:first-child img { aspect-ratio: 3/4; }
.nd-family__pics picture:last-child img { aspect-ratio: 4/3; }
@media (max-width: 880px) {
  .nd-family__grid { grid-template-columns: 1fr; }
  .nd-family__pics picture:first-child { grid-row: auto; }
}

/* =========================================================================
   THE FARM
   ========================================================================= */
.nd-farm { text-align: center; }
.nd-farm__lead { max-width: 42rem; margin: 0 auto 2.6rem; font-weight: 300; line-height: 1.7; color: hsl(var(--cream-ink) / .82); }
.nd-farm__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.nd-farm__card {
  padding: 1.6rem 1.2rem; border-radius: 12px; text-align: left;
  border: 1px solid hsl(var(--cream-ink) / .16); background: hsl(var(--navy-deep) / .45);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s;
}
.nd-farm__card:hover { transform: translateY(-4px); border-color: hsl(var(--tan) / .5); }
.nd-farm__card h3 {
  font-family: "DM Serif Display", Georgia, serif; font-size: 1.15rem;
  color: hsl(var(--cream-ink)); margin: 0 0 .5rem;
}
.nd-farm__card p { font-size: .85rem; line-height: 1.55; color: hsl(var(--cream-ink) / .7); margin: 0; font-weight: 300; }
.nd-farm__note { margin: 1.8rem 0 0; font-size: .8rem; color: hsl(var(--cream-ink) / .55); font-style: italic; }
@media (max-width: 900px) { .nd-farm__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .nd-farm__grid { grid-template-columns: 1fr; } }

/* =========================================================================
   FOOD, DRINK & STALLS
   ========================================================================= */
.nd-food__lead { max-width: 38rem; margin: 0 auto 2.6rem; text-align: center; font-weight: 300; color: hsl(var(--foreground) / .75); }
.nd-food__cat {
  font-family: Inter, sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase; color: hsl(var(--sage));
  margin: 2.4rem 0 1.1rem; padding-bottom: .7rem;
  border-bottom: 1px solid hsl(var(--border));
}
.nd-food__cat:first-of-type { margin-top: 0; }
.nd-trader-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.nd-trader {
  padding: 1.15rem 1.25rem; border-radius: 10px; background: #fff;
  border: 1px solid hsl(var(--border));
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s ease;
}
.nd-trader:hover { transform: translateY(-3px); border-color: hsl(var(--tan)); }
.nd-trader h4 {
  font-family: "DM Serif Display", Georgia, serif; font-size: 1.08rem;
  color: hsl(var(--foreground)); margin: 0 0 .25rem;
}
.nd-trader p { font-size: .82rem; color: hsl(var(--foreground) / .65); margin: 0; font-weight: 300; }
.nd-trader a {
  display: inline-block; margin-top: .6rem; min-height: 24px;
  font-family: Inter, sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: hsl(var(--primary));
  border-bottom: 1px solid hsl(var(--primary) / .35);
}
.nd-trader a:hover { border-color: hsl(var(--primary)); }
@media (max-width: 880px) { .nd-trader-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .nd-trader-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   GET INVOLVED — one form, fields swap on the enquiry dropdown
   ========================================================================= */
.nd-involved__lead { max-width: 38rem; margin: 0 auto 2.4rem; text-align: center; font-weight: 300; color: hsl(var(--cream-ink) / .8); }

.nd-enquiry { max-width: 46rem; margin: 0 auto; }
.nd-enquiry__pick { margin-bottom: 1.8rem; }
.nd-enquiry__pick > span {
  display: block; margin-bottom: .6rem;
  font-family: Inter, sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: hsl(var(--tan));
}
.nd-enquiry__pick select {
  width: 100%; font-family: Inter, sans-serif; font-size: 16px; color: hsl(var(--cream-ink));
  padding: .95rem 1.1rem; border-radius: 10px;
  border: 1px solid hsl(var(--cream-ink) / .3); background: hsl(var(--navy-deep) / .6);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9ab87' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 18px;
}
.nd-enquiry__pick select:focus { outline: none; border-color: hsl(var(--tan)); }
.nd-enquiry__pick select option { color: #14243a; background: #fff; }

.nd-enq-intro {
  margin: 0 0 1.4rem; font-size: .95rem; line-height: 1.65; font-weight: 300;
  color: hsl(var(--cream-ink) / .82);
}
.nd-enq-intro strong { color: hsl(var(--tan)); font-weight: 600; }
.nd-enq-notice {
  margin: 0 0 1.4rem; padding: .85rem 1.1rem; border-radius: 8px;
  border: 1px solid hsl(var(--tan) / .4); background: hsl(var(--tan) / .1);
  font-size: .86rem; line-height: 1.55; color: hsl(var(--cream-ink) / .9);
}

.nd-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.nd-field { display: flex; flex-direction: column; gap: .4rem; }
.nd-field--wide { grid-column: 1 / -1; }
.nd-field, .nd-check {
  font-family: Inter, sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: hsl(var(--cream-ink) / .8);
}
.nd-field input, .nd-field textarea, .nd-field select {
  font-family: Inter, sans-serif; font-size: 16px; font-weight: 400;
  letter-spacing: normal; text-transform: none; color: hsl(var(--cream-ink));
  padding: .8rem 1rem; border-radius: 8px;
  border: 1px solid hsl(var(--cream-ink) / .26); background: hsl(var(--navy-deep) / .5);
  transition: border-color .25s ease, background .25s ease;
}
.nd-field input::placeholder, .nd-field textarea::placeholder { color: hsl(var(--cream-ink) / .38); }
.nd-field input:focus, .nd-field textarea:focus, .nd-field select:focus {
  outline: none; border-color: hsl(var(--tan)); background: hsl(var(--navy-deep) / .7);
}
.nd-field select option { color: #14243a; background: #fff; }
.nd-field textarea { resize: vertical; min-height: 96px; }

.nd-check {
  display: flex; align-items: flex-start; gap: .7rem;
  text-transform: none; letter-spacing: normal; font-size: .85rem;
  font-weight: 400; line-height: 1.55; color: hsl(var(--cream-ink) / .82);
}
.nd-check input { flex: none; width: 18px; height: 18px; margin-top: .15rem; accent-color: hsl(var(--primary)); }

.nd-form-privacy {
  margin: 1rem 0 0; font-size: .78rem; line-height: 1.55;
  color: hsl(var(--cream-ink) / .55); font-style: italic;
}
.nd-form__btn {
  margin-top: 1.4rem; min-height: 48px;
  font-family: Inter, sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: hsl(var(--primary-foreground)); background: hsl(var(--primary));
  border: none; border-radius: 999px; padding: .95rem 2.2rem; cursor: pointer;
  box-shadow: 0 14px 34px -16px hsl(var(--primary) / .8);
  transition: filter .25s ease, transform .25s ease;
}
.nd-form__btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.nd-form__btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }

/* honeypot: never visible to humans */
.nd-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

.nd-involved .nd-form-status[data-state="ok"]   { color: hsl(var(--tan)); }
.nd-involved .nd-form-status[data-state="err"]  { color: #ffb4ad; }
.nd-involved .nd-form-status[data-state="busy"] { color: hsl(var(--cream-ink) / .7); }

@media (max-width: 640px) { .nd-form__grid { grid-template-columns: 1fr; } }

/* =========================================================================
   GETTING HERE
   ========================================================================= */
.nd-getting { background: hsl(var(--muted) / .45); }
.nd-getting__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.4rem; }
.nd-getting__card {
  padding: 1.6rem 1.4rem; border-radius: 12px; background: #fff;
  border: 1px solid hsl(var(--border));
}
.nd-getting__card h3 {
  font-family: Inter, sans-serif; font-size: 10.5px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase; color: hsl(var(--sage)); margin: 0 0 .8rem;
}
.nd-getting__card p { font-size: .88rem; line-height: 1.65; color: hsl(var(--foreground) / .78); margin: 0; font-weight: 300; }
.nd-getting__addr { font-style: normal; }
.nd-getting__addr strong { color: hsl(var(--primary)); font-weight: 600; letter-spacing: .04em; }
.nd-getting__map {
  display: inline-flex; align-items: center; min-height: 44px; margin-top: .6rem;
  font-family: Inter, sans-serif; font-size: 10.5px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: hsl(var(--primary));
  border-bottom: 1px solid hsl(var(--primary) / .35);
}
.nd-getting__map:hover { border-color: hsl(var(--primary)); }
@media (max-width: 900px) { .nd-getting__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .nd-getting__grid { grid-template-columns: 1fr; } }

/* =========================================================================
   FAQ
   ========================================================================= */
.nd-faq-list { max-width: 46rem; margin: 2.4rem auto 0; }
.nd-faq-item h3 { margin: 0; }
.nd-faq-item h3 button {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: "DM Serif Display", Georgia, serif; font-size: 1.1rem;
  color: hsl(var(--foreground)); padding: 1.3rem 0;
}
.nd-faq-item h3 button svg { flex: none; transition: transform .3s ease; color: hsl(var(--tan)); }
.nd-faq-item h3 button[data-state="open"] svg { transform: rotate(180deg); }
.nd-faq-item [data-nd-acc-panel] > div {
  padding-bottom: 1.4rem; max-width: 58ch; font-size: .92rem;
  line-height: 1.7; font-weight: 300; color: hsl(var(--foreground) / .76);
}
.nd-faq-item [data-nd-acc-panel] a { color: hsl(var(--primary)); border-bottom: 1px solid hsl(var(--primary) / .35); }

/* =========================================================================
   NEWSLETTER
   ========================================================================= */
.nd-signup { padding: clamp(3rem, 7vw, 5rem) 0; text-align: center; }
.nd-signup__title {
  font-family: "DM Serif Display", Georgia, serif; font-size: clamp(1.9rem, 4.4vw, 2.8rem);
  margin: 0 0 .6rem; color: hsl(var(--primary-foreground));
}
.nd-signup__title em { font-style: italic; }
.nd-signup__lead {
  max-width: 34rem; margin: 0 auto 1.7rem; font-weight: 300;
  font-size: 1rem; line-height: 1.65; color: hsl(var(--primary-foreground) / .88);
}
.nd-signup__form { display: flex; gap: .7rem; max-width: 30rem; margin: 0 auto; }
.nd-signup__form input {
  flex: 1; min-width: 0; font-family: Inter, sans-serif; font-size: 16px;
  padding: .9rem 1.2rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.12); color: #fff;
}
.nd-signup__form input::placeholder { color: rgba(255,255,255,.6); }
.nd-signup__form input:focus { outline: none; border-color: #fff; background: rgba(255,255,255,.2); }
.nd-signup__form button {
  flex: none; font-family: Inter, sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; cursor: pointer;
  padding: .9rem 1.7rem; border-radius: 999px; border: none;
  background: #fff; color: hsl(var(--primary)); transition: transform .25s ease;
}
.nd-signup__form button:hover { transform: translateY(-1px); }
.nd-signup .nd-nl-status { margin-top: .9rem; color: #fff; }
@media (max-width: 520px) { .nd-signup__form { flex-direction: column; } }

/* =========================================================================
   FOOTER
   ========================================================================= */
.nd-footer { padding: clamp(3rem, 7vw, 5rem) 0 2.5rem; background: hsl(var(--muted) / .4); border-top: 1px solid hsl(var(--border)); }
.nd-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.nd-footer__logo { width: 170px; height: auto; margin-bottom: 1rem; }
.nd-footer__blurb { font-size: .88rem; line-height: 1.65; font-weight: 300; color: hsl(var(--foreground) / .7); margin: 0; max-width: 26rem; }
.nd-footer h3 {
  font-family: Inter, sans-serif; font-size: 10.5px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase; color: hsl(var(--sage)); margin: 0 0 .8rem;
}
.nd-footer p { font-size: .88rem; line-height: 1.7; color: hsl(var(--foreground) / .75); margin: 0 0 .8rem; font-weight: 300; }
.nd-footer a { color: hsl(var(--primary)); }
.nd-footer__legal {
  padding-top: 1.6rem; border-top: 1px solid hsl(var(--border));
  font-size: .78rem; color: hsl(var(--foreground) / .55); text-align: center; margin: 0;
}
@media (max-width: 780px) { .nd-footer__grid { grid-template-columns: 1fr; gap: 2rem; } }

/* =========================================================================
   STICKY MOBILE BOOK BAR
   ========================================================================= */
.nd-stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .75rem 1rem calc(.75rem + env(safe-area-inset-bottom, 0px));
  background: hsl(var(--navy) / .97); backdrop-filter: blur(10px);
  border-top: 1px solid hsl(var(--cream-ink) / .16);
  transform: translateY(110%); transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.nd-stickybar.is-in { transform: none; }
.nd-stickybar__info { display: flex; flex-direction: column; line-height: 1.25; }
.nd-stickybar__info strong {
  font-family: "DM Serif Display", Georgia, serif; font-size: 1.15rem;
  color: hsl(var(--cream-ink)); font-weight: 400;
}
.nd-stickybar__info span {
  font-family: Inter, sans-serif; font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; color: hsl(var(--tan));
}
.nd-stickybar__btn {
  flex: none; min-height: 44px; display: inline-flex; align-items: center;
  font-family: Inter, sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: hsl(var(--primary-foreground)); background: hsl(var(--primary));
  padding: .8rem 1.5rem; border-radius: 999px;
}
@media (max-width: 880px) { .nd-stickybar[hidden] { display: none; } .nd-stickybar:not([hidden]) { display: flex; } }
@media (max-width: 880px) { body { padding-bottom: 0; } }

/* =========================================================================
   COOKIE NOTICE
   ========================================================================= */
.nd-cookie {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 80; max-width: 22rem;
  padding: 1.2rem 1.3rem; border-radius: 12px; background: #fff;
  border: 1px solid hsl(var(--border)); box-shadow: 0 24px 60px -30px rgba(20,30,28,.6);
}
.nd-cookie p { margin: 0 0 .6rem; font-size: .84rem; line-height: 1.6; color: hsl(var(--foreground) / .78); font-weight: 300; }
.nd-cookie p strong { font-family: "DM Serif Display", Georgia, serif; font-size: 1.05rem; font-weight: 400; color: hsl(var(--foreground)); }
.nd-cookie__btns { display: flex; gap: .6rem; margin-top: .9rem; }
.nd-cookie__btns button {
  min-height: 44px; padding: .6rem 1.2rem; border-radius: 999px; cursor: pointer;
  font-family: Inter, sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
}
.nd-cookie__ok { background: hsl(var(--primary)); color: #fff; border: none; }
.nd-cookie__no { background: none; color: hsl(var(--foreground) / .7); border: 1px solid hsl(var(--border)); }
@media (max-width: 880px) { .nd-cookie { right: .75rem; left: .75rem; bottom: 5.2rem; max-width: none; } }

/* =========================================================================
   SHARE
   ========================================================================= */
.nd-share { display: flex; align-items: center; justify-content: center; gap: .8rem; margin-top: 2.2rem; }
.nd-share__label {
  font-family: Inter, sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: hsl(var(--foreground) / .55);
}
.nd-share a, .nd-share button {
  width: 44px; height: 44px; border-radius: 999px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid hsl(var(--border)); background: none;
  color: hsl(var(--foreground) / .6); transition: all .3s ease;
}
.nd-share a svg, .nd-share button svg { width: 17px; height: 17px; }
.nd-share a:hover, .nd-share button:hover { background: hsl(var(--primary)); color: #fff; border-color: transparent; }

/* Add to calendar */
.nd-cal {
  display: inline-flex; align-items: center; gap: .5rem; min-height: 44px;
  margin-top: 1.2rem; font-family: Inter, sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: hsl(var(--foreground) / .7);
  border-bottom: 1px solid hsl(var(--border)); cursor: pointer; background: none; border-top: 0; border-left: 0; border-right: 0;
}
.nd-cal svg { width: 15px; height: 15px; }
.nd-cal:hover { color: hsl(var(--primary)); border-color: hsl(var(--primary)); }

/* =========================================================================
   FARM CARD ICONS (added: photo-ready slots, honest fallback until
   Buttercups supply real photos of each attraction)
   ========================================================================= */
.nd-farm__img { width: 100%; aspect-ratio: 16/10; border-radius: 8px; overflow: hidden; margin-bottom: 1rem; }
.nd-farm__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nd-farm__img--fallback {
  display: flex; align-items: center; justify-content: center;
  background: hsl(var(--navy-deep) / .6); border: 1px solid hsl(var(--cream-ink) / .14);
}
.nd-farm__img--fallback svg { width: 34px; height: 34px; color: hsl(var(--tan)); opacity: .85; }

/* =========================================================================
   FOOD & DRINK — trader note lines
   ========================================================================= */
.nd-food__note { text-align: center; margin: 1.4rem 0 2.4rem; font-size: .85rem; color: hsl(var(--foreground) / .6); font-style: italic; }
.nd-food__note--photos { margin-top: 2.2rem; margin-bottom: 0; }

/* =========================================================================
   GALLERY — click-to-enlarge grid using the shared lightbox (site.js)
   ========================================================================= */
.nd-gallery__lead { max-width: 36rem; margin: 0 auto 2.6rem; text-align: center; font-weight: 300; color: hsl(var(--foreground) / .72); }
.nd-gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .6rem;
}
.nd-gallery-grid button {
  position: relative; aspect-ratio: 1/1; border-radius: 8px; overflow: hidden;
  border: none; padding: 0; cursor: pointer; background: hsl(var(--muted));
}
.nd-gallery-grid img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.nd-gallery-grid button:hover img { transform: scale(1.07); }
.nd-gallery-grid button::after {
  content: ""; position: absolute; inset: 0; background: rgba(15,15,10,0);
  transition: background .3s ease;
}
.nd-gallery-grid button:hover::after { background: rgba(15,15,10,.12); }
@media (max-width: 900px) { .nd-gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .nd-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: .4rem; } }

/* =========================================================================
   WALL OF PIONEERS
   ========================================================================= */
.nd-pioneers { text-align: center; }
.nd-pioneers__lead { max-width: 40rem; margin: 0 auto 2.4rem; font-weight: 300; line-height: 1.7; color: hsl(var(--cream-ink) / .82); }
.nd-pioneers__wall {
  list-style: none; margin: 0 0 1.4rem; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem .7rem;
}
.nd-pioneers__wall li {
  display: inline-flex; align-items: baseline; gap: .4rem;
  padding: .55rem 1rem; border-radius: 999px;
  border: 1px solid hsl(var(--cream-ink) / .2); background: hsl(var(--navy-deep) / .45);
}
.nd-pioneers__name { font-family: "DM Serif Display", Georgia, serif; font-size: 1rem; color: hsl(var(--cream-ink)); }
.nd-pioneers__year { font-family: Inter, sans-serif; font-size: .68rem; letter-spacing: .08em; color: hsl(var(--tan)); }
.nd-pioneers__wall li:last-child { border-style: dashed; border-color: hsl(var(--tan) / .55); }
.nd-pioneers__wall li:last-child .nd-pioneers__name { color: hsl(var(--tan)); font-style: italic; }
.nd-pioneers__sample { font-size: .8rem; color: hsl(var(--cream-ink) / .5); font-style: italic; margin: 0; }

/* =========================================================================
   LINE DANCING — Honky Tonk Highway feature section
   Two columns: a photo mosaic, and copy + a highlighted feature card with
   a real embedded video from their own Facebook page.
   ========================================================================= */
.nd-dance__head { text-align: center; margin-bottom: 3.5rem; }
.nd-dance__tag {
  margin: .5rem 0 0; font-family: Inter, sans-serif; font-size: 13px; letter-spacing: .15em;
  color: hsl(var(--foreground) / .6); font-weight: 300;
}
.nd-dance__lead { max-width: 38rem; margin: 1rem auto 0; font-size: 1.05rem; line-height: 1.7; color: hsl(var(--foreground) / .78); font-weight: 300; }

.nd-dance__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

.nd-dance__mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.nd-dance__mosaic picture { display: block; border-radius: 16px; overflow: hidden; aspect-ratio: 3/4; }
.nd-dance__mosaic picture:nth-child(2) { margin-top: 2rem; }
.nd-dance__mosaic img { width: 100%; height: 100%; object-fit: cover; display: block; }

.nd-dance__copy { display: flex; flex-direction: column; gap: 2rem; }
.nd-dance__text { display: flex; flex-direction: column; gap: 1.1rem; font-size: 1.02rem; line-height: 1.7; color: hsl(var(--foreground) / .78); font-weight: 300; }

.nd-dance__feature {
  position: relative; padding: 2rem; border-radius: 16px; overflow: hidden;
  border: 1px solid hsl(var(--primary) / .3); background: hsl(var(--muted) / .5);
}
.nd-dance__feature h3 { font-family: "DM Serif Display", Georgia, serif; font-size: 1.7rem; margin: .5rem 0 .8rem; color: hsl(var(--foreground)); }
.nd-dance__feature p { font-size: .95rem; line-height: 1.65; color: hsl(var(--foreground) / .72); font-weight: 300; margin: 0 0 .8rem; }
.nd-dance__follow {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: .6rem;
  padding: .8rem 1.5rem; border-radius: 999px; background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
  font-family: Inter, sans-serif; font-size: .85rem; font-weight: 500; transition: filter .3s ease;
}
.nd-dance__follow svg { width: 16px; height: 16px; }
.nd-dance__follow:hover { filter: brightness(1.1); }

.nd-dance__tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.nd-dance__tile {
  padding: 1.1rem; border-radius: 12px; text-align: center;
  border: 1px solid hsl(var(--border) / .6); background: hsl(var(--muted) / .3);
}
.nd-dance__tile svg { width: 24px; height: 24px; color: hsl(var(--primary)); margin: 0 auto .5rem; display: block; }
.nd-dance__tile p:first-of-type { font-family: "DM Serif Display", Georgia, serif; font-size: .95rem; color: hsl(var(--foreground)); margin: 0; }
.nd-dance__tile p:last-child { font-size: .72rem; color: hsl(var(--foreground) / .55); margin: .15rem 0 0; }

.nd-dance__video-label { font-family: Inter, sans-serif; font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: hsl(var(--foreground) / .6); margin: 0 0 .7rem; }
.nd-dance__video-grid { display: flex; flex-wrap: wrap; gap: 1rem; }
.nd-dance__video-frame {
  width: 100%; max-width: 200px; flex: 1 1 160px; aspect-ratio: 9/16; border-radius: 14px; overflow: hidden;
  background: hsl(var(--navy-deep)); box-shadow: 0 20px 45px -22px rgba(20,20,14,.35);
}
.nd-dance__video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 640px) {
  .nd-dance__video-grid { flex-wrap: nowrap; overflow-x: auto; padding-bottom: .3rem; }
  .nd-dance__video-frame { flex: 0 0 62vw; max-width: 220px; }
}
.nd-dance__video-note { font-size: .75rem; color: hsl(var(--foreground) / .5); margin: .6rem 0 0; }

@media (max-width: 900px) {
  .nd-dance__grid { grid-template-columns: 1fr; gap: 2rem; }
  .nd-dance__mosaic { max-width: 30rem; margin: 0 auto; }
}
@media (max-width: 480px) {
  .nd-dance__tiles { grid-template-columns: 1fr; }
}
