/* ─────────────────────────────────────────────────────────────
   West Coast Mediators — Global Stylesheet
   Brand tokens, resets, typography, layout, and components
   ───────────────────────────────────────────────────────────── */

/* ── Tokens ──────────────────────────────────────────────────── */
:root {
  --navy:     #0A1B2E;
  --forest:   #23423D;
  --gold:     #B99B5A;
  --gold-lt:  #c9ab6a;
  --cream:    #F2F2F0;
  --border:   #d5d3d0;
  --muted:    #5A6B66;
  --placeholder: #A7A9AC;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-sub:     'Montserrat', Arial, sans-serif;
  --font-sans:    'Lato', Arial, sans-serif;

  --max-w: 1280px;
  --px:    clamp(1rem, 4vw, 2rem);
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--cream); }
body { font-family: var(--font-sans); color: var(--navy); -webkit-font-smoothing: antialiased; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* ── Utility ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.gold-divider {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-block: 1.5rem;
}
.gold-divider::before,
.gold-divider::after { content: ''; flex: 0 0 3rem; height: 1px; background: var(--gold); }
.gold-divider .diamond {
  width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg);
}
.section-eyebrow {
  font-family: var(--font-sub); font-size: .7rem; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: .75rem;
}
.section-heading {
  font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.15; text-wrap: balance;
}
.section-body {
  font-family: var(--font-sans); font-size: 1rem; line-height: 1.7;
  color: var(--muted);
}

/* ── Full CV & bio pages ─────────────────────────────────────── */
.bio-page { background: var(--cream); }
.bio-hero { 
  background: var(--navy); 
  padding-top: clamp(6rem, 10vw, 8rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
}
.bio-hero-grid { display: grid; grid-template-columns: minmax(0, 22rem) minmax(0, 1fr); gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.bio-portrait { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 15%; border-bottom: 4px solid var(--gold); }
.bio-hero .section-heading { color: var(--cream); }
.bio-hero .section-body { color: rgba(242,242,240,.72); margin-bottom: 1rem; }
.bio-title { color: var(--gold); font-family: var(--font-sub); font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.bio-cta { display: inline-flex; margin-top: 1rem; width: auto; }
.bio-details { padding: clamp(3rem, 7vw, 6rem) 0; }
.bio-details-inner { max-width: 52rem; }
.bio-accordions { display: flex; flex-direction: column; gap: .65rem; margin-top: 2rem; }
.bio-accordions details { border: 1px solid var(--border); background: #fff; }
.bio-accordions summary { cursor: pointer; list-style: none; padding: 1rem 1.25rem; color: var(--navy); font-family: var(--font-sub); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.bio-accordions summary::-webkit-details-marker { display: none; }
.bio-accordions summary::after { content: '+'; float: right; color: var(--gold); font-size: 1.1rem; line-height: 1; }
.bio-accordions details[open] summary { background: var(--forest); color: var(--cream); }
.bio-accordions details[open] summary::after { content: '−'; }
.bio-accordions ul { display: flex; flex-direction: column; gap: .7rem; padding: 1.25rem 1.5rem 1.5rem 2.25rem; list-style: disc; }
.bio-accordions li { color: var(--muted); font-family: var(--font-sans); font-size: .95rem; line-height: 1.6; }
@media (max-width: 700px) {
  .bio-hero-grid { grid-template-columns: 1fr; }
  .bio-portrait { max-width: 18rem; }
}

/* ── Top contact bar ─────────────────────────────────────────── */
.topbar { display: none !important; }
.topbar-inner {
  max-width: var(--max-w); margin-inline: auto;
  display: flex; align-items: center; justify-content: flex-end; gap: 2rem;
}
.topbar a {
  font-family: var(--font-sub); font-size: .8rem; letter-spacing: .05em;
  color: rgba(242,242,240,.75); transition: color .2s;
}
.topbar a:first-child { color: var(--gold); }
.topbar a:hover { color: var(--cream); }

/* ── Navbar ──────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,27,46,.82); backdrop-filter: blur(6px);
  transition: background .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}
.navbar-inner {
  max-width: var(--max-w); margin-inline: auto;
  padding-inline: var(--px);
  height: 5rem; display: flex; align-items: center; justify-content: space-between;
}
@media (min-width: 768px) { .navbar-inner { height: 6rem; } }
.navbar-logo img { height: 3.5rem; width: auto; }
.navbar-logo img.mobile { display: block; }
.navbar-logo img.desktop { display: none; }
@media (min-width: 768px) { .navbar-logo img { height: 5rem; } }
@media (min-width: 768px) {
  .navbar-logo img.mobile { display: none; }
  .navbar-logo img.desktop { display: block; }
}

/* Desktop nav */
.nav-links {
  display: none; align-items: center; gap: .25rem;
}
@media (min-width: 768px) { .nav-links { display: flex; flex: 1; justify-content: flex-end; } }
@media (min-width: 768px) {
  .navbar-inner { display: flex; align-items: center; }
  .navbar-logo { flex: 1; display: flex; justify-content: center; }
}
@media (max-width: 767px) {
  .navbar-inner { position: relative; display: flex; align-items: center; justify-content: flex-end; }
  .navbar-logo { position: absolute; left: 50%; transform: translateX(-50%); }
}
.nav-links a {
  padding: .5rem .9rem; position: relative;
  font-family: var(--font-sub); font-size: .82rem; letter-spacing: .06em;
  color: rgba(242,242,240,.78); transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--gold); transition: width .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* Schedule dropdown */
.schedule-wrap { position: relative; margin-left: .5rem; }
.schedule-btn {
  display: flex; align-items: center; gap: .4rem;
  padding: .5rem 1.5rem;
  background: var(--gold); color: var(--navy);
  font-family: var(--font-sub); font-size: .8rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  transition: background .2s;
}
.schedule-btn:hover { background: var(--gold-lt); }
.schedule-btn svg { transition: transform .2s; }
.schedule-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.schedule-dropdown {
  position: absolute; right: 0; top: calc(100% + 4px);
  width: 14rem;
  background: var(--navy); border: 1px solid rgba(185,155,90,.3);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  display: none; z-index: 200;
}
.schedule-dropdown {
  position: absolute; right: 0; top: 100%;
  width: 14rem; padding-top: 8px;
  background: var(--navy); border: 1px solid rgba(185,155,90,.3);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  display: block; z-index: 200;
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  transition-delay: .35s;
}
.schedule-dropdown.open,
.schedule-wrap:hover .schedule-dropdown,
.schedule-wrap:focus-within .schedule-dropdown { opacity: 1; visibility: visible; transition-delay: 0s; }
.schedule-wrap:hover .schedule-dropdown,
.schedule-wrap:focus-within .schedule-dropdown { display: block; }
.schedule-dropdown a {
  display: flex; flex-direction: column;
  padding: .75rem 1rem;
  border-bottom: 1px solid rgba(185,155,90,.12);
  transition: background .15s;
}
.schedule-dropdown a:last-child { border-bottom: none; }
.schedule-dropdown a:hover { background: var(--forest); }
.schedule-dropdown a .label {
  font-family: var(--font-sub); font-size: .82rem; color: var(--cream);
  transition: color .15s;
}
.schedule-dropdown a:hover .label { color: var(--gold); }
.schedule-dropdown a .sub {
  font-family: var(--font-sans); font-size: .7rem;
  color: rgba(242,242,240,.35); margin-top: 2px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: flex; align-items: center; justify-content: center;
  padding: .5rem; color: var(--cream); transition: color .2s;
}
.menu-toggle:hover { color: var(--gold); }
@media (min-width: 768px) { .menu-toggle { display: none; } }

/* Mobile nav */
.mobile-nav {
  display: none; background: var(--navy);
  border-top: 1px solid rgba(185,155,90,.25);
}
.mobile-nav.open { display: block; }
.mobile-nav .mob-topbar { display: none; }
.mobile-nav .mob-topbar a {
  font-family: var(--font-sub); font-size: .78rem;
  color: var(--gold); display: flex; align-items: center; gap: .3rem;
}
.mobile-nav a.nav-item {
  display: block; padding: .75rem var(--px);
  font-family: var(--font-sub); font-size: .82rem; letter-spacing: .05em;
  color: rgba(242,242,240,.78);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .15s, background .15s;
}
.mobile-nav a.nav-item:hover { color: var(--gold); background: rgba(35,66,61,.25); }
.mob-schedule-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: .75rem var(--px);
  font-family: var(--font-sub); font-size: .82rem; font-weight: 600;
  color: var(--gold); letter-spacing: .05em;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.mob-schedule-toggle svg { transition: transform .2s; }
.mob-schedule-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.mob-schedule-items { display: none; background: rgba(35,66,61,.2); }
.mob-schedule-items.open { display: block; }
.mob-schedule-items a {
  display: flex; align-items: center; justify-content: space-between;
  padding: .6rem calc(var(--px) + 1rem);
  font-family: var(--font-sub); font-size: .78rem;
  color: rgba(242,242,240,.68);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .15s;
}
.mob-schedule-items a:hover { color: var(--gold); }
.mob-schedule-items a .sub { font-size: .68rem; color: rgba(242,242,240,.3); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../wcm-logo.png') center/cover no-repeat; /* overridden inline */
  z-index: 0;
}
.hero-overlay-navy {
  position: absolute; inset: 0; background: rgba(10,27,46,.75); z-index: 1;
}
.hero-overlay-forest {
  position: absolute; inset: 0; background: rgba(35,66,61,.20); z-index: 2;
}
.hero-content {
  position: relative; z-index: 3;
  text-align: center; padding: 6rem var(--px) 3rem;
  max-width: 60rem; margin-inline: auto;
}
.hero-eyebrow {
  font-family: var(--font-sub); font-size: .72rem; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 1.5rem;
}
.hero-heading {
  font-family: var(--font-display); font-size: clamp(2.2rem, 7vw, 4.25rem);
  font-weight: 700; line-height: 1.1; color: var(--cream); text-wrap: balance;
  margin-bottom: .5rem;
}
.hero-heading em { font-style: italic; }
.hero-sub {
  font-family: var(--font-sub); font-size: clamp(.78rem, 1.5vw, 1rem);
  letter-spacing: .25em; text-transform: uppercase; font-weight: 600;
  color: var(--gold); margin-bottom: 1.5rem;
}
.hero-body {
  font-family: var(--font-sans); font-size: clamp(.9rem, 1.5vw, 1.1rem);
  line-height: 1.7; color: rgba(242,242,240,.73);
  max-width: 38rem; margin-inline: auto; margin-bottom: 2.5rem;
}
.hero-ctas {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
@media (min-width: 480px) { .hero-ctas { flex-direction: row; justify-content: center; } }
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2rem; min-width: 13rem;
  background: var(--gold); color: var(--navy);
  font-family: var(--font-sub); font-size: .78rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  transition: background .2s;
}
.btn-gold:hover { background: var(--gold-lt); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2rem; min-width: 13rem;
  border: 1px solid rgba(242,242,240,.45); color: var(--cream);
  font-family: var(--font-sub); font-size: .78rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-forest {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 2.5rem;
  background: var(--forest); color: var(--cream);
  font-family: var(--font-sub); font-size: .78rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  transition: background .2s;
}
.btn-forest:hover { background: var(--navy); }
.hero-badge {
  margin-top: 3.5rem; display: flex; justify-content: center;
}
.hero-badge-inner {
  display: flex; align-items: center; gap: .75rem;
  background: rgba(255,255,255,.05); backdrop-filter: blur(4px);
  border: 1px solid rgba(185,155,90,.28); padding: .75rem 1.25rem;
}
.hero-badge-line { width: 1px; height: 2rem; background: var(--gold); }
.hero-badge p {
  font-family: var(--font-sub); font-size: .68rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(242,242,240,.68);
}
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  animation: bounce 2s infinite;
}
.hero-scroll-line { width: 1px; height: 2.5rem; background: rgba(185,155,90,.5); }
.hero-scroll-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Stats banner ────────────────────────────────────────────── */
.stats { background: var(--navy); border-block: 1px solid rgba(185,155,90,.18); }
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  padding-block: 3rem; gap: 2rem;
}
@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0; divide-inline: 1px solid rgba(185,155,90,.18);
  }
  .stats-grid .stat + .stat { border-left: 1px solid rgba(185,155,90,.18); }
}
.stat { text-align: center; padding-inline: 1rem; }
.stat-value {
  font-family: var(--font-display); font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 700; color: var(--gold); margin-bottom: .4rem;
}
.stat-label {
  font-family: var(--font-sub); font-size: .68rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(242,242,240,.45);
}

/* ── About ───────────────────────────────────────────────────── */
.about { background: var(--cream); padding-block: clamp(4rem, 8vw, 7rem); }
.about-header { text-align: center; max-width: 44rem; margin-inline: auto; margin-bottom: 4rem; }
.pillars-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.pillar {
  background: white; border: 1px solid var(--border); padding: 2rem;
  text-align: center; transition: border-color .25s, box-shadow .25s;
}
.pillar:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(10,27,46,.1);
}
.pillar-icon {
  width: 3.5rem; height: 3.5rem;
  border: 1px solid rgba(35,66,61,.18); margin-inline: auto; margin-bottom: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .25s, background .25s;
}
.pillar:hover .pillar-icon { border-color: var(--gold); background: rgba(185,155,90,.06); }
.pillar-icon svg { color: var(--forest); transition: color .25s; }
.pillar:hover .pillar-icon svg { color: var(--gold); }
.pillar h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: var(--navy); margin-bottom: .6rem;
}
.pillar p { font-family: var(--font-sans); font-size: .85rem; line-height: 1.65; color: var(--muted); }

/* ── Practice Areas ──────────────────────────────────────────── */
.practice {
  background: var(--navy); padding-block: clamp(4rem, 8vw, 7rem);
  position: relative; overflow: hidden;
}
.practice::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 30px 30px; opacity: .03; pointer-events: none;
}
.practice-header { text-align: center; max-width: 44rem; margin-inline: auto; margin-bottom: 3.5rem; }
.areas-grid {
  display: grid; gap: 1px; background: rgba(185,155,90,.08);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
.area {
  background: var(--navy); border: 1px solid rgba(185,155,90,.1);
  padding: 2rem; display: flex; align-items: flex-start; gap: 1.25rem;
  transition: background .25s, border-color .25s;
}
.area:hover { background: rgba(35,66,61,.3); border-color: rgba(185,155,90,.3); }
.area-icon {
  flex-shrink: 0; width: 3rem; height: 3rem;
  border: 1px solid rgba(185,155,90,.28);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .25s, background .25s;
}
.area:hover .area-icon { border-color: var(--gold); background: rgba(185,155,90,.1); }
.area-icon svg { color: rgba(185,155,90,.55); transition: color .25s; }
.area:hover .area-icon svg { color: var(--gold); }
.area h3 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  color: var(--cream); margin-bottom: .4rem;
  transition: color .25s;
}
.area:hover h3 { color: var(--gold); }
.area p { font-family: var(--font-sans); font-size: .82rem; line-height: 1.6; color: rgba(242,242,240,.5); }
.practice-cta { text-align: center; margin-top: 3rem; }
.practice-cta a {
  font-family: var(--font-sub); font-size: .78rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: .5rem;
  transition: gap .25s;
}
.practice-cta a:hover { gap: 1rem; }

/* ── Mediators ───────────────────────────────────────────────── */
.mediators { background: var(--cream); padding-block: clamp(4rem, 8vw, 7rem); }
.mediators-header { text-align: center; margin-bottom: 4rem; }
.mediators-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .mediators-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; } }
.attorney-card { background: white; border: 1px solid var(--border); overflow: hidden; }
.attorney-photo {
  position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--forest);
}
.attorney-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  transition: transform .5s;
}
.attorney-card:hover .attorney-photo img { transform: scale(1.03); }
.photo-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--gold); }
.photo-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(10,27,46,.8); backdrop-filter: blur(4px); padding: .25rem .75rem;
}
.photo-badge span {
  font-family: var(--font-sub); font-size: .65rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
}
.attorney-body { padding: 2rem; }
.attorney-creds-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: var(--cream); border: 1px solid var(--border);
  padding: .75rem 1.25rem; margin-top: 1rem;
  transition: background .2s, color .2s;
}
.attorney-creds-btn:hover { background: var(--forest); }
.attorney-creds-btn .btn-inner {
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--font-sub); font-size: .75rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--navy);
  transition: color .2s;
}
.attorney-creds-btn:hover .btn-inner { color: white; }
.attorney-creds-btn svg { color: var(--muted); transition: color .2s, transform .2s; }
.attorney-creds-btn[aria-expanded="true"] svg.chevron { transform: rotate(180deg); }
.attorney-creds-btn:hover svg { color: var(--gold); }
.attorney-creds-panel {
  border: 1px solid var(--border); border-top: none;
  background: white; padding: 1.25rem;
  display: none;
}
.attorney-creds-panel.open { display: block; }
.attorney-creds-panel li {
  display: flex; align-items: flex-start; gap: .75rem;
  margin-bottom: .75rem;
}
.attorney-creds-panel li:last-child { margin-bottom: 0; }
.attorney-creds-panel li svg { color: var(--forest); flex-shrink: 0; margin-top: 2px; }
.attorney-creds-panel li span {
  font-family: var(--font-sans); font-size: .82rem; line-height: 1.55; color: var(--muted);
}
.attorney-schedule-btn {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%; margin-top: 1.5rem; padding: 1rem 1.5rem;
  background: var(--forest); color: var(--cream);
  font-family: var(--font-sub); font-size: .78rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  transition: background .2s;
}
.attorney-schedule-btn:hover { background: var(--navy); }
.attorney-schedule-btn svg { color: var(--gold); }

/* ── Contact ─────────────────────────────────────────────────── */
.contact {
  background: var(--forest); padding-block: clamp(4rem, 8vw, 7rem); position: relative; overflow: hidden;
}
.contact::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, var(--cream) 0, var(--cream) 1px, transparent 0, transparent 50%);
  background-size: 25px 25px; opacity: .04; pointer-events: none;
}
.contact-header { text-align: center; max-width: 34rem; margin-inline: auto; margin-bottom: 3.5rem; }
.contact-grid {
  display: grid; gap: 2rem; grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; gap: 3rem; } }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: rgba(10,27,46,.28); border: 1px solid rgba(242,242,240,.1); padding: 1.25rem;
  margin-bottom: 1rem;
}
.contact-info-icon {
  flex-shrink: 0; width: 2.5rem; height: 2.5rem;
  border: 1px solid rgba(185,155,90,.38);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-icon svg { color: var(--gold); }
.contact-info-label {
  font-family: var(--font-sub); font-size: .65rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(242,242,240,.45); display: block; margin-bottom: .2rem;
}
.contact-info-value { font-family: var(--font-sans); font-size: .85rem; color: var(--cream); }
.contact-info-value a { transition: color .2s; }
.contact-info-value a:hover { color: var(--gold); }
.contact-cta-box { background: var(--gold); padding: 1.5rem; margin-top: .5rem; }
.contact-cta-box h3 {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
  color: var(--navy); margin-bottom: .4rem;
}
.contact-cta-box p { font-family: var(--font-sans); font-size: .82rem; color: rgba(10,27,46,.78); margin-bottom: 1rem; }
.contact-cta-box .btn-navy {
  display: flex; align-items: center; justify-content: center;
  padding: .75rem 1.25rem; background: var(--navy); color: var(--cream);
  font-family: var(--font-sub); font-size: .75rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: .75rem;
  transition: background .2s;
}
.contact-cta-box .btn-navy:hover { background: var(--forest); }
.contact-cta-box .btn-border {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .75rem 1.25rem; border: 1px solid var(--navy); color: var(--navy);
  font-family: var(--font-sub); font-size: .75rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  transition: background .2s;
}
.contact-cta-box .btn-border:hover { background: rgba(10,27,46,.1); }

/* Schedule dropdown used inside the "Ready to schedule?" CTA box */
.contact-cta-box .schedule-wrap { position: relative; margin-left: 0; width: 100%; }
.contact-cta-box .schedule-btn {
  width: 100%; justify-content: center;
  background: var(--navy); color: var(--cream);
  margin-bottom: 0;
}
.contact-cta-box .schedule-btn:hover { background: var(--forest); }
.contact-cta-box .schedule-dropdown { left: 0; right: 0; width: 100%; }

/* Contact form */
.contact-form-wrap { background: var(--cream); padding: 2.5rem; }
.contact-form-wrap h3 {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
  color: var(--navy); margin-bottom: .25rem;
}
.contact-form-wrap .form-sub {
  font-family: var(--font-sans); font-size: .82rem; color: var(--muted); margin-bottom: 1.5rem;
}
.form-row { display: grid; gap: 1.25rem; margin-bottom: 1.25rem; }
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.25rem; }
.form-group:last-of-type { margin-bottom: 0; }
.form-label {
  font-family: var(--font-sub); font-size: .68rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; color: var(--navy);
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: .75rem 1rem;
  border: 1px solid var(--border); background: white;
  font-family: var(--font-sans); font-size: .85rem; color: var(--navy);
  transition: border-color .2s; outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--placeholder); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--forest); }
.form-textarea { resize: none; }
.form-submit { margin-top: 1.5rem; }
.contact-success {
  display: none; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  padding: 4rem 2rem; gap: 1rem;
}
.contact-success.show { display: flex; }
.contact-success-icon {
  width: 4rem; height: 4rem; border: 2px solid var(--forest);
  display: flex; align-items: center; justify-content: center; margin-bottom: .5rem;
}
.contact-success-icon svg { color: var(--forest); }

/* ── Footer ──────────────────────────────────────────────────── */
footer { background: var(--navy); }
.footer-topstrip {
  background: var(--forest); border-bottom: 1px solid rgba(185,155,90,.18);
}
.footer-topstrip-inner {
  padding-block: 1.25rem;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 1rem 2rem;
}
.footer-topstrip-item {
  display: flex; align-items: center; gap: .5rem;
}
.footer-topstrip-item svg { color: var(--gold); flex-shrink: 0; }
.footer-topstrip-item a, .footer-topstrip-item span {
  font-family: var(--font-sub); font-size: .72rem; letter-spacing: .05em;
  color: rgba(242,242,240,.7); transition: color .2s;
}
.footer-topstrip-item a:hover { color: var(--gold); }
.footer-main { padding-block: 3.5rem; }
.footer-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand img { width: 14rem; height: auto; margin-bottom: 1.25rem; }
.footer-byline {
  font-family: var(--font-sub); font-size: .65rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(242,242,240,.4); margin-bottom: .75rem;
}
.footer-tagline {
  font-family: var(--font-sans); font-size: .82rem; line-height: 1.7;
  color: rgba(242,242,240,.5);
}
.footer-col h4 {
  font-family: var(--font-sub); font-size: .68rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: .75rem; }
.footer-col ul li a {
  font-family: var(--font-sans); font-size: .82rem;
  color: rgba(242,242,240,.58); transition: color .2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(242,242,240,.08);
  padding-block: 1.25rem;
}
.footer-bottom-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: .5rem; text-align: center;
}
@media (min-width: 640px) {
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; }
}
.footer-bottom p {
  font-family: var(--font-sans); font-size: .72rem; color: rgba(242,242,240,.3);
}

/* ── Schedule hub ────────────────────────────────────────────── */
.sched-hub-header { background: var(--navy); }
.sched-hero {
  background: var(--navy); border-bottom: 4px solid var(--gold);
  text-align: center; padding-block: clamp(3rem, 6vw, 5rem);
}
.mediator-cards {
  display: grid; gap: 2rem; grid-template-columns: 1fr;
  max-width: 56rem; margin-inline: auto;
  padding-block: clamp(3rem, 6vw, 6rem);
}
@media (min-width: 768px) { .mediator-cards { grid-template-columns: repeat(2, 1fr); gap: 3rem; } }
.mediator-card {
  background: white; border: 1px solid var(--border); overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
  display: block;
}
.mediator-card:hover { border-color: var(--gold); box-shadow: 0 8px 40px rgba(10,27,46,.12); }
.mediator-card-photo {
  position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--forest);
}
.mediator-card-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
  transition: transform .5s;
}
.mediator-card:hover .mediator-card-photo img { transform: scale(1.04); }
.mediator-card-photo .gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,27,46,.65) 0%, transparent 60%); }
.mediator-card-body { padding: 1.75rem; }
.card-cta {
  display: flex; align-items: center; gap: .5rem; margin-top: 1.5rem;
  font-family: var(--font-sub); font-size: .78rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--forest);
  transition: color .2s;
}
.mediator-card:hover .card-cta { color: var(--gold); }
.card-cta svg { transition: transform .2s; }
.mediator-card:hover .card-cta svg { transform: translateX(4px); }
.sched-contact-strip {
  background: var(--forest); padding: 2.5rem;
  max-width: 56rem; margin-inline: auto; text-align: center;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

/* ── Attorney scheduling page ────────────────────────────────── */
.sched-page { background: var(--cream); min-height: 100svh; }
.sched-page-topbar { background: var(--forest); padding: .5rem var(--px); display: none; }
@media (min-width: 768px) { .sched-page-topbar { display: block; } }
.sched-page-topbar-inner {
  max-width: var(--max-w); margin-inline: auto;
  display: flex; align-items: center; justify-content: flex-end; gap: 2rem;
}
.sched-page-header {
  background: var(--navy); position: sticky; top: 0; z-index: 100;
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}
.sched-page-header .header-inner {
  max-width: var(--max-w); margin-inline: auto;
  padding-inline: var(--px); height: 5rem;
  display: flex; align-items: center; justify-content: space-between;
}
@media (min-width: 768px) { .sched-page-header .header-inner { height: 6rem; } }
.sched-page-hero {
  background: var(--navy); border-bottom: 4px solid var(--gold);
  padding-top: clamp(6rem, 10vw, 8rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.sched-page-hero-inner {
  max-width: var(--max-w); margin-inline: auto; padding-inline: var(--px);
  display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start;
}
@media (min-width: 640px) { .sched-page-hero-inner { flex-direction: row; align-items: flex-end; } }
.atty-thumb {
  width: 6rem; height: 7rem; flex-shrink: 0;
  border: 2px solid var(--gold); overflow: hidden;
}
@media (min-width: 768px) { .atty-thumb { width: 8rem; height: 9rem; } }
.atty-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.sched-main {
  max-width: var(--max-w); margin-inline: auto; padding: clamp(2rem, 4vw, 4rem) var(--px);
}
.sched-grid {
  display: grid; gap: 2.5rem; grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .sched-grid { grid-template-columns: 1fr 340px; gap: 3.5rem; } }
.calendar-section h2, .form-section h2 {
  font-family: var(--font-display); font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700; color: var(--navy);
  display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem;
}
.calendar-section h2 svg, .form-section h2 svg { color: var(--forest); }
.session-info-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-top: 1rem; }
@media (min-width: 560px) { .session-info-grid { grid-template-columns: 1fr 1fr; } }
.session-info-box { background: white; border: 1px solid var(--border); padding: 1.25rem; }
.session-info-box h3 {
  font-family: var(--font-sub); font-size: .68rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--navy);
  display: flex; align-items: center; gap: .4rem; margin-bottom: .6rem;
}
.session-info-box h3 svg { color: var(--gold); }
.session-info-box p { font-family: var(--font-sans); font-size: .82rem; line-height: 1.6; color: var(--muted); }
.sched-form-wrap { background: white; border: 1px solid var(--border); padding: 2rem; }
.form-disclaimer {
  font-family: var(--font-sans); font-size: .72rem; line-height: 1.6;
  color: var(--placeholder); margin-top: 1rem;
}
.form-disclaimer a { color: var(--forest); }
.form-disclaimer a:hover { text-decoration: underline; }
.form-success { display: none; flex-direction: column; align-items: center; text-align: center; gap: 1rem; padding: 3rem 1.5rem; }
.form-success.show { display: flex; }
.form-success-icon { width: 4rem; height: 4rem; background: rgba(35,66,61,.1); display: flex; align-items: center; justify-content: center; }
.form-success-icon svg { color: var(--forest); }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-atty { background: var(--forest); color: var(--cream); padding: 1.75rem; }
.sidebar-atty .card-label {
  font-family: var(--font-sub); font-size: .65rem; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: .25rem;
}
.sidebar-atty h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; }
.sidebar-atty .divider { height: 1px; background: rgba(185,155,90,.25); margin-bottom: 1rem; }
.sidebar-contact-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1rem; }
.sidebar-contact-item:last-child { margin-bottom: 0; }
.sidebar-icon {
  flex-shrink: 0; width: 2.25rem; height: 2.25rem;
  border: 1px solid rgba(185,155,90,.35);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
a:hover .sidebar-icon { background: rgba(185,155,90,.2); }
.sidebar-icon svg { color: var(--gold); }
.sidebar-contact-label {
  font-family: var(--font-sans); font-size: .78rem; font-weight: 600;
  color: var(--cream); display: block; transition: color .2s;
}
a:hover .sidebar-contact-label { color: var(--gold); }
.sidebar-contact-sub { font-family: var(--font-sans); font-size: .68rem; color: rgba(242,242,240,.42); }
.sidebar-about { background: white; border: 1px solid var(--border); padding: 1.75rem; }
.sidebar-about h3 {
  font-family: var(--font-sub); font-size: .68rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--navy);
  margin-bottom: 1rem;
}
.sidebar-about p { font-family: var(--font-sans); font-size: .82rem; line-height: 1.7; color: var(--muted); }
.sidebar-firm { background: var(--cream); border: 1px solid var(--border); padding: 1.75rem; }
.sidebar-firm .firm-label {
  font-family: var(--font-sub); font-size: .65rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: .25rem;
}
.sidebar-firm h3 {
  font-family: var(--font-sub); font-size: .82rem; font-weight: 600;
  color: var(--navy); margin-bottom: 1rem;
}
.sidebar-firm a {
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--font-sub); font-size: .82rem; color: var(--forest);
  margin-bottom: .75rem; transition: color .2s;
}
.sidebar-firm a:hover { color: var(--gold); }
.sidebar-firm a svg { flex-shrink: 0; }
.sidebar-other { background: white; border: 1px solid var(--border); padding: 1.75rem; }
.sidebar-other h3 {
  font-family: var(--font-sub); font-size: .68rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--navy);
  margin-bottom: .75rem;
}
.sidebar-other p { font-family: var(--font-sans); font-size: .82rem; line-height: 1.6; color: var(--muted); margin-bottom: 1rem; }
.sidebar-other a.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-sub); font-size: .78rem; font-weight: 600;
  color: var(--forest); border-bottom: 1px solid rgba(35,66,61,.25);
  padding-bottom: 2px; transition: color .2s, border-color .2s;
}
.sidebar-other a.link-arrow:hover { color: var(--gold); border-color: var(--gold); }

/* Calendar iframe container */
 .live-calendar-panel {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  min-height: 12rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--navy), var(--forest));
  color: var(--cream);
}
.live-calendar-mark {
  display: grid;
  flex: 0 0 auto;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  border: 1px solid rgba(185,155,90,.55);
  color: var(--gold);
}
.live-calendar-kicker {
  margin: 0 0 .65rem;
  color: var(--gold);
  font-family: var(--font-sub);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.live-calendar-copy {
  max-width: 34rem;
  margin: 0;
  color: rgba(242,242,240,.78);
  font-family: var(--font-sans);
  font-size: .95rem;
  line-height: 1.65;
}
.live-calendar-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.1rem;
  color: var(--cream);
  font-family: var(--font-sub);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: .3rem;
}
.live-calendar-link:hover { color: var(--gold); }
@media (max-width: 560px) {
  .live-calendar-panel { flex-direction: column; }
}
 .calendar-frame {

  width: 100%; min-height: 520px; border: 1px solid var(--border); background: white;
  display: flex; align-items: center; justify-content: center;
}
.calendar-frame iframe { width: 100%; height: 520px; border: none; }


.calendar-blocked {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; text-align: center; padding: 3rem; color: var(--muted);
}
.calendar-blocked svg { color: var(--gold); }
.calendar-blocked p { font-family: var(--font-sans); font-size: .85rem; line-height: 1.6; }

/* Page-specific mini footer */
.mini-footer {
  background: var(--navy); border-top: 1px solid rgba(185,155,90,.18); margin-top: 2rem;
}
.mini-footer-inner {
  max-width: var(--max-w); margin-inline: auto; padding: 1.5rem var(--px);
  display: flex; flex-direction: column; align-items: center; gap: .5rem; text-align: center;
}
@media (min-width: 640px) { .mini-footer-inner { flex-direction: row; justify-content: space-between; } }
.mini-footer p { font-family: var(--font-sans); font-size: .72rem; color: rgba(242,242,240,.3); }
.mini-footer a {
  font-family: var(--font-sub); font-size: .72rem;
  color: rgba(242,242,240,.38); letter-spacing: .05em; transition: color .2s;
}
.mini-footer a:hover { color: var(--gold); }


/* Hero schedule dropdown — centred under button */
.hero-schedule { margin-left: 0 !important; }
.hero-schedule .schedule-dropdown {
  left: 50%;
  transform: translateX(-50%);
  right: auto;
}
/* ── Calendar legend ─────────────────────────────────────────── */
.calendar-legend {
  margin-top: 1.5rem; padding: 1.25rem;
  background: #fff; border: 1px solid var(--border);
}
.calendar-legend h4 {
  font-family: var(--font-sub); font-size: .72rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; color: var(--navy);
  margin-bottom: .75rem;
}
.legend-items {
  display: flex; flex-wrap: wrap; gap: .75rem 1.25rem;
}
.legend-item {
  display: flex; align-items: center; gap: .5rem;
}
.legend-swatch {
  width: 1rem; height: 1rem; display: inline-block; border: 1px solid;
}
.legend-item span:last-child {
  font-family: var(--font-sans); font-size: .82rem; color: var(--muted);
}
.legend-note {
  font-family: var(--font-sans); font-size: .78rem; color: var(--placeholder);
  margin-top: .75rem; margin-bottom: 0;
}

/* Sidebar session-info override */
.sidebar .session-info-grid { grid-template-columns: 1fr !important; margin-top: 0; }

/* ── Responsive helpers ───────────────────────────────────────── */
.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: block; } }
.hide-desktop { display: block; }
@media (min-width: 768px) { .hide-desktop { display: none; } }

.divider-line {
  height: 1px; background: rgba(185,155,90,.28); margin-block: 1.5rem;
}
