/* =============================================
   SKERRIES COAST GUARD — STYLESHEET
   ============================================= */

:root {
  --navy: #0a1f3c;
  --navy-mid: #122d52;
  --navy-light: #1e4278;
  --gold: #D4A017;
  --gold-light: #e8b830;
  --red: #c0392b;
  --red-dark: #a93226;
  --green: #1a6b3a;
  --green-light: #21874a;
  --white: #ffffff;
  --off-white: #f4f6f8;
  --light-gray: #e8edf2;
  --mid-gray: #8a9bb0;
  --text: #1a2b3c;
  --text-muted: #5a6b7c;
  --shadow-sm: 0 2px 8px rgba(10,31,60,.1);
  --shadow-md: 0 6px 24px rgba(10,31,60,.15);
  --shadow-lg: 0 12px 48px rgba(10,31,60,.2);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: var(--navy-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }
.bg-light { background: var(--off-white); }

/* ---- EMERGENCY BANNER ---- */
.emergency-banner {
  background: var(--red);
  color: white;
  text-align: center;
  padding: 10px 24px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.emergency-banner a { color: white; font-weight: 700; text-decoration: underline; }
.emergency-banner a:hover { color: var(--gold-light); }

.pulse-dot {
  width: 10px; height: 10px;
  background: white;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ---- HEADER / NAV ---- */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 40px;
  z-index: 900;
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo { flex-shrink: 0; }
.brand-logo-img { height: 52px; width: auto; display: block; }
.brand-text { display: flex; flex-direction: column; }
.brand-title {
  font-family: 'Oswald', sans-serif;
  color: white;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.brand-sub {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  background: rgba(255,255,255,0.12);
  color: white;
}
.main-nav a.active { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(30,66,120,0.8) 0%, transparent 60%),
    linear-gradient(135deg, #0a1f3c 0%, #122d52 40%, #1a3a6e 100%);
}
.hero-overlay {
  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.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px 100px;
  max-width: 660px;
}
.hero-badge {
  display: inline-block;
  background: rgba(212,160,23,0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Oswald', sans-serif;
  color: white;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--gold); }
.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-waves {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  pointer-events: none;
}
.hero-waves svg { width: 100%; height: 60px; display: block; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,160,23,0.4);
}
.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  color: white;
}
.btn-secondary {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  color: white;
  transform: translateY(-1px);
}
.btn-danger {
  background: var(--red);
  color: white;
  border-color: var(--red);
  font-size: 1.1rem;
  padding: 14px 32px;
}
.btn-danger:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: white;
  transform: translateY(-1px);
}
.btn-white {
  background: white;
  color: var(--navy);
  border-color: white;
}
.btn-white:hover {
  background: var(--off-white);
  color: var(--navy);
  transform: translateY(-1px);
}
.btn-full { width: 100%; }

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--navy);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid rgba(255,255,255,0.1);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
  gap: 6px;
}
.stat:last-child { border-right: none; }
.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
}

/* ---- SECTION HEADERS ---- */
.section-eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-desc {
  color: var(--text-muted);
  max-width: 600px;
  margin: 16px auto 0;
  font-size: 1.05rem;
}

h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

/* ---- TWO COL ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.col-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.col-text .btn { margin-top: 12px; }

/* ---- FEATURE CARDS ---- */
.feature-card-stack { display: flex; flex-direction: column; gap: 20px; }
.feature-card {
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  padding: 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.feature-icon { font-size: 1.8rem; margin-bottom: 12px; display: block; }
.feature-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.feature-card p { color: var(--text-muted); font-size: 0.92rem; }

/* ---- EMERGENCY CTA ---- */
.cta-emergency {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 56px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-icon { font-size: 3rem; flex-shrink: 0; }
.cta-text { flex: 1; min-width: 240px; }
.cta-text h2 { color: white; margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,0.8); font-size: 1rem; }
.cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.cta-or { color: rgba(255,255,255,0.5); font-weight: 600; }
.vhf-badge {
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

/* ---- NEWS ---- */
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.news-card {
  background: var(--off-white);
  padding: 28px;
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--light-gray);
  transition: box-shadow var(--transition), transform var(--transition);
}
.news-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.news-card.featured { border-top-color: var(--gold); background: white; }
.news-date {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 10px;
}
.news-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.news-card p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 16px; }
.news-link {
  color: var(--navy-light);
  font-weight: 600;
  font-size: 0.9rem;
}
.news-link:hover { color: var(--gold); }

/* ---- VOLUNTEER STRIP ---- */
.volunteer-strip {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  padding: 64px 0;
}
.volunteer-inner { text-align: center; }
.volunteer-inner h2 {
  color: white;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}
.volunteer-inner p {
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

/* ---- AWARD HIGHLIGHT BANNER ---- */
.award-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 40px 0;
}
.award-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}
.award-medal {
  font-size: 3.2rem;
  line-height: 1;
  flex-shrink: 0;
}
.award-text { flex: 1; }
.award-eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
}
.award-text h2 {
  font-family: 'Oswald', sans-serif;
  color: white;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  margin-bottom: 10px;
}
.award-text p {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  max-width: 720px;
}
.award-cta { flex-shrink: 0; }
@media (max-width: 720px) {
  .award-inner {
    flex-direction: column;
    text-align: center;
  }
  .award-text p { margin: 0 auto; }
}

/* ---- PAGE HERO ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 72px 0 56px;
}
.page-hero--warning {
  background: linear-gradient(135deg, #1a3a6e 0%, #0a2040 100%);
}
.page-hero--green {
  background: linear-gradient(135deg, var(--green) 0%, #0d4422 100%);
}
.page-hero .section-eyebrow { color: var(--gold); }
.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  color: white;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero p { color: rgba(255,255,255,0.8); max-width: 560px; font-size: 1.05rem; }

/* ---- ABOUT PAGE ---- */
.col-image .image-placeholder {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--light-gray);
}
.col-image .image-placeholder.large { min-height: 320px; }
.col-image { align-self: end; }
.col-image-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.history-photo { margin-top: 40px; }

/* ---- HISTORY ARTICLE ---- */
.history-content {
  max-width: 820px;
  margin: 0 auto;
}
.history-content h2 {
  font-family: 'Oswald', sans-serif;
  color: var(--navy);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.2;
  margin: 56px 0 20px;
  padding-top: 28px;
  border-top: 3px solid var(--gold);
}
.history-content > h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.history-content h3 {
  font-family: 'Oswald', sans-serif;
  color: var(--navy);
  font-size: 1.25rem;
  margin: 36px 0 14px;
}
.history-content p {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 16px;
}
.history-content ul {
  margin: 0 0 18px 1.25em;
  color: var(--text-muted);
}
.history-content li { margin-bottom: 7px; }
.history-content .caption {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--mid-gray);
  border-left: 3px solid var(--light-gray);
  padding-left: 14px;
  margin: 0 0 22px;
}
.history-content blockquote {
  margin: 0 0 22px;
  padding: 4px 22px;
  border-left: 4px solid var(--gold);
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.history-content blockquote p {
  font-style: italic;
  color: var(--text);
}
.history-content blockquote p:last-of-type { margin-bottom: 12px; }
.history-content blockquote cite {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  padding-bottom: 8px;
}
.history-content figure {
  margin: 8px auto 28px;
  text-align: center;
}
.history-content figure img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: inline-block;
}
.history-content figcaption {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--mid-gray);
  margin-top: 10px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--mid-gray);
  font-size: 0.9rem;
}
.placeholder-icon { font-size: 2.5rem; }

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.info-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.info-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.info-card h3 {
  font-family: 'Oswald', sans-serif;
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.info-card p { color: var(--text-muted); font-size: 0.92rem; }

.partner-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  text-align: center;
}
.partner-item p {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 10px;
}
.partner-item small { color: var(--mid-gray); }
.partner-badge {
  width: 72px;
  height: 72px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ---- SERVICES PAGE ---- */
.service-list { display: flex; flex-direction: column; gap: 48px; }
.service-item {
  display: flex;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--light-gray);
}
.service-item:last-child { border-bottom: none; padding-bottom: 0; }
.service-icon-wrap {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon { font-size: 2rem; }
svg.service-icon { width: 2.5rem; height: 2.5rem; color: #D4A017; }
.service-content h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.service-content p { color: var(--text-muted); margin-bottom: 16px; }
.service-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-points li {
  padding-left: 24px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.service-points li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ---- SAFETY PAGE ---- */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.rule-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.rule-num {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.rule-card h3 {
  font-family: 'Oswald', sans-serif;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 10px;
}
.rule-card p { color: var(--text-muted); font-size: 0.88rem; }

/* Accordion */
.accordion { display: flex; flex-direction: column; gap: 8px; }
.accordion-item {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}
.accordion-trigger:hover { background: var(--off-white); }
.accordion-trigger[aria-expanded="true"] { background: var(--navy); color: white; }
.accordion-arrow { font-size: 1.2rem; transition: transform var(--transition); }
.accordion-trigger[aria-expanded="true"] .accordion-arrow { transform: rotate(180deg); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-panel ul {
  padding: 20px 24px 24px 44px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.accordion-panel li { line-height: 1.5; }

/* Resource grid */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.resource-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  text-decoration: none;
  display: block;
  transition: box-shadow var(--transition), transform var(--transition);
  border-bottom: 3px solid transparent;
}
.resource-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-bottom-color: var(--gold);
}
.resource-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.resource-card h3 {
  font-family: 'Oswald', sans-serif;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 8px;
}
.resource-card p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 12px; }
.resource-link { color: var(--gold); font-weight: 600; font-size: 0.85rem; }

/* ---- VOLUNTEER PAGE ---- */
.checklist-card {
  background: var(--navy);
  color: white;
  border-radius: var(--radius-lg);
  padding: 36px;
}
.checklist-card h3 {
  font-family: 'Oswald', sans-serif;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.checklist li {
  padding-left: 28px;
  position: relative;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Timeline */
.timeline { display: flex; flex-direction: column; gap: 0; max-width: 680px; margin: 0 auto; }
.timeline-item {
  display: flex;
  gap: 24px;
  padding-bottom: 40px;
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 52px;
  bottom: 0;
  width: 2px;
  background: var(--light-gray);
}
.timeline-item:last-child::before { display: none; }
.timeline-num {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.timeline-content { flex: 1; padding-top: 8px; }
.timeline-content h3 {
  font-family: 'Oswald', sans-serif;
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.timeline-content p { color: var(--text-muted); font-size: 0.95rem; }

/* Forms */
.form-container { max-width: 720px; margin: 0 auto; }
.volunteer-form, #contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.required { color: var(--red); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px rgba(30,66,120,0.12);
}
.form-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.form-check label { font-size: 0.88rem; color: var(--text-muted); cursor: pointer; }
.form-note { font-size: 0.82rem; color: var(--mid-gray); text-align: center; }
.form-warning {
  background: #fef3cd;
  border: 1px solid #f5c842;
  color: #7a5800;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  margin-bottom: 4px;
}
.form-warning a { color: var(--red); font-weight: 700; }

/* ---- CONTACT PAGE ---- */
.emergency-callout {
  padding: 16px 24px;
}
.emergency-callout-inner {
  background: #fff4e5;
  border: 2px solid #f5a623;
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: #7a4800;
}
.ec-icon { font-size: 1.4rem; flex-shrink: 0; }
.emergency-callout a { color: var(--red); font-weight: 700; }

.contact-layout { align-items: flex-start; }
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-detail-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail strong { display: block; color: var(--navy); margin-bottom: 4px; }
.contact-detail p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 4px; }
.contact-detail small { color: var(--mid-gray); font-size: 0.82rem; }
.contact-detail a { color: var(--navy-light); }

.map-placeholder {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--light-gray);
  margin-top: 24px;
}
.map-placeholder .placeholder-content small { color: var(--mid-gray); font-size: 0.8rem; }

.station-map {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  line-height: 0;
}
.station-map iframe { width: 100%; height: 300px; border: 0; display: block; }
.station-map-note {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 {
  font-family: 'Oswald', sans-serif;
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-title {
  display: block;
  font-family: 'Oswald', sans-serif;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.footer-sub {
  display: block;
  color: var(--gold);
  font-size: 0.75rem;
  margin-bottom: 16px;
}
.footer-desc { font-size: 0.88rem; line-height: 1.6; }
.site-footer h4 {
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-emergency {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.emergency-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--red) !important;
  display: block;
  line-height: 1;
}
.emergency-num:hover { color: #e74c3c !important; }
.footer-emergency p { font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.footer-note a { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer-bottom p {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .partner-grid { grid-template-columns: repeat(3, 1fr); }
  .rules-grid { grid-template-columns: repeat(3, 1fr); }
  .resource-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .three-col { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .service-item { flex-direction: column; }
  .service-icon-wrap { width: 60px; height: 60px; }
}

@media (max-width: 700px) {
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy);
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow-md);
  }
  .main-nav.open { display: flex; }
  .site-header { position: sticky; }
  .nav-toggle { display: flex; }
  .header-inner { position: relative; }
  .three-col { grid-template-columns: 1fr; }
  .rules-grid { grid-template-columns: 1fr 1fr; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .hero-content { padding: 60px 24px 80px; }
  .contact-layout { grid-template-columns: 1fr; }
  .resource-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .rules-grid { grid-template-columns: 1fr; }
  .resource-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .emergency-banner { font-size: 0.8rem; }
}
