@import url('https://fonts.googleapis.com/css2?family=Rye&family=Oswald:wght@400;600;700&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --parchment: #f2e4c4;
  --red:        #8b1a1a;
  --navy:       #1b3a5c;
  --gold:       #c8860a;
  --gold-lt:    #e8a820;
  --brown:      #3c1a0a;
  --dark:       #140a03;
  --cream:      #faf4e6;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', serif;
  color: var(--cream);
  background: var(--dark);
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  overflow-x: hidden;
  /* faux 1px omnidirectional border on all light text */
  text-shadow: 0 0 1px rgba(0,0,0,0.95), 0 0 2px rgba(0,0,0,0.6);
  position: relative;
}

/* ── Fixed backgrounds ──────────────────────────────────────── */

.bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

.bg-sunset {
  background-image: url('resources/sunset.jpg');
  z-index: -2;
}

.bg-parade {
  background-image: url('resources/parade.webp');
  z-index: -1;
  opacity: 0;
  transition: opacity 0.12s ease-out;
}

/* Subpage: fixed background, slightly dimmed. Default = parade. */
.bg-page {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url('resources/parade.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  pointer-events: none;
}

.bg-page--carshow    { background-image: url('resources/carshow.jpg'); background-position: center 40%; }
.bg-page--melodrama  { background-image: url('resources/melodrama.jpg'); background-position: center 30%; }
.bg-page--vendors    { background-image: url('resources/vendors.jpg'); background-position: center 50%; }
.bg-page--parade     { background-image: url('resources/parade.webp'); background-position: center 50%; }

.bg-page::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 10, 3, 0.45);
}

/* ── Navigation ─────────────────────────────────────────────── */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
  background: rgba(20, 10, 3, 0.80);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200, 134, 10, 0.3);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 0.4rem;
  padding: 0.5rem;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-lt);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.nav-logo {
  font-family: 'Rye', serif;
  font-size: 1.2rem;
  color: var(--gold-lt);
  text-decoration: none;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--parchment);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover  { color: var(--gold-lt); }
.nav-links a.nav-active { color: var(--gold-lt); font-weight: 600; }

/* Mobile hamburger & dropdown */
@media (max-width: 720px) {
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(20, 10, 3, 0.95);
    border-bottom: 1px solid rgba(200, 134, 10, 0.3);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links.nav-open {
    max-height: 500px;
    padding: 0.5rem 0;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 2rem;
    border-bottom: 1px solid rgba(200, 134, 10, 0.15);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }
}

/* ── Buttons ────────────────────────────────────────────────── */

.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7rem 1.8rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  border: 2px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 244, 230, 0.55);
}
.btn-outline:hover {
  border-color: var(--cream);
  background: rgba(250, 244, 230, 0.1);
}

/* ── Hero ───────────────────────────────────────────────────── */

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-top: 56px; /* nav offset */
}

.hero-content {
  position: sticky;
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-banner {
  position: relative;
  max-width: min(680px, 86vw);
  height: auto;
  filter: drop-shadow(0 6px 28px rgba(0, 0, 0, 0.75));
}

.hero-ctas {
  position: relative;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}

.home-entry {
  position: relative;
  min-height: 100vh;
  padding: 4rem 2rem 5rem;
  display: flex;
  align-items: center;
}

.home-entry-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

.home-entry-copy,
.home-doorway {
  background: linear-gradient(180deg, rgba(20, 10, 3, 0.78) 0%, rgba(20, 10, 3, 0.58) 100%);
  border: 1px solid rgba(200, 134, 10, 0.22);
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.home-entry-copy {
  padding: 2rem 2.2rem;
}

.eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 0.9rem;
}

.home-entry-copy h1 {
  font-family: 'Rye', serif;
  font-size: clamp(1.9rem, 3.7vw, 3rem);
  line-height: 1.12;
  color: var(--parchment);
  max-width: 22ch;
}

.home-entry-lead {
  margin-top: 1.1rem;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(250, 244, 230, 0.88);
  max-width: 60ch;
}

.home-entry-meta {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.home-entry-meta span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--parchment);
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(200, 134, 10, 0.28);
  background: rgba(250, 244, 230, 0.04);
}

.home-map {
  margin-top: 1.5rem;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(200, 134, 10, 0.15);
}

.home-map iframe {
  border: none;
  display: block;
}

.home-doorway {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
}

.door-link {
  display: grid;
  gap: 0.2rem;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: var(--cream);
  border-bottom: 1px solid rgba(200, 134, 10, 0.18);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.door-link:last-child {
  border-bottom: none;
}

.door-link:hover {
  background: rgba(27, 58, 92, 0.34);
  border-color: rgba(232, 168, 32, 0.3);
  transform: translateX(6px);
}

.door-kicker {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.door-link strong {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--parchment);
}

.door-copy {
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(250, 244, 230, 0.78);
}

.doorway-section-header {
  font-family: 'Rye', serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--parchment);
  padding: 0.9rem 1rem 0.5rem;
  font-weight: 400;
  border-bottom: 1px solid rgba(200, 134, 10, 0.2);
}

.door-separator {
  height: 1px;
  background: rgba(200, 134, 10, 0.2);
  margin: 0.5rem 0;
}

/* ── Schedule ───────────────────────────────────────────────── */

.schedule {
  min-height: 100vh;
  padding: 6rem 2rem;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.schedule-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.schedule-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.schedule-header h2 {
  font-family: 'Rye', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--gold-lt);
  text-shadow: 0 0 1px rgba(0,0,0,0.95), 0 2px 12px rgba(0,0,0,0.8);
  margin-bottom: 0.4rem;
}

.schedule-header p {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--parchment);
  text-shadow: 0 0 1px rgba(0,0,0,0.95), 0 1px 6px rgba(0,0,0,0.8);
  opacity: 0.75;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.9rem;
}

.day-card {
  background: rgba(16, 8, 2, 0.84);
  border: 1px solid rgba(200, 134, 10, 0.28);
  border-radius: 3px;
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.day-header {
  background: rgba(27, 58, 92, 0.92);
  padding: 0.65rem 0.9rem;
  border-bottom: 2px solid var(--gold);
}

.day-header h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

.day-header span {
  font-family: 'Lora', serif;
  font-size: 0.75rem;
  color: var(--parchment);
  opacity: 0.65;
}

.day-events {
  padding: 0.65rem 0.9rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.day-events li {
  font-family: 'Lora', serif;
  font-size: 0.8rem;
  color: var(--parchment);
  line-height: 1.4;
  padding-left: 0.65rem;
  border-left: 2px solid rgba(200, 134, 10, 0.5);
  opacity: 0.9;
}

.day-events .time {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  opacity: 0.85;
}

/* ── Timeline (homepage event schedule) ─────────────────────── */

.timeline {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}

.day-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.day-header {
  font-family: 'Rye', serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-lt);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(200, 134, 10, 0.4);
  margin-bottom: 0.5rem;
}

.timeline-event {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.5rem;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(135deg, rgba(20, 10, 3, 0.72) 0%, rgba(20, 10, 3, 0.52) 100%);
  border: 1px solid rgba(200, 134, 10, 0.2);
  border-radius: 3px;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.timeline-event:hover {
  background: linear-gradient(135deg, rgba(20, 10, 3, 0.85) 0%, rgba(20, 10, 3, 0.65) 100%);
  border-color: rgba(200, 134, 10, 0.35);
}

.event-time {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.event-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--parchment);
  margin: 0.5rem 0 0 0;
  font-weight: 600;
}

.event-title:first-of-type {
  margin-top: 0;
}

.event-descriptor {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gold);
  text-transform: capitalize;
  letter-spacing: 0.03em;
}

.event-location {
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  color: rgba(250, 244, 230, 0.75);
  margin: 0;
  font-style: italic;
}

.event-copy {
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  color: rgba(250, 244, 230, 0.8);
  margin: 0;
  line-height: 1.5;
}

.event-info {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
  opacity: 0.9;
}

.event-contact {
  font-family: 'Lora', serif;
  font-size: 0.8rem;
  color: rgba(250, 244, 230, 0.7);
  margin: 0.25rem 0 0 0;
}

.event-contact a {
  color: var(--gold-lt);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 134, 10, 0.5);
}

.event-contact a:hover {
  color: var(--cream);
  border-bottom-color: rgba(250, 244, 230, 0.6);
}

/* ── Footer ─────────────────────────────────────────────────── */

footer {
  background: var(--dark);
  border-top: 1px solid rgba(200, 134, 10, 0.4);
}

.footer-strip {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-info,
.footer-copy {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--parchment);
  opacity: 0.45;
}

.footer-fb {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--gold-lt);
  text-decoration: none;
}
.footer-fb:hover { color: var(--cream); }

/* ── Sub-page layout ────────────────────────────────────────── */

.page-hero {
  min-height: 38vh;
  display: flex;
  align-items: flex-end;
  padding: 6rem 2rem 3rem;
}

/* Page hero with inline photo backdrop */
.page-hero--photo {
  background-size: cover;
  background-position: center 40%;
  position: relative;
}
.page-hero--photo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(20,10,3,0.75) 0%, rgba(20,10,3,0.2) 60%, rgba(20,10,3,0.4) 100%);
}
.page-hero--photo .page-hero-inner { position: relative; }

/* Event times display */
.event-times {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.time-pill {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(200, 134, 10, 0.55);
  border-radius: 2px;
  color: var(--gold-lt);
  background: rgba(16, 8, 2, 0.6);
  backdrop-filter: blur(4px);
}

.time-pill span {
  color: var(--parchment);
  opacity: 0.7;
  margin-left: 0.4rem;
}

.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.page-hero h1 {
  font-family: 'Rye', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gold-lt);
  text-shadow: 0 0 1px rgba(0,0,0,0.95), 0 2px 20px rgba(0,0,0,0.85);
  margin-bottom: 0.5rem;
}

.page-hero p {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--parchment);
  font-size: 0.92rem;
  text-shadow: 0 0 1px rgba(0,0,0,0.95), 0 1px 8px rgba(0,0,0,0.8);
}

.page-content {
  background: rgba(16, 8, 2, 0.88);
  backdrop-filter: blur(6px);
  border-top: 2px solid var(--gold);
  padding: 3rem 2rem 4rem;
}

.page-content-inner {
  max-width: 900px;
  margin: 0 auto;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.info-card {
  border: 1px solid rgba(200, 134, 10, 0.25);
  border-radius: 3px;
  padding: 2rem;
  background: rgba(27, 58, 92, 0.3);
}

.info-card p {
  margin: 0 0 1.2rem 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.info-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200, 134, 10, 0.22);
}

.info-card ul { list-style: none; }

.info-card li {
  font-family: 'Lora', serif;
  font-size: 0.86rem;
  color: var(--parchment);
  padding: 0.3rem 0 0.3rem 0.75rem;
  border-left: 2px solid rgba(200, 134, 10, 0.5);
  margin-bottom: 0.35rem;
  opacity: 0.9;
  line-height: 1.5;
}

.form-section { margin-top: 1rem; }

.form-section h2 {
  font-family: 'Rye', serif;
  font-size: 1.5rem;
  color: var(--gold-lt);
  margin-bottom: 1.25rem;
}

.form-embed {
  border: 1px solid rgba(200, 134, 10, 0.3);
  border-radius: 3px;
  overflow: hidden;
  background: white;
}

.form-embed iframe {
  width: 100%;
  border: none;
  display: block;
}

.form-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  background: rgba(20, 10, 3, 0.5);
  border: 1px solid rgba(200, 134, 10, 0.25);
  border-radius: 3px;
  text-align: center;
  padding: 2rem;
}

.form-placeholder p {
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  color: var(--parchment);
  opacity: 0.65;
  line-height: 1.7;
}

.form-placeholder a {
  color: var(--gold-lt);
  text-decoration: none;
}

.form-placeholder a:hover { text-decoration: underline; }

/* ── Featured Businesses Section ────────────────────────────── */

.featured-businesses {
  margin-top: 4rem;
  padding: 2.5rem;
  border-top: 2px solid rgba(200, 134, 10, 0.3);
  background: linear-gradient(135deg, rgba(60, 26, 10, 0.7) 0%, rgba(27, 58, 92, 0.5) 100%);
  border: 1px solid rgba(200, 134, 10, 0.2);
  border-radius: 0.4rem;
  backdrop-filter: blur(6px);
}

.featured-businesses h2 {
  font-family: 'Rye', serif;
  font-size: 2rem;
  color: var(--gold-lt);
  margin-bottom: 1rem;
  text-align: center;
}

.featured-intro {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  color: rgba(250, 244, 230, 0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
  text-align: center;
}

.featured-map {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(60, 26, 10, 0.5) 0%, rgba(27, 58, 92, 0.3) 100%);
  border: 1px solid rgba(200, 134, 10, 0.2);
  border-radius: 0.4rem;
  backdrop-filter: blur(6px);
}

.featured-map iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 0.2rem;
  display: block;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.business-card {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(60, 26, 10, 0.5) 0%, rgba(27, 58, 92, 0.3) 100%);
  border: 1px solid rgba(200, 134, 10, 0.2);
  border-radius: 0.4rem;
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.business-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 134, 10, 0.15);
  border-color: rgba(200, 134, 10, 0.4);
}

.business-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--parchment);
  margin: 0 0 0.8rem 0;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.business-detail {
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  color: rgba(250, 244, 230, 0.75);
  margin: 0.5rem 0;
  line-height: 1.5;
}

.business-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  color: var(--gold-lt);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.business-link:hover {
  color: #f4c652;
}

.featured-cta-card {
  text-align: center;
  padding: 1.5rem;
}

.featured-cta-card p {
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  color: rgba(250, 244, 230, 0.8);
  margin: 0;
  line-height: 1.6;
}

.featured-cta-card a {
  color: var(--gold-lt);
  text-decoration: none;
  transition: color 0.2s ease;
}

.featured-cta-card a:hover {
  color: #f4c652;
}

.featured-cta {
  text-align: center;
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200, 134, 10, 0.2);
  grid-column: 1 / -1;
}

.featured-cta a {
  color: var(--gold-lt);
  text-decoration: none;
  transition: color 0.2s ease;
}

.featured-cta a:hover {
  color: #f4c652;
}

/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 960px) {
  .home-entry-inner { grid-template-columns: 1fr; }
  .schedule-grid  { grid-template-columns: repeat(3, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .business-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .home-entry { padding: 2.5rem 1rem 2rem; }
  .home-entry-copy { padding: 1.5rem; }
  .home-entry-copy h1 { max-width: none; }
  .home-entry-meta span { width: 100%; text-align: center; }
  .schedule-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr; gap: 2rem; }
  .info-grid      { grid-template-columns: 1fr; }
  .nav-links      { gap: 1.25rem; }
  
  .timeline-event {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .event-time {
    order: -1;
    color: var(--gold);
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .door-link strong { font-size: 1.15rem; }
  .schedule-grid  { grid-template-columns: 1fr; }
  nav             { padding: 0.6rem 1rem; }
  .nav-links      { gap: 0.9rem; }
  .nav-links a    { font-size: 0.78rem; }
  .hero-ctas      { flex-direction: column; align-items: center; }
  
  .timeline-event {
    padding: 1rem 1rem;
    gap: 0.4rem;
  }
  
  .event-title {
    font-size: 0.95rem;
  }
  
  .event-time {
    font-size: 0.8rem;
  }
}
