/*
Theme Name: ESC Theme
Theme URI: https://empiresupportersclub.com
Author: Empire Supporters Club
Author URI: https://empiresupportersclub.com
Description: Custom theme for Empire Supporters Club - dark theme with red (#d71920) accents. Converts the static ESC New site into a fully functional WordPress theme while maintaining identical visuals.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: esc-theme
Tags: dark, red, custom-menu, custom-logo, featured-images, responsive-layout, accessibility-ready
*/

/* ============================================
   ESC Theme — WordPress Stylesheet
   Empire Supporters Club
   Dark theme: red/black/white
   ============================================ */

:root {
  --esc-red:       #d71920;
  --esc-red-dark:  #b71c1c;
  --esc-red-light: #ff5252;
  --esc-black:     #0a0a0a;
  --esc-dark:      #111111;
  --esc-gray:      #1a1a1a;
  --esc-gray-mid:  #2a2a2a;
  --esc-gray-light:#333333;
  --esc-text:      #e0e0e0;
  --esc-text-dim:  #999999;
  --esc-white:     #ffffff;
  --font-heading:  'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-body:     Georgia, 'Times New Roman', serif;
  --radius:        6px;
  --shadow:        0 4px 20px rgba(0,0,0,0.4);
  --transition:    all 0.2s ease;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--esc-dark);
  color: var(--esc-text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* Links */
a { color: var(--esc-red); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--esc-red-light); text-decoration: underline; }
a:focus-visible { outline: 2px solid var(--esc-red); outline-offset: 2px; }

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

/* WordPress Alignments */
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { display: block; margin: 0 auto; }
.alignnone { margin: 1rem 0; }

/* WordPress Caption */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--esc-text-dim); margin-top: 0.5rem; }

/* WordPress Gallery */
.gallery { display: grid; gap: 1rem; margin: 1.5rem 0; }
.gallery-columns-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-columns-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-columns-4 { grid-template-columns: repeat(4, 1fr); }
.gallery-item { text-align: center; }
.gallery-icon img { border-radius: var(--radius); }

/* WordPress Screen Reader Text */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  background: linear-gradient(135deg, var(--esc-black) 0%, var(--esc-gray) 100%);
  border-bottom: 3px solid var(--esc-red);
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-group img {
  width: 52px;
  height: 52px;
  border-radius: 4px;
  object-fit: contain;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--esc-white);
  line-height: 1.2;
  letter-spacing: -0.3px;
}
.logo-text small {
  display: block;
  font-weight: 400;
  font-size: 0.72rem;
  color: var(--esc-red);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Desktop Navigation */
.nav-desktop {
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem;
  align-items: center;
}
.nav-desktop a {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius);
  color: #bbb;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-desktop a:hover,
.nav-desktop a.active,
.nav-desktop .current-menu-item > a,
.nav-desktop .current-menu-parent > a {
  background: var(--esc-red);
  color: var(--esc-white);
  text-decoration: none;
}

/* Dropdown */
.dropdown {
  position: relative;
}
.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.dropdown-toggle::after {
  content: '▼';
  font-size: 0.6rem;
  color: #888;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--esc-gray);
  border: 1px solid var(--esc-gray-light);
  border-top: 2px solid var(--esc-red);
  border-radius: 0 0 var(--radius) var(--radius);
  min-width: 180px;
  padding: 0.3rem 0;
  box-shadow: var(--shadow);
  z-index: 1001;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}
.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  color: #ccc;
  border-radius: 0;
}
.dropdown-menu a:hover {
  background: var(--esc-gray-mid);
  color: var(--esc-white);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--esc-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.3rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--esc-gray) 0%, var(--esc-dark) 60%, var(--esc-black) 100%);
  border-bottom: 2px solid var(--esc-red);
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(215,25,32,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.hero-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  border-radius: 8px;
  object-fit: contain;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--esc-white);
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
  text-transform: uppercase;
}
.hero .tagline {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--esc-red);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 1.5rem;
}
.hero p.lead {
  font-size: 1.15rem;
  color: #bbb;
  max-width: 650px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}
.hero .meta {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero .meta span { margin: 0 0.8rem; }

/* Sub-hero (inner pages) */
.hero-sub {
  padding: 2.5rem 1.5rem;
}
.hero-sub h1 {
  font-size: 2.2rem;
}

/* ============================================
   LAYOUT & CONTAINERS
   ============================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}
.two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
}
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr; }
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--esc-gray);
  border: 1px solid var(--esc-gray-light);
  border-radius: var(--radius);
  padding: 1.8rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.card:hover {
  border-color: var(--esc-red-dark);
}
.card h2, .card h3 {
  font-family: var(--font-heading);
  color: var(--esc-white);
  margin-bottom: 0.75rem;
}
.card h2 {
  font-size: 1.35rem;
  border-bottom: 2px solid var(--esc-red);
  padding-bottom: 0.5rem;
}
.card h3 {
  font-size: 1.1rem;
  color: #ddd;
  margin-top: 1.2rem;
}
.card p, .card li {
  color: #bbb;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}
.card ul, .card ol {
  margin-left: 1.4rem;
}
.card li { margin-bottom: 0.5rem; }
.card a { font-weight: 600; }

/* Page Cards (grid) */
.page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}
.page-card {
  background: var(--esc-gray);
  border: 1px solid var(--esc-gray-light);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: var(--transition);
}
.page-card:hover {
  transform: translateY(-3px);
  border-color: var(--esc-red);
  box-shadow: var(--shadow);
}
.page-card a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.4rem;
}
.page-card p {
  font-size: 0.87rem;
  color: #888;
  line-height: 1.5;
}

/* ============================================
   BLOCKQUOTE & PULL QUOTES
   ============================================ */
blockquote {
  border-left: 3px solid var(--esc-red);
  padding-left: 1.2rem;
  margin: 1.5rem 0;
  color: #aaa;
  font-style: italic;
  font-size: 1rem;
}
blockquote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #777;
  font-style: normal;
  font-family: var(--font-heading);
}
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-top: 1rem;
}
.quote-card {
  background: var(--esc-black);
  border: 1px solid var(--esc-gray-light);
  border-radius: var(--radius);
  padding: 1.3rem;
}
.quote-card blockquote {
  border: none;
  padding: 0;
  margin: 0;
  font-size: 0.92rem;
}
.quote-card cite {
  margin-top: 0.6rem;
  color: #888;
  font-size: 0.8rem;
}

/* ============================================
   TABLES
   ============================================ */
table.stats {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.9rem;
}
table.stats th {
  background: var(--esc-red);
  color: var(--esc-white);
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: left;
  padding: 0.6rem 0.8rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
table.stats td {
  padding: 0.55rem 0.8rem;
  border-bottom: 1px solid var(--esc-gray-light);
  color: #bbb;
}
table.stats tr:hover td { background: var(--esc-gray-mid); }
table.stats .highlight { color: var(--esc-red); font-weight: 700; }
table.stats .dc-win { color: #4fc3f7; font-weight: 700; }
table.stats .ny-win { color: #ff8a80; font-weight: 700; }

/* WordPress Table Styles */
.wp-block-table {
  overflow-x: auto;
  margin: 1.5rem 0;
}
.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
}
.wp-block-table th {
  background: var(--esc-red);
  color: var(--esc-white);
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: left;
  padding: 0.6rem 0.8rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.wp-block-table td {
  padding: 0.55rem 0.8rem;
  border-bottom: 1px solid var(--esc-gray-light);
  color: #bbb;
}
.wp-block-table tr:hover td { background: var(--esc-gray-mid); }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--esc-white);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--esc-red);
  display: inline-block;
}
.section-subtitle {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--esc-text-dim);
  margin-bottom: 1rem;
}

/* Era Labels */
.era-label {
  display: inline-block;
  background: var(--esc-red);
  color: var(--esc-white);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.25rem 0.7rem;
  border-radius: 3px;
  margin-bottom: 0.6rem;
}

/* Tags */
.tag {
  display: inline-block;
  background: var(--esc-gray-mid);
  color: #ccc;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  margin-right: 0.4rem;
}
.tag.dc { background: #1a237e; color: #fff; }
.tag.ny { background: var(--esc-red); color: #fff; }

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--esc-red-dark);
}
.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.6rem;
  top: 0.3rem;
  width: 10px;
  height: 10px;
  background: var(--esc-red);
  border-radius: 50%;
  border: 2px solid var(--esc-dark);
}
.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--esc-red);
  margin-bottom: 0.3rem;
}
.timeline-content h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--esc-white);
  margin-bottom: 0.3rem;
}
.timeline-content p {
  font-size: 0.92rem;
  color: #aaa;
}

/* ============================================
   MEDIA GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.gallery-item {
  background: var(--esc-gray);
  border: 1px solid var(--esc-gray-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.gallery-item:hover {
  border-color: var(--esc-red);
  transform: scale(1.03);
}
.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.gallery-caption {
  padding: 0.6rem 0.8rem;
  font-size: 0.8rem;
  color: #888;
  font-family: var(--font-heading);
}

/* ============================================
   BUTTONS & CTAs
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: var(--esc-red);
  color: var(--esc-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn:hover {
  background: var(--esc-red-dark);
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--esc-red);
  color: var(--esc-red);
}
.btn-outline:hover {
  background: var(--esc-red);
  color: var(--esc-white);
}
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* WordPress Button Block */
.wp-block-button__link {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: var(--esc-red);
  color: var(--esc-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.wp-block-button__link:hover {
  background: var(--esc-red-dark);
}

/* ============================================
   QUICK LINKS / SOCIAL
   ============================================ */
.quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.quick-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: var(--esc-gray-mid);
  border: 1px solid var(--esc-gray-light);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: #ccc;
  transition: var(--transition);
}
.quick-links a:hover {
  background: var(--esc-red);
  color: var(--esc-white);
  border-color: var(--esc-red);
  text-decoration: none;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--esc-black);
  border-top: 3px solid var(--esc-red);
  padding: 2.5rem 1.5rem 1.5rem;
  text-align: center;
  margin-top: 3rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.site-footer p {
  color: #777;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}
.footer-links a {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #999;
}
.footer-links a:hover { color: var(--esc-red); }
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin: 1.2rem 0;
}
.footer-social a {
  font-size: 1.2rem;
  color: #777;
}
.footer-social a:hover { color: var(--esc-red); }
.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--esc-gray-light);
  font-size: 0.75rem;
  color: #555;
}

/* ============================================
   ATTRIBUTION / SOURCES
   ============================================ */
.attribution {
  font-size: 0.78rem;
  color: #555;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--esc-gray-light);
}
.attribution a { color: #777; }

/* ============================================
   SPECIAL SECTIONS
   ============================================ */
.highlight-box {
  background: linear-gradient(135deg, var(--esc-gray-mid), var(--esc-gray));
  border-left: 4px solid var(--esc-red);
  padding: 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}
.highlight-box h3 {
  font-family: var(--font-heading);
  color: var(--esc-white);
  margin-bottom: 0.5rem;
}

/* Press item */
.press-item {
  background: var(--esc-gray);
  border: 1px solid var(--esc-gray-light);
  border-radius: var(--radius);
  padding: 1.2rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}
.press-item:hover {
  border-color: var(--esc-red);
}
.press-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--esc-white);
  margin-bottom: 0.3rem;
}
.press-item .source {
  font-size: 0.8rem;
  color: var(--esc-red);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.press-item p {
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 0.5rem;
}

/* ============================================
   WORDPRESS CONTENT STYLES
   ============================================ */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  font-family: var(--font-heading);
  color: var(--esc-white);
  margin: 1.5rem 0 0.75rem;
}
.entry-content h2 {
  border-bottom: 2px solid var(--esc-red);
  padding-bottom: 0.5rem;
}
.entry-content p {
  margin-bottom: 1rem;
  color: #bbb;
}
.entry-content ul,
.entry-content ol {
  margin-left: 1.4rem;
  margin-bottom: 1rem;
  color: #bbb;
}
.entry-content li {
  margin-bottom: 0.5rem;
}
.entry-content strong {
  color: var(--esc-white);
}

/* Post Meta */
.post-meta {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

/* Navigation Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem 0;
}
.pagination a,
.pagination .current {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--esc-gray);
  border: 1px solid var(--esc-gray-light);
  border-radius: var(--radius);
  color: #ccc;
  font-family: var(--font-heading);
  font-size: 0.85rem;
}
.pagination .current {
  background: var(--esc-red);
  color: var(--esc-white);
  border-color: var(--esc-red);
}
.pagination a:hover {
  background: var(--esc-gray-mid);
  text-decoration: none;
}

/* Breadcrumbs */
.breadcrumbs {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  color: #777;
  margin-bottom: 1rem;
}
.breadcrumbs a { color: #999; }
.breadcrumbs a:hover { color: var(--esc-red); }
.breadcrumbs .sep { margin: 0 0.4rem; color: #555; }

/* ============================================
   COMMENTS
   ============================================ */
.comments-area {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--esc-gray-light);
}
.comment-list {
  list-style: none;
  margin: 0;
}
.comment {
  background: var(--esc-gray);
  border: 1px solid var(--esc-gray-light);
  border-radius: var(--radius);
  padding: 1.2rem;
  margin-bottom: 1rem;
}
.comment-meta {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: #777;
  margin-bottom: 0.5rem;
}
.comment-author {
  color: var(--esc-white);
  font-weight: 700;
}
.comment-text {
  color: #bbb;
  font-size: 0.95rem;
}

/* ============================================
   FORMS
   ============================================ */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="date"],
textarea,
select {
  width: 100%;
  padding: 0.6rem 0.8rem;
  background: var(--esc-black);
  border: 1px solid var(--esc-gray-light);
  border-radius: var(--radius);
  color: var(--esc-text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--esc-red);
}
label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: #bbb;
  margin-bottom: 0.3rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-desktop { display: none; width: 100%; }
  .nav-desktop.active {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-top: 0.5rem;
  }
  .nav-desktop a { padding: 0.6rem 0.8rem; }
  .dropdown-menu {
    position: static;
    display: none;
    border: none;
    border-left: 2px solid var(--esc-red);
    box-shadow: none;
    background: var(--esc-gray-mid);
  }
  .dropdown.active .dropdown-menu { display: block; }

  .hero { padding: 2.5rem 1rem; }
  .hero h1 { font-size: 2rem; }
  .hero .tagline { font-size: 0.9rem; letter-spacing: 2px; }
  .hero p.lead { font-size: 1rem; }

  .container { padding: 1.5rem 1rem; }
  .card { padding: 1.2rem; }
  .section-title { font-size: 1.3rem; }

  .logo-text { font-size: 1rem; }
  .logo-group img { width: 40px; height: 40px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .hero .tagline { font-size: 0.8rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .timeline { padding-left: 1.5rem; }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .site-header { position: static; }
  body { background: #fff; color: #000; }
  .hero, .card, .page-card { background: #fff; border: 1px solid #ccc; }
  a { color: #000; text-decoration: underline; }
}
