/* ============================================
   A2P Landing — v3
   Editorial minimal. Big display serif, generous
   whitespace, no cards/shadows/gradients,
   typographic lists, single-column reading flow.
   ============================================ */

:root {
  --bg: #fbfaf7;
  --bg-alt: #f3f0e8;
  --text: #1a1612;
  --text-muted: #6b6258;
  --text-light: #a39c91;
  --text-on-dark: #fbfaf7;
  --text-on-dark-muted: #a39c91;
  --border: #e3dfd5;
  --border-strong: #b8b3a6;
  --accent: #486582;

  --font-display: 'Lora', Georgia, 'Times New Roman', serif;
  --font-sans: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --container: 1100px;
  --reading: 640px;
  --section-y: 7rem;
  --section-y-sm: 4.5rem;
}

/* ============================================
   Reset & base
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* ============================================
   Typography — Fraunces display, Inter body
   ============================================ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--text);
}

h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.15;
  font-variation-settings: 'opsz' 72, 'SOFT' 50;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  font-variation-settings: 'opsz' 36, 'SOFT' 50;
}

p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

em {
  font-style: italic;
  font-variation-settings: 'opsz' 14;
}

/* ============================================
   Tiny eyebrow (section number + label)
   ============================================ */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.eyebrow-num {
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-strong);
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.75rem;
}

.reading {
  max-width: var(--reading);
}

section {
  padding: var(--section-y) 0;
}

/* ============================================
   Buttons — minimal pill, no shadow
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.0625rem 2rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--accent);
  opacity: 1;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.btn-ghost:hover {
  background: var(--text);
  color: var(--bg);
  opacity: 1;
}

.btn-arrow svg {
  width: 14px;
  height: 14px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
}

.site-logo:hover {
  opacity: 0.7;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.site-nav a:not(.btn) {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
}

.site-nav a:hover {
  opacity: 0.6;
}

.site-nav .btn {
  padding: 0.6875rem 1.375rem;
  font-size: 0.8125rem;
}

/* ============================================
   Hero — text-led editorial
   ============================================ */

.hero {
  padding: 8rem 0 5rem;
}

.hero-intro {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.hero h1 {
  font-size: clamp(2.55rem, 6.8vw, 5.5rem);
  max-width: 22ch;
  margin-bottom: 3rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.hero-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.hero-meta-text {
  max-width: 440px;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--text);
}

.hero-meta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.hero-phone {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 72;
  border-bottom: 1px solid var(--text);
  padding-bottom: 0.125rem;
}

.hero-phone:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ============================================
   Full-bleed image
   ============================================ */

.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: clamp(420px, 60vh, 720px);
  overflow: hidden;
  position: relative;
}

.full-bleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.full-bleed-caption {
  position: absolute;
  bottom: 2rem;
  left: 2.5rem;
  color: var(--text-on-dark);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* ============================================
   Trust strip — understated
   ============================================ */

.trust {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.trust-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  max-width: 200px;
  line-height: 1.5;
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.trust-badges img {
  height: 72px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0.85;
}

/* ============================================
   Editorial intro — about the practice
   ============================================ */

.intro h2 {
  margin-bottom: 3rem;
}

.intro-prose {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-prose p {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text);
}

.pull-quote {
  margin-top: 4rem;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pull-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* ============================================
   Practice areas — typographic list
   ============================================ */

.practice h2 {
  margin-bottom: 4rem;
}

.practice-list {
  border-top: 1px solid var(--border-strong);
}

.practice-item {
  border-bottom: 1px solid var(--border);
  cursor: default;
  transition: background 0.2s ease;
}

.practice-item:hover {
  background: rgba(72, 101, 130, 0.04);
}

.practice-row {
  display: grid;
  grid-template-columns: 4rem 1fr;
  align-items: baseline;
  gap: 2rem;
  padding: 2rem 0;
}

.practice-num {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.practice-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}

.practice-detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 2rem 0 6rem;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding-bottom 0.4s ease;
}

.practice-item:hover .practice-detail {
  max-height: 320px;
  opacity: 1;
  padding-bottom: 2rem;
}

.practice-detail p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: 760px;
}

@media (hover: none) {
  .practice-detail {
    max-height: 500px;
    opacity: 1;
    padding-bottom: 2rem;
  }
}

/* ============================================
   Phases — how we work
   ============================================ */

.phases h2 {
  max-width: 26ch;
  margin-bottom: 4rem;
}

.phases-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.phase {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.phase-num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  font-variation-settings: 'opsz' 144;
  font-style: italic;
  color: var(--accent);
  line-height: 0.9;
  letter-spacing: -0.04em;
  min-width: 5rem;
}

.phase-content h3 {
  margin-bottom: 0.875rem;
}

.phase-content p {
  font-size: 1.0625rem;
  line-height: 1.65;
}

/* ============================================
   Team — asymmetric
   ============================================ */

.team h2 {
  margin-bottom: 4rem;
}

.team-row {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.team-portrait {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-alt);
}

.team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding-top: 1rem;
}

.team-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 400;
  font-variation-settings: 'opsz' 144;
  letter-spacing: -0.025em;
  margin-bottom: 0.375rem;
}

.team-role {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
}

.team-bio {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  max-width: 540px;
}

.team-bio p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
}

.team-quote {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-style: italic;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 520px;
}

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

.faq h2 {
  max-width: 14ch;
  margin-bottom: 3.5rem;
}

.faq-list {
  border-top: 1px solid var(--border-strong);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.875rem 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 400;
  font-variation-settings: 'opsz' 72;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
  transition: opacity 0.2s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover {
  opacity: 0.6;
}

.faq-plus {
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq-item[open] .faq-plus {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 1.875rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 720px;
}

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

.contact-cta {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--border);
}

.contact-cta-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.contact-cta-head h2 {
  margin-bottom: 0;
}

.contact-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}

.contact-cta-item h5 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.875rem;
}

.contact-cta-item p,
.contact-cta-item a {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  font-variation-settings: 'opsz' 36;
  color: var(--text);
  line-height: 1.35;
}

.contact-cta-item a {
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.125rem;
}

.contact-cta-item a:hover {
  border-bottom-color: var(--text);
}

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

.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 1.75rem;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-advertising {
  width: 100%;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ============================================
   Page hero (inner pages)
   ============================================ */

.page-hero {
  padding: 7rem 0 4rem;
  border-bottom: 1px solid var(--border);
}

.page-hero .eyebrow {
  margin-bottom: 1.75rem;
}

.page-hero h1 {
  max-width: 18ch;
  margin-bottom: 2rem;
}

.page-hero p {
  max-width: 560px;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text);
}

/* ============================================
   Legal prose
   ============================================ */

.legal-prose {
  max-width: var(--reading);
}

.legal-prose .legal-meta {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 3rem;
  letter-spacing: 0.04em;
}

.legal-prose h2 {
  font-size: 1.625rem;
  margin-top: 2.75rem;
  margin-bottom: 1rem;
}

.legal-prose h2:first-of-type { margin-top: 0; }

.legal-prose h3 {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0;
  margin-top: 1.875rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.legal-prose p {
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
}

.legal-prose ul, .legal-prose ol {
  margin: 0 0 1rem 1.5rem;
  padding: 0;
  color: var(--text);
}

.legal-prose ul { list-style: disc; }
.legal-prose ol { list-style: decimal; }

.legal-prose li {
  margin-bottom: 0.5rem;
  line-height: 1.65;
}

.legal-prose strong { font-weight: 600; }

.legal-prose a {
  color: var(--text);
  border-bottom: 1px solid var(--text);
}

.legal-prose a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ============================================
   Contact page
   ============================================ */

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.contact-methods {
  display: flex;
  flex-direction: column;
}

.contact-method {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-method:first-child {
  border-top: 1px solid var(--border);
}

.contact-method h5 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.625rem;
}

.contact-method-value,
.contact-method-value a {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 400;
  font-variation-settings: 'opsz' 72;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.35;
}

.contact-method-value a {
  border-bottom: 1px solid var(--border);
}

.contact-method-value a:hover {
  border-bottom-color: var(--text);
}

.contact-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 900px) {
  :root {
    --section-y: 4.5rem;
  }

  .hero {
    padding: 4rem 0 3rem;
  }

  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .practice-row {
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
  }

  .practice-detail {
    padding-left: 4rem;
  }

  .contact-cta-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .phase {
    flex-direction: column;
    gap: 1rem;
  }

  .phase-num {
    font-size: 2.75rem;
  }

  .team-row,
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .team-portrait {
    max-width: 320px;
  }

  .contact-cta-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .trust-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .trust-badges {
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .site-nav {
    gap: 1.25rem;
  }

  .site-nav a:not(.btn) {
    display: none;
  }

  .trust-badges img {
    height: 56px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

/* ============================================
   About page — split hero
   ============================================ */

.about-hero-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-top: 3rem;
}

.about-hero-split-portrait {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.about-hero-split-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-split h1 {
  max-width: none;
  font-size: clamp(2.55rem, 6.8vw, 5rem);
  margin-bottom: 2rem;
}

.about-hero-split p {
  font-size: 1.125rem;
  line-height: 1.55;
  max-width: 460px;
  color: var(--text);
}

/* ============================================
   Editorial two-column prose with drop cap
   ============================================ */

.editorial-prose {
  columns: 2;
  column-gap: 3rem;
  max-width: 920px;
}

.editorial-prose p {
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  break-inside: avoid;
  color: var(--text);
}

.editorial-prose p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4.25em;
  float: left;
  line-height: 0.85;
  margin-right: 0.625rem;
  margin-top: 0.1em;
  color: var(--accent);
  font-weight: 500;
}

/* ============================================
   Stats row
   ============================================ */

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  padding: 4rem 0;
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1rem;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================
   Display values (no cards)
   ============================================ */

.value-display {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}

.value-display:first-of-type {
  border-top: 1px solid var(--border-strong);
}

.value-display-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1.75rem;
  color: var(--text);
}

.value-display p {
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 640px;
  color: var(--text);
}

/* ============================================
   Signed personal note
   ============================================ */

.signed-note {
  max-width: 760px;
  padding: 1rem 0;
}

.signed-note p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 2.5rem;
}

.signed-note .signature {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}

.signed-note .signature-name {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.625rem;
}

/* ============================================
   Contact page — featured cards
   ============================================ */

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  transition: border-color 0.25s ease, background 0.25s ease;
  display: block;
}

a.contact-card:hover {
  border-color: var(--accent);
  opacity: 1;
}

.contact-card-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.contact-card-value {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
  display: block;
  margin-bottom: 1.25rem;
  word-break: break-word;
}

a.contact-card:hover .contact-card-value {
  color: var(--accent);
}

.contact-card-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================
   What to expect (split grid)
   ============================================ */

.expect-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5rem;
  align-items: start;
}

.expect-content h2 {
  margin-bottom: 2rem;
}

.expect-content p {
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.hours-block {
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
}

.hours-block h5 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.hours-block table {
  width: 100%;
  border-collapse: collapse;
}

.hours-block td {
  padding: 0.75rem 0;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.hours-block td:last-child {
  text-align: right;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
}

.hours-block tr:last-child td {
  border-bottom: none;
}

/* ============================================
   New responsive
   ============================================ */

@media (max-width: 900px) {
  .about-hero-split,
  .expect-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-hero-split {
    align-items: start;
  }

  .editorial-prose {
    columns: 1;
    max-width: 640px;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    padding: 3rem 0;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }
}
