/* ============================================================
   United Workers Union (UWU) - Main Stylesheet
   Colour Palette: Deep Red #8B0000 | Gold #FFD700 | White #FFFFFF
   ============================================================ */

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

:root {
  --red:        #8B0000;
  --red-dark:   #6B0000;
  --red-light:  #A80000;
  --gold:       #FFD700;
  --gold-dark:  #D4AF00;
  --white:      #FFFFFF;
  --off-white:  #F5F5F0;
  --light-grey: #E8E8E5;
  --mid-grey:   #9E9E9E;
  --dark-grey:  #333333;
  --black:      #111111;

  --font-sans:  'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-serif: Georgia, 'Times New Roman', serif;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.10);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.14);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.18);

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  --transition: 0.25s ease;
  --max-width:  1200px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--dark-grey);
  background: var(--white);
  line-height: 1.7;
}

img { max-width: 100%; display: block; }

a {
  color: var(--red);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--red-dark); }

ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--red);
  transform: translateY(-2px);
}

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

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

/* ── Navigation ───────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--red);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--red);
  flex-shrink: 0;
  line-height: 1;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-text .name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.nav-logo-text .acronym {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  font-weight: 700 !important;
  border-radius: var(--radius-sm) !important;
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
  color: var(--black) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  background: var(--red-dark);
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: 0.65rem 1.25rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover, .nav-mobile a.active { color: var(--gold); }

/* ── Page Hero ────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 60% 40%, rgba(255,215,0,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto;
}

.page-hero .gold-bar {
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ── Sections ─────────────────────────────────────────────── */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--off-white);
}

.section-dark {
  background: var(--red);
  color: var(--white);
}

.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.85); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: #555;
  font-size: 1.05rem;
}

/* ── Hero (Homepage) ──────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--red) 0%, #5c0000 100%);
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255,215,0,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,215,0,0.15);
  border: 1px solid rgba(255,215,0,0.35);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.hero h1 span {
  color: var(--gold);
}

.hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.87);
  margin-bottom: 2rem;
  line-height: 1.75;
}

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

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform var(--transition);
}
.hero-card:hover { transform: translateX(4px); }

.hero-card-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.hero-card-text strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.hero-card-text span {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

/* ── Stats ────────────────────────────────────────────────── */
.stats-bar {
  background: var(--black);
  color: var(--white);
  padding: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: var(--white);
}

.stat-item {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card-body {
  padding: 1.75rem;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

/* News card image placeholder */
.news-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--red) 0%, #5c0000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.news-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 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' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.news-card-img .category-badge {
  z-index: 1;
}

/* ── Badges / Tags ────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-red     { background: rgba(139,0,0,0.1); color: var(--red); }
.badge-gold    { background: rgba(255,215,0,0.25); color: #7a6000; }
.badge-green   { background: rgba(0,128,0,0.1); color: #006400; }
.badge-blue    { background: rgba(0,0,200,0.08); color: #0000aa; }
.badge-grey    { background: var(--light-grey); color: #555; }
.badge-victory { background: #006400; color: #fff; }
.badge-won     { background: #006400; color: #fff; }
.badge-active  { background: rgba(139,0,0,0.12); color: var(--red); }

/* ── Grid Layouts ─────────────────────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ── News Grid ────────────────────────────────────────────── */
.news-date {
  font-size: 0.8rem;
  color: var(--mid-grey);
}

.news-card .card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.news-card .card-body p {
  font-size: 0.9rem;
  color: #555;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--red);
}
.read-more::after {
  content: '→';
  transition: transform var(--transition);
}
.read-more:hover::after { transform: translateX(4px); }

/* ── Campaign Cards ───────────────────────────────────────── */
.campaign-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem;
  border-top: 4px solid var(--red);
  transition: box-shadow var(--transition), transform var(--transition);
}
.campaign-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.campaign-card.won {
  border-top-color: #006400;
  opacity: 0.85;
}

.campaign-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.campaign-card p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1.25rem;
}

.progress-wrap {
  margin-bottom: 0.6rem;
}

.progress-bar-bg {
  background: var(--light-grey);
  border-radius: 50px;
  height: 10px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-bar-fill {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-bar-fill.won {
  background: linear-gradient(90deg, #006400, #228B22);
}

.progress-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #555;
}

.progress-stats .count {
  font-weight: 700;
  color: var(--red);
}

.progress-stats .goal-count {
  font-weight: 600;
}

/* ── Forms ────────────────────────────────────────────────── */
.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-grey);
  margin-bottom: 0.4rem;
}

label .required {
  color: var(--red);
  margin-left: 2px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #D4D4D0;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--dark-grey);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(139,0,0,0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--mid-grey);
  margin-top: 0.3rem;
}

.form-error {
  font-size: 0.8rem;
  color: var(--red);
  margin-top: 0.3rem;
  display: none;
}

.form-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.form-title {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.form-subtitle {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* Alert / notification */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  animation: fadeInDown 0.3s ease;
}

.alert-success {
  background: #f0faf0;
  border: 1px solid #b3e0b3;
  color: #1e6b1e;
}

.alert-error {
  background: #fff0f0;
  border: 1px solid #f4b3b3;
  color: #7a0000;
}

.alert-info {
  background: #f0f4ff;
  border: 1px solid #b3c6f4;
  color: #1a3a7a;
}

/* ── Membership Tiers ─────────────────────────────────────── */
.tier-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.tier-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 2px solid var(--light-grey);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: all var(--transition);
  cursor: pointer;
}

.tier-card:hover, .tier-card.selected {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
}

.tier-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fffef0 0%, var(--white) 100%);
}
.tier-card.featured.selected, .tier-card.featured:hover {
  border-color: var(--gold-dark);
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: 50px;
  white-space: nowrap;
}

.tier-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.tier-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.tier-price span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--mid-grey);
}

.tier-desc {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1.25rem;
  min-height: 40px;
}

.tier-features {
  text-align: left;
  list-style: none;
}
.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #444;
  margin-bottom: 0.5rem;
}
.tier-features li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ── About Page ───────────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 2.5rem;
  max-width: 800px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--red) 0%, rgba(139,0,0,0.1) 100%);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.4rem;
  width: 14px;
  height: 14px;
  background: var(--red);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--red);
}

.timeline-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.timeline-item h4 { margin-bottom: 0.35rem; }
.timeline-item p { font-size: 0.92rem; color: #555; margin: 0; }

/* Leadership grid */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.leader-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.leader-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.leader-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.leader-body { padding: 1.5rem; }
.leader-name { font-size: 1.05rem; margin-bottom: 0.2rem; }
.leader-role { font-size: 0.85rem; color: var(--red); font-weight: 600; margin-bottom: 0.5rem; }
.leader-bio { font-size: 0.85rem; color: #555; }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.value-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; color: #555; }

/* ── Article View ─────────────────────────────────────────── */
.article-container {
  max-width: 800px;
  margin: 0 auto;
}

.article-header {
  margin-bottom: 2rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.article-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #2a2a2a;
}

.article-body p {
  margin-bottom: 1.25rem;
}

.article-hero-img {
  height: 320px;
  background: linear-gradient(135deg, var(--red) 0%, #3a0000 100%);
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Contact Page ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.office-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
}

.office-card h4 {
  color: var(--red);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.office-details {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
}

.contact-info-block {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.contact-info-block .icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-info-block p {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-reg {
  padding: 1.5rem 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-reg a { color: rgba(255,255,255,0.5); }
.footer-reg a:hover { color: var(--gold); }

.tuc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.25);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-top: 0.75rem;
  display: inline-flex;
}

/* ── Featured / Highlight blocks ──────────────────────────── */
.highlight-box {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  text-align: center;
}

.highlight-box h2, .highlight-box h3 { color: var(--white); }
.highlight-box p { color: rgba(255,255,255,0.85); }

/* ── Accordion ────────────────────────────────────────────── */
.accordion-item {
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 1.1rem 1.25rem;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-grey);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}

.accordion-header:hover { background: var(--off-white); }
.accordion-header[aria-expanded="true"] { background: var(--off-white); color: var(--red); }

.accordion-icon {
  font-size: 1.2rem;
  transition: transform var(--transition);
}
.accordion-header[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); }

.accordion-body {
  display: none;
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  color: #555;
  border-top: 1px solid var(--light-grey);
}
.accordion-body.open { display: block; }

/* ── Loading spinner ──────────────────────────────────────── */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--light-grey);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 2rem auto;
}

.loading-text {
  text-align: center;
  color: var(--mid-grey);
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* ── Breadcrumbs ──────────────────────────────────────────── */
.breadcrumbs {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.5rem;
}

.breadcrumbs a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { margin: 0 0.4rem; }

/* ── Article Modal ────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  overflow-y: auto;
  padding: 2rem 1rem;
}
.modal-overlay.open { display: flex; align-items: flex-start; justify-content: center; }

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 820px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 0.3s ease;
  overflow: hidden;
}

.modal-header {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  padding: 1.75rem 2rem;
  position: relative;
}
.modal-header h3 { color: var(--white); font-size: 1.25rem; padding-right: 2.5rem; }

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255,255,255,0.2);
  border: none;
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,0.35); }

.modal-body {
  padding: 2rem;
  max-height: 70vh;
  overflow-y: auto;
}

.modal-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--light-grey);
}

/* ── Animations ───────────────────────────────────────────── */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes countUp {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Misc ─────────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--light-grey);
  margin: 2rem 0;
}

.text-red   { color: var(--red); }
.text-gold  { color: var(--gold); }
.text-muted { color: var(--mid-grey); }
.text-center { text-align: center; }
.text-small { font-size: 0.85rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .tier-cards { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { padding: 4rem 0 3.5rem; min-height: auto; }

  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

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

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 1.75rem 1rem; }
  .leadership-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .form-container { padding: 1.5rem; }
  .modal-body { padding: 1.25rem; }
  .footer-reg { flex-direction: column; text-align: center; }
}

/* ============================================================
   Gallery
   ============================================================ */

/* ── Filter Buttons ──────────────────────────────────────────── */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.gallery-filter-btn {
  padding: 0.45rem 1.1rem;
  border: 2px solid var(--light-grey);
  border-radius: 24px;
  background: var(--white);
  color: var(--dark-grey);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-sans);
}

.gallery-filter-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

.gallery-filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  font-weight: 600;
}

/* ── Gallery Grid ────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Gallery Card ────────────────────────────────────────────── */
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  outline: none;
}

.gallery-item:hover,
.gallery-item:focus {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery-item:focus-visible {
  box-shadow: 0 0 0 3px var(--gold), var(--shadow-md);
}

.gallery-item-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--light-grey);
}

.gallery-item-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item-img-wrap img {
  transform: scale(1.06);
}

/* Placeholder (no real image) */
.gallery-placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-placeholder-icon {
  font-size: 3.5rem;
  opacity: 0.85;
}

/* Hover Overlay */
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(139,0,0,0.88) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  pointer-events: none;
}

.gallery-item:hover .gallery-item-overlay,
.gallery-item:focus .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay-title {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.2rem;
}

.gallery-item-overlay-cat {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Card Footer */
.gallery-item-footer {
  padding: 0.85rem 1rem;
}

.gallery-item-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-grey);
  margin-bottom: 0.4rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.gallery-cat-badge {
  display: inline-block;
  background: #f5eded;
  color: var(--red);
  border: 1px solid #e8c8c8;
  padding: 0.15rem 0.55rem;
  border-radius: 12px;
  font-size: 0.73rem;
  font-weight: 600;
}

.gallery-date {
  font-size: 0.75rem;
  color: var(--mid-grey);
}

/* ── Lightbox ────────────────────────────────────────────────── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  display: block;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.lightbox-placeholder {
  width: 100%;
  max-width: 540px;
  height: 360px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.lightbox-caption {
  margin-top: 1rem;
  text-align: center;
}

.lightbox-title {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.lightbox-category {
  color: var(--gold);
  font-size: 0.83rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2010;
  opacity: 0.8;
  transition: opacity var(--transition), color var(--transition);
  font-family: var(--font-sans);
}

.lightbox-close:hover { opacity: 1; color: var(--gold); }

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2010;
  transition: background var(--transition);
  font-family: var(--font-sans);
}

.lightbox-nav:hover { background: rgba(192,57,43,0.7); }

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

@media (max-width: 600px) {
  .lightbox-prev { left: 0.25rem; }
  .lightbox-next { right: 0.25rem; }
  .lightbox-nav {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1.4rem;
  }
}
