/* ── NIGHTS OF LIGHTS PAGE ──────────────────────────────────────── */
/* Owns: /nights-of-lights — hero, why-stop, drinks, route,
   parking, photos, family, groups, CTA strip, footer.           */
/* Does NOT own: global nav (.nol-nav defined here), theme vars,
   shared footer, other pages.                                   */

/* ── BASE ── */
.nol-page {
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
}

/* ── NAV ── */
.nol-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(245,239,230,0.95);
  border-bottom: 1px solid rgba(44,24,16,0.08);
  backdrop-filter: blur(10px);
}

.nol-nav-logo { display: flex; align-items: center; text-decoration: none; }

.nol-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nol-nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nol-nav-links a:hover { color: var(--mahogany); }

.nol-nav-cta {
  background: var(--mahogany);
  color: var(--cream) !important;
  padding: 7px 18px;
  border-radius: 4px;
  font-weight: 500 !important;
  transition: opacity 0.2s !important;
}

.nol-nav-cta:hover { opacity: 0.88; }

/* ── HERO ── */
.nol-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.nol-hero-img-wrap {
  position: absolute;
  inset: 0;
}

.nol-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.nol-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14,8,4,0.1) 0%,
    rgba(14,8,4,0.2) 40%,
    rgba(14,8,4,0.75) 80%,
    rgba(14,8,4,0.92) 100%
  );
}

.nol-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 64px 72px;
  max-width: 900px;
}

.nol-date-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  border: 1px solid rgba(196,149,106,0.5);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.nol-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  color: #FAF7F2;
  line-height: 1.1;
  margin: 0 0 20px;
}

.nol-hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(250,247,242,0.8);
  max-width: 560px;
  line-height: 1.6;
  margin: 0 0 32px;
}

.nol-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.nol-btn-primary {
  display: inline-block;
  background: var(--brass);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 13px 30px;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nol-btn-primary:hover { opacity: 0.88; }

.nol-btn-secondary {
  display: inline-block;
  background: transparent;
  color: rgba(250,247,242,0.85);
  font-size: 14px;
  font-weight: 400;
  padding: 12px 28px;
  border: 1px solid rgba(250,247,242,0.4);
  border-radius: 4px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.nol-btn-secondary:hover {
  border-color: rgba(250,247,242,0.7);
  color: #FAF7F2;
}

.nol-btn-outline {
  display: inline-block;
  background: transparent;
  color: rgba(250,247,242,0.8);
  font-size: 14px;
  font-weight: 400;
  padding: 12px 28px;
  border: 1px solid rgba(196,149,106,0.5);
  border-radius: 4px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.nol-btn-outline:hover {
  border-color: var(--brass);
  color: var(--brass);
}

.nol-hero-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.nol-chip {
  font-size: 12px;
  color: rgba(250,247,242,0.7);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 12px;
  border-radius: 20px;
}

/* ── SECTION SHELL ── */
.nol-section {
  padding: 80px 0;
}

.nol-dark {
  background: var(--mahogany);
  color: var(--cream);
}

.nol-warm {
  background: #F5EFE6;
}

.nol-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
}

.nol-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 14px;
}

.nol-label-light {
  color: rgba(196,149,106,0.85);
}

.nol-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--mahogany);
  line-height: 1.2;
  margin: 0 0 20px;
}

.nol-title-light { color: #FAF7F2; }

.nol-section-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink-muted);
  max-width: 640px;
  line-height: 1.65;
  margin: 0 0 48px;
}

.nol-sub-light { color: rgba(250,247,242,0.7); }

/* ── WHY CARDS ── */
.nol-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.nol-why-card {
  background: #fff;
  border: 1px solid rgba(44,24,16,0.08);
  border-radius: 6px;
  padding: 28px;
  transition: box-shadow 0.2s;
}

.nol-why-card:hover {
  box-shadow: 0 4px 24px rgba(44,24,16,0.08);
}

.nol-why-icon {
  margin-bottom: 16px;
}

.nol-why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--mahogany);
  margin: 0 0 10px;
}

.nol-why-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-muted);
  margin: 0;
}

/* ── DRINKS ── */
.nol-drinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 12px;
}

.nol-drink-category {}

.nol-category-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(196,149,106,0.25);
}

.nol-drink-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.nol-drink-item {}

.nol-drink-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: #FAF7F2;
  margin-bottom: 4px;
}

.nol-drink-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(250,247,242,0.65);
}

.nol-drink-link {
  color: var(--brass);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
}

.nol-drink-link:hover { text-decoration: underline; }

.nol-drinks-note {
  font-size: 13px;
  color: rgba(250,247,242,0.5);
  margin-top: 40px;
  border-top: 1px solid rgba(196,149,106,0.15);
  padding-top: 20px;
}

.nol-drinks-link {
  color: var(--brass);
  text-decoration: none;
}

/* ── ROUTE ── */
.nol-route-sub {
  font-size: 16px;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 48px;
}

.nol-route-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid rgba(196,149,106,0.3);
  margin-left: 20px;
  padding-left: 0;
}

.nol-route-step {
  display: flex;
  gap: 24px;
  padding: 0 0 40px 36px;
  position: relative;
}

.nol-route-step:last-child { padding-bottom: 0; }

.nol-step-num {
  position: absolute;
  left: -17px;
  top: 2px;
  width: 32px;
  height: 32px;
  background: var(--cream);
  border: 2px solid rgba(196,149,106,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--mahogany);
  flex-shrink: 0;
}

.nol-route-step-featured .nol-step-num,
.nol-step-featured-num {
  background: var(--mahogany) !important;
  border-color: var(--brass) !important;
  color: var(--brass) !important;
}

.nol-step-content {}

.nol-step-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--mahogany);
  margin: 0 0 8px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.nol-step-time {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--brass);
  letter-spacing: 0.04em;
}

.nol-step-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-muted);
  margin: 0 0 12px;
}

.nol-step-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  background: var(--mahogany);
  color: var(--brass);
  padding: 5px 14px;
  border-radius: 2px;
}

/* ── PARKING ── */
.nol-parking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 12px;
}

.nol-parking-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(196,149,106,0.18);
  border-radius: 6px;
  padding: 24px;
  position: relative;
  padding-top: 36px;
}

.nol-parking-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
}

.nol-badge-best { background: var(--brass); color: var(--mahogany); }
.nol-badge-close { background: rgba(196,149,106,0.25); color: var(--brass); }
.nol-badge-free { background: rgba(74,120,74,0.3); color: #8BC98B; }

.nol-parking-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: #FAF7F2;
  margin: 0 0 4px;
}

.nol-parking-address {
  font-size: 12px;
  color: rgba(250,247,242,0.5);
  margin: 0 0 16px;
  letter-spacing: 0.03em;
}

.nol-parking-details {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nol-parking-details li {
  font-size: 13px;
  color: rgba(250,247,242,0.72);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}

.nol-parking-details li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--brass);
}

.nol-parking-tip {
  font-size: 13px;
  color: rgba(250,247,242,0.55);
  font-style: italic;
  border-top: 1px solid rgba(196,149,106,0.12);
  padding-top: 12px;
  margin: 0;
}

/* ── PHOTO SPOTS ── */
.nol-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.nol-photo-card {
  border: 1px solid rgba(44,24,16,0.1);
  border-radius: 6px;
  padding: 28px;
  background: #fff;
  transition: box-shadow 0.2s;
}

.nol-photo-card:hover {
  box-shadow: 0 4px 20px rgba(44,24,16,0.08);
}

.nol-photo-icon { margin-bottom: 18px; }

.nol-photo-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--mahogany);
  margin: 0 0 10px;
}

.nol-photo-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-muted);
  margin: 0;
}

/* ── FAMILY ── */
.nol-family-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}

.nol-family-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-muted);
  margin: 0 0 20px;
}

.nol-family-text p:first-child { margin-top: 0; }

.nol-family-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nol-family-list li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-muted);
  padding-left: 20px;
  position: relative;
}

.nol-family-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brass);
  font-weight: 600;
  font-size: 12px;
  top: 1px;
}

.nol-family-note {
  font-size: 13px;
  font-style: italic;
  color: rgba(44,24,16,0.5);
  background: rgba(196,149,106,0.08);
  border-left: 3px solid var(--brass);
  padding: 12px 16px;
  border-radius: 0 4px 4px 0;
  margin-top: 24px !important;
}

.nol-family-card {
  position: sticky;
  top: 80px;
}

.nol-family-card-inner {
  background: var(--mahogany);
  border-radius: 8px;
  padding: 28px;
}

.nol-family-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 20px;
}

.nol-timing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(196,149,106,0.12);
  gap: 16px;
}

.nol-timing-row:last-child { border-bottom: none; }

.nol-timing-label {
  font-size: 13px;
  color: rgba(250,247,242,0.55);
}

.nol-timing-val {
  font-size: 13px;
  font-weight: 500;
  color: #FAF7F2;
  text-align: right;
}

/* ── GROUPS ── */
.nol-groups-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.nol-groups-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-muted);
  margin: 0 0 20px;
}

.nol-groups-text p a {
  color: var(--mahogany);
  text-decoration: underline;
}

.nol-groups-cta {
  display: inline-block;
  background: var(--mahogany);
  color: var(--cream);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 8px;
  transition: opacity 0.2s;
}

.nol-groups-cta:hover { opacity: 0.85; }

.nol-groups-card {
  background: #F5EFE6;
  border: 1px solid rgba(44,24,16,0.1);
  border-radius: 8px;
  padding: 28px;
}

.nol-groups-card-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 20px;
}

.nol-groups-row {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(44,24,16,0.07);
  line-height: 1.5;
}

.nol-groups-row:last-child { border-bottom: none; }

.nol-check {
  color: var(--brass);
  font-weight: 600;
  flex-shrink: 0;
}

/* ── CTA STRIP ── */
.nol-cta-strip {
  padding: 72px 0;
}

.nol-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.nol-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #FAF7F2;
  margin: 0 0 10px;
}

.nol-cta-sub {
  font-size: 15px;
  color: rgba(250,247,242,0.65);
  margin: 0;
  max-width: 440px;
  line-height: 1.6;
}

.nol-cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── FOOTER ── */
.nol-footer {
  background: #1A0E08;
  padding: 40px 0;
}

.nol-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
}

.nol-footer-brand {
  font-size: 14px;
  color: rgba(250,247,242,0.5);
  margin-bottom: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.nol-footer-name {
  font-family: 'Playfair Display', serif;
  color: rgba(250,247,242,0.75);
  font-size: 15px;
}

.nol-footer-sep { opacity: 0.4; }

.nol-footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.nol-footer-links a {
  font-size: 13px;
  color: rgba(250,247,242,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.nol-footer-links a:hover { color: var(--brass); }

.nol-footer-legal {
  font-size: 12px;
  color: rgba(250,247,242,0.25);
  margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nol-nav { padding: 0 24px; }
  .nol-hero-content { padding: 40px 28px 52px; }
  .nol-inner { padding: 0 24px; }
  .nol-section { padding: 56px 0; }
  .nol-family-grid { grid-template-columns: 1fr; }
  .nol-family-card { position: static; }
  .nol-groups-inner { grid-template-columns: 1fr; gap: 36px; }
  .nol-cta-inner { flex-direction: column; }
  .nol-cta-buttons { width: 100%; }
  .nol-footer-inner { padding: 0 24px; }
  .nol-nav-links { gap: 16px; }
  .nol-hero { min-height: 80vh; }
}

@media (max-width: 600px) {
  .nol-nav-links li:not(:last-child) { display: none; }
  .nol-hero-title { font-size: clamp(28px, 9vw, 40px); }
  .nol-why-grid,
  .nol-parking-grid,
  .nol-photo-grid,
  .nol-drinks-grid { grid-template-columns: 1fr; }
  .nol-hero-ctas { flex-direction: column; }
  .nol-btn-primary,
  .nol-btn-secondary { width: 100%; text-align: center; }
}
