:root {
  --gold: #FFD100;
  --gold-light: #FFF0A8;
  --gold-pale: #FFFCE8;
  --blue: #003DA5;
  --blue-dark: #00245F;
  --blue-light: #1A6FFF;
  --blue-pale: #E8F0FF;
  --white: #FFFFFF;
  --glass: rgba(255,255,255,0.5);
  --glass-blur: blur(10px);
  --off-white: #FAFAF7;
  --warm-gray: #6B6860;
  --dark: #1A1A18;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ─── ACCESSIBILITY UTILITIES ─── */
.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;
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
.btn:focus-visible,
.form-submit:focus-visible,
.mit:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

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

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

body {
  font-family: var(--sans);
  color: var(--dark);
  background: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 36, 95, 0.6);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 3px solid var(--gold);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(0, 36, 95, 0.85);
  box-shadow: 0 4px 30px rgba(0, 36, 95, 0.25);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--white);
}

.logo-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-transform: uppercase;
}

.logo-text span {
  color: var(--gold);
}

.header-nav {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.header-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--blue-dark) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 209, 0, 0.4);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--blue);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(255, 209, 0, 0.15), transparent),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(26, 111, 255, 0.2), transparent),
    linear-gradient(to right, rgba(0, 36, 95, 0.85) 0%, rgba(0, 36, 95, 0.7) 50%, rgba(0, 36, 95, 0.4) 100%);
}

/* Halifax Saltire */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(135deg,
      transparent 43%, rgba(255, 209, 0, 0.05) 43%, rgba(255, 209, 0, 0.05) 45.5%,
      rgba(255, 209, 0, 0.08) 45.5%, rgba(255, 209, 0, 0.08) 54.5%,
      rgba(255, 209, 0, 0.05) 54.5%, rgba(255, 209, 0, 0.05) 57%, transparent 57%),
    linear-gradient(-135deg,
      transparent 43%, rgba(255, 209, 0, 0.05) 43%, rgba(255, 209, 0, 0.05) 45.5%,
      rgba(255, 209, 0, 0.08) 45.5%, rgba(255, 209, 0, 0.08) 54.5%,
      rgba(255, 209, 0, 0.05) 54.5%, rgba(255, 209, 0, 0.05) 57%, transparent 57%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  animation: fadeUp 0.8s ease-out both;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--gold);
  line-height: 1.35;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.hero-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin-bottom: 2rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--gold);
  color: var(--blue-dark);
}

.btn-primary--blue {
  background: var(--blue-dark);
  color: var(--gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 209, 0, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.stat {
  text-align: left;
}

.stat-number {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

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

.hero-card {
  background: rgba(0, 36, 95, 0.6);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  animation: fadeUp 0.8s 0.2s ease-out both;
  border: 3px solid var(--gold);
}

.hero-card h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.hero-card h2 button {
  all: unset;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.hero-card .card-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.5rem;
}

.hero-card .card-sub a {
  color: var(--gold);
}

/* ─── FORM ─── */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group 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='%23FFD100' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 209, 0, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
  font-size: 0.88rem;
}

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

.form-submit,
.mit {
  display: block;
  width: 100%;
  padding: 0.9rem;
  background: var(--gold);
  color: var(--blue-dark);
  border: none;
  border-radius: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 0.5rem;
  letter-spacing: 0.01em;
  text-align: center;
  text-decoration: none;
}

.form-submit:not(:disabled):hover,
.mit:not(:disabled):hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 209, 0, 0.35);
}

.form-submit:disabled,
.mit:disabled {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.4);
  cursor: not-allowed;
}

.email-tips {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.email-tips h3 {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.email-tips ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.email-tips li {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  padding-left: 1.25rem;
  position: relative;
}

.email-tips li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ─── CITATIONS ─── */
.cite {
  position: relative;
  font-size: 0.65em;
  vertical-align: super;
  line-height: 0;
  font-weight: 700;
  text-decoration: none;
  margin-left: 0.1em;
  color: var(--gold);
  transition: color 0.2s;
}

.cite:hover {
  color: var(--gold-light);
}

.cite::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.4;
  vertical-align: baseline;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

.cite:hover::after,
.cite:focus::after {
  opacity: 1;
}

.forum-section .cite,
.bikes-section .cite,
.highlight-banner .cite {
  color: var(--blue);
}

.forum-section .cite:hover,
.bikes-section .cite:hover,
.highlight-banner .cite:hover {
  color: var(--blue-light);
}

/* ─── SOURCES SECTION ─── */
.sources-section {
  background: var(--dark);
  padding: 3rem 1.5rem;
}

.sources-heading {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.25rem;
}

.sources-list {
  list-style: none;
  counter-reset: sources;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sources-list li {
  counter-increment: sources;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
  padding-left: 2rem;
  position: relative;
}

.sources-list li::before {
  content: counter(sources) ".";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.sources-list a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.sources-list a:hover {
  color: var(--gold);
}

/* ─── INFO SECTIONS ─── */
.section {
  padding: 6rem 1.5rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--blue-dark);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  /* max-width: 700px; */
  letter-spacing: -0.015em;
}

.section-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--warm-gray);
  max-width: 650px;
  margin-bottom: 3rem;
}

/* ─── HIGHLIGHT BANNER ─── */
.highlight-banner {
  background: var(--gold);
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.highlight-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Saltire watermark */
    linear-gradient(135deg,
      transparent 44%, rgba(255, 255, 255, 0.15) 44%, rgba(255, 255, 255, 0.15) 56%, transparent 56%),
    linear-gradient(-135deg,
      transparent 44%, rgba(255, 255, 255, 0.15) 44%, rgba(255, 255, 255, 0.15) 56%, transparent 56%),
    radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.2), transparent 50%),
    radial-gradient(circle at 90% 50%, rgba(0, 61, 165, 0.07), transparent 50%);
}

.highlight-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.highlight-banner h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--blue-dark);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.highlight-banner p {
  font-size: 1.1rem;
  color: rgba(0, 36, 95, 0.7);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* ─── TRANSIT SECTION ─── */
.transit-section {
  background: var(--blue-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.transit-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 80% 20%, rgba(255, 209, 0, 0.08), transparent),
    radial-gradient(ellipse 60% 60% at 10% 80%, rgba(26, 111, 255, 0.1), transparent);
}

.transit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.transit-content .section-label {
  color: var(--gold);
}

.transit-content .section-title {
  color: var(--white);
}

.transit-content .section-desc {
  color: rgba(255, 255, 255, 0.78);
}

.transit-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.transit-points li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.transit-point-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 209, 0, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.transit-point-text h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.transit-point-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

/* ─── FORUM SECTION ─── */
.forum-section {
  background: var(--gold-pale);
}

.forum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.forum-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.forum-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid #ECEADE;
  transition: all 0.3s ease;
}

.forum-point:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 36, 95, 0.06);
}

.forum-point-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.forum-point-text h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 0.2rem;
}

.forum-point-text p {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.55;
}

/* ─── BIKES SECTION ─── */
.bikes-section {
  background: var(--off-white);
}

.bikes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.bikes-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.bike-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid #ECEADE;
  transition: all 0.3s ease;
}

.bike-point:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 36, 95, 0.06);
}

.bike-point-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.bike-point-text h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 0.2rem;
}

.bike-point-text p {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.55;
}

/* ─── ROAD SAFETY SECTION ─── */
.safety-section {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.safety-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(255, 107, 107, 0.06), transparent),
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(255, 209, 0, 0.04), transparent);
}

.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.safety-content .section-label {
  color: #FF6B6B;
}

.safety-content .section-label::before {
  background: #FF6B6B;
}

.safety-content .section-title {
  color: var(--white);
}

.safety-content .section-desc {
  color: rgba(255, 255, 255, 0.78);
}

.safety-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.safety-point {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.safety-stat {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: #FF6B6B;
  line-height: 1;
  min-width: 70px;
  flex-shrink: 0;
}

.safety-point-text h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.safety-point-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

/* responsive grid override moved after all grid definitions — see bottom of section styles */

/* ─── COMMUNITY SAFETY SECTION ─── */
.community-section {
  background: var(--off-white);
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.community-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.community-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid #ECEADE;
  transition: all 0.3s ease;
}

.community-point:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 36, 95, 0.06);
}

.community-point-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.community-point-text h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 0.2rem;
}

.community-point-text p {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.55;
}

.community-section .cite {
  color: var(--blue);
}

.community-section .cite:hover {
  color: var(--blue-light);
}

/* ─── CULTURE SECTION ─── */
.culture-section {
  background: var(--blue-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.culture-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 70% 80%, rgba(255, 209, 0, 0.06), transparent),
    radial-gradient(ellipse 60% 60% at 20% 20%, rgba(26, 111, 255, 0.08), transparent);
}

.culture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.culture-content .section-label {
  color: var(--gold);
}

.culture-content .section-title {
  color: var(--white);
}

.culture-content .section-desc {
  color: rgba(255, 255, 255, 0.78);
}

.culture-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.culture-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.culture-point-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 209, 0, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.culture-point-text h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.culture-point-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .forum-grid,
  .bikes-grid,
  .safety-grid,
  .community-grid,
  .culture-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
}

.footer-brand span {
  color: var(--gold);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.78rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ─── PROPOSED CUTS LIST ─── */
.cuts-section {
  background: var(--blue);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cuts-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      transparent 46%, rgba(255, 209, 0, 0.04) 46%, rgba(255, 209, 0, 0.04) 54%, transparent 54%),
    linear-gradient(-135deg,
      transparent 46%, rgba(255, 209, 0, 0.04) 46%, rgba(255, 209, 0, 0.04) 54%, transparent 54%);
  pointer-events: none;
}

.cuts-section .section-label {
  color: var(--gold);
}

.cuts-section .section-title {
  color: var(--white);
}

.cuts-section .section-desc {
  color: rgba(255, 255, 255, 0.78);
}

.cuts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.cut-item {
  background: #D32F2F;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--white);
  font-weight: 600;
}


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

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.5s; }
.stagger-children .reveal:nth-child(7) { transition-delay: 0.6s; }
.stagger-children .reveal:nth-child(8) { transition-delay: 0.7s; }
.stagger-children .reveal:nth-child(9) { transition-delay: 0.8s; }
.stagger-children .reveal:nth-child(10) { transition-delay: 0.9s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero-bg {
    height: auto;
    bottom: auto;
    width: 100%;
    object-fit: none;
    object-position: unset;
    -webkit-mask-image: linear-gradient(to bottom, #000 40%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 40%, transparent 100%);
  }

  .hero::before,
  .hero::after {
    bottom: auto;
    height: 100vh;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 6rem;
    padding-bottom: 2.5rem;
  }

  /* Card becomes a collapsible section below hero content */
  .hero-card {
    background: var(--blue-dark);
    border: none;
    border-radius: 0;
    border-top: 3px solid var(--gold);
    margin: 2.5rem -1.5rem 0;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    cursor: pointer;
  }

  .hero-card.expanded {
    cursor: default;
  }

  .hero-card h2 {
    padding: 1.25rem 1.5rem;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .hero-card h2::after {
    content: '\25BC';
    font-size: 0.7rem;
    color: var(--gold);
    transition: transform 0.3s ease;
  }

  .hero-card.expanded h2::after {
    transform: rotate(180deg);
  }

  .hero-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 1.5rem;
  }

  .hero-card.expanded .hero-card-body {
    max-height: 800px;
    padding: 0 1.5rem 1.5rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stakes-grid {
    grid-template-columns: 1fr;
  }

  .transit-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .header-nav {
    display: none;
  }

  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--blue-dark);
    padding: 1.5rem;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-menu-btn {
    display: block;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.2rem;
  }

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

  .section {
    padding: 4rem 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

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

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
