/* ═══════════════════════════════════════════════════
   D & E Court Reporting — styles.css
   ═══════════════════════════════════════════════════ */

/* ─── FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Libre+Franklin:wght@300;400;500;600;700&display=swap');

/* ─── DESIGN TOKENS (Light - default) ─── */
:root {
  /* Brand constants (never change) */
  --navy: #0f1e3d;
  --navy-mid: #1a2d54;
  --navy-light: #253d6b;
  --gold: #b89444;
  --gold-light: #d4b06a;
  --serif: 'EB Garamond', Georgia, serif;
  --sans: 'Libre Franklin', sans-serif;

  /* Semantic (theme-switched) */
  --page-bg: #ffffff;
  --page-bg-alt: #f8f7f4;
  --page-bg-cream: #f2f0eb;
  --card-bg: #ffffff;
  --card-border: #e2e0db;
  --text-primary: #2a2a2a;
  --text-secondary: #555555;
  --text-muted: #7a7a7a;
  --text-faint: #a0a0a0;
  --gold-muted-bg: rgba(184,148,68,0.10);
  --gold-border: rgba(184,148,68,0.25);
  --divider: #e2e0db;
  --shadow-sm: 0 1px 3px rgba(15,30,61,0.04);
  --shadow-md: 0 4px 20px rgba(15,30,61,0.07);
  --shadow-lg: 0 8px 40px rgba(15,30,61,0.10);
  --nav-bg: rgba(15,30,61,0.97);
  --modal-bg: #ffffff;
}

/* ─── DARK THEME ─── */
[data-theme="dark"] {
  --page-bg: #0d1117;
  --page-bg-alt: #111827;
  --page-bg-cream: #0f1520;
  --card-bg: #161b28;
  --card-border: #1e293b;
  --text-primary: #e2e8f0;
  --text-secondary: #b0bec5;
  --text-muted: #8899aa;
  --text-faint: #5a6a7a;
  --gold-muted-bg: rgba(201,165,78,0.08);
  --gold-border: rgba(201,165,78,0.18);
  --divider: #1e293b;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.35);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.45);
  --nav-bg: rgba(8,12,24,0.97);
  --modal-bg: #161b28;
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--sans);
  background: var(--page-bg);
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  transition: background 0.35s, color 0.35s;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s, background 0.35s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.15); }

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.nav-logo {
  width: 44px; height: 44px;
  border: 2px solid var(--gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.nav-logo span {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
}
.nav-logo::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(184,148,68,0.3);
  border-radius: 2px;
}

.nav-brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-brand-name {
  font-family: var(--serif);
  font-size: 1.15rem; font-weight: 600;
  color: #fff; letter-spacing: 0.3px;
}
.nav-brand-sub {
  font-size: 0.62rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--gold);
}

.nav-links {
  display: flex; gap: 0;
  list-style: none; align-items: center;
}
.nav-links a {
  display: block;
  padding: 0.5rem 1.1rem;
  text-decoration: none;
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.8px; text-transform: uppercase;
  transition: color 0.25s;
}
.nav-links a:hover { color: #fff; }
.nav-links .nav-cta {
  margin-left: 0.8rem;
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600;
  border-radius: 3px;
  padding: 0.55rem 1.3rem;
  transition: background 0.25s;
}
.nav-links .nav-cta:hover { background: var(--gold-light); }

/* Hamburger */
.hamburger {
  display: none;
  background: none; border: none;
  cursor: pointer; width: 26px; height: 18px;
  position: relative;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: #fff; position: absolute; left: 0;
  transition: all 0.3s;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }

/* ═══════════════════════════════════════
   HERO (always dark navy)
═══════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--navy);
  padding: 10rem 0 6rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(184,148,68,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(37,61,107,0.4) 0%, transparent 50%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.025;
  background-image:
    repeating-linear-gradient(90deg, #fff 0px, #fff 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(0deg, #fff 0px, #fff 1px, transparent 1px, transparent 80px);
}
.hero .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-content { animation: heroFade 1s ease both; }
@keyframes heroFade {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--gold); margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 500; line-height: 1.15;
  color: #fff; margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }

.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.55);
  line-height: 1.75; margin-bottom: 2.2rem; max-width: 480px;
}

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

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--gold); color: var(--navy);
  font-family: var(--sans); font-size: 0.82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.2px;
  text-decoration: none; border: none; border-radius: 3px;
  cursor: pointer; transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent; color: #fff;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1.2px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 3px;
  cursor: pointer; transition: border-color 0.25s, background 0.25s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.04); }

/* Hero benefits card */
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 2.5rem;
  animation: heroFade 1s ease 0.3s both;
}
.hero-card-label {
  font-size: 0.65rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--gold); margin-bottom: 1.5rem;
}
.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
.benefit-list li {
  display: flex; align-items: flex-start; gap: 0.9rem;
  color: rgba(255,255,255,0.75); font-size: 0.92rem; line-height: 1.5;
}
.benefit-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(184,148,68,0.12);
  border: 1px solid rgba(184,148,68,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.benefit-icon svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 2.5; }
.benefit-list strong { color: #fff; font-weight: 600; display: block; font-size: 0.88rem; margin-bottom: 0.1rem; }
.benefit-list span { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* ═══════════════════════════════════════
   SECTIONS (theme-aware)
═══════════════════════════════════════ */
.section { padding: 5.5rem 0; }
.section-light { background: var(--page-bg); }
.section-cream { background: var(--page-bg-alt); }

.section-header { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.65rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 3px; color: var(--gold);
  margin-bottom: 1rem;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ''; width: 20px; height: 1px; background: var(--gold);
}
.section-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500; color: var(--text-primary);
  margin-bottom: 0.8rem; line-height: 1.2;
}
.section-header p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

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

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 6px; padding: 2rem 1.8rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  border-radius: 6px 6px 0 0;
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { border-color: var(--gold-border); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-card:hover::before { opacity: 1; }

.service-num {
  font-family: var(--serif); font-size: 2rem; font-weight: 400;
  color: var(--gold); opacity: 0.35; line-height: 1; margin-bottom: 1rem;
}
.service-card h3 {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 600;
  color: var(--text-primary); margin-bottom: 0.6rem; line-height: 1.3;
}
.service-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ═══════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════ */
.steps-track {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.steps-track::before {
  content: '';
  position: absolute; top: 32px; left: 12.5%; right: 12.5%;
  height: 2px; background: var(--divider); z-index: 0;
}
.step { text-align: center; padding: 0 1rem; position: relative; z-index: 1; }
.step-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--page-bg);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  transition: background 0.35s;
}
.step-circle span { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--gold); }
.step h4 { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.4rem; }
.step p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.about-content h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 500; color: var(--text-primary); margin-bottom: 1rem; line-height: 1.2;
}
.about-content p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1.2rem; line-height: 1.75; }

.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2rem; }
.value-item { display: flex; align-items: flex-start; gap: 0.7rem; }
.value-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 6px; }
.value-item strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.15rem; }
.value-item span { font-size: 0.8rem; color: var(--text-faint); line-height: 1.5; }

/* About stats card (always dark) */
.about-card {
  background: var(--navy); border-radius: 8px;
  padding: 3rem; position: relative; overflow: hidden;
}
.about-card::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px;
  border: 1px solid rgba(184,148,68,0.1); border-radius: 50%;
}
.about-card::after {
  content: ''; position: absolute; bottom: -60px; left: -30px;
  width: 200px; height: 200px;
  border: 1px solid rgba(184,148,68,0.06); border-radius: 50%;
}
.about-card-inner { position: relative; z-index: 1; }
.about-stat { margin-bottom: 2rem; }
.about-stat:last-child { margin-bottom: 0; }
.about-stat-num { font-family: var(--serif); font-size: 2.5rem; font-weight: 400; color: var(--gold); line-height: 1; margin-bottom: 0.3rem; }
.about-stat-label { font-size: 0.78rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.5); }
.about-tagline { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); }
.about-tagline blockquote { font-family: var(--serif); font-size: 1.25rem; font-style: italic; color: rgba(255,255,255,0.7); line-height: 1.5; }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-centered { text-align: center; max-width: 720px; margin: 0 auto; }
.contact-heading {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500; color: var(--text-primary); margin-bottom: 0.8rem; line-height: 1.2;
}
.contact-sub { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 2.5rem; line-height: 1.7; }

.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }

.contact-card-item {
  display: flex; flex-direction: column; align-items: center;
  text-decoration: none;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px; padding: 2.2rem 1.5rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.contact-card-item:hover { border-color: var(--gold-border); box-shadow: var(--shadow-md); transform: translateY(-3px); }

.contact-card-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold-muted-bg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.contact-card-label {
  font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--text-faint); margin-bottom: 0.4rem;
}
.contact-card-value {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 600;
  color: var(--text-primary); margin-bottom: 0.3rem;
}
.contact-card-hint { font-size: 0.78rem; color: var(--text-faint); }
.contact-cta-btn { font-size: 0.82rem; padding: 1rem 2.5rem; }

/* ═══════════════════════════════════════
   CTA BANNER (always dark)
═══════════════════════════════════════ */
.cta-banner {
  background: var(--navy); padding: 4rem 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(184,148,68,0.06) 0%, transparent 70%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 500; color: #fff; margin-bottom: 0.5rem; }
.cta-banner p { font-size: 0.92rem; color: rgba(255,255,255,0.5); margin-bottom: 2rem; }
.cta-banner .btn-primary { font-size: 0.8rem; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--page-bg-alt);
  border-top: 1px solid var(--divider);
  padding: 3rem 0 2rem;
  transition: background 0.35s;
}
.footer-inner { display: flex; justify-content: space-between; align-items: start; gap: 3rem; margin-bottom: 2rem; }
.footer-brand-name { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.4rem; }
.footer-brand-name span { color: var(--gold); }
.footer-tagline { font-family: var(--serif); font-style: italic; font-size: 0.88rem; color: var(--text-faint); }
.footer-links { display: flex; gap: 3rem; }
.footer-col h5 { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-primary); margin-bottom: 0.8rem; }
.footer-col a { display: block; font-size: 0.85rem; color: var(--text-faint); text-decoration: none; margin-bottom: 0.4rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--divider); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.75rem; color: var(--text-faint); }
.footer-legal a { font-size: 0.75rem; color: var(--text-faint); text-decoration: none; margin-left: 1.5rem; transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }

/* ═══════════════════════════════════════
   THEME TOGGLE
═══════════════════════════════════════ */
.theme-toggle {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  z-index: 9999;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: background 0.35s, color 0.35s, border-color 0.35s, transform 0.2s;
}
.theme-toggle:hover { transform: scale(1.08); border-color: var(--gold); }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .icon-moon { display: block; }
.theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }

/* ═══════════════════════════════════════
   MODALS (Privacy / Terms)
═══════════════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  justify-content: center; align-items: flex-start;
  padding: 3rem 1rem; overflow-y: auto;
}
.modal-overlay.active { display: flex; }

.modal {
  background: var(--modal-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  max-width: 720px; width: 100%;
  padding: 2.5rem 3rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  color: var(--text-secondary);
  transition: background 0.35s;
}
.modal-close {
  position: absolute; top: 1rem; right: 1.2rem;
  background: none; border: none;
  font-size: 1.5rem; color: var(--text-faint);
  cursor: pointer; line-height: 1; transition: color 0.2s;
}
.modal-close:hover { color: var(--text-primary); }

.modal h2 { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.4rem; }
.modal .modal-updated { font-size: 0.78rem; color: var(--text-faint); margin-bottom: 1.8rem; }
.modal h3 { font-family: var(--sans); font-size: 0.9rem; font-weight: 600; color: var(--text-primary); margin: 1.6rem 0 0.5rem; text-transform: uppercase; letter-spacing: 0.5px; }
.modal p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 0.8rem; }
.modal ul { margin: 0.5rem 0 1rem 1.2rem; font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; }
.modal li { margin-bottom: 0.3rem; }
.modal a { color: var(--gold); }

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 968px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-track { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .steps-track::before { display: none; }
  .footer-inner { flex-direction: column; gap: 2rem; }
}

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

  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 1.5rem 2rem; gap: 0.5rem;
  }
  .nav-links.open .nav-cta { margin-left: 0; margin-top: 0.5rem; text-align: center; }

  .hero { padding: 8rem 0 4rem; }
  .section { padding: 4rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-track { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .modal { padding: 2rem 1.5rem; }

  .footer-links { flex-direction: column; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .footer-legal a { margin-left: 0; margin-right: 1.5rem; }
}
