/* Baxtoberfest 2026 — Bavarian wood, blue diamonds, warm gold */
:root {
  --wood-deep: #1a120c;
  --wood: #2a1810;
  --wood-mid: #3d2418;
  --parchment: #f3e6c8;
  --parchment-dark: #e8d4a8;
  --ink: #1c140e;
  --ink-soft: #3a2a1c;
  --cream: #f7f0de;
  --gold: #e5c185;
  --gold-bright: #f0d9a0;
  --gold-deep: #b8893a;
  --bav-blue: #1e4d8c;
  --bav-blue-deep: #14365f;
  --bav-white: #f5f0e6;
  --banner-red: #8b1a1a;
  --banner-red-deep: #5c1010;
  --radius: 14px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  --font-display: "Alfa Slab One", "Rockwell", Georgia, serif;
  --font-serif: "Libre Baskerville", Georgia, serif;
  --font-sans: "Source Sans 3", system-ui, sans-serif;
  --max: 1100px;
  --narrow: 640px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 4.5rem;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--cream);
  background-color: var(--wood-deep);
  background-image:
    linear-gradient(180deg, rgba(26, 18, 12, 0.55), rgba(26, 18, 12, 0.72)),
    url("assets/wood-texture.jpg");
  background-size: auto, 480px;
  background-attachment: fixed, fixed;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-bright); }
a:hover { color: #fff; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 0.6rem 1rem;
  z-index: 100;
  font-weight: 700;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}
.wrap.narrow { width: min(100% - 2rem, var(--narrow)); }

/* Living subtle grain overlay */
body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(8) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-1%, 1%); }
  50% { transform: translate(1%, -1%); }
  75% { transform: translate(-1%, -2%); }
}

main, .site-header, .site-footer { position: relative; z-index: 1; }

/* Bavarian diamond bars */
.bav-bar {
  height: 18px;
  background-image: url("assets/bavarian-diamonds.png");
  background-size: 48px 48px;
  background-repeat: repeat-x;
  border-bottom: 2px solid var(--gold-deep);
  box-shadow: 0 2px 0 rgba(0,0,0,0.35);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(26, 18, 12, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 193, 133, 0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.6rem;
  gap: 1rem;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.logo:hover { color: #fff; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--wood);
  padding: 1rem 1.25rem 1.25rem;
  border-bottom: 1px solid rgba(229, 193, 133, 0.25);
  flex-direction: column;
  gap: 0.75rem;
}
.site-nav.is-open { display: flex; }
.site-nav a {
  text-decoration: none;
  color: var(--cream);
  font-weight: 600;
  padding: 0.35rem 0;
}
.site-nav a:hover { color: var(--gold); }
.nav-cta {
  display: inline-block;
  margin-top: 0.25rem;
  background: var(--banner-red);
  color: #fff !important;
  padding: 0.55rem 1rem !important;
  border-radius: 999px;
  text-align: center;
  border: 1px solid var(--gold-deep);
}
.nav-cta:hover { background: var(--banner-red-deep); }

@media (min-width: 820px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
    background: transparent;
    padding: 0;
    border: 0;
  }
  .nav-cta { margin-top: 0; }
}

/* Hero */
.hero {
  padding: 2.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(30, 77, 140, 0.28), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(139, 26, 26, 0.22), transparent 55%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 0.5rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 9vw, 4.2rem);
  line-height: 1.05;
  margin: 0 0 0.4rem;
  color: #c62828;
  text-shadow:
    1px 1px 0 #fff8e7,
    2px 3px 0 rgba(0,0,0,0.45);
  letter-spacing: 0.01em;
}
.hero h1 .year {
  display: inline-block;
  color: var(--gold-bright);
  text-shadow: 1px 2px 0 rgba(0,0,0,0.5);
}
.tagline {
  display: inline-block;
  margin: 0.6rem 0 0.75rem;
  padding: 0.45rem 1rem;
  background: var(--bav-blue);
  border: 2px solid var(--gold);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.92rem;
  box-shadow: 0 4px 0 var(--bav-blue-deep);
}
.honor {
  margin: 0 0 1.5rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-bright);
  font-size: 1.05rem;
}
.event-meta {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.event-meta li {
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(229, 193, 133, 0.35);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
}
.meta-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.event-meta strong {
  display: block;
  font-size: 1.1rem;
  color: #fff;
}
.event-meta span { color: var(--parchment-dark); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--font-sans);
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  color: var(--ink) !important;
  border-color: #8a6520;
  box-shadow: 0 6px 0 #6e4f14, 0 10px 24px rgba(0,0,0,0.35);
}
.btn-gold:hover {
  background: linear-gradient(180deg, #fff0c8, var(--gold));
  color: var(--ink) !important;
}
.btn-ghost {
  background: transparent;
  color: var(--cream) !important;
  border-color: rgba(229, 193, 133, 0.55);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
  background: rgba(229, 193, 133, 0.08);
}
.btn-block { width: 100%; }

.hero-art {
  display: grid;
  gap: 1rem;
}
.flyer-frame {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--gold-deep);
  box-shadow: var(--shadow);
  background: #000;
}
.flyer-frame img { width: 100%; }
.hero-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.thumb {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(229, 193, 133, 0.55);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  aspect-ratio: 3 / 4;
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Soft hover motion on photos */
.photo-lift {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
  will-change: transform;
}
.photo-lift:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,0.5);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body::before { animation: none; }
  .photo-lift, .btn { transition: none; }
  .photo-lift:hover { transform: none; }
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    align-items: center;
  }
  .hero { padding: 3.5rem 0 4.5rem; }
}

/* Sections */
.section { padding: 3.5rem 0; }
.section-head { margin-bottom: 2rem; text-align: center; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  margin: 0 0 0.6rem;
  color: var(--gold-bright);
  text-shadow: 0 2px 0 rgba(0,0,0,0.4);
}
.section-head.light h2 { color: #fff; }
.lede {
  margin: 0.5rem auto 0;
  max-width: 36rem;
  color: var(--parchment-dark);
}

.parchment {
  background:
    linear-gradient(180deg, rgba(243, 230, 200, 0.97), rgba(232, 212, 168, 0.97));
  color: var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  border: 2px solid var(--gold-deep);
  box-shadow: var(--shadow), inset 0 0 60px rgba(139, 90, 30, 0.08);
}
.parchment a { color: var(--bav-blue-deep); font-weight: 700; }
.parchment a:hover { color: var(--banner-red); }

/* Story */
.story-grid {
  display: grid;
  gap: 1.5rem;
}
.story-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  align-items: start;
}
.story-photo {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid var(--gold-deep);
  background: #111;
  box-shadow: 0 10px 28px rgba(0,0,0,0.4);
}
.story-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.story-photo figcaption {
  font-size: 0.8rem;
  padding: 0.45rem 0.6rem 0.55rem;
  background: rgba(26, 18, 12, 0.92);
  color: var(--gold);
  text-align: center;
}
.story-photo-offset { margin-top: 1.25rem; }
.story-copy p { margin: 0 0 1rem; font-family: var(--font-serif); font-size: 1rem; }
.story-copy p:last-child { margin-bottom: 0; }
.callout {
  margin-top: 1.25rem !important;
  padding: 1rem 1.1rem;
  background: var(--bav-blue);
  color: #fff;
  border-radius: 10px;
  text-align: center;
  font-family: var(--font-sans) !important;
  font-weight: 700;
  font-size: 1.15rem !important;
  border: 2px solid var(--gold);
}
.callout em {
  font-style: normal;
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 800px) {
  .story-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: center;
  }
  .story-photo-offset { margin-top: 2rem; }
}

/* Features */
.fest {
  background: linear-gradient(180deg, rgba(20, 54, 95, 0.45), rgba(26, 18, 12, 0.2));
  border-block: 1px solid rgba(229, 193, 133, 0.2);
}
.feature-grid {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
.feature-card {
  text-align: center;
  background: rgba(0,0,0,0.35);
  border: 2px solid rgba(229, 193, 133, 0.4);
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.feature-card:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: var(--gold);
  background: rgba(30, 77, 140, 0.35);
}
.feature-icon { font-size: 1.8rem; margin-bottom: 0.35rem; }
.feature-card h3 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-bright);
}
.feature-card p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--parchment-dark);
  max-width: 11rem;
}
@media (min-width: 700px) {
  .feature-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
  .feature-card { border-radius: 999px; max-width: 200px; margin-inline: auto; width: 100%; }
  .feature-card h3 { font-size: 1.1rem; }
  .feature-card p { font-size: 0.85rem; }
}

.when-where {
  display: grid;
  gap: 1.25rem;
  text-align: center;
}
.when-where h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  color: var(--banner-red);
  font-size: 1.15rem;
}
.when-where p { margin: 0 0 0.5rem; }
.map-link { font-weight: 700; }
@media (min-width: 600px) {
  .when-where { grid-template-columns: 1fr 1fr; text-align: left; }
}

/* Form */
.rsvp-form { display: grid; gap: 1rem; }
.form-row { display: grid; gap: 0.35rem; }
.form-row label,
.form-row legend {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.rsvp-form input[type="text"],
.rsvp-form input[type="email"],
.rsvp-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 2px solid #c4a574;
  border-radius: 10px;
  background: #fffaf0;
  font: inherit;
  color: var(--ink);
}
.rsvp-form fieldset {
  border: 2px solid #c4a574;
  border-radius: 10px;
  padding: 0.75rem 1rem 1rem;
  margin: 0;
}
.check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500 !important;
  margin-top: 0.4rem;
  cursor: pointer;
}
.check input { width: 1.1rem; height: 1.1rem; accent-color: var(--bav-blue); }
.form-note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  text-align: center;
}

/* Past / Sponsors */
.past {
  background: linear-gradient(180deg, rgba(139, 26, 26, 0.25), transparent);
}
.past-card, .sponsors-card { text-align: center; }
.past-card p, .sponsors-card p { margin: 0 0 1rem; }
.sponsor-slots {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.sponsor-slots li {
  border: 2px dashed #b8893a;
  border-radius: 10px;
  padding: 0.9rem;
  color: #7a5a28;
  font-style: italic;
  background: rgba(255,255,255,0.35);
}

/* Footer */
.site-footer {
  margin-top: 1rem;
  background: rgba(0,0,0,0.45);
  text-align: center;
}
.footer-inner { padding: 2rem 0 2.5rem; }
.footer-title {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.25rem;
  margin: 0 0 0.4rem;
}
.site-footer p { margin: 0.4rem 0; color: var(--parchment-dark); }
.footer-note {
  margin-top: 1.25rem !important;
  font-size: 0.82rem;
  opacity: 0.85;
  max-width: 28rem;
  margin-inline: auto !important;
}

/* —— Hosts —— */
.hosts-card { text-align: left; }
.hosts-lede {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin: 0 0 1rem;
}
.hosts-card p { margin: 0 0 1rem; font-family: var(--font-serif); }
.hosts-thanks {
  margin-top: 1.25rem !important;
  margin-bottom: 0 !important;
  padding: 0.9rem 1rem;
  background: var(--bav-blue);
  color: #fff;
  border-radius: 10px;
  text-align: center;
  font-family: var(--font-sans) !important;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid var(--gold);
}

/* Feature grid with 5th Silent Auction card */
.feature-grid-5 {
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 700px) {
  .feature-grid-5 {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
  .feature-grid-5 .feature-card {
    max-width: 180px;
  }
  .feature-grid-5 .feature-card h3 { font-size: 0.95rem; }
  .feature-grid-5 .feature-card p { font-size: 0.75rem; max-width: 10rem; }
}
@media (max-width: 699px) {
  .feature-grid-5 .feature-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 180px;
    margin-inline: auto;
    aspect-ratio: 1;
  }
}

/* —— Auction —— */
.auction {
  background: linear-gradient(180deg, rgba(26, 18, 12, 0.15), rgba(30, 77, 140, 0.2));
}
.auction-intro {
  text-align: center;
  margin-bottom: 2.5rem;
}
.auction-intro p { margin: 0 0 1.25rem; }
.auction-steps {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  text-align: left;
}
.auction-steps li {
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  border-left: 4px solid var(--bav-blue);
}
@media (min-width: 700px) {
  .auction-steps {
    grid-template-columns: 1fr 1fr;
  }
}
.auction-grid-title {
  font-family: var(--font-display);
  color: var(--gold-bright);
  text-align: center;
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
  text-shadow: 0 2px 0 rgba(0,0,0,0.35);
}
.auction-grid-note {
  text-align: center;
  color: var(--parchment-dark);
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  font-size: 0.95rem;
}
.auction-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .auction-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .auction-grid { grid-template-columns: repeat(3, 1fr); }
}
.auction-card {
  background: rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(229, 193, 133, 0.4);
  border-radius: var(--radius);
  padding: 1.25rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.auction-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.auction-card h4 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--gold-bright);
  font-size: 1.15rem;
}
.auction-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--parchment-dark);
  flex: 1;
}
.auction-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--bav-blue);
  color: #fff;
  border: 1px solid var(--gold);
}
.auction-badge.example {
  background: transparent;
  color: var(--gold);
  border-style: dashed;
}
.auction-card-waiting {
  border-style: dashed;
  border-color: var(--gold-deep);
  background: rgba(229, 193, 133, 0.08);
}
.auction-card-example {
  border-style: dashed;
  opacity: 0.92;
}

/* —— Donate form extras (reuse .rsvp-form) —— */
.donate-item {
  background: linear-gradient(180deg, rgba(139, 26, 26, 0.12), transparent);
}
.donate-form select,
.rsvp-form select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 2px solid #c4a574;
  border-radius: 10px;
  background: #fffaf0;
  font: inherit;
  color: var(--ink);
  cursor: pointer;
}
.donate-form input[type="tel"],
.donate-form input[type="file"],
.rsvp-form input[type="tel"],
.rsvp-form input[type="file"] {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 2px solid #c4a574;
  border-radius: 10px;
  background: #fffaf0;
  font: inherit;
  color: var(--ink);
}
.donate-form input[type="file"] {
  padding: 0.55rem 0.7rem;
  cursor: pointer;
}
.req { color: var(--banner-red); }
.optional {
  font-weight: 500;
  font-size: 0.82rem;
  color: #7a5a28;
}
.file-name {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-style: italic;
}
.hp-field { position: absolute; left: -9999px; height: 0; overflow: hidden; }

/* —— Sponsors ticker + wall —— */
.sponsors { overflow: hidden; }
.sponsor-ticker-wrap {
  margin-bottom: 2rem;
}
.sponsor-ticker-label {
  text-align: center;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 0.75rem;
}
.sponsor-ticker {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.sponsor-ticker-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: sponsor-marquee 28s linear infinite;
}
.sponsor-ticker:hover .sponsor-ticker-track {
  animation-play-state: paused;
}
@keyframes sponsor-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.sponsor-slot {
  flex: 0 0 auto;
  min-width: 220px;
  padding: 1rem 1.25rem;
  text-align: center;
  border: 2px dashed rgba(229, 193, 133, 0.55);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.3);
  color: var(--gold);
  font-style: italic;
  font-size: 0.9rem;
  white-space: nowrap;
}
.sponsor-ticker-static {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.65rem;
  grid-template-columns: 1fr 1fr;
}
.sponsor-ticker-static li {
  border: 2px dashed rgba(229, 193, 133, 0.55);
  border-radius: 12px;
  padding: 0.9rem;
  text-align: center;
  color: var(--gold);
  font-style: italic;
  font-size: 0.88rem;
  background: rgba(0, 0, 0, 0.3);
}

@media (prefers-reduced-motion: reduce) {
  .sponsor-ticker { display: none; }
  .sponsor-ticker-static {
    display: grid;
  }
  .auction-card:hover,
  .feature-card:hover { transform: none; }
  .sponsor-ticker-track { animation: none; }
}

.sponsors-card { text-align: center; }
.sponsors-card p { margin: 0 0 1rem; }
.sponsors-subhead {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  color: var(--banner-red);
  font-size: 1.2rem;
}
.sponsor-wall {
  list-style: none;
  margin: 1.25rem 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr 1fr;
}
.sponsor-wall li {
  border: 2px dashed #b8893a;
  border-radius: 10px;
  padding: 0.9rem 0.6rem;
  color: #7a5a28;
  font-style: italic;
  background: rgba(255, 255, 255, 0.35);
  font-size: 0.88rem;
}
.sponsors-ask { margin-bottom: 0 !important; }

/* —— Thanks page —— */
.thanks-page { min-height: 55vh; display: flex; align-items: center; }
.thanks-card { text-align: center; }
.thanks-card h1 {
  font-family: var(--font-display);
  color: var(--banner-red);
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  margin: 0 0 1rem;
}
.thanks-card p { margin: 0 0 1rem; font-family: var(--font-serif); }
.thanks-actions { margin-top: 1.5rem !important; margin-bottom: 0 !important; }

/* Nav: slightly tighter on medium widths with more links */
@media (min-width: 820px) and (max-width: 1100px) {
  .site-nav { gap: 0.85rem; }
  .site-nav a { font-size: 0.92rem; }
}
