/* ==========================================================================
   Jackie Lacey — Editorial Legal Counsel Site
   ========================================================================== */

:root {
  --ink: #0a1628;
  --ink-soft: #1a2538;
  --ink-muted: #5a6478;
  --gold: #c9a961;
  --gold-deep: #a88840;
  --burgundy: #5c1f1f;
  --cream: #f8f5f0;
  --paper: #fdfbf7;
  --line: rgba(10, 22, 40, 0.12);
  --line-soft: rgba(10, 22, 40, 0.06);

  --serif: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.04), 0 2px 8px rgba(10, 22, 40, 0.04);
  --shadow-md: 0 4px 12px rgba(10, 22, 40, 0.06), 0 12px 40px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 24px 80px rgba(10, 22, 40, 0.18);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
::selection { background: var(--gold); color: var(--ink); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.75rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.125rem, 2vw, 1.375rem); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.lede { font-size: clamp(1.125rem, 1.6vw, 1.375rem); line-height: 1.55; color: var(--ink-soft); font-weight: 300; }
.subtle { color: var(--ink-muted); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.container-narrow { max-width: 880px; }

section { padding-block: clamp(4rem, 10vh, 8rem); position: relative; }
.section-head { max-width: 780px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .eyebrow { margin-bottom: 1.25rem; }
.section-head h2 { margin-bottom: 1.25rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.875rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 169, 97, 0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  transform: translateY(-2px);
}
.btn-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(248, 245, 240, 0.4);
}
.btn-light:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.btn .arrow { transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.5rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s var(--ease);
  backdrop-filter: blur(0);
}
.nav.is-scrolled {
  padding-block: 0.875rem;
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line-soft);
}
.nav.is-dark { color: var(--cream); }
.nav.is-dark.is-scrolled { color: var(--ink); }

.nav-brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-brand small {
  font-family: var(--sans);
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 4px;
  opacity: 0.7;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-menu a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding-block: 0.5rem;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  inset: auto 0 0 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s var(--ease);
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; left: 0; }
.nav-menu a.active { color: var(--gold-deep); }

.nav-cta { padding: 0.75rem 1.5rem; font-size: 0.75rem; }

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: currentColor;
  transition: all 0.3s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu — hidden by default at all widths */
.nav-mobile { display: none; }

@media (max-width: 960px) {
  .nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile {
    position: fixed;
    inset: 0;
    background: var(--ink);
    color: var(--cream);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: var(--gutter);
    transform: translateY(-100%);
    transition: transform 0.6s var(--ease);
  }
  .nav-mobile.is-open { transform: translateY(0); }
  .nav-mobile a {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--cream);
  }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: flex-end;
  padding-block: 8rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201, 169, 97, 0.15), transparent 50%),
    radial-gradient(ellipse at 0% 80%, rgba(92, 31, 31, 0.2), transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(248, 245, 240, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 245, 240, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  width: 100%;
  position: relative;
  z-index: 2;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.4fr 1fr; align-items: end; gap: 5rem; }
}

.hero-eyebrow {
  color: var(--gold);
  margin-bottom: 2rem;
}
.hero-eyebrow::before { background: var(--gold); }

.hero h1 {
  font-weight: 400;
  margin-bottom: 2rem;
}
.hero h1 .accent {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.hero h1 .line { display: block; overflow: hidden; padding-block: 0.06em; }
.hero h1 .line span { display: inline-block; will-change: transform; }

.hero-lede {
  max-width: 540px;
  margin-bottom: 3rem;
  color: rgba(248, 245, 240, 0.75);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  font-weight: 300;
}

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

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(248, 245, 240, 0.15);
}
.hero-meta dt {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.hero-meta dd {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.3;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(248, 245, 240, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(0.3); transform-origin: top; opacity: 0.4; }
}

/* ---------- Page Hero (subpages) ---------- */
.page-hero {
  background: var(--ink);
  color: var(--cream);
  padding: 11rem var(--gutter) 6rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(201, 169, 97, 0.18), transparent 60%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--gold); margin-bottom: 1.5rem; }
.page-hero .eyebrow::before { background: var(--gold); }
.page-hero h1 { max-width: 18ch; margin-bottom: 1.5rem; font-weight: 400; }
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p { max-width: 60ch; color: rgba(248, 245, 240, 0.75); font-size: clamp(1rem, 1.4vw, 1.25rem); }

.breadcrumb {
  display: flex;
  gap: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248, 245, 240, 0.5);
  margin-bottom: 2.5rem;
}
.breadcrumb a:hover { color: var(--gold); }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding-block: 2rem;
  border-block: 1px solid rgba(248, 245, 240, 0.1);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: scroll-x 40s linear infinite;
}
.marquee-item {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: rgba(248, 245, 240, 0.55);
  display: flex;
  align-items: center;
  gap: 4rem;
}
.marquee-item::after {
  content: "✦";
  color: var(--gold);
  font-style: normal;
}
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- Intro / Two-col ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 900px) {
  .intro-grid { grid-template-columns: 1fr 1.3fr; gap: 5rem; }
}
.intro-grid .quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.4;
  font-style: italic;
  color: var(--ink);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
}
.intro-grid p { margin-bottom: 1.25rem; color: var(--ink-soft); font-size: 1.0625rem; }
.intro-grid .signature {
  margin-top: 2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ink);
}
.intro-grid .signature small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 0.5rem;
}

/* ---------- Stats ---------- */
.stats {
  background: var(--cream);
  border-block: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 720px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat {
  padding: 3rem 1.5rem;
  border-right: 1px solid var(--line);
  text-align: left;
}
.stat:last-child { border-right: none; }
@media (max-width: 720px) {
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
}
.stat-number {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  line-height: 1;
  color: var(--ink);
  font-weight: 400;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.stat-number .suffix { color: var(--gold); font-size: 0.6em; }
.stat-label {
  margin-top: 0.875rem;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* ---------- Practice / Service Cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 720px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
.service {
  position: relative;
  padding: 2.5rem 2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: all 0.5s var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 360px;
}
.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  z-index: 0;
}
.service > * { position: relative; z-index: 1; }
.service:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.service:hover::before { opacity: 1; }
.service:hover * { color: var(--cream); }
.service:hover .service-num { color: var(--gold); }
.service:hover .service-link { color: var(--gold); }

.service-num {
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--gold-deep);
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  transition: color 0.4s var(--ease);
}
.service h3 { margin-bottom: 1rem; transition: color 0.4s var(--ease); }
.service p { font-size: 0.9375rem; color: var(--ink-soft); margin-bottom: 1.5rem; flex: 1; transition: color 0.4s var(--ease); }
.service-link {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.4s var(--ease);
}
.service-link::after { content: "→"; transition: transform 0.4s var(--ease); }
.service:hover .service-link::after { transform: translateX(6px); }

/* ---------- Feature Block ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .feature-row { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .feature-row.reverse > :first-child { order: 2; }
}
.feature-image {
  aspect-ratio: 4/5;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.feature-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(201, 169, 97, 0.4), transparent 70%),
    linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
}
.feature-image::after {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(201, 169, 97, 0.3);
  pointer-events: none;
}
.feature-image .badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  padding: 1.25rem;
  background: rgba(248, 245, 240, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(248, 245, 240, 0.15);
  color: var(--cream);
  z-index: 2;
}
.feature-image .badge .num {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}
.feature-image .badge .label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  opacity: 0.8;
}

.feature-content h2 { margin-bottom: 1.5rem; }
.feature-content p { margin-bottom: 1.25rem; color: var(--ink-soft); font-size: 1.0625rem; }
.feature-list {
  margin-block: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-soft);
}
.feature-list li::before {
  content: "✦";
  color: var(--gold);
  margin-top: 2px;
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  padding-left: 2.5rem;
  border-left: 1px solid var(--line);
}
.timeline-item {
  position: relative;
  padding-bottom: 3rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.5rem;
  top: 0.5rem;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--gold);
  transform: translateX(-5px);
}
.timeline-year {
  font-family: var(--mono);
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}
.timeline-item h4 { font-size: 1.375rem; margin-bottom: 0.75rem; }
.timeline-item p { color: var(--ink-soft); font-size: 0.9375rem; }

/* ---------- Testimonial ---------- */
.testimonial-section { background: var(--ink); color: var(--cream); }
.testimonial-section .eyebrow { color: var(--gold); }
.testimonial-section .eyebrow::before { background: var(--gold); }
.testimonial {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  line-height: 1.4;
  font-weight: 300;
  margin-bottom: 2.5rem;
  position: relative;
}
.testimonial blockquote::before {
  content: "\201C";
  position: absolute;
  left: -3rem;
  top: -2rem;
  font-size: 6rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
  font-family: var(--serif);
}
.testimonial cite {
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.testimonial cite strong { color: var(--gold); display: block; margin-bottom: 0.25rem; }

/* Testimonial slider */
.testimonial-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-block: 1rem;
  scrollbar-width: none;
}
.testimonial-slider::-webkit-scrollbar { display: none; }
.t-card {
  flex: 0 0 calc(100% - 2rem);
  scroll-snap-align: center;
  padding: 2.5rem;
  border: 1px solid var(--line);
  background: var(--paper);
}
@media (min-width: 720px) { .t-card { flex-basis: calc(50% - 1rem); } }
@media (min-width: 1080px) { .t-card { flex-basis: calc(33.333% - 1.333rem); } }
.t-card .stars {
  color: var(--gold);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}
.t-card blockquote {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.t-card cite {
  font-style: normal;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.t-card cite strong { display: block; color: var(--ink); margin-bottom: 0.25rem; }
.t-card cite span { color: var(--ink-muted); }

/* ---------- Issues / Initiatives ---------- */
.issue-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 720px) { .issue-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .issue-grid { grid-template-columns: repeat(3, 1fr); } }
.issue {
  padding: 2.5rem 2rem;
  background: var(--paper);
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
.issue:hover { background: var(--ink); color: var(--cream); }
.issue:hover .issue-num,
.issue:hover .issue-tag { color: var(--gold); }
.issue:hover h3,
.issue:hover p { color: inherit; }
.issue-num {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  margin-bottom: 1.5rem;
  transition: color 0.4s var(--ease);
}
.issue h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: color 0.4s var(--ease);
}
.issue p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  transition: color 0.4s var(--ease);
}
.issue-tag {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  transition: color 0.4s var(--ease);
}

/* ---------- CTA ---------- */
.cta-band {
  background: var(--ink);
  color: var(--cream);
  padding-block: clamp(4rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 97, 0.18), transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(92, 31, 31, 0.2), transparent 50%);
}
.cta-band .container { position: relative; z-index: 2; text-align: center; }
.cta-band .eyebrow { color: var(--gold); justify-content: center; }
.cta-band .eyebrow::before { background: var(--gold); }
.cta-band h2 { max-width: 22ch; margin: 1.5rem auto 1.5rem; font-weight: 400; }
.cta-band h2 em { color: var(--gold); font-style: italic; }
.cta-band p { max-width: 56ch; margin: 0 auto 2.5rem; color: rgba(248, 245, 240, 0.75); }
.cta-band .actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Press / Logos ---------- */
.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
@media (min-width: 720px) { .press-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1080px) { .press-grid { grid-template-columns: repeat(6, 1fr); } }
.press-logo {
  padding: 2.5rem 1.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink-muted);
  transition: all 0.4s var(--ease);
  text-align: center;
  line-height: 1.2;
}
.press-logo:hover { color: var(--ink); transform: scale(1.05); }
.press-logo:nth-child(6n) { border-right: none; }

/* Articles */
.articles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 720px) { .articles { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .articles { grid-template-columns: repeat(3, 1fr); } }
.article {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  cursor: pointer;
  transition: transform 0.4s var(--ease);
}
.article:hover { transform: translateY(-4px); }
.article-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  position: relative;
  overflow: hidden;
}
.article-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201, 169, 97, 0.25), transparent 70%);
}
.article-img .icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--gold);
  font-style: italic;
  opacity: 0.6;
}
.article-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.article-meta .tag { color: var(--gold-deep); font-weight: 600; }
.article h3 {
  font-size: 1.375rem;
  line-height: 1.3;
  transition: color 0.4s var(--ease);
}
.article:hover h3 { color: var(--gold-deep); }
.article p { font-size: 0.9375rem; color: var(--ink-soft); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 6rem; } }

.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-block { padding-block: 1.25rem; border-bottom: 1px solid var(--line); }
.contact-block:last-child { border-bottom: none; }
.contact-block .label {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.contact-block .value {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.4;
}
.contact-block .value a:hover { color: var(--gold-deep); }

.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { position: relative; }
.field label {
  position: absolute;
  top: 1.25rem;
  left: 0;
  font-size: 0.875rem;
  color: var(--ink-muted);
  pointer-events: none;
  transition: all 0.3s var(--ease);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 1.25rem 0 0.75rem;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font: inherit;
  color: var(--ink);
  outline: none;
  font-size: 1rem;
  transition: border-color 0.3s var(--ease);
  border-radius: 0;
}
.field textarea { resize: vertical; min-height: 120px; padding-top: 1.25rem; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--gold); }
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field select:focus + label,
.field select:valid + label {
  top: -0.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.form .btn { align-self: flex-start; margin-top: 1rem; }
.form-note { font-size: 0.8125rem; color: var(--ink-muted); }

/* Inline validation states */
.field input:user-invalid,
.field textarea:user-invalid,
.field select:user-invalid {
  border-bottom-color: #b03a3a;
}
.field input:user-invalid + label,
.field textarea:user-invalid + label {
  color: #b03a3a;
}
.field.is-invalid input,
.field.is-invalid textarea,
.field.is-invalid select { border-bottom-color: #b03a3a; }
.field.is-invalid label { color: #b03a3a; }

/* ---------- Math captcha ---------- */
.captcha {
  margin-top: 0.5rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.captcha-prompt {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.captcha-label {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}
.captcha-question {
  font-family: var(--serif);
  font-size: 1.375rem;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  flex: 1;
}
.captcha-question strong {
  font-weight: 500;
  color: var(--gold-deep);
  font-size: 1.625rem;
}
.captcha-question em {
  font-style: normal;
  color: var(--ink-muted);
  font-size: 1.125rem;
}
.captcha-refresh {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 1rem;
  transition: all 0.3s var(--ease);
}
.captcha-refresh:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
  transform: rotate(180deg);
}
.captcha-field {
  max-width: 220px;
}
.captcha-error {
  font-size: 0.8125rem;
  color: #b03a3a;
  font-weight: 500;
}
.captcha.is-valid {
  border-color: var(--gold);
  background: rgba(201, 169, 97, 0.06);
}

/* Form success state */
.form-success {
  padding: 1.5rem;
  border: 1px solid var(--gold);
  background: rgba(201, 169, 97, 0.08);
  margin-top: 1.5rem;
}
.form-success strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--gold-deep);
  font-weight: 500;
}
.form-success p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(248, 245, 240, 0.7);
  padding-block: 5rem 2.5rem;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(248, 245, 240, 0.1);
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand .nav-brand { color: var(--cream); margin-bottom: 1.5rem; }
.footer-brand p { font-size: 0.9375rem; max-width: 36ch; }

.footer h5 {
  font-family: var(--sans);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a {
  font-size: 0.9375rem;
  display: inline-block;
  transition: all 0.3s var(--ease);
}
.footer-links a:hover { color: var(--gold); transform: translateX(4px); }

.footer-bottom {
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248, 245, 240, 0.5);
}
.footer-bottom a:hover { color: var(--gold); }

.footer-address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(248, 245, 240, 0.7);
  margin-bottom: 1rem;
  display: block;
}
.footer-address strong {
  color: var(--cream);
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}

.social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(248, 245, 240, 0.2);
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: all 0.3s var(--ease);
  font-size: 0.875rem;
}
.social a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* ---------- Reveal Animations ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: all 0.7s var(--ease); }
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.55s; }

/* ---------- Misc ---------- */
.divider {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-block: 2rem;
}
.center { text-align: center; }
.muted { color: var(--ink-muted); }

/* ---------- Real Portrait (hero / about) ---------- */
.hero-portrait {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid rgba(248, 245, 240, 0.15);
  background: var(--ink-soft);
}
.hero-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.10) 0%, rgba(10, 22, 40, 0.30) 50%, rgba(10, 22, 40, 0.92) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: contrast(1.05) saturate(0.92) brightness(0.9);
}
.hero-portrait .caption {
  text-shadow: 0 1px 8px rgba(10, 22, 40, 0.5);
}
.hero-portrait .frame {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 169, 97, 0.45);
  pointer-events: none;
  z-index: 3;
}
.hero-portrait .caption {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 4;
  color: var(--cream);
  font-family: var(--serif);
}
.hero-portrait .caption .role {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.hero-portrait .caption .name {
  font-size: 1.5rem;
  line-height: 1.2;
  font-style: italic;
}

/* About / Initiatives — real portrait swap-in */
.feature-image.has-photo { background: var(--ink); }
.feature-image.has-photo::after { display: none; }
.feature-image.has-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 22, 40, 0.05) 0%, rgba(10, 22, 40, 0.35) 55%, rgba(10, 22, 40, 0.92) 100%);
  z-index: 2;
  pointer-events: none;
}
.feature-image.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: contrast(1.05) saturate(0.92) brightness(0.92);
  z-index: 1;
  position: relative;
}
.feature-image.has-photo .frame {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 169, 97, 0.45);
  pointer-events: none;
  z-index: 3;
}
.feature-image.has-photo .badge {
  z-index: 4;
  background: rgba(10, 22, 40, 0.78);
  border-color: rgba(201, 169, 97, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ---------- Press logos as real images ---------- */
.press-logo {
  position: relative;
  min-height: 110px;
}
.press-logo img {
  max-width: 130px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.4) contrast(1.1);
  opacity: 0.65;
  transition: all 0.4s var(--ease);
}
.press-logo:hover img {
  filter: grayscale(0%) brightness(0.8);
  opacity: 1;
  transform: scale(1.05);
}

/* ---------- Disclosure markers ---------- */
summary { list-style: none; }
summary::-webkit-details-marker { display: none; }
details[open] summary span:last-child { transform: rotate(45deg); }
details summary span:last-child { display: inline-block; transition: transform 0.3s var(--ease); }

/* ---------- Legal pages (Privacy / Terms / Disclaimer) ---------- */
.legal-body {
  max-width: 760px;
  margin-inline: auto;
  padding-block: 5rem;
}
.legal-body h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-block: 3rem 1rem;
  color: var(--ink);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 {
  font-size: 1.25rem;
  margin-block: 2rem 0.75rem;
  color: var(--ink);
}
.legal-body p,
.legal-body li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.legal-body ul {
  list-style: none;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.legal-body ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.625rem;
}
.legal-body ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 0.75rem;
}
.legal-body strong { color: var(--ink); font-weight: 600; }
.legal-body a {
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}
.legal-body a:hover { color: var(--ink); }
.legal-meta {
  padding: 1.25rem 1.5rem;
  background: var(--cream);
  border-left: 2px solid var(--gold);
  margin-bottom: 3rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
}
.legal-meta strong { color: var(--ink); }

/* ---------- 404 Page ---------- */
.error-hero {
  background: var(--ink);
  color: var(--cream);
  padding: 11rem var(--gutter) 6rem;
  position: relative;
  overflow: hidden;
}
.error-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(201, 169, 97, 0.18), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(92, 31, 31, 0.18), transparent 55%);
  pointer-events: none;
}
.error-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(248, 245, 240, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 245, 240, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}
.error-hero .container { position: relative; z-index: 2; }
.error-hero .breadcrumb {
  color: rgba(248, 245, 240, 0.5);
  margin-bottom: 2.5rem;
}
.error-hero .breadcrumb a:hover { color: var(--gold); }
.error-hero .eyebrow { color: var(--gold); margin-bottom: 1.25rem; }
.error-hero .eyebrow::before { background: var(--gold); }
.error-hero h1 {
  max-width: 22ch;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.error-hero h1 em {
  color: var(--gold);
  font-style: italic;
}
.error-hero p {
  max-width: 60ch;
  color: rgba(248, 245, 240, 0.75);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}

.error-num {
  font-family: var(--serif);
  font-size: clamp(7rem, 18vw, 14rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--gold);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  user-select: none;
  text-shadow: 0 8px 40px rgba(201, 169, 97, 0.25);
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

/* Anchor variant of .service for the "Where to next?" cards */
a.service-link-card {
  text-decoration: none;
  color: inherit;
  display: flex;
}
a.service-link-card .service-link {
  margin-top: auto;
}

/* ---------- Quick Facts (About page) ---------- */
.quick-facts {
  background: var(--cream);
  border-block: 1px solid var(--line);
  padding-block: clamp(4rem, 8vw, 6rem);
}
.qf-head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.qf-head .eyebrow {
  justify-content: center;
  margin-bottom: 1rem;
}
.qf-head h2 { margin-bottom: 0; }
.qf-card {
  max-width: 760px;
  margin-inline: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(1.75rem, 4vw, 3.25rem);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.qf-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 169, 97, 0.18);
  pointer-events: none;
}
.qf-rows { display: flex; flex-direction: column; }
.qf-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 600px) {
  .qf-row {
    grid-template-columns: 170px 1fr;
    gap: 2rem;
  }
}
.qf-row:first-child { padding-top: 0.5rem; }
.qf-row:last-child { border-bottom: none; padding-bottom: 0.5rem; }
.qf-label {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  align-self: start;
  padding-top: 0.25rem;
}
.qf-value {
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
}
.qf-value small {
  font-family: var(--sans);
  display: block;
  font-size: 0.8125rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
  margin-top: 0.25rem;
  font-style: normal;
}

/* ---------- Victim Services (Initiatives page) ---------- */
.victim-services {
  background: var(--cream);
  border-block: 1px solid var(--line);
  position: relative;
}
.victim-services h2 em {
  color: var(--gold-deep);
  font-style: italic;
}

.vs-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .vs-content {
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem 4rem;
  }
}

.vs-intro p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}
.vs-intro p:first-child {
  font-family: var(--serif);
  font-size: clamp(1.125rem, 1.4vw, 1.25rem);
  line-height: 1.6;
  color: var(--ink);
  font-style: italic;
  border-left: 2px solid var(--gold);
  padding-left: 1.25rem;
}
.vs-intro strong { color: var(--ink); font-weight: 600; }
.vs-intro .vs-foot { font-size: 0.9375rem; }

.vs-services {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2rem 1.75rem;
  position: relative;
}
.vs-services::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 169, 97, 0.2);
  pointer-events: none;
}
.vs-services-head {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.vs-services ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.vs-services li {
  font-family: var(--serif);
  font-size: 1.0625rem;
  color: var(--ink);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.4;
}
.vs-services li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--gold);
  font-size: 0.75rem;
  font-family: var(--sans);
}

.vs-phones {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media (min-width: 720px) {
  .vs-phones { grid-template-columns: 1fr 1fr; }
}
.vs-phone {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 2rem;
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.vs-phone::after {
  content: "→";
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-size: 1.25rem;
  color: var(--gold);
  transition: transform 0.4s var(--ease);
}
.vs-phone:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(201, 169, 97, 0.28);
}
.vs-phone:hover::after { color: var(--ink); transform: translateX(4px); }
.vs-phone-label {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  transition: color 0.4s var(--ease);
}
.vs-phone:hover .vs-phone-label { color: var(--ink); }
.vs-phone-number {
  font-family: var(--serif);
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  letter-spacing: 0.02em;
  line-height: 1.1;
  font-weight: 500;
}
.vs-phone-meta {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248, 245, 240, 0.55);
  margin-top: 0.25rem;
  transition: color 0.4s var(--ease);
}
.vs-phone:hover .vs-phone-meta { color: rgba(10, 22, 40, 0.55); }

.vs-disclaimer {
  grid-column: 1 / -1;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--ink-muted);
  padding: 1.25rem 1.5rem;
  background: var(--paper);
  border-left: 2px solid var(--gold);
  margin-top: 0.5rem;
}
.vs-disclaimer strong { color: var(--ink); font-weight: 600; }

/* ---------- Archival Statement ---------- */
.archival {
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  padding-block: clamp(5rem, 10vw, 8rem);
  position: relative;
}
.archival::before,
.archival::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 80px;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
}
.archival::before { top: 3rem; }
.archival::after { bottom: 3rem; }

.archival-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.75rem, 4vw, 3.5rem);
  position: relative;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.archival-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 169, 97, 0.25);
  pointer-events: none;
}

.archival-stamp {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 2rem;
  padding: 0.625rem 1.125rem;
  border: 1px solid var(--line);
  background: var(--cream);
}
.archival-eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}
.archival-rule {
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--line);
}
.archival-meta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--ink-muted);
}

.archival-mark {
  font-family: var(--serif);
  font-size: 7rem;
  line-height: 0.7;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
  user-select: none;
}

.archival-name {
  font-family: var(--serif);
  font-size: clamp(1.875rem, 3.2vw, 2.625rem);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 0.375rem;
}
.archival-title {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.archival-quote {
  font-family: var(--serif);
  font-size: clamp(1.125rem, 1.75vw, 1.4rem);
  line-height: 1.7;
  font-style: italic;
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 60ch;
  margin: 0 auto 2.5rem;
}
.archival-quote em {
  color: var(--gold-deep);
  font-style: italic;
}

.archival-sig {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.archival-sigline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink);
}
.archival-sigrole {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
