/* ============================================================
   Grand Saline Salt Festival — site stylesheet
   Palette pulled straight from the 2026 poster:
   navy + marigold + cream, with a "salt grain" texture accent.
   ============================================================ */

:root {
  --navy: #232C63;
  --navy-deep: #1A214E;
  --gold: #F3C433;
  --gold-deep: #C99B15;
  --cream: #FBF7EB;
  --ink: #23273A;
  --white: #FFFFFF;
  --max: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Libre Franklin', Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- type ---------- */
.display {
  font-family: 'Rye', 'Georgia', serif;
  font-weight: 400;
  line-height: 1.12;
  color: var(--navy);
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}

/* ---------- salt-grain divider (signature element) ---------- */
.salt-band {
  height: 26px;
  background-color: var(--navy);
  background-image:
    radial-gradient(circle at 12% 40%, #fff 1.2px, transparent 1.8px),
    radial-gradient(circle at 28% 70%, #fff 1px,   transparent 1.6px),
    radial-gradient(circle at 45% 30%, #fff 1.3px, transparent 1.9px),
    radial-gradient(circle at 61% 65%, #fff 1px,   transparent 1.6px),
    radial-gradient(circle at 76% 35%, #fff 1.2px, transparent 1.8px),
    radial-gradient(circle at 90% 60%, #fff 1px,   transparent 1.6px);
  background-size: 220px 26px;
}

/* ---------- header / nav ---------- */
.site-header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 4px solid var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 66px;
  flex-wrap: wrap;
  padding: 8px 0;
}

.brand {
  font-family: 'Rye', serif;
  font-size: 20px;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links > li { position: relative; }

.nav-links a, .nav-links .drop-btn {
  display: inline-block;
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 6px;
  background: none;
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

.nav-links a:hover, .nav-links .drop-btn:hover { background: rgba(255,255,255,0.12); }

.nav-links a.ticket-btn {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  margin-left: 6px;
}
.nav-links a.ticket-btn:hover { background: #ffd75a; }

/* dropdown — works on hover, keyboard focus, and tap */
.dropdown .drop-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  min-width: 190px;
  background: var(--white);
  border: 1px solid #e3ddc9;
  border-top: 3px solid var(--gold);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 10px 24px rgba(26,33,78,0.22);
  list-style: none;
  padding: 6px 0;
}

.dropdown:hover .drop-menu,
.dropdown:focus-within .drop-menu { display: block; }

.drop-menu a {
  display: block;
  color: var(--navy);
  padding: 10px 18px;
  border-radius: 0;
}
.drop-menu a:hover { background: var(--cream); }
.drop-menu .drop-note {
  font-size: 12px;
  color: #8b8672;
  padding: 6px 18px 4px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ---------- hero ---------- */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero .eyebrow { color: var(--gold); }

.hero h1 {
  font-family: 'Rye', serif;
  font-size: clamp(34px, 5vw, 58px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero h1 .gold { color: var(--gold); }

.hero p.lede {
  font-size: 18px;
  max-width: 46ch;
  color: #E7E4F5;
  margin-bottom: 30px;
}

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
}

.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #ffd75a; }

.btn-ghost { border: 2px solid rgba(255,255,255,0.55); color: var(--white); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-poster img {
  border: 6px solid var(--white);
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);
  transform: rotate(1.5deg);
  border-radius: 4px;
}

/* ---------- sections ---------- */
section.block { padding: 72px 0; }

section.block h2 {
  font-family: 'Rye', serif;
  font-size: clamp(26px, 3.4vw, 38px);
  color: var(--navy);
  margin-bottom: 8px;
}

section.block .section-intro {
  max-width: 62ch;
  margin-bottom: 36px;
  color: #4a4e63;
}

.block-alt { background: var(--white); }

/* highlight cards */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  background: var(--white);
  border: 1px solid #e8e2cf;
  border-top: 5px solid var(--gold);
  border-radius: 10px;
  padding: 26px 24px;
}

.block-alt .card { background: var(--cream); }

.card h3 {
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card .when {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}

.card p { font-size: 15px; color: #4a4e63; }

.card ul { padding-left: 18px; font-size: 15px; color: #4a4e63; }

/* schedule teaser */
.day-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 30px;
}

.day {
  background: var(--cream);
  border-radius: 10px;
  padding: 24px;
  border: 1px solid #e8e2cf;
}

.day h3 {
  font-family: 'Rye', serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 4px;
}

.day .date {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-deep);
  margin-bottom: 14px;
}

.day ul { list-style: none; }
.day li {
  font-size: 15px;
  padding: 7px 0;
  border-bottom: 1px dashed #ddd6bf;
}
.day li:last-child { border-bottom: 0; }
.day li strong { color: var(--navy); }

/* ticket strip */
.ticket-strip {
  background: var(--gold);
  padding: 46px 0;
}
.ticket-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.ticket-strip h2 {
  font-family: 'Rye', serif;
  color: var(--navy);
  font-size: clamp(22px, 3vw, 32px);
}
.ticket-strip p { color: var(--navy); max-width: 58ch; font-size: 15.5px; }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-deep); }

/* photo gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery figure {
  background: var(--white);
  border: 1px solid #e8e2cf;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.gallery a { display: block; overflow: hidden; background: var(--navy-deep); }

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  transition: transform 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .gallery img { transition: none; }
}

.gallery a:hover img { transform: scale(1.04); }

.gallery figcaption {
  padding: 10px 14px;
  font-size: 13px;
  color: #4a4e63;
}

/* year links row on home page */
.year-links { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.year-links .btn { border: 2px solid var(--navy); color: var(--navy); }
.year-links .btn:hover { background: var(--navy); color: var(--white); }

/* ---------- year page ---------- */
.page-head {
  background: var(--navy);
  color: var(--white);
  padding: 52px 0;
}
.page-head .eyebrow { color: var(--gold); }
.page-head h1 {
  font-family: 'Rye', serif;
  font-size: clamp(30px, 4.4vw, 48px);
  color: var(--white);
}
.page-head p { color: #E7E4F5; max-width: 60ch; margin-top: 10px; }

.magazine {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 44px;
  align-items: start;
}
.magazine .mag-cover img {
  border: 5px solid var(--white);
  box-shadow: 0 14px 32px rgba(26,33,78,0.25);
  border-radius: 4px;
}
.magazine h2 { margin-bottom: 12px; }
.magazine p { margin-bottom: 18px; color: #4a4e63; max-width: 55ch; }

/* full schedule page */
.sched h2 {
  font-family: 'Rye', serif;
  color: var(--navy);
  font-size: 26px;
  margin: 44px 0 6px;
}
.sched h2:first-of-type { margin-top: 0; }
.sched .date-line {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.sched-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid #e8e2cf; border-radius: 10px; overflow: hidden; }
.sched-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #efe9d6;
  font-size: 15px;
  vertical-align: top;
}
.sched-table tr:last-child td { border-bottom: 0; }
.sched-table td.time {
  white-space: nowrap;
  font-weight: 700;
  color: var(--navy);
  width: 190px;
}
.sched-table .new-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle;
}
.sched .note { font-size: 14px; color: #6b6650; margin-top: 10px; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: #C9C6E0;
  padding: 44px 0;
  font-size: 14px;
}
.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.site-footer a { color: var(--gold); }
.site-footer .foot-brand {
  font-family: 'Rye', serif;
  color: var(--white);
  font-size: 17px;
  margin-bottom: 6px;
}

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero-poster { max-width: 380px; margin: 0 auto; }
  .cards, .day-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .magazine { grid-template-columns: 1fr; }
  .magazine .mag-cover { max-width: 320px; }
}

@media (max-width: 560px) {
  .cards, .day-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .nav { justify-content: center; }
  .sched-table td.time { width: auto; }
  .dropdown .drop-menu { right: auto; left: 0; }
}

/* ===================== FOOTER NAV (rebuilt) ===================== */
.site-footer .foot-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  width: 100%;
}
.site-footer .foot-tag {
  color: #C9C6E0;
  max-width: 34ch;
  line-height: 1.65;
}
.site-footer .foot-head {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--white);
  opacity: 0.65;
  margin-bottom: 14px;
}
.site-footer ul.foot-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer ul.foot-links li { margin-bottom: 9px; }
.site-footer ul.foot-links a {
  display: inline-block;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.18s ease, color 0.18s ease;
}
.site-footer ul.foot-links a:hover,
.site-footer ul.foot-links a:focus-visible {
  border-bottom-color: var(--gold);
}
.site-footer ul.foot-links a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.site-footer .ext::after {
  content: '↗';
  font-size: 0.78em;
  margin-left: 4px;
  opacity: 0.7;
}
.site-footer .foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 34px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #9d9ab8;
}
@media (max-width: 720px) {
  .site-footer .foot-cols { grid-template-columns: 1fr; gap: 30px; }
  .site-footer .foot-bottom { flex-direction: column; gap: 6px; }
}

/* footer year archive row */
.site-footer .foot-years {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 30px;
  padding-top: 18px;
}
.site-footer .foot-years ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.site-footer .foot-years a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.18s ease;
}
.site-footer .foot-years a:hover,
.site-footer .foot-years a:focus-visible { border-bottom-color: var(--gold); }
.site-footer .foot-years a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.site-footer .foot-years a[aria-current="page"] {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.4);
}

/* ===== year switcher (sits under the page head on year pages) ===== */
.year-nav {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.10);
}
.year-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  flex-wrap: wrap;
  font-size: 14px;
}
.year-nav a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  white-space: nowrap;
}
.year-nav a:hover, .year-nav a:focus-visible { border-bottom-color: var(--gold); }
.year-nav a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.year-nav .spacer { color: #9d9ab8; }
.year-nav .all-years {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11.5px;
}

/* ===== year index grid on the archive page ===== */
.year-index {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
  gap: 10px;
  margin-top: 6px;
  list-style: none;
  padding: 0;
}
.year-index a {
  display: block;
  text-align: center;
  padding: 12px 6px;
  border: 1px solid #d8d5e6;
  border-radius: 6px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  background: var(--white);
  transition: border-color 0.16s ease, background 0.16s ease;
}
.year-index a:hover, .year-index a:focus-visible {
  border-color: var(--navy);
  background: #f6f4fb;
}
.year-index a .yr-note {
  display: block;
  font-weight: 400;
  font-size: 12px;
  color: #6a6880;
  margin-top: 2px;
}
.year-index li.no-page span {
  display: block;
  text-align: center;
  padding: 12px 6px;
  border: 1px dashed #ddd9ea;
  border-radius: 6px;
  color: #a8a5bb;
  font-size: 14px;
}
.decade-head {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: #6a6880;
  margin: 28px 0 10px;
}

/* footer contact lines */
.site-footer .foot-contact {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.7;
}
.site-footer .foot-contact a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.site-footer .foot-contact a:hover,
.site-footer .foot-contact a:focus-visible { border-bottom-color: var(--gold); }
.site-footer .foot-contact a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ===================== SPONSOR TIERS ===================== */
.tier { margin-bottom: 48px; }
.tier-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  padding-bottom: 10px;
  border-bottom: 2px solid;
  margin-bottom: 22px;
}
.tier-name {
  font-family: 'Rye', serif;
  font-size: clamp(20px, 2.6vw, 27px);
  color: var(--navy);
  line-height: 1.1;
}
.tier-sub {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: #6a6880;
}
.tier-count { margin-left: auto; font-size: 13px; color: #6a6880; }

.tier-platinum .tier-head { border-color: #1a214e; }
.tier-gold .tier-head     { border-color: #d4a72c; }
.tier-silver .tier-head   { border-color: #9a9aa8; }
.tier-bronze .tier-head   { border-color: #a9764a; }

.sponsor-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.tier-platinum .sponsor-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.tier-gold .sponsor-grid     { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.tier-silver .sponsor-grid   { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.tier-bronze .sponsor-grid   { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }

.sponsor-grid li {
  background: var(--white);
  border: 1px solid #e2dfee;
  border-radius: 8px;
  padding: 18px 18px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
}
.tier-platinum .sponsor-grid li {
  border-left: 5px solid #1a214e;
  font-size: 19px;
  padding: 24px 22px;
}
.tier-gold .sponsor-grid li {
  border-left: 5px solid #d4a72c;
  font-size: 17px;
  padding: 21px 20px;
}
.tier-silver .sponsor-grid li {
  border-left: 4px solid #9a9aa8;
  font-size: 15.5px;
}
.tier-bronze .sponsor-grid li {
  border-left: 4px solid #a9764a;
  font-size: 14.5px;
  font-weight: 500;
  padding: 15px 16px;
}
.sponsor-note {
  background: var(--cream, #faf7ef);
  border-left: 4px solid var(--gold);
  padding: 20px 22px;
  border-radius: 0 8px 8px 0;
  margin-top: 8px;
}
.sponsor-note p { margin: 0; max-width: 62ch; }
@media (max-width: 560px) {
  .tier-count { margin-left: 0; width: 100%; }
}

/* sponsor logo tiles */
.sponsor-grid li.has-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
.sponsor-grid li.has-logo img {
  max-width: 100%;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.tier-platinum .sponsor-grid li.has-logo img { max-height: 96px; }
.tier-gold .sponsor-grid li.has-logo img     { max-height: 78px; }
.tier-silver .sponsor-grid li.has-logo img   { max-height: 60px; }
.tier-bronze .sponsor-grid li.has-logo img   { max-height: 48px; }
.sponsor-grid li.has-logo .sp-name {
  font-size: 13px;
  font-weight: 500;
  color: #4a4e63;
}

/* ===================== SIGN-UP CARDS ===================== */
.signup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 26px;
}
.signup-card {
  background: var(--white);
  border: 1px solid #e2dfee;
  border-top: 4px solid var(--navy);
  border-radius: 8px;
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
}
.signup-card.pending { border-top-color: #c9c4dc; }
.signup-card .su-when {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11.5px;
  color: #6a6880;
  margin-bottom: 8px;
}
.signup-card h3 {
  font-family: 'Rye', serif;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.signup-card p {
  font-size: 14.5px;
  color: #4a4e63;
  line-height: 1.6;
  margin-bottom: 18px;
}
.signup-card .btn { align-self: flex-start; margin-top: auto; }
.btn-pending {
  background: #eeecf5;
  color: #6a6880;
  cursor: default;
  border: 1px dashed #c1bcd4;
}
.btn-pending:hover { background: #eeecf5; }

/* ===================== BRAND LOGO IN HEADER ===================== */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  height: 42px;
  width: auto;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .brand img { height: 34px; }
}

/* footer lockup */
.foot-lockup {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 10px;
}
.foot-lockup img {
  height: 58px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.92;
}

/* banner masthead */
.masthead {
  background: var(--navy-deep);
  padding: 0;
  line-height: 0;
}
.masthead img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===================== FAQ / LOGISTICS ===================== */
.faq-group { margin-bottom: 40px; }
.faq-group > h3 {
  font-family: 'Rye', serif;
  color: var(--navy);
  font-size: 22px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 4px;
}
details.faq {
  border-bottom: 1px solid #e2dfee;
  padding: 0;
}
details.faq > summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 34px 16px 0;
  font-weight: 600;
  color: var(--navy);
  font-size: 16px;
  position: relative;
}
details.faq > summary::-webkit-details-marker { display: none; }
details.faq > summary::after {
  content: '+';
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--gold-deep, #b8912a);
  line-height: 1;
}
details.faq[open] > summary::after { content: '\2013'; }
details.faq > summary:hover { color: #3a4288; }
details.faq > summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
details.faq .faq-body {
  padding: 0 34px 20px 0;
  color: #4a4e63;
  font-size: 15px;
  line-height: 1.7;
  max-width: 68ch;
}
details.faq .faq-body p { margin-bottom: 10px; }
details.faq .faq-body p:last-child { margin-bottom: 0; }
details.faq .faq-body ul { margin: 0 0 10px 20px; }
details.faq .faq-body li { margin-bottom: 5px; }
.tbc {
  background: #fdf7e3;
  border-left: 3px solid var(--gold);
  padding: 10px 14px;
  border-radius: 0 6px 6px 0;
  font-size: 14.5px;
}

/* social links in footer */
.foot-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}
.foot-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  text-decoration: none;
  font-size: 13.5px;
  border: 1px solid rgba(245,197,24,0.4);
  border-radius: 6px;
  padding: 7px 12px;
  transition: background 0.18s ease;
}
.foot-social a:hover, .foot-social a:focus-visible { background: rgba(245,197,24,0.12); }
.foot-social a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.foot-social svg { width: 16px; height: 16px; fill: currentColor; }

/* ===================== COUNTDOWN ===================== */
.countdown {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 26px;
}
.cd-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(245,197,24,0.30);
  border-radius: 8px;
  padding: 11px 17px;
  min-width: 82px;
  text-align: center;
}
.cd-num {
  font-family: 'Rye', serif;
  font-size: 25px;
  color: var(--gold);
  line-height: 1.2;
}
.cd-lbl {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9c6e0;
}
.cd-live {
  background: var(--gold);
  border-color: var(--gold);
}
.cd-live .cd-num, .cd-live .cd-lbl { color: var(--navy); }
@media (max-width: 520px) {
  .cd-box { min-width: 72px; padding: 9px 13px; }
  .cd-num { font-size: 21px; }
}

/* ===================== MOBILE HAMBURGER NAV ===================== */
.nav-toggle { display: none; }

@media (max-width: 820px) {
  .nav {
    flex-wrap: nowrap;
    min-height: 56px;
    gap: 12px;
  }
  .brand {
    font-size: 15px;
    line-height: 1.2;
    flex: 1;
    min-width: 0;
  }
  .brand img { height: 32px; }

  /* the hamburger button */
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: none;
    border: 0;
    cursor: pointer;
    flex-shrink: 0;
  }
  .nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--gold);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* the menu itself: hidden until toggled, then a full-width stacked list */
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    order: 3;
    gap: 0;
    padding: 6px 0 10px;
    border-top: 1px solid rgba(255,255,255,0.14);
    margin-top: 4px;
  }
  .nav-links.open { display: flex; }
  .nav { flex-wrap: wrap; }

  .nav-links > li { width: 100%; }
  .nav-links a, .nav-links .drop-btn {
    display: block;
    width: 100%;
    font-size: 16px;
    padding: 13px 8px;
    border-radius: 0;
    text-align: left;
  }
  .nav-links a.ticket-btn {
    margin: 8px 0 0;
    text-align: center;
    border-radius: 6px;
  }

  /* the Past Festivals submenu becomes an always-open indented list on mobile */
  .dropdown .drop-menu {
    display: block;
    position: static;
    width: 100%;
    min-width: 0;
    box-shadow: none;
    border: 0;
    border-top: 0;
    background: rgba(0,0,0,0.18);
    border-radius: 0;
    padding: 2px 0 6px;
    margin: 0;
  }
  .dropdown .drop-btn { pointer-events: none; }
  .dropdown .drop-menu a { padding-left: 22px; font-size: 15px; color: #e8e5f5; }
  .dropdown .drop-note { padding-left: 22px; }
}
