/* ==========================================================================
   TITLE IX LAW — Design Tokens
   Concept: sober, authoritative legal advocacy for students. Navy = trust,
   institutional gravity. Crimson = the firm's existing HLAW brand accent,
   used sparingly for CTAs and emphasis. Warm off-white surfaces avoid the
   coldness of pure white/gray "corporate law" clichés.
   ========================================================================== */

:root,
[data-theme='light'] {
  /* Surfaces */
  --color-bg: #faf9f6;
  --color-surface: #ffffff;
  --color-surface-2: #f5f3ee;
  --color-surface-offset: #eeebe3;
  --color-surface-offset-2: #e6e2d8;
  --color-surface-dynamic: #dfdbcf;
  --color-divider: #e1ddd3;
  --color-border: #d6d1c3;

  /* Text */
  --color-text: #14202f;
  --color-text-muted: #57616e;
  --color-text-faint: #98a0a9;
  --color-text-inverse: #f7f6f2;

  /* Primary — Deep Navy (institutional, authoritative) */
  --color-primary: #16294a;
  --color-primary-hover: #0f1d36;
  --color-primary-active: #0a1526;
  --color-primary-highlight: #dbe1eb;

  /* Accent — Crimson (HLAW brand tie-in, CTAs & emphasis only) */
  --color-accent: #a6192e;
  --color-accent-hover: #8a1425;
  --color-accent-active: #6e0f1d;
  --color-accent-highlight: #f3dee1;

  /* Success / Warning (used sparingly, form states) */
  --color-success: #2f6f4e;
  --color-success-highlight: #d9ead8;
  --color-warning: #96541b;
  --color-warning-highlight: #ecdccb;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1.25rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows (cool navy-tinted) */
  --shadow-sm: 0 1px 2px oklch(0.2 0.02 250 / 0.08);
  --shadow-md: 0 6px 20px oklch(0.2 0.02 250 / 0.1);
  --shadow-lg: 0 20px 48px oklch(0.2 0.02 250 / 0.16);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 1000px;
  --content-wide: 1240px;
  --content-full: 100%;

  /* Fonts */
  --font-display: 'Cabinet Grotesk', 'Arial Black', sans-serif;
  --font-body: 'Satoshi', 'Inter', sans-serif;
}

[data-theme='dark'] {
  --color-bg: #0b1220;
  --color-surface: #101a2c;
  --color-surface-2: #132034;
  --color-surface-offset: #17253b;
  --color-surface-offset-2: #1c2c45;
  --color-surface-dynamic: #24344d;
  --color-divider: #22314a;
  --color-border: #2b3c57;

  --color-text: #eef0f4;
  --color-text-muted: #a9b2c0;
  --color-text-faint: #6c7789;
  --color-text-inverse: #14202f;

  --color-primary: #4f6fa3;
  --color-primary-hover: #6d8ac0;
  --color-primary-active: #8ba5d3;
  --color-primary-highlight: #1c2c48;

  --color-accent: #d3495f;
  --color-accent-hover: #e0697c;
  --color-accent-active: #ec8e9c;
  --color-accent-highlight: #3a1e26;

  --color-success: #6fbf90;
  --color-success-highlight: #1c3327;
  --color-warning: #d99a5b;
  --color-warning-highlight: #3a2a18;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
  --shadow-md: 0 6px 20px oklch(0 0 0 / 0.35);
  --shadow-lg: 0 20px 48px oklch(0 0 0 / 0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #0b1220;
    --color-surface: #101a2c;
    --color-surface-2: #13203d;
    --color-surface-offset: #17253b;
    --color-surface-offset-2: #1c2c45;
    --color-surface-dynamic: #24344d;
    --color-divider: #22314a;
    --color-border: #2b3c57;
    --color-text: #eef0f4;
    --color-text-muted: #a9b2c0;
    --color-text-faint: #6c7789;
    --color-text-inverse: #14202f;
    --color-primary: #4f6fa3;
    --color-primary-hover: #6d8ac0;
    --color-primary-active: #8ba5d3;
    --color-primary-highlight: #1c2c48;
    --color-accent: #d3495f;
    --color-accent-hover: #e0697c;
    --color-accent-active: #ec8e9c;
    --color-accent-highlight: #3a1e26;
    --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
    --shadow-md: 0 6px 20px oklch(0 0 0 / 0.35);
    --shadow-lg: 0 20px 48px oklch(0 0 0 / 0.5);
  }
}

/* Fixed ink navy — used for dark decorative bands (hero, stats, footer)
   so they stay visually anchored regardless of light/dark theme. */
:root {
  --color-ink: #101b30;
  --color-ink-2: #0a1220;
  --color-oninert: #f7f6f2;
}

/* Type scale */
:root {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.125rem);
  --text-2xl: clamp(1.9rem, 1.2rem + 2.5vw, 3.25rem);
  --text-3xl: clamp(2.3rem, 1rem + 3.6vw, 4.5rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
}

/* ==========================================================================
   Layout primitives
   ========================================================================== */

.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
.container--narrow {
  max-width: var(--content-narrow);
}
.container--default {
  max-width: var(--content-default);
}

section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--color-accent);
  display: inline-block;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

h2.section-title {
  font-size: var(--text-2xl);
  font-weight: 800;
  margin-block: var(--space-4) var(--space-5);
  max-width: 20ch;
}
.section-lede {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 62ch;
  font-weight: 400;
}
.section-head {
  margin-bottom: var(--space-12);
}
.section-head.center {
  text-align: center;
  margin-inline: auto;
}
.section-head.center .section-lede {
  margin-inline: auto;
}

p.body-text {
  color: var(--color-text-muted);
  max-width: 65ch;
  font-size: var(--text-base);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-md);
  white-space: nowrap;
  border: 1px solid transparent;
  min-height: 48px;
  text-decoration: none;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.btn-primary:active {
  background: var(--color-accent-active);
  transform: translateY(0);
}
.btn-outline {
  background: transparent;
  border: 1px solid oklch(from var(--color-oninert) l c h / 0.35);
  color: var(--color-oninert);
}
.btn-outline:hover {
  background: oklch(from var(--color-oninert) l c h / 0.1);
}
.btn-outline.on-light {
  border: 1px solid oklch(from var(--color-text) l c h / 0.2);
  color: var(--color-text);
}
.btn-outline.on-light:hover {
  background: oklch(from var(--color-text) l c h / 0.06);
}
.btn-sm {
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-xs);
  min-height: 40px;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-divider);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease;
}
.site-header--hidden {
  transform: translateY(-100%);
}
.site-header--scrolled {
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: var(--space-4);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text);
  text-decoration: none;
}
.brand-hlaw-logo {
  height: 34px;
  width: auto;
  flex-shrink: 0;
  display: block;
}
.brand-hlaw-logo--dark {
  display: none;
}
[data-theme="dark"] .brand-hlaw-logo--light {
  display: none;
}
[data-theme="dark"] .brand-hlaw-logo--dark {
  display: block;
}
.brand-divider {
  width: 1px;
  height: 30px;
  background: var(--color-divider);
  flex-shrink: 0;
}
.brand-word {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-word strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  letter-spacing: 0.01em;
}
.brand-word strong .accent {
  color: var(--color-accent);
}
.brand-word > span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

@media (max-width: 560px) {
  .brand {
    gap: var(--space-2);
  }
  .brand-hlaw-logo {
    height: 24px;
  }
  .brand-divider {
    display: none;
  }
  .brand-word > span {
    display: none;
  }
  .brand-word strong {
    font-size: var(--text-base);
  }
}

.main-nav {
  display: none;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}
.main-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
}
.main-nav a:hover {
  color: var(--color-text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.header-phone {
  display: none;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
}
.header-phone svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
}

.theme-toggle,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  color: var(--color-text);
}
.theme-toggle:hover,
.menu-toggle:hover {
  background: var(--color-surface-offset);
}
.theme-toggle svg,
.menu-toggle svg {
  width: 19px;
  height: 19px;
}
.menu-toggle {
  display: inline-flex;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  top: 73px;
  background: var(--color-bg);
  z-index: 90;
  padding: var(--space-8) var(--space-5);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  overflow-y: auto;
}
.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  list-style: none;
}
.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  padding-block: var(--space-3);
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-divider);
}
.mobile-nav .btn {
  margin-top: var(--space-8);
  width: 100%;
}
.mobile-nav .header-phone {
  display: flex;
  margin-top: var(--space-4);
  font-size: var(--text-lg);
  justify-content: center;
}

@media (min-width: 900px) {
  .main-nav {
    display: block;
  }
  .header-phone {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .mobile-nav {
    display: none;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  color: var(--color-oninert);
  overflow: hidden;
  padding-block: clamp(var(--space-24), 14vw, var(--space-32))
    clamp(var(--space-16), 8vw, var(--space-24));
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    oklch(0.1 0.03 255 / 0.82) 0%,
    oklch(0.1 0.03 255 / 0.9) 55%,
    oklch(0.08 0.03 255 / 0.97) 100%
  );
}
.hero-content {
  position: relative;
  max-width: 760px;
}
.hero .eyebrow {
  color: var(--color-accent);
}
.hero .eyebrow::before {
  background: var(--color-accent);
}
.hero h1 {
  font-size: var(--text-3xl);
  font-weight: 800;
  margin-block: var(--space-5) var(--space-6);
}
.hero-lede {
  font-size: var(--text-lg);
  color: oklch(from var(--color-oninert) l c h / 0.82);
  max-width: 58ch;
  margin-bottom: var(--space-8);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6) var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid oklch(from var(--color-oninert) l c h / 0.18);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: oklch(from var(--color-oninert) l c h / 0.78);
  max-width: 220px;
}
.hero-trust-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #f0a3ac;
}

/* ==========================================================================
   Stats bar
   ========================================================================== */

.stats-bar {
  background: var(--color-ink);
  color: #f7f6f2;
  padding-block: var(--space-10);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: #fff;
}
.stat-label {
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  color: oklch(from var(--color-oninert) l c h / 0.72);
  margin-top: var(--space-1);
}
@media (min-width: 700px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   Explainer (What is Title IX)
   ========================================================================== */

.explainer {
  display: grid;
  gap: var(--space-12);
  align-items: center;
}
.explainer-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.explainer-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.explainer-badge {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  right: var(--space-5);
  background: oklch(from var(--color-primary) l c h / 0.92);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  font-weight: 600;
  line-height: 1.5;
}
.explainer-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  margin-bottom: var(--space-1);
}
@media (min-width: 900px) {
  .explainer {
    grid-template-columns: 1fr 0.9fr;
  }
  .explainer.reverse {
    grid-template-columns: 0.9fr 1fr;
  }
  .explainer.reverse .explainer-media {
    order: 2;
  }
}

/* ==========================================================================
   Who we represent — cards
   ========================================================================== */

.represent-grid {
  display: grid;
  gap: var(--space-6);
}
@media (min-width: 760px) {
  .represent-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.represent-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
}
.represent-card .tag {
  display: inline-flex;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}
.represent-card.respondent .tag {
  background: var(--color-accent-highlight);
  color: var(--color-accent);
}
.represent-card.complainant .tag {
  background: var(--color-primary-highlight);
  color: var(--color-primary);
}
.represent-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-3);
}
.represent-card p {
  color: var(--color-text-muted);
}

/* ==========================================================================
   Services grid
   ========================================================================== */

.services-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}
.service-icon svg {
  width: 24px;
  height: 24px;
}
.service-card h3 {
  font-size: var(--text-base);
  font-weight: 700;
  font-family: var(--font-body);
  margin-bottom: var(--space-2);
}
.service-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ==========================================================================
   Process timeline
   ========================================================================== */

.process-list {
  display: grid;
  gap: var(--space-8);
  position: relative;
}
@media (min-width: 860px) {
  .process-list {
    grid-template-columns: repeat(4, 1fr);
  }
  .process-list::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 6%;
    right: 6%;
    height: 1px;
    background: var(--color-divider);
    z-index: 0;
  }
}
.process-step {
  position: relative;
  z-index: 1;
}
.process-num {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  margin-bottom: var(--space-5);
}
.process-step h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.process-step p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ==========================================================================
   Why choose us (dark band)
   ========================================================================== */

.why-band {
  background: var(--color-ink);
  color: #f7f6f2;
  position: relative;
  overflow: hidden;
}
.why-band::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 160%;
  background: radial-gradient(
    circle,
    oklch(from var(--color-accent) l c h / 0.28) 0%,
    transparent 70%
  );
  z-index: 0;
}
.why-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-12);
}
@media (min-width: 900px) {
  .why-inner {
    grid-template-columns: 1fr 1fr;
  }
}
.why-band .eyebrow {
  color: #f0a3ac;
}
.why-band .eyebrow::before {
  background: #f0a3ac;
}
.why-band h2 {
  font-size: var(--text-2xl);
  font-weight: 800;
  margin-block: var(--space-4) var(--space-5);
}
.why-band p.body-text {
  color: oklch(from var(--color-oninert) l c h / 0.78);
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.why-item {
  display: flex;
  gap: var(--space-4);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid oklch(from var(--color-oninert) l c h / 0.14);
}
.why-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.why-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #f0a3ac;
  margin-top: 2px;
}
.why-item strong {
  display: block;
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}
.why-item span {
  font-size: var(--text-sm);
  color: oklch(from var(--color-oninert) l c h / 0.72);
}

/* ==========================================================================
   Attorneys
   ========================================================================== */

.attorney-grid {
  display: grid;
  gap: var(--space-8);
}
@media (min-width: 760px) {
  .attorney-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.attorney-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
@media (min-width: 500px) {
  .attorney-card {
    grid-template-columns: 160px 1fr;
  }
}
.attorney-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.attorney-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.attorney-info h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  font-family: var(--font-display);
}
.attorney-info .role {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
  display: block;
}
.attorney-info p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.attorney-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}
.attorney-badges span {
  font-size: var(--text-xs);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: var(--color-surface-offset);
  color: var(--color-text-muted);
  font-weight: 600;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list {
  max-width: var(--content-narrow);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  text-align: left;
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--color-text);
}
.faq-question svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform var(--transition-interactive);
}
.faq-item[data-open='true'] .faq-question svg {
  transform: rotate(45deg);
}
.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer-inner {
  padding: 0 var(--space-6) var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ==========================================================================
   Contact / CTA
   ========================================================================== */

.contact-section {
  display: grid;
  gap: var(--space-10);
}
@media (min-width: 940px) {
  .contact-section {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}
.office-card {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--color-surface-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}
.office-card svg {
  width: 22px;
  height: 22px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.office-card strong {
  display: block;
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}
.office-card span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  display: block;
}
.office-card a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 600;
}

.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
@media (min-width: 520px) {
  .form-row.two {
    grid-template-columns: 1fr 1fr;
  }
}
.field label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-2);
  font-size: var(--text-base);
  color: var(--color-text);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--color-accent);
  background: var(--color-surface);
}
.field textarea {
  min-height: 110px;
  resize: vertical;
}
.form-disclaimer {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-3);
}
.form-success {
  display: none;
  align-items: center;
  gap: var(--space-3);
  background: var(--color-success-highlight);
  color: var(--color-success);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-top: var(--space-4);
}
.form-success.visible {
  display: flex;
}
.form-success svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.form-error {
  display: none;
  align-items: center;
  gap: var(--space-3);
  background: var(--color-accent-highlight);
  color: var(--color-accent);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-top: var(--space-4);
}
.form-error.visible {
  display: flex;
}
.form-error svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.btn-primary[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--color-ink-2);
  color: #f7f6f2;
  padding-block: var(--space-16) var(--space-8);
}
.footer-top {
  display: grid;
  gap: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid oklch(from var(--color-oninert) l c h / 0.14);
  margin-bottom: var(--space-8);
}
@media (min-width: 800px) {
  .footer-top {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}
.footer-brand .brand {
  color: #fff;
  margin-bottom: var(--space-4);
}
.footer-brand .brand-hlaw-logo {
  height: 38px;
}
.footer-brand .brand-divider {
  background: oklch(from var(--color-oninert) l c h / 0.25);
}
.footer-brand .brand-word strong {
  color: #fff;
}
.footer-brand .brand-word span {
  color: oklch(from var(--color-oninert) l c h / 0.6);
}
.footer-brand p {
  font-size: var(--text-sm);
  color: oklch(from var(--color-oninert) l c h / 0.65);
  max-width: 34ch;
}
.footer-col h4 {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: oklch(from var(--color-oninert) l c h / 0.5);
  margin-bottom: var(--space-4);
  font-weight: 700;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  list-style: none;
}
.footer-col a {
  font-size: var(--text-sm);
  color: oklch(from var(--color-oninert) l c h / 0.82);
  text-decoration: none;
}
.footer-col a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: oklch(from var(--color-oninert) l c h / 0.55);
}
.footer-bottom a {
  color: inherit;
  text-decoration: underline;
}
.footer-disclaimer {
  max-width: 80ch;
  font-size: var(--text-xs);
  color: oklch(from var(--color-oninert) l c h / 0.45);
  margin-top: var(--space-6);
  line-height: 1.6;
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Sticky mobile CTA bar
   ========================================================================== */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  display: flex;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}
.sticky-cta .btn {
  flex: 1;
}
@media (min-width: 900px) {
  .sticky-cta {
    display: none;
  }
}

@media (max-width: 899px) {
  body {
    padding-bottom: 76px;
  }
}
