/* ===================== TOKENS ===================== */
:root {
  --red:        #B8181B;
  --red-dk:     #8C1012;
  --red-xdk:    #5E0A0B;
  --yellow:     #FFCC00;
  --yellow-dk:  #C99A00;
  --cream:      #FBF7EE;
  --cream-dk:   #F2EAD8;
  --white:      #FFFFFF;
  --ink:        #1A0F00;
  --ink-mid:    #4A3728;
  --ink-soft:   #8A7060;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif:   'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ===================== UTILS ===================== */
.label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--yellow-dk);
  display: block;
  margin-bottom: 10px;
}
.label.on-dark { color: var(--yellow); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  color: var(--ink);
}
.section-title.on-dark { color: var(--white); }

.section-sub {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 560px;
}
.section-sub.on-dark { color: rgba(255,255,255,0.7); }

.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(255,204,0,.35);
}
.btn-gold:hover { background: #FFD633; box-shadow: 0 6px 20px rgba(255,204,0,.45); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.55);
}
.btn-outline-white:hover { background: rgba(255,255,255,.08); }

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(184,24,27,.3);
}
.btn-red:hover { background: var(--red-dk); }

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red);
}
.btn-outline-red:hover { background: var(--red); color: var(--white); }

.btn-white { background: var(--white); color: var(--red); font-weight: 700; }
.btn-white:hover { background: var(--cream); }

.btn-ghost-white {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-ghost-white:hover { background: rgba(255,255,255,.25); }

/* ===================== PAGES ===================== */
.page { display: none; }
.page.active { display: block; }

/* ===================== NAV ===================== */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--ink);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  overflow: visible;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  position: relative;
  z-index: 201;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-logo-wrap {
  width: 86px;
  height: 86px;
  flex-shrink: 0;
  margin-bottom: -28px;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.5));
  transition: transform .25s;
}
.nav-brand:hover .nav-logo-wrap { transform: scale(1.06) rotate(-3deg); }
.nav-logo-wrap img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; }

.nav-brand-text .top {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  display: block;
  line-height: 1.2;
}
.nav-brand-text .sub {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow);
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 4px;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.07); }
.nav-links a.active { color: var(--white); background: rgba(255,255,255,.1); }

.nav-cta {
  background: var(--yellow) !important;
  color: var(--ink) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  border-radius: 4px !important;
  padding: 8px 18px !important;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nav-cta:hover { background: #FFD633 !important; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: visible;
  background: var(--ink);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Bottom-right fades to solid dark so mascot stands cleanly */
  background:
    linear-gradient(
      to bottom right,
      rgba(94,10,11,0.55)  0%,
      rgba(26,10,0,0.75)  50%,
      rgba(10,5,0,0.97)   80%,
      rgba(10,5,0,1.00)  100%
    );
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: center 15%;
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 400px 80px 48px;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.hero-eyebrow span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--yellow);
}
.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--yellow);
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 10px;
}
.hero h1 em {
  display: block;
  color: var(--yellow);
  font-style: italic;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  max-width: 500px;
  margin: 18px 0 36px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-mascot {
  position: absolute;
  right: 80px;
  bottom: 0;
  z-index: 10;
  width: 220px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.5));
  transition: transform .3s;
  display: block;
}
.hero-mascot:hover { transform: rotate(-3deg) scale(1.04); }

.hero-badge-img {
  position: absolute;
  bottom: 40px;
  right: 310px;
  width: 150px;
  z-index: 3;
  transform: rotate(8deg);
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.5));
  transition: transform .3s;
}
.hero-badge-img:hover { transform: rotate(4deg) scale(1.05); }

/* ===================== TICKER ===================== */
.ticker {
  background: var(--red);
  overflow: hidden;
  height: 42px;
  display: flex;
  align-items: center;
}
.ticker-inner {
  display: flex;
  gap: 60px;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}
.ticker-inner:hover { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.95);
  flex-shrink: 0;
}
.ticker-item .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}
.ticker-item strong { color: var(--yellow); }

/* ===================== LAYOUT ===================== */
.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}
.section     { padding: 90px 0; }
.section-sm  { padding: 60px 0; }
.section-head { margin-bottom: 52px; }

/* ===================== EVENT CARDS ===================== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--cream-dk);
  border: 1px solid var(--cream-dk);
  border-radius: var(--r-md);
  overflow: hidden;
}

.ev-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: background .2s;
}
.ev-card:hover { background: var(--cream); }

.ev-card-photo {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.ev-card-photo-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.bg-red   { background: linear-gradient(135deg, var(--red-xdk), var(--red-dk)); }
.bg-amber { background: linear-gradient(135deg, #5c3010, #8a4a18); }

.ev-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.ev-tag-red   { background: var(--red);    color: #fff; }
.ev-tag-amber { background: #7a3d10;       color: #fff; }
.ev-tag-green { background: #1a5c2a;       color: #fff; }
.ev-tag-gray  { background: #444;          color: #fff; }
.ev-tag-right { left: auto; right: 14px; }

.ev-card-body {
  padding: 22px 22px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ev-card-body h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 12px;
}
.ev-meta { list-style: none; margin-bottom: 14px; }
.ev-meta li {
  font-size: 13px;
  color: var(--ink-mid);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
  line-height: 1.4;
}
.ev-card-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.ev-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--cream-dk);
}
.ev-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-serif);
}

/* ===================== ABOUT SPLIT ===================== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--ink);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.about-photo {
  min-height: 480px;
  background: var(--red-xdk);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-photo-placeholder { font-size: 80px; opacity: .25; }
.about-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 28px;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
  font-size: 12px;
  color: rgba(255,255,255,.6);
  font-style: italic;
}
.about-text {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text .section-title { color: var(--white); margin-bottom: 18px; }
.about-text .section-sub   { color: rgba(255,255,255,.65); margin-bottom: 28px; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.stat-item { border-top: 2px solid rgba(255,204,0,.35); padding-top: 14px; }
.stat-val {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
  display: block;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ===================== PROGRAM STRIP ===================== */
.program-strip { background: var(--cream-dk); padding: 70px 0; }
.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--cream-dk);
  border-radius: var(--r-md);
  overflow: hidden;
}
.prog-item {
  background: var(--white);
  padding: 28px 24px 24px;
  position: relative;
  transition: background .2s;
}
.prog-item:hover { background: var(--cream); }
.prog-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--cream-dk);
  line-height: 1;
  margin-bottom: 12px;
}
.prog-item:hover .prog-num { color: rgba(184,24,27,.12); }
.prog-icon { font-size: 26px; margin-bottom: 12px; display: block; }
.prog-title { font-family: var(--font-serif); font-size: 17px; color: var(--ink); margin-bottom: 8px; line-height: 1.3; }
.prog-text  { font-size: 13px; color: var(--ink-soft); line-height: 1.6; }
.prog-item .prog-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.prog-item:hover .prog-line { transform: scaleX(1); }

/* ===================== SPONSORS ===================== */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--cream-dk);
  border: 1px solid var(--cream-dk);
  border-radius: var(--r-md);
  overflow: hidden;
}
.sponsor-item {
  background: var(--white);
  padding: 24px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background .2s;
}
.sponsor-item:hover { background: var(--cream); }
.sponsor-letter {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
}
.sponsor-info h4 { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.sponsor-info p  { font-size: 12px; color: var(--ink-soft); line-height: 1.4; }

/* ===================== STAGE CTA ===================== */
.stage-cta {
  background: var(--red-dk);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  text-align: center;
}
.stage-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg, transparent, transparent 60px,
    rgba(255,255,255,.025) 60px,
    rgba(255,255,255,.025) 61px
  );
}
.stage-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 48px;
}
.stage-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
}
.stage-cta h2 em { color: var(--yellow); font-style: italic; }
.stage-cta p { color: rgba(255,255,255,.7); font-size: 16px; margin-bottom: 32px; }

/* ===================== PAGE HERO ===================== */
.page-hero {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 70px 0 60px;
}
.page-hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--red));
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 12px;
}
.page-hero p { color: rgba(255,255,255,.65); font-size: 17px; max-width: 580px; line-height: 1.6; }

/* ===================== TICKET NOTICE ===================== */
.ticket-notice {
  background: var(--red);
  border-radius: var(--r-md);
  padding: 44px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 52px;
}
.ticket-notice::before {
  content: '🎟';
  position: absolute;
  font-size: 160px;
  opacity: .06;
  right: -20px;
  top: -20px;
  line-height: 1;
}
.ticket-notice h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
}
.ticket-notice p {
  color: rgba(255,255,255,.8);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto 24px;
  line-height: 1.65;
}
.ticket-notice-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===================== VENUES ===================== */
.venue-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 28px; }
.venue-box {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 28px 28px 24px;
  border: 1px solid var(--cream-dk);
}
.venue-box h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 12px;
  border-bottom: 2px solid var(--red);
  padding-bottom: 10px;
}
.venue-box p { font-size: 14px; color: var(--ink-mid); line-height: 1.75; }
.hotline {
  text-align: center;
  padding: 20px;
  background: var(--cream-dk);
  border-radius: var(--r-sm);
  font-size: 15px;
  color: var(--ink-mid);
}
.hotline strong { color: var(--red); font-size: 18px; font-family: var(--font-serif); }

/* ===================== 11.11 ===================== */
.nov11-band {
  background: var(--ink);
  border-left: 4px solid var(--yellow);
  padding: 24px 28px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: 12px 0 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.date-badge {
  flex-shrink: 0;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 900;
  text-align: center;
  border-radius: 6px;
  padding: 8px 14px;
  line-height: 1.1;
  min-width: 120px;
}
.date-badge .day {
  font-size: 28px;
  display: block;
  line-height: 1;
}
.date-badge .mon {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: block;
  margin-top: 6px;
}
/* unified .date-badge used across all event bands */
.nov11-band h4 { font-family: var(--font-serif); font-size: 18px; color: var(--white); margin-bottom: 5px; }
.nov11-band p  { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; margin: 0; }
.nov11-free { display: inline-block; background: #1a5c2a; color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; margin-top: 6px; }

/* ===================== TIMELINE ===================== */
.tl { position: relative; padding: 10px 0 40px; }
.tl::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--cream-dk);
  transform: translateX(-50%);
}
.tl-item { display: grid; grid-template-columns: 1fr 56px 1fr; margin-bottom: 32px; align-items: start; }
.tl-l { padding-right: 32px; text-align: right; }
.tl-r { padding-left: 32px; }
.tl-mid { display: flex; justify-content: center; padding-top: 8px; }
.tl-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--red);
  box-shadow: 0 0 0 4px var(--cream);
  position: relative; z-index: 1;
}
.tl-yr { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--yellow-dk); display: block; margin-bottom: 3px; }
.tl-motto { font-family: var(--font-serif); font-size: 18px; color: var(--ink); line-height: 1.3; margin-bottom: 3px; }
.tl-date { font-size: 12px; color: var(--ink-soft); }

/* ===================== MEMBER ===================== */
.member-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.mtype {
  border: 1.5px solid var(--cream-dk);
  border-radius: var(--r-md);
  padding: 28px 24px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.mtype:hover, .mtype.sel { border-color: var(--red); background: #fff8f8; }
.mtype .icon { font-size: 28px; margin-bottom: 14px; display: block; }
.mtype h3 { font-family: var(--font-serif); font-size: 18px; color: var(--ink); margin-bottom: 8px; }
.mtype p  { font-size: 13px; color: var(--ink-soft); line-height: 1.6; }

.benefits-box {
  background: var(--red);
  border-radius: var(--r-md);
  padding: 36px 40px;
  margin-bottom: 52px;
}
.benefits-box h3 { font-family: var(--font-serif); font-size: 22px; color: var(--white); margin-bottom: 22px; text-align: center; }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.benefit-item { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,.9); font-size: 14px; line-height: 1.5; }
.benefit-check { color: var(--yellow); flex-shrink: 0; font-size: 16px; margin-top: 1px; }

/* ===================== FORM ===================== */
.form-wrap { max-width: 660px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-mid); margin-bottom: 7px; }
.form-group label span { color: var(--red); }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dk);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===================== VEREINSLEBEN ===================== */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.feature-item {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 28px 24px;
  border: 1px solid var(--cream-dk);
  border-top: 3px solid var(--red);
  transition: box-shadow .2s;
}
.feature-item:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); }
.feature-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.feature-item h3 { font-family: var(--font-serif); font-size: 18px; color: var(--ink); margin-bottom: 8px; }
.feature-item p  { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }

/* ===================== TABS ===================== */
.tab-row { display: flex; gap: 0; margin-bottom: 36px; border-bottom: 2px solid var(--cream-dk); }
.tab-btn {
  padding: 12px 24px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color .15s, border-color .15s;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.tab-btn.active { color: var(--red); border-bottom-color: var(--red); }

/* ===================== MEDAL ===================== */
.medal-sect { background: var(--ink); padding: 60px 0; text-align: center; }
.medal-circle {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e4d1e, #0d2e0d);
  margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 44px;
  border: 3px solid rgba(255,204,0,.3);
}
.medal-sect blockquote { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; font-style: italic; color: var(--yellow); margin-bottom: 8px; }
.medal-sect p { color: rgba(255,255,255,.5); font-size: 13px; }

/* ===================== FOOTER ===================== */
footer { background: var(--ink); padding: 64px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 28px;
}
.footer-logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-row img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.footer-logo-row .ft { font-size: 13px; font-weight: 600; color: var(--white); }
.footer-logo-row .fs { font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--yellow); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 10px; }
.footer-slogan { font-family: var(--font-display); font-style: italic; color: var(--yellow) !important; font-size: 15px !important; }
footer h5 { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 16px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 9px; }
footer ul li a { font-size: 13px; color: rgba(255,255,255,.55); text-decoration: none; transition: color .15s; }
footer ul li a:hover { color: var(--white); }
.footer-venue p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.8; }
.footer-venue .vn { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 6px; display: block; }
.footer-bottom { text-align: center; font-size: 12px; color: rgba(255,255,255,.25); }

/* ===================== PROSE ===================== */
.prose h2 { font-family: var(--font-display); font-size: 1.8rem; color: var(--ink); margin: 36px 0 14px; }
.prose h3 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--ink); margin: 24px 0 10px; }
.prose p, .prose li { font-size: 15px; line-height: 1.8; color: var(--ink-mid); margin-bottom: 12px; }
.prose ul { padding-left: 22px; }
.prose a { color: var(--red); }


/* ===== HAMBURGER / MOBILE NAV ===== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--ink);
  z-index: 199;
  flex-direction: column;
  padding: 12px 0 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .15s, color .15s;
}
.nav-mobile a:hover,
.nav-mobile a.active { background: rgba(255,255,255,.06); color: var(--white); }
.nav-mobile a.nav-cta {
  margin: 12px 24px 0;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  border-radius: 4px;
  text-align: center;
  border-bottom: none;
  padding: 12px 24px;
}
.nav-mobile a.nav-cta:hover { background: #FFD633; }

/* ===================== RESPONSIVE ===================== */
/* Medium: hide Goldener Hahn + DJ links */
@media (max-width: 1100px) {
  .nav-hide-md { display: none; }
}

@media (max-width: 964px) {
  /* ── Nav ── */
  nav { padding: 0 16px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-brand-text { display: none; }

  /* ── Layout ── */
  .wrap { padding: 0 16px; }
  .section { padding: 50px 0; }
  .section-sm { padding: 36px 0; }

  /* ── Hero ── */
  .hero { min-height: 60vh; }
  .hero-content { padding: 48px 16px 48px; }
  .hero h1 { font-size: 3rem; }
  .hero-sub { font-size: 15px; }
  .hero-mascot { display: none; }
  .hero-badge-img { display: none; }

  /* ── Grids: CSS classes ── */
  .events-grid, .about-split, .program-grid,
  .sponsors-grid, .venue-grid, .member-types,
  .feature-grid, .benefits-grid, .form-row,
  .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(3, 1fr); }

  /* ── Chronik hero image ── */
  .chronik-hero-img { width: 100% !important; }

  /* ── Chronik ── */
  .tl { padding-left: 0; }
  .tl::before {
    display: block;
    left: 11px;
    transform: none;
  }
  .tl-item {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 12px;
    margin-bottom: 24px;
    align-items: start;
  }
  .tl-mid {
    display: flex;
    justify-content: center;
    padding-top: 6px;
    order: 1;
  }
  .tl-l {
    order: 2;
    text-align: left;
    padding: 0;
  }
  .tl-r {
    order: 2;
    text-align: left;
    padding: 0;
  }
  /* Hide empty columns */
  .tl-l:empty { display: none; order: 0; }
  .tl-r:empty { display: none; order: 0; }
  /* Venue alignment: always left on mobile */
  .tl-l [style*="justify-content:flex-end"],
  .tl-l [style*="justify-content: flex-end"] {
    justify-content: flex-start !important;
  }

  /* ── About split ── */
  .about-photo { min-height: 240px; }
  .about-text { padding: 32px 24px; }

  /* ── Program strip ── */
  .program-strip { padding: 40px 0; }
  .program-grid { grid-template-columns: 1fr; }

  /* ── Nov11 band ── */
  .nov11-band { flex-direction: column; gap: 12px; padding: 20px 16px; }
  .date-badge { min-width: unset; align-self: flex-start; }

  /* ── Page hero ── */
  .page-hero { padding: 48px 0 40px; }
  .page-hero h1 { font-size: 2rem; }
}

/* ── Extra small ── */
@media (max-width: 480px) {
  .hero h1 { font-size: 2.8rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .section-title { font-size: 1.8rem; }
  .stats { grid-template-columns: 1fr; gap: 12px; }
  .footer-grid { gap: 24px; }
  nav { padding: 0 12px; }
}

/* ===== MOBILE INLINE GRID OVERRIDES ===== */
@media (max-width: 964px) {
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:repeat(4,1fr)"],
  [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }
  /* Large padding sections */
  [style*="padding:90px 0"],
  [style*="padding: 90px 0"] {
    padding: 50px 0 !important;
  }
  /* Inline gap reduction */
  [style*="gap:48px"] {
    gap: 20px !important;
  }
  [style*="gap:32px"] {
    gap: 20px !important;
  }
}
