:root {
  --bg: #0a0a0f;
  --bg2: #0f0f18;
  --amber: #e8910a;
  --amber-dim: #c47a08;
  --text: #f0ede6;
  --text-muted: #8a8a9a;
  --text-dim: #4a4a5a;
  --border: rgba(232,145,10,0.15);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(232,145,10,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(232,145,10,0.02) 0%, transparent 60%);
  pointer-events: none;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s ease-in-out infinite;
}

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

.eyebrow-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 32px;
  max-width: 900px;
}

.hero-headline em {
  font-style: normal;
  color: var(--amber);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 64px;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 40px;
  max-width: 700px;
}

.hero-stat {
  padding-right: 48px;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 140px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin-right: 48px;
  flex-shrink: 0;
}

.road-mark {
  position: absolute;
  bottom: 0;
  left: 60px;
  right: 60px;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--amber) 0px,
    var(--amber) 40px,
    transparent 40px,
    transparent 70px
  );
  opacity: 0.3;
}

/* ── ENFORCEMENT ── */
.enforcement {
  padding: 100px 60px;
  border-bottom: 1px solid var(--border);
}

.enforcement-inner {
  max-width: 860px;
}

.enforcement-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
}

.enforcement-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 700px;
}

.enforcement-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 56px;
}

.enforcement-facts {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 640px;
}

.fact {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 2px;
}

.fact-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.fact-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fact-text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.fact-text span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── DEFENCE ── */
.defence {
  padding: 100px 60px;
  border-bottom: 1px solid var(--border);
}

.defence-header {
  max-width: 680px;
  margin-bottom: 64px;
}

.section-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.defence-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
}

.defence-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.defence-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  max-width: 900px;
}

.defence-card {
  background: var(--bg);
  padding: 40px;
  position: relative;
}

.card-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: rgba(232,145,10,0.15);
  line-height: 1;
  margin-bottom: 24px;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.card-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ── OFFENCES ── */
.offences {
  padding: 100px 60px;
  border-bottom: 1px solid var(--border);
}

.offences-inner {
  max-width: 1100px;
}

.offences-header {
  margin-bottom: 56px;
}

.offences-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.offences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 40px;
}

.offence-item {
  background: var(--bg);
  padding: 28px 32px;
  transition: background 0.2s;
}

.offence-item:hover {
  background: #0f0f1a;
}

.offence-code {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: 8px;
  font-family: 'Manrope', monospace;
}

.offence-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.offence-desc {
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-muted);
}

.offences-nationwide {
  display: flex;
  justify-content: flex-start;
}

.nationwide-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 12px 20px;
  border: 1px solid var(--border);
}

/* ── CLOSING ── */
.closing {
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(232,145,10,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  max-width: 900px;
  position: relative;
}

.closing-statement {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 40px;
}

.closing-statement strong {
  color: var(--amber);
}

.closing-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 80px;
}

.closing-mark {
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--amber) 0px,
    var(--amber) 60px,
    transparent 60px,
    transparent 100px
  );
  opacity: 0.25;
}

/* ── FOOTER ── */
.footer {
  padding: 60px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 36px;
  height: 36px;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 14px;
  color: #0a0a0f;
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.footer-meta p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-note {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.55;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero, .enforcement, .defence, .offences, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
    margin: 0;
  }

  .hero-stat {
    padding-right: 0;
  }

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

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

  .road-mark {
    left: 24px;
    right: 24px;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 48px;
  }

  .hero-stats {
    gap: 16px;
  }

  .stat-number {
    font-size: 28px;
  }

  .enforcement-facts {
    gap: 12px;
  }

  .defence-card {
    padding: 28px 24px;
  }

  .offence-item {
    padding: 20px 24px;
  }

  .closing-statement {
    font-size: 32px;
  }
}