/* ==========================================================================
   Lozoya Law PLLC — site stylesheet
   Single stylesheet for the whole site. Sections:
     1. Fonts   2. Tokens   3. Reset/base   4. Layout   5. Eyebrow/dividers
     6. Buttons 7. Header/nav 8. Heroes     9. Cards   10. Attorney band
    11. Service area 12. Split 13. Accordion 14. Testimonials
    15. Contact section 16. Footer 17. Blog
   Breakpoints: 375 (base) / 640 / 768 / 1024 / 1200.
   ========================================================================== */

/* ==========================================================================
   1. Fonts (self-hosted, latin + latin-ext)
   ========================================================================== */
@font-face {
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/libre-baskerville-latin-400-normal-C42RasBZ.woff2') format('woff2'),
       url('/assets/fonts/libre-baskerville-latin-400-normal-B6A5kCEq.woff') format('woff');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/libre-baskerville-latin-ext-400-normal-DehDhP4C.woff2') format('woff2'),
       url('/assets/fonts/libre-baskerville-latin-ext-400-normal-Dm_CMUlS.woff') format('woff');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/libre-baskerville-latin-700-normal-CLGq6Yj4.woff2') format('woff2'),
       url('/assets/fonts/libre-baskerville-latin-700-normal-DFRs2Bxw.woff') format('woff');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/libre-baskerville-latin-ext-700-normal-URU-TBJY.woff2') format('woff2'),
       url('/assets/fonts/libre-baskerville-latin-ext-700-normal-CwmVKpN0.woff') format('woff');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ==========================================================================
   2. Design tokens
   ========================================================================== */
:root {
  /* Palette */
  --navy: #2a313b;              /* header / footer / dark bands (live --navy) */
  --navy-deep: #0f1b3d;         /* theme-color, deepest navy */
  --navy-fg: #f4f5f7;
  --gold: #d6b45a;              /* oklch(72% .11 78) */
  --gold-light: #e8cf8a;        /* oklch(82% .11 82) */
  --gold-deep: #a98a3f;         /* oklch(58% .09 72) */
  --gold-sub: #8a7042;          /* sub-footer band */
  --fg: #262b38;                /* oklch(20% .02 260) */
  --muted: #6b7280;             /* oklch(50% .02 260) */
  --bg: #ffffff;
  --secondary: #f4f5f7;         /* oklch(96% .005 260) */
  --border: #e2e4e9;            /* oklch(90% .01 260) */
  --star: #f5b32e;

  /* Type */
  --font-serif: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
  /* Client edit, round 3: one typeface site-wide. --font-sans kept as a name
     so existing rules need no change; it now resolves to the serif. */
  --font-sans: var(--font-serif);

  /* Layout */
  --container: 1200px;
  --gutter: 1.25rem;
  --header-h: 5.5rem;

  /* Motion */
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ==========================================================================
   3. Reset + base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  /* `clip` (not `hidden`) so the off-canvas mobile nav, which is position:fixed,
     cannot create a horizontal scrollbar. Falls back to hidden on old browsers. */
  overflow-x: hidden;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}
body.nav-open { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.25rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.875rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
p + p { margin-top: 1rem; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 100;
  background: var(--gold); color: #fff; padding: .75rem 1.25rem;
  font-size: .875rem; font-weight: 600; border-radius: 2px;
}
.skip-link:focus { top: 1rem; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* ==========================================================================
   4. Layout helpers
   ========================================================================== */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 64rem; }
.container--prose { max-width: 52rem; }

.section { padding-block: 4rem; }
.section--lg { padding-block: 5rem; }
.section--tight { padding-block: 3rem; }
.section--secondary { background: var(--secondary); }
.section--white { background: var(--bg); }
.section--navy { background: var(--navy); color: var(--navy-fg); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
@media (min-width: 768px) {
  .section { padding-block: 5rem; }
  .section--lg { padding-block: 7rem; }
  .section--tight { padding-block: 4rem; }
}

.text-center { text-align: center; }
.stack > * + * { margin-top: 1.25rem; }

/* Justified prose (bios + About firm description) */
.prose-justify { text-align: justify; hyphens: auto; -webkit-hyphens: auto; }
@media (max-width: 480px) { .prose-justify { text-align: left; hyphens: none; } }

/* ==========================================================================
   5. Eyebrow, headings, dividers
   ========================================================================== */
.eyebrow {
  font-family: var(--font-sans);
  color: var(--gold);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.eyebrow--sm { font-size: .75rem; letter-spacing: .3em; }
.eyebrow--center { justify-content: center; }

.section-title { margin-top: .75rem; color: var(--navy); }
.section-title--spaced { letter-spacing: .25em; font-size: clamp(1.75rem, 3.5vw, 2.25rem); }

.divider { width: 4rem; height: 2px; border: 0; margin-top: 1rem; background: linear-gradient(to right, transparent, var(--gold) 50%, transparent); }
.divider--center { margin-inline: auto; }
.divider--sm { width: 2.5rem; }

.lede { margin-top: 1.5rem; color: var(--muted); line-height: 1.75; }

/* ==========================================================================
   6. Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1rem 2rem;
  font-family: var(--font-serif);
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease), transform .2s var(--ease);
  white-space: nowrap;
  text-align: center;
}
.btn svg { width: 1rem; height: 1rem; flex: none; }
.btn:hover { transform: translateY(-1px); }

.btn-gold {
  color: #fff;
  background: radial-gradient(circle at 30% 20%, var(--gold-light) 0%, var(--gold) 55%, var(--gold-deep) 100%);
  box-shadow: 0 6px 18px -8px rgba(214, 180, 90, .8), inset 0 1px 0 rgba(255, 255, 255, .25);
}
.btn-gold:hover { box-shadow: 0 10px 24px -8px rgba(214, 180, 90, .95), inset 0 1px 0 rgba(255, 255, 255, .3); }

.btn-outline {
  color: var(--navy);
  background: var(--bg);
  border-color: rgba(42, 49, 59, .18);
}
.btn-outline:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.btn-outline-light {
  color: var(--navy);
  background: #fff;
  border-color: transparent;
}
.btn-outline-light:hover { background: rgba(255, 255, 255, .88); }

.btn-block { width: 100%; }
@media (max-width: 480px) { .btn { width: 100%; white-space: normal; padding-inline: 1.25rem; } }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.btn-row--center { justify-content: center; }
@media (max-width: 480px) { .btn-row { flex-direction: column; } }

/* ==========================================================================
   7. Header + navigation
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: var(--navy);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
}
/* Home: transparent over the hero until scrolled */
body.home .site-header { background: transparent; }
body.home .site-header.is-scrolled,
.site-header.is-scrolled {
  background: linear-gradient(180deg, rgba(0, 0, 0, .85) 0%, rgba(20, 17, 10, .9) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px -8px rgba(0, 0, 0, .5);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .75rem;
}
@media (min-width: 768px) { .site-header__inner { padding-block: 1rem; } }

.site-logo { flex: none; display: flex; align-items: center; }
.site-logo img { height: 3.25rem; width: auto; transition: height .3s var(--ease); }
@media (min-width: 768px) {
  .site-logo { margin-inline: 1.5rem; }
  .site-logo img { height: 7rem; }
  .site-header.is-scrolled .site-logo img { height: 4rem; }
}

.nav { display: none; }
@media (min-width: 1200px) {
  .nav {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 1rem;
    color: #fff;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .08em;
    white-space: nowrap;
  }
  .nav--end { justify-content: flex-end; }
}

.nav-link {
  position: relative;
  display: inline-block;
  padding-bottom: .5rem;
  text-transform: uppercase;
  transition: color .25s var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, #f5d78a 50%, var(--gold) 80%, transparent 100%);
  box-shadow: 0 1px 6px rgba(214, 180, 90, .45);
  transition: width .3s var(--ease);
}
.nav-link:hover { color: var(--gold-light); }
.nav-link:hover::after, .nav-link.is-current::after { width: 100%; }
.nav-link.is-current { color: #fff; }

/* Dropdown */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item__toggle {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: inherit;
  letter-spacing: inherit;
}
.nav-item__toggle svg { width: .8rem; height: .8rem; transition: transform .25s var(--ease); }
.nav-item[data-open='true'] .nav-item__toggle svg { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 15rem;
  padding: .5rem 0;
  margin-top: .25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  box-shadow: 0 20px 40px -20px rgba(15, 23, 42, .45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown,
.nav-item[data-open='true'] .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: .625rem 1.25rem;
  color: var(--navy);
  font-size: .8125rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.dropdown a:hover, .dropdown a:focus-visible { background: var(--secondary); color: var(--gold-deep); }

/* Hamburger */
.nav-toggle {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  color: #fff;
  border: 1px solid rgba(214, 180, 90, .4);
  border-radius: 2px;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.nav-toggle:hover { border-color: var(--gold); background: rgba(255, 255, 255, .06); }
.nav-toggle span { display: flex; flex-direction: column; gap: 5px; width: 1.5rem; }
.nav-toggle span i { display: block; height: 2px; background: currentColor; border-radius: 999px; }
.nav-toggle span i:nth-child(2) { width: 1rem; margin-left: auto; }
@media (min-width: 1200px) { .nav-toggle { display: none; } }

/* Mobile nav panel */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  background: var(--navy);
  color: #fff;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s var(--ease);
}
.mobile-nav[data-open='true'] { transform: translateX(0); }
.mobile-nav__top { display: flex; align-items: center; justify-content: space-between; }
.mobile-nav__top img { height: 3.25rem; width: auto; }
.mobile-nav__close {
  width: 2.75rem; height: 2.75rem; display: grid; place-items: center;
  color: #fff; font-size: 1.75rem; line-height: 1;
  border: 1px solid rgba(214, 180, 90, .4); border-radius: 2px;
}
.mobile-nav ul { margin-top: 2rem; display: flex; flex-direction: column; gap: .25rem; }
.mobile-nav a {
  display: block;
  padding: .875rem .25rem;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.mobile-nav a:hover, .mobile-nav a.is-current { color: var(--gold); }
.mobile-nav .mobile-nav__sub { margin: 0 0 0 1rem; }
.mobile-nav .mobile-nav__sub a { font-size: .9375rem; text-transform: none; font-family: var(--font-sans); color: rgba(255, 255, 255, .8); }
.mobile-nav .btn { margin-top: 2rem; white-space: normal; padding-inline: 1.25rem; }
@media (min-width: 1200px) { .mobile-nav { display: none; } }

/* ==========================================================================
   8. Hero (home) + page hero (inner pages)
   ========================================================================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  color: #fff;
  text-align: center;
  background: var(--navy) url('/assets/img/hero.jpg') center / cover no-repeat;
}
.hero::after { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, .45); }
.hero__inner { position: relative; z-index: 1; padding-top: 7rem; padding-bottom: 10rem; }
.hero h1 { color: #fff; letter-spacing: .025em; }
.hero__tagline { margin-top: 1.5rem; font-family: var(--font-serif); font-size: clamp(1.25rem, 3vw, 1.875rem); color: var(--gold-light); }
.hero__intro { margin-top: 2rem; max-width: 42rem; margin-inline: auto; font-size: 1.0625rem; line-height: 1.75; }
.hero .btn-row { justify-content: center; margin-top: 2.5rem; }

.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  color: #fff;
  text-align: center;
  background: var(--navy) url('/assets/img/hero.jpg') center / cover no-repeat;
}
.page-hero::after { content: ''; position: absolute; inset: 0; background: rgba(15, 27, 61, .82); }
.page-hero__inner { position: relative; z-index: 1; padding-top: 8rem; padding-bottom: 4rem; }
.page-hero h1 { color: #fff; letter-spacing: .025em; font-size: clamp(2.25rem, 5vw, 3.75rem); }

.breadcrumb { margin-top: 1.25rem; font-size: .8125rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .75); }
.breadcrumb ol { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; }
.breadcrumb li { display: flex; align-items: center; gap: .5rem; }
.breadcrumb li + li::before { content: '/'; color: var(--gold); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb [aria-current='page'] { color: var(--gold-light); }

/* ==========================================================================
   9. Cards + tiles
   ========================================================================== */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .grid--3 { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 2rem;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .08);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.card--accent::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(214, 180, 90, .2) 0%, var(--gold) 50%, rgba(214, 180, 90, .2) 100%);
}
.card--accent:hover { box-shadow: 0 20px 40px -18px rgba(214, 180, 90, .55), 0 6px 14px -10px rgba(15, 23, 42, .3); transform: translateY(-2px); }
.card__icon { margin-inline: auto; width: 6rem; height: 6rem; object-fit: contain; transition: transform .5s var(--ease); }
.card:hover .card__icon { transform: scale(1.05); }
.card h3 { margin-top: 1.5rem; }
.card p { font-size: .9375rem; color: var(--muted); line-height: 1.7; }

/* Practice-area link cards (home "EXPERIENCE MATTERS", practice-areas teasers) */
.area-card {
  display: block;
  background: #fff;
  padding: 1.5rem;
  border-top: 4px solid var(--gold);
  box-shadow: 0 1px 3px rgba(15, 23, 42, .08);
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.area-card:hover { box-shadow: 0 12px 28px -18px rgba(15, 23, 42, .5); transform: translateY(-2px); }
.area-card h3 { display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-size: 1.25rem; }
.area-card h3 svg { width: 1rem; height: 1rem; color: var(--gold); flex: none; }
.area-card p { margin-top: .625rem; font-size: .9375rem; color: var(--muted); }

/* Big image tiles (Our Team / About Us) */
.tiles { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 640px) { .tiles { grid-template-columns: repeat(2, 1fr); gap: 3.5rem; } }
.tile {
  position: relative;
  display: block;
  aspect-ratio: 5 / 4;
  border-radius: 2px;
  box-shadow: 0 20px 40px -24px rgba(15, 23, 42, .6);
}
.tile::before {
  content: '';
  position: absolute;
  inset: -.75rem;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 1px rgba(214, 180, 90, .2), 0 10px 30px -12px rgba(214, 180, 90, .5);
  pointer-events: none;
}
.tile__media { position: absolute; inset: 0; overflow: hidden; border-radius: 2px; }
.tile__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.tile__media::after { content: ''; position: absolute; inset: 0; background: rgba(42, 49, 59, .6); transition: background .3s var(--ease); }
.tile:hover .tile__media img { transform: scale(1.05); }
.tile:hover .tile__media::after { background: rgba(42, 49, 59, .7); }
.tile h3 { position: relative; z-index: 1; height: 100%; display: flex; align-items: flex-end; justify-content: center; padding: 0 1.5rem 2.5rem; color: #fff; font-size: clamp(1.5rem, 3vw, 2.25rem); }

.frame-gold { position: relative; }
.frame-gold::before { content: ''; position: absolute; inset: -.6rem; border: 1px solid rgba(214, 180, 90, .6); pointer-events: none; }

/* Check list (Admissions, Memberships, service area) */
.check-list { display: flex; flex-direction: column; gap: .75rem; margin-top: 1rem; }
.check-list li { display: flex; align-items: flex-start; gap: .75rem; }
.check-list .check {
  flex: none; margin-top: .15rem; width: 1.5rem; height: 1.5rem; border-radius: 999px;
  display: grid; place-items: center;
  border: 1px solid rgba(214, 180, 90, .6); background: rgba(214, 180, 90, .1); color: var(--gold);
}
.check-list .check svg { width: .75rem; height: .75rem; }

.pin-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .625rem 1.5rem; margin-top: 1.75rem; }
.pin-list li { display: flex; align-items: center; gap: .5rem; color: var(--navy); font-weight: 500; }
.pin-list svg { width: 1rem; height: 1rem; color: var(--gold); flex: none; }

/* Service area regions (client edit, round 3) */
.region-list { display: grid; gap: 1.25rem; margin-top: 1.75rem; }
.region-list li { display: flex; align-items: flex-start; gap: .75rem; }
.region-list svg { width: 1.125rem; height: 1.125rem; margin-top: .3rem; color: var(--gold); flex: none; }
.region-list strong { display: block; font-size: 1.25rem; font-weight: 400; color: var(--navy); }
.region-list span { color: var(--muted); }
.region-list a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.region-list a:hover { color: var(--navy); }

/* ==========================================================================
   10. Attorney band (home)
   ========================================================================== */
.attorney { position: relative; background: var(--secondary); overflow: hidden; }
.attorney__photo-mobile { padding: 2.5rem 1.25rem; }
.attorney__photo-mobile .frame-gold { max-width: 22rem; margin-inline: auto; aspect-ratio: 1; }
.attorney__photo-mobile img { width: 100%; height: 100%; object-fit: cover; }
.attorney__body { background: var(--navy); color: #fff; padding: 4rem 1.5rem; }
.attorney__body h2 { color: #fff; margin-top: 1rem; font-size: clamp(2.5rem, 5vw, 3.75rem); }
.attorney__body p { color: rgba(255, 255, 255, .85); }
.attorney__body h3 { color: #fff; margin-top: 2rem; }
.attorney__body .check-list li { color: rgba(255, 255, 255, .9); }
.attorney__photo-desktop { display: none; }
@media (min-width: 1024px) {
  .attorney__photo-mobile { display: none; }
  .attorney__inner { position: relative; display: grid; grid-template-columns: 40% 1fr; align-items: stretch; }
  .attorney::before { content: ''; position: absolute; inset-block: 0; right: 0; left: max(0px, calc(min(40vw, 600px) - 10vw)); background: var(--navy); }
  .attorney__photo-desktop {
    display: block; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 40%; max-width: 600px; aspect-ratio: 1; z-index: 2;
  }
  .attorney__photo-desktop img { width: 100%; height: 100%; object-fit: cover; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .35); }
  .attorney__body { position: relative; background: transparent; padding: 6rem 0 6rem 2rem; }
  .attorney__body > div { max-width: 36rem; }
}

/* ==========================================================================
   11. Service area
   ========================================================================== */
.service-area { position: relative; background: var(--secondary); overflow: hidden; }
.service-area__overlay {
  position: absolute; inset: 0; opacity: .2; mix-blend-mode: multiply; pointer-events: none;
  background: url('/assets/img/service-overlay.webp') center / cover no-repeat;
}
.service-area__inner { position: relative; display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .service-area__inner { grid-template-columns: repeat(2, 1fr); } }
.service-area__map { width: 100%; height: auto; }

/* ==========================================================================
   12. Split section (EXPERIENCE MATTERS)
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .split { grid-template-columns: 1.4fr 1fr; } }

/* ==========================================================================
   13. Accordion (<details> / <summary>)
   ========================================================================== */
.accordion { display: flex; flex-direction: column; gap: 1.25rem; }

.accordion__item {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  box-shadow: 0 1px 3px rgba(15, 23, 42, .08);
  transition: box-shadow .25s var(--ease);
}
.accordion__item[open] { box-shadow: 0 18px 40px -26px rgba(15, 23, 42, .55); }
.accordion__item > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem;
  cursor: pointer;
  list-style: none;
  transition: background .2s var(--ease);
}
.accordion__item > summary::-webkit-details-marker { display: none; }
.accordion__item > summary:hover { background: var(--secondary); }
.accordion__item > summary:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }
.accordion__title { font-family: var(--font-serif); font-size: 1.25rem; color: var(--navy); }
.accordion__teaser { margin-top: .5rem; font-size: .9375rem; color: var(--muted); }
.accordion__chevron {
  flex: none; width: 2.25rem; height: 2.25rem; display: grid; place-items: center;
  border: 1px solid rgba(214, 180, 90, .5); border-radius: 999px; color: var(--gold);
  transition: transform .3s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.accordion__chevron svg { width: 1rem; height: 1rem; }
.accordion__item[open] > summary .accordion__chevron { transform: rotate(180deg); background: var(--gold); color: #fff; }
.accordion__body { padding: 0 1.5rem 1.75rem; }
.accordion__body > * + * { margin-top: 1rem; }
.accordion__body p { color: var(--muted); line-height: 1.75; }

/* Nested variant (Personal Injury sub-types) */
.accordion--nested { gap: .75rem; margin-top: 1.5rem; }
.accordion--nested .accordion__item {
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-top: 1px solid var(--border);
  box-shadow: none;
  background: var(--secondary);
}
.accordion--nested .accordion__item > summary { padding: 1rem 1.25rem; }
.accordion--nested .accordion__title { font-size: 1.0625rem; }
.accordion--nested .accordion__chevron { width: 1.875rem; height: 1.875rem; }
.accordion--nested .accordion__body { padding: 0 1.25rem 1.25rem; }
.accordion--nested .accordion__body img { width: 100%; max-height: 15rem; object-fit: cover; border-radius: 2px; }

/* ==========================================================================
   14. Testimonials
   ========================================================================== */
.reviews { text-align: center; }
.review-panel { margin-top: 3rem; }

.review-card {
  position: relative;
  max-width: 67rem;
  margin-inline: auto;
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px -30px rgba(15, 23, 42, .25);
}
@media (min-width: 768px) { .review-card { padding: 3.5rem; } }
.review-card::before {
  content: '\201C';
  position: absolute; top: .5rem; left: 1.25rem;
  font-family: var(--font-serif); font-size: 7rem; line-height: 1;
  color: rgba(214, 180, 90, .12); pointer-events: none; user-select: none;
}
@media (min-width: 768px) { .review-card::before { font-size: 8.75rem; top: 1rem; left: 2.5rem; } }
.review-card blockquote { position: relative; font-style: italic; color: var(--navy); font-size: 1.125rem; line-height: 1.7; }
@media (min-width: 768px) { .review-card blockquote { font-size: 1.25rem; } }
.review-stars { display: flex; justify-content: center; gap: .125rem; color: var(--star); margin-top: 2rem; }
.review-stars svg { width: 1rem; height: 1rem; }
.review-author { margin-top: .75rem; font-weight: 600; color: var(--navy); }
.review-date { font-size: .875rem; color: var(--muted); }
.review-source {
  display: flex; align-items: center; justify-content: center; gap: .375rem;
  margin-top: .375rem; font-size: .8125rem; color: var(--muted);
}
.review-source .google-g { width: .875rem; height: .875rem; flex: none; }
.review-disclaimer {
  max-width: 54rem; margin: 1.75rem auto 0;
  font-size: .8125rem; line-height: 1.7; color: var(--muted);
}

/* Review slideshow (client edit, round 5).
   Without JS the slides simply stack; site.js adds .is-enhanced, which turns
   the track into a horizontal carousel with a fixed-height viewport. Long
   reviews scroll inside their own slide so the section height never jumps. */
.review-slider { max-width: 67rem; margin-inline: auto; }
.review-slider__track { display: grid; gap: 2rem; }
.review-slider__controls { display: none; }

.review-slider.is-enhanced .review-slider__viewport { position: relative; overflow: hidden; }
/* Fade at the foot of a slide whose review is longer than the viewport. */
.review-slider.is-enhanced .review-slider__viewport::after {
  content: '';
  position: absolute;
  left: 1px; right: 1px; bottom: 1px;
  height: 4.5rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 85%);
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.review-slider.is-enhanced.has-overflow .review-slider__viewport::after { opacity: 1; }
.review-slider.is-enhanced .review-slider__track {
  display: flex;
  gap: 0;
  align-items: stretch;
  transition: transform .5s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  .review-slider.is-enhanced .review-slider__track { transition: none; }
}
.review-slider.is-enhanced .review-card {
  flex: 0 0 100%;
  max-width: 100%;
  height: clamp(26rem, 68vh, 32rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* A slide taller than the viewport scrolls from the top rather than centring. */
.review-slider.is-enhanced .review-card.is-overflowing { justify-content: flex-start; }
/* Tighter quote text on phones so fewer reviews need scrolling. */
@media (max-width: 639px) {
  .review-slider.is-enhanced .review-card { padding: 1.5rem 1.25rem; }
  .review-slider.is-enhanced .review-card blockquote { font-size: 1rem; line-height: 1.6; }
}
.review-slider.is-enhanced .review-card[aria-hidden='true'] { visibility: hidden; }

.review-slider.is-enhanced .review-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}
.review-arrow {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--navy);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.review-arrow svg { width: 1.125rem; height: 1.125rem; }
.review-arrow:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.review-dots { display: flex; align-items: center; gap: .625rem; }
.review-dot {
  width: .625rem;
  height: .625rem;
  border-radius: 999px;
  background: var(--border);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.review-dot[aria-selected='true'] { background: var(--gold); transform: scale(1.3); }
.review-dot:hover { background: var(--gold-deep); }
.review-arrow:focus-visible, .review-dot:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }

/* ==========================================================================
   15. Contact section (Visit Us + How Can We Help?)
   ========================================================================== */
.contact-section { position: relative; color: #fff; background: var(--navy-deep) url('/assets/img/hero.jpg') center / cover no-repeat; }
.contact-section::before { content: ''; position: absolute; inset: 0; background: rgba(15, 27, 61, .88); }
.contact-section__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
  padding-block: 4rem;
}
@media (min-width: 1024px) {
  .contact-section__inner { grid-template-columns: 2fr 3fr; gap: 0; padding-block: 7rem; }
}
/* Form-only variant: every page except /contact-us (offices live there only). */
.contact-section--form-only .contact-section__inner { grid-template-columns: 1fr; max-width: 56rem; }

.office-cards { display: flex; flex-direction: column; justify-content: center; gap: 2rem; }
@media (min-width: 1024px) { .office-cards { padding: 1.5rem; } }
.office-card {
  position: relative;
  padding: 1.5rem;
  background: rgba(42, 49, 59, .85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
@media (min-width: 640px) { .office-card { padding: 2.5rem; } }
.office-card h3 { color: #fff; margin-top: .5rem; font-size: clamp(1.5rem, 3vw, 1.875rem); }
.office-card__address { margin-top: 1.5rem; font-family: var(--font-serif); font-size: 1.125rem; line-height: 1.7; color: #fff; }
.office-card__contact { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; font-size: .875rem; color: rgba(255, 255, 255, .9); }
.office-card__contact a, .office-card__contact div { display: flex; align-items: center; gap: .75rem; transition: color .2s var(--ease); }
.office-card__contact a:hover { color: var(--gold); }
.icon-circle {
  flex: none; width: 2rem; height: 2rem; border-radius: 999px;
  display: grid; place-items: center;
  background: rgba(214, 180, 90, .2); color: var(--gold);
}
.icon-circle svg { width: 1rem; height: 1rem; }
.office-card__social { margin-top: .25rem; }
.office-card__social .icon-circle { width: 2.25rem; height: 2.25rem; transition: background .2s var(--ease), color .2s var(--ease); }
.office-card__social:hover .icon-circle { background: var(--gold); color: #fff; }

.contact-form-wrap {
  background: #fff;
  color: var(--navy);
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .35);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 640px) { .contact-form-wrap { padding: 2rem; } }
@media (min-width: 768px) { .contact-form-wrap { padding: 3rem; } }
.contact-form-wrap h3 { margin-top: .5rem; font-size: clamp(1.875rem, 4vw, 2.25rem); }

.form { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.form__row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) {
  .form__row--3 { grid-template-columns: repeat(3, 1fr); }
  .form__row--2 { grid-template-columns: repeat(2, 1fr); }
}
.field { display: block; }
.field > span { display: block; font-size: .875rem; font-weight: 500; color: var(--navy); margin-bottom: .375rem; }
.field__control { position: relative; }
.field__icon { position: absolute; left: .75rem; top: 50%; transform: translateY(-50%); color: var(--gold); pointer-events: none; }
.field__icon svg { width: 1rem; height: 1rem; }
.field__control--textarea .field__icon { top: .75rem; transform: none; }

.input {
  width: 100%;
  padding: .85rem 1rem .85rem 2.5rem;
  font-family: var(--font-serif);
  font-size: .95rem;
  color: var(--fg);
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: .375rem;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.input::placeholder { color: rgba(38, 43, 56, .4); }
.input:hover { background: #fff; }
.input:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(214, 180, 90, .18); }
textarea.input { min-height: 7rem; resize: vertical; }
select.input { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: right 1.1rem center, right .85rem center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 2.25rem; }

.consent { display: flex; gap: .75rem; font-size: .75rem; line-height: 1.65; color: var(--muted); }
.consent input { margin-top: .25rem; flex: none; accent-color: var(--gold); }
.consent a { color: var(--gold-deep); text-decoration: underline; }
.fine-print { font-size: .6875rem; line-height: 1.65; color: var(--muted); }
.form__submit { display: flex; flex-direction: column; gap: .75rem; }
@media (min-width: 640px) { .form__submit { flex-direction: row; align-items: center; } }
.form__note { font-size: .75rem; color: var(--muted); }

/* Spam honeypot — visually hidden, off-screen rather than display:none so bots fill it. */
.form__hp { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* Consultations card (About page) */
.consult-card { text-align: center; margin-top: 4rem; padding: 2rem; background: #fff; border: 1px solid var(--border); }
@media (min-width: 768px) { .consult-card { padding: 3rem; } }
.consult-card h3 { font-size: 1.5rem; }
.consult-card p { margin-top: 1rem; color: var(--muted); line-height: 1.8; }

/* ==========================================================================
   16. Footer
   ========================================================================== */
.site-footer { background: var(--navy); color: rgba(255, 255, 255, .85); }
.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding-block: 3rem;
  text-align: center;
}
@media (min-width: 768px) {
  .site-footer__inner { grid-template-columns: 1.2fr 1fr 1fr; gap: 2.5rem; }
}
.site-footer__badges { display: flex; align-items: center; justify-content: center; gap: .75rem; flex-wrap: wrap; order: 3; }
.site-footer__badges img { height: 2.5rem; width: auto; }
@media (min-width: 640px) { .site-footer__badges img { height: 3rem; } }
@media (min-width: 768px) { .site-footer__badges { order: 1; justify-content: flex-start; gap: 1.5rem; } .site-footer__badges img { height: 4rem; } }
.site-footer__logo { order: 1; }
.site-footer__logo img { height: 5rem; width: auto; margin-inline: auto; }
@media (min-width: 768px) { .site-footer__logo { order: 2; } }
.site-footer__links { order: 2; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem; font-size: .875rem; letter-spacing: .15em; }
@media (min-width: 768px) { .site-footer__links { order: 3; justify-content: flex-end; gap: 2rem; } }
.site-footer__links a:hover { color: var(--gold); }
.site-footer__links svg { width: 1.25rem; height: 1.25rem; }

.sub-footer { background: var(--gold-sub); border-top: 1px solid rgba(255, 255, 255, .1); }
.sub-footer__inner {
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  gap: .5rem; padding-block: 1rem; font-size: .75rem; color: rgba(255, 255, 255, .92);
}
@media (min-width: 768px) { .sub-footer__inner { flex-direction: row; } }
.sub-footer__links { display: flex; gap: 1.5rem; }
.sub-footer__links a:hover { color: #fff; }

/* ==========================================================================
   17. Blog
   ========================================================================== */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--border); border-top: 4px solid var(--gold);
  box-shadow: 0 1px 3px rgba(15, 23, 42, .08);
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.blog-card:hover { box-shadow: 0 18px 40px -26px rgba(15, 23, 42, .55); transform: translateY(-2px); }
.blog-card__media { aspect-ratio: 16 / 9; overflow: hidden; }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-card__meta { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); }
.blog-card h3 { margin-top: .625rem; font-size: 1.25rem; }
.blog-card p { margin-top: .75rem; font-size: .9375rem; color: var(--muted); }
.blog-card__more { margin-top: auto; padding-top: 1.25rem; font-size: .8125rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); }

.empty-state { max-width: 42rem; margin-inline: auto; padding: 3rem 2rem; text-align: center; background: var(--secondary); border: 1px solid var(--border); }
.empty-state p { margin-top: 1rem; color: var(--muted); }

.post-header { max-width: 52rem; margin-inline: auto; }
.post-meta { margin-top: 1rem; font-size: .8125rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); }
.post-figure { margin-top: 2.5rem; }
.post-figure img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.post-figure figcaption { margin-top: .625rem; font-size: .8125rem; color: var(--muted); }

.post-prose { max-width: 52rem; margin-inline: auto; margin-top: 2.5rem; font-size: 1.0625rem; line-height: 1.8; color: var(--fg); }
.post-prose > * + * { margin-top: 1.5rem; }
.post-prose h2 { font-size: 1.75rem; margin-top: 2.5rem; }
.post-prose h3 { font-size: 1.375rem; margin-top: 2rem; }
.post-prose ul, .post-prose ol { padding-left: 1.25rem; display: flex; flex-direction: column; gap: .5rem; }
.post-prose ul li { list-style: disc; }
.post-prose ol li { list-style: decimal; }
.post-prose a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.post-prose blockquote { padding-left: 1.25rem; border-left: 3px solid var(--gold); font-style: italic; color: var(--navy); }
.post-back { display: inline-flex; align-items: center; gap: .5rem; margin-top: 3rem; font-size: .8125rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); }
.post-back:hover { color: var(--navy); }

/* ==========================================================================
   18. Phase 2A additions (practice-areas page)
   Appended by the practice-areas / blog build. Everything else on those
   pages reuses the classes above.
   ========================================================================== */

/* The accordion summary lays out `title` above `teaser`; both are inline
   <span>s in the markup, so they need blockifying for the teaser's margin. */
.accordion__title, .accordion__teaser { display: block; }

/* Thumbnail + text group inside a top-level practice-area summary. */
.accordion__lead { flex: 1 1 auto; display: flex; align-items: center; gap: 1.25rem; min-width: 0; }
.accordion__thumb { flex: none; width: 7.5rem; height: 5.5rem; object-fit: cover; border-radius: 2px; }
@media (max-width: 560px) {
  /* Stack the thumbnail above the title/teaser so the copy keeps full width. */
  .accordion__lead { flex-direction: column; align-items: stretch; gap: .875rem; }
  .accordion__thumb { width: 100%; height: 7rem; }
  .accordion__item > summary { gap: .875rem; align-items: flex-start; }
  .accordion--nested .accordion__item > summary { align-items: center; }
}

/* Anchor targets (#personal-injury, #criminal-defense, #immigration) must clear
   the sticky header. `scroll-padding-top` on <html> covers same-page smooth
   scrolling; this covers cross-page jumps from the nav dropdown. */
.accordion__item[id] { scroll-margin-top: 7rem; }

/* ==========================================================================
   19. Team cards + attorney bio pages  (APPENDED IN PHASE 2B)
   Used by /meet-your-team, /maeve-lozoya, /james-lozoya only.
   Everything else on those pages reuses the classes above.
   ========================================================================== */

/* Team cards (/meet-your-team) */
.team-grid { gap: 3rem; }
@media (min-width: 640px) { .team-grid { gap: 3.5rem 3rem; } }
.team-card { text-align: center; }
.team-card__photo { display: block; overflow: hidden; box-shadow: 0 20px 40px -24px rgba(15, 23, 42, .6); }
.team-card__photo img { width: 100%; aspect-ratio: 965 / 1024; object-fit: cover; transition: transform .6s var(--ease); }
.team-card__photo:hover img { transform: scale(1.04); }
.team-card__name { margin-top: 2rem; }
.team-card .eyebrow { margin-top: .5rem; }
.team-card__blurb { margin-top: 1.25rem; font-size: .9375rem; color: var(--muted); line-height: 1.7; }
.team-card__cta { margin-top: 1.5rem; }

/* Bio pages (/maeve-lozoya, /james-lozoya) */
.bio { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
.bio__aside { max-width: 20rem; }
@media (min-width: 1024px) {
  .bio { grid-template-columns: 18rem 1fr; gap: 4rem; }
  .bio__aside { max-width: none; position: sticky; top: 8rem; }
}
.bio__photo { overflow: hidden; box-shadow: 0 20px 40px -24px rgba(15, 23, 42, .6); }
.bio__photo img { width: 100%; aspect-ratio: 965 / 1024; object-fit: cover; }
.bio__name { margin-top: 1.75rem; font-family: var(--font-serif); font-size: 1.5rem; line-height: 1.2; color: var(--navy); }
.bio__title { margin-top: .5rem; }
.bio__social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.bio__social .icon-circle { width: 2.25rem; height: 2.25rem; transition: background .2s var(--ease), color .2s var(--ease); }
.bio__social a:hover .icon-circle { background: var(--gold); color: #fff; }
.bio__aside .btn { margin-top: 1.5rem; white-space: normal; padding: .875rem 1rem; font-size: .75rem; letter-spacing: .02em; }
.bio__prose { margin-top: 2rem; line-height: 1.8; }
.bio__prose > * + * { margin-top: 1.25rem; }
.bio__accordion { margin-top: 3rem; }
@media (prefers-reduced-motion: reduce) { .team-card__photo img { transition: none; } }
