/* ============================================================
   Consumer Warning — WPN Motorsports
   Aesthetic: Judicial clarity meets modern editorial design
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Primary palette */
  --navy-900: #0a1628;
  --navy-800: #111d35;
  --navy-700: #162544;
  --navy-600: #1c3054;
  --navy-500: #243d6a;
  --navy-400: #3a5a8c;
  --navy-300: #5a7ab0;

  /* Neutrals */
  --slate-900: #1a1d23;
  --slate-800: #2a2d35;
  --slate-700: #3d4150;
  --slate-600: #555a6b;
  --slate-500: #6e7487;
  --slate-400: #9198aa;
  --slate-300: #b5bac9;
  --slate-200: #d4d8e3;
  --slate-100: #ebedf3;
  --slate-50: #f4f5f8;

  /* Accent — muted reds/ambers */
  --warning-700: #8c2e2e;
  --warning-600: #a63b3b;
  --warning-500: #bf4a4a;
  --warning-400: #d4696d;
  --warning-100: #fbe9ea;
  --amber-600: #b8860b;
  --amber-500: #d49b1a;
  --amber-100: #fdf6e3;

  /* Semantic */
  --bg-primary: #ffffff;
  --bg-secondary: var(--slate-50);
  --bg-dark: var(--navy-900);
  --text-primary: var(--slate-900);
  --text-secondary: var(--slate-600);
  --text-muted: var(--slate-500);
  --text-on-dark: #e8ecf2;
  --border-light: var(--slate-200);
  --border-medium: var(--slate-300);

  /* Typography */
  --font-display: 'Newsreader', 'Georgia', 'Times New Roman', serif;
  --font-body: 'Source Sans 3', 'Helvetica Neue', 'Segoe UI', sans-serif;
  --font-mono: 'DM Mono', 'Consolas', 'Courier New', monospace;

  /* Spacing scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --max-width: 1140px;
  --max-width-narrow: 820px;
  --nav-height: 64px;
  --border-radius: 6px;
  --border-radius-lg: 10px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.06), 0 1px 2px rgba(10, 22, 40, 0.04);
  --shadow-md: 0 4px 12px rgba(10, 22, 40, 0.07), 0 2px 4px rgba(10, 22, 40, 0.04);
  --shadow-lg: 0 12px 36px rgba(10, 22, 40, 0.1), 0 4px 12px rgba(10, 22, 40, 0.05);
  --shadow-xl: 0 24px 60px rgba(10, 22, 40, 0.12), 0 8px 20px rgba(10, 22, 40, 0.06);

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-normal: 350ms;
  --duration-slow: 600ms;
}


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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 24px);
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--navy-500);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

a:hover {
  color: var(--navy-700);
}

::selection {
  background-color: var(--navy-800);
  color: #fff;
}


/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.4rem); }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: 1em;
}

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

strong {
  font-weight: 650;
}


/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-xl);
  padding-right: var(--space-xl);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.section--alt {
  background-color: var(--bg-secondary);
}

.section--dark {
  background-color: var(--bg-dark);
  color: var(--text-on-dark);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #fff;
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section__header h2 {
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

.section__header h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--navy-500);
  margin: var(--space-md) auto 0;
  border-radius: 2px;
}

.section--dark .section__header h2::after {
  background: var(--slate-400);
}

.section__intro {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.section--dark .section__intro {
  color: var(--slate-300);
}


/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

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

.reveal--delay-1 { transition-delay: 100ms; }
.reveal--delay-2 { transition-delay: 200ms; }
.reveal--delay-3 { transition-delay: 300ms; }
.reveal--delay-4 { transition-delay: 400ms; }
.reveal--delay-5 { transition-delay: 500ms; }
.reveal--delay-6 { transition-delay: 600ms; }

.reveal--left {
  transform: translateX(-28px);
}
.reveal--left.is-visible {
  transform: translateX(0);
}

.reveal--right {
  transform: translateX(28px);
}
.reveal--right.is-visible {
  transform: translateX(0);
}

.reveal--scale {
  transform: scale(0.95);
}
.reveal--scale.is-visible {
  transform: scale(1);
}


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.nav.is-scrolled {
  border-bottom-color: var(--border-light);
  box-shadow: 0 1px 8px rgba(10, 22, 40, 0.04);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-900);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav__brand svg {
  flex-shrink: 0;
}

.nav__brand-text {
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  list-style: none;
}

.nav__link {
  display: block;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: color var(--duration-fast) var(--ease-out),
              background-color var(--duration-fast) var(--ease-out);
  letter-spacing: 0.01em;
}

.nav__link:hover {
  color: var(--navy-800);
  background-color: var(--slate-50);
}

.nav__link--active {
  color: var(--navy-800);
  background-color: var(--slate-100);
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  color: var(--navy-800);
}

.nav__toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile menu */
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  padding: var(--space-md);
  z-index: 999;
}

.nav__mobile-menu.is-open {
  display: block;
}

.nav__mobile-menu .nav__link {
  display: block;
  padding: var(--space-md) var(--space-lg);
  font-size: 1rem;
  border-radius: var(--border-radius);
}

.nav__mobile-menu .nav__link:hover {
  background-color: var(--slate-50);
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: calc(var(--nav-height) + var(--space-2xl));
  padding-bottom: var(--space-3xl);
  background: #ffffff;
  color: var(--text-primary);
  overflow: hidden;
}

/* Background overlays disabled for white hero */
.hero::before,
.hero::after {
  display: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--space-xl);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: var(--warning-100);
  border: 1px solid rgba(191, 74, 74, 0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--warning-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-xl);
}

.hero__badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.hero__photo {
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.hero__photo-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  border: 3px solid var(--slate-200);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  filter: grayscale(100%);
}

.hero__photo-caption {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--slate-400);
  letter-spacing: 0.03em;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4.2vw, 2.5rem);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--warning-600);
  margin-bottom: var(--space-lg);
  line-height: 1.4;
  font-family: var(--font-display);
}

.hero__summary {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
}

.hero__summary strong {
  color: var(--navy-900);
  font-weight: 600;
}

.hero__businesses {
  margin-top: 0;
  margin-bottom: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.hero__biz-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__biz-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.hero__biz-tag {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--navy-800);
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: 4px;
  padding: 3px 10px;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out);
}

a.hero__biz-tag::before {
  content: '🔗 ';
  font-size: 0.65rem;
}

a.hero__biz-tag:hover {
  background: var(--slate-200);
  border-color: var(--slate-300);
}

a.hero__biz-label {
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

a.hero__biz-label:hover {
  color: var(--navy-500);
}

/* Decorative bottom edge */
.hero__edge {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 48px;
  z-index: 2;
}

.hero__edge svg {
  display: block;
  width: 100%;
  height: 100%;
}


/* ============================================================
   KEY FACTS STRIP
   ============================================================ */
.key-facts {
  padding: var(--space-lg) 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
}

.key-facts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  max-width: 500px;
  margin: 0 auto;
}

.key-fact {
  text-align: center;
  padding: var(--space-lg);
}

.key-fact__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.key-fact__value {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}

.key-fact__value--warning {
  color: var(--warning-600);
}


/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

/* Central vertical line */
.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--border-light) 0%,
    var(--navy-300) 10%,
    var(--navy-300) 90%,
    var(--border-light) 100%
  );
}

.timeline__item {
  position: relative;
  padding-left: 72px;
  padding-bottom: var(--space-lg);
}

.timeline__item:last-child {
  padding-bottom: 0;
}

/* Timeline node */
.timeline__node {
  position: absolute;
  left: 16px;
  top: 4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--navy-400);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: border-color var(--duration-normal) var(--ease-out),
              background var(--duration-normal) var(--ease-out);
}

.timeline__node svg {
  width: 12px;
  height: 12px;
  color: var(--navy-400);
}

/* Node variations */
.timeline__item--alert .timeline__node {
  border-color: var(--warning-500);
  background: var(--warning-100);
}
.timeline__item--alert .timeline__node svg {
  color: var(--warning-500);
}

.timeline__item--legal .timeline__node {
  border-color: var(--navy-600);
  background: var(--navy-900);
}
.timeline__item--legal .timeline__node svg {
  color: #fff;
}

.timeline__item--final .timeline__node {
  border-color: var(--warning-600);
  background: var(--warning-600);
  width: 30px;
  height: 30px;
  left: 14px;
}
.timeline__item--final .timeline__node svg {
  color: #fff;
  width: 14px;
  height: 14px;
}

.timeline__date {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy-500);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-xs);
}

.timeline__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 650;
  color: var(--navy-900);
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.timeline__body {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-secondary);
}


/* ============================================================
   COURT OUTCOME
   ============================================================ */
.court-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.court-info {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
}

.court-info__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.court-info__value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: var(--space-lg);
}

.court-info__value:last-child {
  margin-bottom: 0;
}

.court-facts {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
}

.court-facts__heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 650;
  color: var(--navy-900);
  margin-bottom: var(--space-lg);
}

.court-facts__list {
  list-style: none;
  padding: 0;
}

.court-facts__list li {
  position: relative;
  padding-left: var(--space-xl);
  padding-bottom: var(--space-md);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.court-facts__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy-400);
}

/* Judgement highlight box */
.judgement-box {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: #fff;
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl) var(--space-2xl);
  margin-top: var(--space-2xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.judgement-box__amount {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.judgement-box__amount small {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-300);
  letter-spacing: 0;
  margin-bottom: var(--space-xs);
}

.judgement-box__detail {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--slate-300);
}

.judgement-box__detail strong {
  color: #fff;
}

/* Explanatory note */
.explanatory-note {
  margin-top: var(--space-2xl);
  padding: var(--space-xl) var(--space-2xl);
  background: var(--slate-50);
  border-left: 3px solid var(--navy-400);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.explanatory-note strong {
  color: var(--navy-800);
}


/* ============================================================
   FINANCIAL SUMMARY CARDS
   ============================================================ */
.finance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.finance-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.finance-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.finance-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.finance-card__icon svg {
  width: 22px;
  height: 22px;
}

.finance-card__icon--paid {
  background: rgba(36, 61, 106, 0.08);
  color: var(--navy-500);
}

.finance-card__icon--zero {
  background: rgba(191, 74, 74, 0.08);
  color: var(--warning-500);
}

.finance-card__icon--court {
  background: rgba(10, 22, 40, 0.08);
  color: var(--navy-800);
}

.finance-card__icon--recovered {
  background: rgba(191, 74, 74, 0.08);
  color: var(--warning-600);
}

.finance-card__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.finance-card__amount {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
}

.finance-card__amount--warning {
  color: var(--warning-600);
}

.finance-card__details {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--border-light);
  padding-top: var(--space-md);
}

.finance-card__details li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: var(--space-xs) 0;
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  line-height: 1.5;
}

.finance-card__details li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--slate-300);
  flex-shrink: 0;
  margin-top: 6px;
}


/* ============================================================
   BUSINESS HISTORY TABLE
   ============================================================ */
.business-table-wrapper {
  overflow-x: auto;
  margin-top: var(--space-xl);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.business-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.business-table thead th {
  background: var(--navy-900);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-lg) var(--space-xl);
  text-align: left;
}

.business-table tbody td {
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
}

.business-table tbody tr:last-child td {
  border-bottom: none;
}

.business-table tbody tr:nth-child(even) {
  background: var(--slate-50);
}

.business-table tbody tr:hover {
  background: rgba(36, 61, 106, 0.03);
}

.business-table .business-name {
  font-weight: 600;
  color: var(--navy-900);
}

.business-name--link {
  text-decoration: none;
  color: var(--navy-900);
  transition: color var(--duration-fast) var(--ease-out);
}

.business-name--link:hover {
  color: var(--navy-500);
}

/* Highlight row */
.business-table tbody tr.row--highlight {
  background: var(--warning-100);
}

.business-table tbody tr.row--highlight:hover {
  background: #f8dfe0;
}

.business-table tbody tr.row--highlight td {
  border-bottom-color: rgba(191, 74, 74, 0.15);
}

.business-table .row-note {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--warning-600);
  background: rgba(191, 74, 74, 0.08);
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: var(--space-sm);
  vertical-align: middle;
}

.business-source {
  margin-top: var(--space-lg);
  font-size: 0.88rem;
  color: var(--text-muted);
}

.business-source a {
  color: var(--navy-500);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Opinion callout */
.opinion-callout {
  margin-top: var(--space-2xl);
  padding: var(--space-xl) var(--space-2xl);
  background: var(--amber-100);
  border: 1px solid rgba(180, 134, 11, 0.2);
  border-radius: var(--border-radius-lg);
  position: relative;
}

.opinion-callout__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber-600);
  margin-bottom: var(--space-md);
}

.opinion-callout__label svg {
  width: 16px;
  height: 16px;
}

.opinion-callout p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--slate-700);
}


/* ============================================================
   EVIDENCE GRID
   ============================================================ */
.evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.evidence-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  transition: border-color var(--duration-normal) var(--ease-out),
              background var(--duration-normal) var(--ease-out);
}

.evidence-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.09);
}

.evidence-card__number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--slate-400);
  margin-bottom: var(--space-md);
  letter-spacing: 0.05em;
}

.evidence-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 650;
  color: #fff;
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.evidence-card__body {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--slate-400);
}

.evidence-note {
  margin-top: var(--space-2xl);
  text-align: center;
  font-size: 0.9rem;
  color: var(--slate-400);
  font-style: italic;
}


/* ============================================================
   RIGHT OF REPLY
   ============================================================ */
.reply-content {
  max-width: 720px;
  margin: 0 auto;
}

.reply-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
}

.reply-items {
  list-style: none;
  padding: 0;
}

.reply-item {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border-light);
}

.reply-item:first-child {
  padding-top: 0;
}

.reply-item:last-child {
  border-bottom: none;
}

.reply-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--slate-50);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-500);
}

.reply-item__icon svg {
  width: 18px;
  height: 18px;
}

.reply-item__title {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1rem;
  color: var(--navy-900);
  margin-bottom: var(--space-xs);
}

.reply-item__body {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.reply-contact {
  margin-top: var(--space-2xl);
  padding: var(--space-xl) var(--space-2xl);
  background: var(--slate-50);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  text-align: center;
}

.reply-contact__label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.reply-contact__email {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--navy-600);
}

.reply-closing {
  margin-top: var(--space-xl);
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-align: center;
  font-style: italic;
}


/* ============================================================
   DISCLAIMER
   ============================================================ */
.disclaimer-content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.disclaimer-content p {
  margin-bottom: var(--space-lg);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-900);
  color: var(--slate-400);
  padding: var(--space-3xl) 0 var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-3xl);
}

.footer__about-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-300);
  margin-bottom: var(--space-md);
}

.footer__about p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--slate-400);
  margin-bottom: var(--space-md);
}

.footer__meta-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-300);
  margin-bottom: var(--space-md);
}

.footer__meta p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--slate-400);
}

.footer__divider {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: var(--space-2xl) 0 var(--space-xl);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--slate-500);
}

.footer__bottom a {
  color: var(--slate-400);
}

.footer__bottom a:hover {
  color: var(--slate-200);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .evidence-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --space-4xl: 4rem;
    --space-5xl: 5rem;
  }

  .container {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }

  /* Nav mobile */
  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: block;
  }

  /* Hero */
  .hero {
    padding-top: calc(var(--nav-height) + var(--space-3xl));
    padding-bottom: var(--space-3xl);
  }

  .hero__inner {
    padding: 0 var(--space-lg);
  }

  /* Key facts */
  .key-facts__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  /* Court details */
  .court-details {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .judgement-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Finance grid */
  .finance-grid {
    grid-template-columns: 1fr;
  }

  /* Evidence grid */
  .evidence-grid {
    grid-template-columns: 1fr;
  }

  /* Business table */
  .business-table {
    font-size: 0.88rem;
  }

  .business-table thead th,
  .business-table tbody td {
    padding: var(--space-md) var(--space-lg);
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .key-facts__grid {
    grid-template-columns: 1fr;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .timeline::before {
    left: 18px;
  }

  .timeline__node {
    left: 6px;
    width: 24px;
    height: 24px;
  }

  .timeline__item--final .timeline__node {
    left: 4px;
    width: 28px;
    height: 28px;
  }

  .timeline__item {
    padding-left: 52px;
  }

  .reply-item {
    flex-direction: column;
    gap: var(--space-md);
  }
}


/* --- Print styles --- */
@media print {
  .nav,
  .hero__edge {
    display: none;
  }

  .hero {
    background: #fff;
    color: #000;
    padding-top: var(--space-xl);
  }

  .hero__title,
  .hero__subtitle {
    color: #000;
  }

  .section--dark {
    background: #fff;
    color: #000;
  }

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

  body {
    font-size: 11pt;
  }
}
