/* ============================================================
   СПАРТАК-МЕРКУРИЙ — Modern Sports Site CSS
   Design: Bold red/navy, Oswald headings, clean layout
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:    #CC0000;
  --navy:   #0D1B2A;
  --gold:   #C9A84C;
  --light:  #F4F4F4;
  --white:  #FFFFFF;
  --dark:   #1A1A2E;
  --gray:   #6B7280;
  --border: #E0E0E0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--light);
}

h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-title {
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--red);
  display: inline-block;
}
.btn {
  display: inline-block;
  padding: 10px 24px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-red   { background: var(--red); color: #fff; }
.btn-red:hover { background: #a80000; transform: translateY(-1px); }
.btn-navy  { background: var(--navy); color: #fff; }
.btn-navy:hover { background: #1a2f46; transform: translateY(-1px); }

/* ---- Top Bar ---- */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  padding: 6px 0;
  border-bottom: 2px solid var(--red);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.topbar a:hover { color: var(--gold); }

/* ---- Header ---- */
header {
  background: var(--navy);
  padding: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo-wrap { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-wrap img { width: 60px; height: 60px; object-fit: contain; }
.logo-text { color: #fff; }
.logo-text .club-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.1;
}
.logo-text .club-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.header-location {
  margin-left: auto;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  text-align: right;
  line-height: 1.4;
}
.header-location strong { color: rgba(255,255,255,0.85); display: block; font-size: 0.9rem; }

/* ---- Navigation ---- */
nav { background: var(--red); position: sticky; top: 0; z-index: 100; }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.nav-items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item { position: relative; }
.nav-link {
  display: block;
  padding: 13px 16px;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { background: rgba(0,0,0,0.25); }
.nav-item:hover .dropdown { display: block; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy);
  min-width: 200px;
  z-index: 200;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.dropdown a {
  display: block;
  padding: 10px 16px;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.15s, color 0.15s;
}
.dropdown a:hover { background: var(--red); color: #fff; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  padding: 10px 16px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-inner { flex-direction: column; align-items: flex-start; }
  .nav-items { display: none; width: 100%; flex-direction: column; background: var(--red); }
  .nav-items.open { display: flex; }
  .nav-item { width: 100%; }
  .dropdown { position: static; box-shadow: none; background: rgba(0,0,0,0.2); }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  height: 480px;
  overflow: hidden;
  background: var(--navy);
}
.hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.7;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,27,42,0.85) 40%, rgba(13,27,42,0.2) 100%);
  display: flex;
  align-items: center;
}
.hero-content { padding: 0 40px; max-width: 600px; color: #fff; }
.hero-content h1 {
  font-size: 3rem;
  line-height: 1.05;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hero-content h1 span { color: var(--red); }
.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
}
.hero-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  margin-bottom: 1rem;
}
@media (max-width: 600px) {
  .hero { height: 300px; }
  .hero-content h1 { font-size: 1.9rem; }
  .hero-content { padding: 0 20px; }
}

/* ---- Main Layout ---- */
.main-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  padding: 32px 0 48px;
}
@media (max-width: 900px) {
  .main-layout { grid-template-columns: 1fr; }
  .sidebar { order: 2; }
}

/* ---- News Cards ---- */
.news-grid { display: grid; gap: 20px; }
.news-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 140px 1fr;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s, transform 0.15s;
  text-decoration: none;
  color: inherit;
}
.news-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.14); transform: translateY(-2px); }
.news-card img { width: 140px; height: 110px; object-fit: cover; }
.news-card-img-placeholder {
  width: 140px; height: 110px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 2rem;
}
.news-card-body { padding: 14px 16px; }
.news-card-date {
  font-size: 0.72rem;
  color: var(--red);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.news-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}
.news-card-text { font-size: 0.85rem; color: var(--gray); line-height: 1.5; }
@media (max-width: 500px) {
  .news-card { grid-template-columns: 1fr; }
  .news-card img, .news-card-img-placeholder { width: 100%; height: 160px; }
}

/* ---- Table ---- */
.standings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}
.standings-table th {
  background: var(--navy);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 8px;
  text-align: center;
}
.standings-table th:first-child { text-align: left; padding-left: 14px; }
.standings-table td {
  padding: 9px 8px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.standings-table td:first-child { text-align: left; padding-left: 14px; font-weight: 600; }
.standings-table tr:last-child td { border-bottom: none; }
.standings-table tr.highlight td { background: rgba(204,0,0,0.07); font-weight: 700; }
.standings-table tr:hover td { background: rgba(13,27,42,0.04); }

/* ---- Sidebar ---- */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-block {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}
.sidebar-block-title {
  background: var(--navy);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 14px;
}
.sidebar-block-body { padding: 14px; }
.sidebar-player {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-player:last-child { border-bottom: none; }
.sidebar-player img {
  width: 56px; height: 56px;
  object-fit: cover;
  border-radius: 2px;
  border: 2px solid var(--red);
}
.sidebar-player-info .name {
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--navy);
}
.sidebar-player-info .num {
  font-size: 0.75rem;
  color: var(--red);
  font-weight: 700;
}
.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.partner-item {
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  transition: border-color 0.2s;
}
.partner-item:hover { border-color: var(--red); }
.partner-item img { max-height: 40px; object-fit: contain; }
.partner-item span {
  font-size: 0.65rem;
  text-align: center;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.3;
}
.links-list a {
  display: block;
  padding: 6px 0;
  font-size: 0.82rem;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}
.links-list a:last-child { border-bottom: none; }
.links-list a:hover { color: var(--red); padding-left: 6px; }

/* ---- Page Content ---- */
.page-wrap { padding: 36px 0 56px; }
.page-header {
  background: var(--navy);
  padding: 28px 0;
  margin-bottom: 32px;
}
.page-header h1 { color: #fff; font-size: 2.2rem; }
.page-header .breadcrumb {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  margin-top: 6px;
}
.page-header .breadcrumb a { color: var(--gold); }
.page-header .breadcrumb a:hover { text-decoration: underline; }

/* ---- History Page ---- */
.history-text {
  background: #fff;
  padding: 28px 32px;
  border-radius: 4px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  line-height: 1.8;
}
.history-text p { margin-bottom: 1rem; }
.history-text p:last-child { margin-bottom: 0; }
.history-milestone {
  border-left: 3px solid var(--red);
  padding-left: 16px;
  margin: 12px 0;
  font-size: 0.95rem;
}

/* ---- Admin / Staff ---- */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.staff-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  text-align: center;
  transition: box-shadow 0.2s;
}
.staff-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.14); }
.staff-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
}
.staff-card-body { padding: 14px; }
.staff-card-body .role {
  font-size: 0.72rem;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.staff-card-body .name {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.staff-card-body .bio {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ---- Roster ---- */
.roster-section-title {
  font-size: 1.3rem;
  color: var(--navy);
  margin: 28px 0 16px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--red);
}
.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.player-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  text-align: center;
  transition: box-shadow 0.2s, transform 0.15s;
}
.player-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.14); transform: translateY(-2px); }
.player-card-img {
  position: relative;
  height: 180px;
  background: var(--navy);
  overflow: hidden;
}
.player-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
}
.player-card-num {
  position: absolute;
  top: 8px; right: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  line-height: 1;
}
.player-card-body { padding: 10px 8px 12px; }
.player-card-body .name {
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 2px;
}
.player-card-body .pos {
  font-size: 0.72rem;
  color: var(--red);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.player-card-body .dob {
  font-size: 0.7rem;
  color: var(--gray);
  margin-top: 2px;
}
.player-card-body .rank {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 700;
}

/* ---- Contacts ---- */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 700px) { .contacts-grid { grid-template-columns: 1fr; } }
.contact-info-block {
  background: #fff;
  padding: 24px;
  border-radius: 4px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}
.contact-info-block h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--red);
}
.contact-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.contact-row .label {
  font-weight: 700;
  color: var(--navy);
  min-width: 90px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding-top: 2px;
}
.contact-row .value { color: var(--dark); }
.contact-row a { color: var(--red); }
.contact-row a:hover { text-decoration: underline; }
.map-block img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}

/* ---- Games / Calendar ---- */
.games-list { display: flex; flex-direction: column; gap: 14px; }
.game-item {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  overflow: hidden;
  display: grid;
  grid-template-columns: 120px 1fr;
  transition: box-shadow 0.2s;
}
.game-item:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.14); }
.game-item-img { background: var(--navy); }
.game-item-img img { width: 120px; height: 90px; object-fit: cover; }
.game-item-body { padding: 12px 16px; }
.game-item-date {
  font-size: 0.72rem;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.game-score {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.game-item-text { font-size: 0.82rem; color: var(--gray); line-height: 1.5; }
@media (max-width: 500px) {
  .game-item { grid-template-columns: 1fr; }
  .game-item-img img { width: 100%; height: 140px; }
}

/* ---- Photo Archive ---- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.photo-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
  background: var(--navy);
  cursor: pointer;
}
.photo-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.photo-item:hover img { transform: scale(1.06); }
.photo-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,0.6);
  display: flex;
  align-items: flex-end;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.2s;
}
.photo-item:hover .photo-item-overlay { opacity: 1; }
.photo-item-overlay span {
  color: #fff;
  font-size: 0.78rem;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.photo-album {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
}
.photo-album:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.14); transform: translateY(-2px); }
.photo-album-cover { height: 160px; overflow: hidden; }
.photo-album-cover img { width: 100%; height: 100%; object-fit: cover; }
.photo-album-body { padding: 12px 14px; }
.photo-album-body h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}
.photo-album-body span { font-size: 0.75rem; color: var(--gray); }

/* ---- Video ---- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.video-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}
.video-thumb {
  position: relative;
  height: 160px;
  background: var(--navy);
  overflow: hidden;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play-btn {
  width: 52px; height: 52px;
  background: rgba(204,0,0,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  transition: transform 0.2s, background 0.2s;
}
.video-card:hover .video-play-btn { transform: scale(1.1); background: var(--red); }
.video-card-body { padding: 12px 14px; }
.video-card-body h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}
.video-card-body span { font-size: 0.75rem; color: var(--gray); }

/* ---- Press ---- */
.press-list { display: flex; flex-direction: column; gap: 16px; }
.press-item {
  background: #fff;
  padding: 18px 20px;
  border-radius: 4px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  border-left: 4px solid var(--red);
}
.press-item h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.press-item p { font-size: 0.85rem; color: var(--gray); }

/* ---- Sponsors ---- */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.sponsor-card {
  background: #fff;
  border-radius: 4px;
  padding: 20px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: box-shadow 0.2s;
}
.sponsor-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.14); }
.sponsor-card img { max-height: 70px; max-width: 140px; object-fit: contain; }
.sponsor-card span { font-size: 0.8rem; color: var(--gray); }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  overflow: hidden;
}
.faq-question {
  padding: 14px 18px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--light); }
.faq-question.open { background: var(--navy); color: #fff; }
.faq-answer {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.88rem;
  color: var(--dark);
  line-height: 1.7;
}
.faq-answer.open { max-height: 400px; padding: 14px 18px; }

/* ---- Footer ---- */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 36px 0 20px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.footer-brand p { font-size: 0.82rem; line-height: 1.6; }
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--red);
}
.footer-col a {
  display: block;
  padding: 4px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom .red { color: var(--red); font-weight: 700; }

/* ---- Ticker ---- */
.ticker-bar {
  background: var(--red);
  color: #fff;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-block;
  animation: ticker 35s linear infinite;
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ticker-inner span { margin: 0 32px; }
.ticker-inner span::before { content: '◆ '; opacity: 0.6; }
@keyframes ticker { 0% { transform: translateX(100vw); } 100% { transform: translateX(-100%); } }

/* ---- Misc ---- */
.text-red { color: var(--red); }
.text-navy { color: var(--navy); }
.text-gold { color: var(--gold); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.text-center { text-align: center; }
.text-sm { font-size: 0.85rem; }
.bold { font-weight: 700; }
