/* ============================================================
   Steve Dvorak Calling — Main Stylesheet
   ============================================================ */

/* ----------- Custom Properties ----------- */
:root {
  --crimson: #8B1A1A;
  --crimson-hover: #A52020;
  --crimson-light: #F5ECEC;
  --black: #1A1A1A;
  --bg: #FAF8F5;
  --white: #FFFFFF;
  --text: #2C2C2C;
  --text-light: #6B6B6B;
  --border: #E5E0DB;
  --muted: #B0A8A0;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 28px rgba(0,0,0,0.13);

  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.2s ease;
  --nav-height: 72px;
  --max-width: 1100px;
  --pad: 1.5rem;

  /* Geometric SVG pattern echoing logo's overlapping squares */
  --geo-pattern: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Crect x='8' y='8' width='22' height='22' stroke='rgba(255,255,255,0.05)' stroke-width='1.2'/%3E%3Crect x='18' y='18' width='22' height='22' stroke='rgba(255,255,255,0.05)' stroke-width='1.2'/%3E%3C/g%3E%3C/svg%3E");
}

/* ----------- Reset ----------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--crimson); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--crimson-hover); }
ul { list-style: none; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ----------- Typography ----------- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--black); }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 3vw, 1.5rem); }
h4 { font-size: 1.1rem; }

/* ----------- Layout ----------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: 5rem 0; }
.section-alt { background: var(--white); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--text-light); max-width: 580px; margin: 0 auto; }
.section-divider {
  width: 48px; height: 3px;
  background: var(--crimson);
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* ----------- Buttons ----------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.95rem; font-weight: 600; font-family: inherit;
  cursor: pointer; border: 2px solid transparent;
  text-decoration: none; transition: all var(--transition);
  letter-spacing: 0.01em;
}
.btn-primary { background: var(--crimson); color: var(--white); border-color: var(--crimson); }
.btn-primary:hover {
  background: var(--crimson-hover); border-color: var(--crimson-hover);
  color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md);
}
.btn-outline { background: transparent; color: var(--crimson); border-color: var(--crimson); }
.btn-outline:hover { background: var(--crimson); color: var(--white); }
.btn-white { background: var(--white); color: var(--crimson); border-color: var(--white); }
.btn-white:hover { background: var(--crimson-light); color: var(--crimson); }
.btn-ghost {
  background: transparent; color: var(--text-light);
  border-color: var(--border); font-size: 0.85rem; padding: 0.4rem 0.9rem;
}
.btn-ghost:hover { background: var(--border); color: var(--text); }
.btn-danger { background: #c0392b; color: var(--white); border-color: #c0392b; font-size: 0.85rem; padding: 0.4rem 0.9rem; }
.btn-danger:hover { background: #a93226; color: var(--white); }
.btn-sm { padding: 0.4rem 0.9rem; font-size: 0.85rem; }

/* ----------- Navigation ----------- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-height);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 var(--pad);
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 50px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  color: var(--text); font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding-bottom: 2px; border-bottom: 2px solid transparent;
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--crimson); border-bottom-color: var(--crimson); }
.nav-links .nav-cta {
  background: var(--crimson); color: var(--white) !important;
  padding: 0.45rem 1.1rem; border-radius: var(--radius);
  text-transform: none; letter-spacing: 0; border-bottom: none !important;
}
.nav-links .nav-cta:hover { background: var(--crimson-hover); }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 0.4rem; color: var(--text); flex-direction: column; gap: 5px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all var(--transition);
}

/* ----------- Dark Hero Band ----------- */
.dark-band {
  background: var(--black);
  position: relative; overflow: hidden;
}
.dark-band::before {
  content: '';  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(139,26,26,0.88) 0%, rgba(26,26,26,0.96) 60%);
}
.dark-band::after { content: ''; position: absolute; inset: 0; background-image: var(--geo-pattern); }
.dark-band > * { position: relative; z-index: 1; }

/* ----------- Hero ----------- */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero-content { padding: 2rem var(--pad); max-width: 680px; }
.hero-logo { height: 160px; width: auto; margin: 0 auto 2rem; filter: brightness(0) invert(1); }
.hero-tagline {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: rgba(255,255,255,0.80); font-style: italic;
  margin-bottom: 2.5rem; letter-spacing: 0.02em;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ----------- Page Header ----------- */
.page-header {
  padding: calc(var(--nav-height) + 3.5rem) 0 3rem;
  text-align: center;
}
.page-header h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-header p { color: rgba(255,255,255,0.68); font-size: 1.05rem; }

/* ----------- Event Cards ----------- */
.events-grid { display: grid; gap: 1.1rem; }
.event-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  display: grid; grid-template-columns: 80px 1fr; overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.event-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.event-date-block {
  background: var(--crimson); color: var(--white);
  padding: 1.25rem 0.75rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; flex-shrink: 0;
}
.event-date-block .month { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.85; }
.event-date-block .day { font-size: 2.1rem; font-weight: 800; line-height: 1; }
.event-date-block .year { font-size: 0.65rem; opacity: 0.65; }

.event-body { padding: 1.1rem 1.4rem; }
.event-location { font-weight: 700; font-size: 1rem; margin-bottom: 0.4rem; color: var(--black); }
.event-meta { display: flex; flex-wrap: wrap; gap: 0.75rem; font-size: 0.83rem; color: var(--text-light); margin-bottom: 0.55rem; }
.event-meta span { display: flex; align-items: center; gap: 0.3rem; }
.event-levels { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.level-badge {
  display: inline-block; padding: 0.18rem 0.55rem;
  border-radius: 999px; font-size: 0.72rem; font-weight: 600;
  background: var(--crimson-light); color: var(--crimson);
}

.event-card.blacked-out { opacity: 0.65; }
.event-card.blacked-out .event-date-block { background: var(--muted); }
.unavail-badge {
  display: inline-block; padding: 0.18rem 0.55rem;
  border-radius: 999px; font-size: 0.72rem; font-weight: 600;
  background: #f0ede9; color: var(--muted);
}
.event-card.past { opacity: 0.42; pointer-events: none; }
.event-card.past .event-date-block { background: var(--text-light); }

.past-section-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted); margin: 2.5rem 0 1rem;
}

/* ----------- Book Me Form ----------- */
.form-wrap { max-width: 660px; margin: 0 auto; }
.form-group { margin-bottom: 1.4rem; }
.form-label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--text); margin-bottom: 0.38rem; letter-spacing: 0.02em;
}
.form-label .req { color: var(--crimson); margin-left: 0.2rem; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.72rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 1rem; font-family: inherit; color: var(--text);
  background: var(--white); transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(139,26,26,0.09);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem; cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 120px; }
.checkbox-group { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.5rem; margin-top: 0.35rem; }
.checkbox-item { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; font-size: 0.95rem; }
.checkbox-item input[type="checkbox"] { accent-color: var(--crimson); width: 1rem; height: 1rem; cursor: pointer; }
.form-hint { font-size: 0.78rem; color: var(--text-light); margin-top: 0.3rem; }
.form-section-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--crimson); margin-bottom: 1.1rem;
  padding-bottom: 0.5rem; border-bottom: 1px solid var(--crimson-light);
}
.form-divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

/* ----------- Media Tabs ----------- */
.tabs { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 2.5rem; }
.tab-btn {
  padding: 0.72rem 1.5rem; background: none; border: none;
  font-size: 0.85rem; font-weight: 600; font-family: inherit;
  color: var(--text-light); cursor: pointer; letter-spacing: 0.05em;
  text-transform: uppercase; border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: all var(--transition);
}
.tab-btn:hover { color: var(--crimson); }
.tab-btn.active { color: var(--crimson); border-bottom-color: var(--crimson); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ----------- Media Grid ----------- */
.media-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.media-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.media-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.media-embed { width: 100%; aspect-ratio: 16/9; background: #111; overflow: hidden; }
.media-embed iframe { width: 100%; height: 100%; border: none; display: block; }
.media-photo-wrap { overflow: hidden; aspect-ratio: 4/3; background: #111; }
.media-photo { width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: transform 0.3s ease; }
.media-photo:hover { transform: scale(1.04); }
.media-info { padding: 1rem 1.2rem; }
.media-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.35rem; color: var(--black); }
.media-meta-line { font-size: 0.78rem; color: var(--text-light); margin-bottom: 0.4rem; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.media-desc { font-size: 0.85rem; color: var(--text-light); line-height: 1.55; margin-top: 0.4rem; }
.audio-wrap { padding: 1rem 1.2rem 0.75rem; background: var(--bg); }
.audio-wrap audio { width: 100%; }
.fb-watch-link {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  aspect-ratio: 16/9; background: #1877f2; color: white !important;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  transition: background var(--transition);
}
.fb-watch-link:hover { background: #1565c0; color: white; }

/* ----------- Lightbox ----------- */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.93); align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox-content { position: relative; max-width: 90vw; max-height: 88vh; }
.lightbox-img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: -2.5rem; right: 0;
  background: none; border: none; color: white; font-size: 1.75rem;
  cursor: pointer; padding: 0; line-height: 1; opacity: 0.75; transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }
.lightbox-caption { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-top: 0.75rem; text-align: center; }

/* ----------- FAQ Accordion ----------- */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 1.2rem 0; text-align: left;
  font-size: 1.02rem; font-weight: 600; color: var(--black);
  cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: inherit; transition: color var(--transition);
}
.faq-question:hover { color: var(--crimson); }
.faq-icon {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--bg); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--text-light); line-height: 1;
  transition: all var(--transition);
}
.faq-item.open .faq-question { color: var(--crimson); }
.faq-item.open .faq-icon { background: var(--crimson); border-color: var(--crimson); color: white; transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: 1.25rem; color: var(--text-light); line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

/* ----------- About ----------- */
.about-grid { display: grid; grid-template-columns: 280px 1fr; gap: 4rem; align-items: start; }
.about-photo-wrap { position: sticky; top: calc(var(--nav-height) + 2rem); }
.about-photo-placeholder {
  width: 100%; aspect-ratio: 3/4; background: var(--border);
  border-radius: var(--radius-lg); display: flex; flex-direction: column;
  align-items: center; justify-content: center; color: var(--muted);
  font-size: 0.85rem; text-align: center; gap: 0.75rem;
  border: 2px dashed var(--muted);
}
.about-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 1.1rem; }
.about-text h2 { margin-bottom: 1.25rem; }
.available-box {
  background: var(--crimson-light); border-left: 4px solid var(--crimson);
  padding: 1.4rem 1.5rem; border-radius: 0 var(--radius) var(--radius) 0; margin-top: 2rem;
}
.available-box h4 {
  color: var(--crimson); font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 0.75rem;
}
.available-box ul { display: flex; flex-direction: column; gap: 0.4rem; }
.available-box li { color: var(--text-light); font-size: 0.95rem; padding-left: 1rem; position: relative; }
.available-box li::before { content: '→'; position: absolute; left: 0; color: var(--crimson); font-weight: 700; }

/* ----------- Home: Events Preview ----------- */
.home-events { background: var(--white); }
.events-preview-grid { display: grid; gap: 1rem; }
.view-all-wrap { text-align: center; margin-top: 2.5rem; }

/* ----------- Home: CTA Band ----------- */
.home-cta { padding: 5rem 0; }
.home-cta-content { text-align: center; }
.home-cta-content h2 { color: var(--white); margin-bottom: 1rem; }
.home-cta-content p { color: rgba(255,255,255,0.72); max-width: 480px; margin: 0 auto 2rem; font-size: 1.05rem; }

/* ----------- Footer ----------- */
.site-footer { background: var(--black); color: rgba(255,255,255,0.55); padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 52px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1rem; opacity: 0.8; }
.footer-brand p { font-size: 0.85rem; line-height: 1.65; }
.footer-col h4 { color: var(--white); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a { color: rgba(255,255,255,0.5); font-size: 0.875rem; transition: color var(--transition); }
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ----------- Utility ----------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--text-light); }
.empty-state p { margin-top: 0.5rem; }
.loading { text-align: center; padding: 3rem 2rem; color: var(--text-light); }
.spinner {
  width: 32px; height: 32px; border: 3px solid var(--border);
  border-top-color: var(--crimson); border-radius: 50%;
  animation: spin 0.7s linear infinite; margin: 0 auto 1rem;
}
@keyframes spin { to { transform: rotate(360deg); } }
.alert { padding: 0.9rem 1.1rem; border-radius: var(--radius); margin-bottom: 1.25rem; font-size: 0.92rem; }
.alert-success { background: #eef8f0; color: #1a6b2f; border: 1px solid #c3e6cb; }
.alert-error { background: #fef0f0; color: var(--crimson); border: 1px solid #f5c6c6; }

/* ----------- Admin ----------- */
.admin-gate {
  max-width: 420px; margin: calc(var(--nav-height) + 5rem) auto 3rem;
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
  padding: 2.5rem;
}
.admin-gate h2 { margin-bottom: 0.5rem; }
.admin-gate p { color: var(--text-light); margin-bottom: 2rem; font-size: 0.9rem; }
.admin-ui { padding-top: calc(var(--nav-height) + 2rem); padding-bottom: 4rem; display: none; }
.admin-ui.visible { display: block; }
.admin-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 2rem; }
.admin-tab {
  padding: 0.75rem 1.75rem; background: none; border: none;
  font-weight: 600; font-size: 0.9rem; font-family: inherit;
  color: var(--text-light); cursor: pointer; border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: all var(--transition);
}
.admin-tab.active { color: var(--crimson); border-bottom-color: var(--crimson); }
.admin-panel { display: none; }
.admin-panel.active { display: block; }
.admin-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem; margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.admin-card h3 { margin-bottom: 1.25rem; font-size: 1rem; }
.admin-item {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 0.9rem 0; border-bottom: 1px solid var(--border); gap: 1rem;
}
.admin-item:last-child { border-bottom: none; padding-bottom: 0; }
.admin-item-info { flex: 1; min-width: 0; }
.admin-item-info strong { display: block; font-size: 0.9rem; color: var(--black); margin-bottom: 0.2rem; }
.admin-item-info span { font-size: 0.8rem; color: var(--text-light); }
.admin-item-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }
.admin-config { background: var(--crimson-light); border: 1px solid rgba(139,26,26,0.15); border-radius: var(--radius); padding: 1.25rem; margin-bottom: 1.5rem; font-size: 0.875rem; color: var(--text-light); }
.admin-config strong { color: var(--crimson); }
.admin-topbar {
  position: sticky; top: var(--nav-height); z-index: 90;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 0.75rem var(--pad); display: flex; align-items: center;
  justify-content: space-between; box-shadow: var(--shadow-sm);
}
.admin-topbar h2 { font-size: 1rem; margin: 0; }

/* ----------- Responsive ----------- */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo-wrap { position: static; }
  .about-photo-placeholder { aspect-ratio: 1/1; max-width: 220px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  :root { --nav-height: 64px; --pad: 1rem; }
  .nav-links {
    display: none; position: fixed; inset: var(--nav-height) 0 0 0;
    background: var(--white); flex-direction: column; align-items: stretch;
    padding: 1rem; gap: 0; border-top: 1px solid var(--border); overflow-y: auto;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links a {
    display: block; padding: 1rem 0.5rem;
    text-transform: none; letter-spacing: 0; font-size: 1rem; border-bottom: none;
  }
  .nav-links .nav-cta { margin-top: 0.75rem; text-align: center; padding: 0.75rem; display: block; }
  .nav-toggle { display: flex; }
  .hero-logo { height: 110px; }
  .event-card { grid-template-columns: 70px 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .section { padding: 3.5rem 0; }
  .tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .tab-btn { white-space: nowrap; }
}
