@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Cormorant+Garamond:ital,wght@1,400;1,500&family=Spectral:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');

:root {
  --mahogany: #3D1A0E;
  --navy: #1B2B4B;
  --navy-light: #243870;
  --off-white: #F0ECE4;
  --soft-white: #F7F5F2;
  --body-text: #2C1A10;
  --gold: #8B5E2A;
  --border: rgba(27,43,75,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Spectral', serif;
  font-weight: 300;
  color: var(--body-text);
  background: var(--soft-white);
  font-size: 17px;
  line-height: 1.85;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.3;
  color: var(--mahogany);
}

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--navy);
  display: block;
  margin-bottom: 14px;
}

.rule {
  width: 48px;
  height: 1px;
  background: var(--navy);
  display: block;
  margin: 18px 0 28px;
}

.rule-center { margin-left: auto; margin-right: auto; }

/* ─── SCROLL PROGRESS BAR ─── */
#scroll-progress-track {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(139,94,42,0.18);
  z-index: 200;
}
#scroll-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.08s linear;
}

/* ─── NAVIGATION ─── */
#nav {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: top 0.35s ease, background 0.4s, box-shadow 0.4s;
}

body.banner-up #nav { top: 0; }

#nav.scrolled {
  background: rgba(22,36,70,0.97);
  box-shadow: 0 1px 0 rgba(139,94,42,0.18);
}

.nav-logo svg, .nav-logo img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-left img {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--soft-white);
  transition: color 0.25s;
  position: relative;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a[style*="border-bottom"]::after { width: 100%; }

#nav.scrolled .nav-links a { color: var(--soft-white); }
#nav.scrolled .nav-links a::after { background: var(--gold); }
.nav-links a:hover { color: var(--gold); }
#nav.scrolled .nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--soft-white);
  border: 0.8px solid rgba(240,236,228,0.55);
  padding: 9px 18px;
  transition: all 0.2s;
  white-space: nowrap;
}

#nav.scrolled .nav-cta {
  color: var(--soft-white);
  border-color: rgba(240,236,228,0.5);
}

.nav-cta:hover {
  background: var(--soft-white);
  color: var(--mahogany) !important;
  border-color: var(--soft-white);
}

#nav.scrolled .nav-cta:hover {
  background: var(--soft-white);
  color: var(--navy) !important;
  border-color: var(--soft-white);
}

/* ─── HERO ─── */
.hero {
  height: 100vh;
  min-height: 640px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center 15%;
  filter: brightness(0.38);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(27,43,75,0.55) 0%, rgba(27,43,75,0.35) 60%, rgba(27,43,75,0.7) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 40px;
}

.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(240,236,228,0.7);
  margin-bottom: 28px;
  display: block;
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(32px, 5.5vw, 62px);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--soft-white);
  line-height: 1.15;
  margin-bottom: 10px;
}

.hero-rule {
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin: 26px auto;
}

.hero-tagline {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(240,236,228,0.82);
  letter-spacing: 0.06em;
  margin-bottom: 48px;
  font-style: italic;
}

.btn-primary {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--soft-white);
  border: 0.8px solid rgba(240,236,228,0.55);
  padding: 16px 44px;
  transition: all 0.25s;
  margin-right: 16px;
}

.btn-primary:hover {
  background: var(--soft-white);
  color: var(--mahogany);
  border-color: var(--soft-white);
}

.btn-secondary {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(240,236,228,0.75);
  padding: 16px 0;
  border-bottom: 0.8px solid rgba(240,236,228,0.35);
  transition: all 0.25s;
}

.btn-secondary:hover {
  color: var(--soft-white);
  border-color: rgba(240,236,228,0.7);
}

/* ─── SECTIONS ─── */
section { padding: 96px 60px; }

.section-inner {
  max-width: 1140px;
  margin: 0 auto;
}

/* ─── INTRO BAND ─── */
.intro-band {
  background: var(--navy);
  padding: 64px 60px;
  text-align: center;
}

.intro-band p {
  font-family: 'Cinzel', serif;
  font-size: clamp(15px, 2.2vw, 21px);
  font-weight: 400;
  color: var(--off-white);
  letter-spacing: 0.06em;
  line-height: 1.7;
  max-width: 820px;
  margin: 0 auto;
}

.intro-band .rule { background: var(--gold); }

/* ─── ABOUT PREVIEW ─── */
.about-preview { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-grid img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  display: block;
}

.about-text h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 8px; }

.about-text p {
  color: #4A3020;
  margin-bottom: 20px;
  font-size: 16.5px;
}

/* ─── PRACTICE AREAS ─── */
.practice-areas { background: var(--soft-white); }

.practice-areas h2 {
  font-size: clamp(26px, 3vw, 38px);
  text-align: center;
  margin-bottom: 8px;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 56px;
}

.practice-card {
  background: var(--off-white);
  padding: 48px 40px;
  border-left: 2px solid transparent;
  transition: border-color 0.25s, background 0.25s;
  text-decoration: none;
  display: block;
}

.practice-card:hover {
  border-left-color: var(--navy);
  background: #E8E2D6;
}

.practice-card .number {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--navy);
  display: block;
  margin-bottom: 20px;
}

.practice-card h3 {
  font-size: 21px;
  margin-bottom: 16px;
  color: var(--mahogany);
}

.practice-card p {
  font-size: 15.5px;
  color: #5A3A28;
  line-height: 1.75;
}

/* ─── REVIEWS ─── */
.reviews { background: var(--navy); padding: 96px 60px; }

.reviews h2 {
  color: var(--off-white);
  text-align: center;
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 8px;
}

.reviews .section-label { color: rgba(240,236,228,0.55); text-align: center; }
.reviews .rule { background: var(--gold); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.review-card {
  background: rgba(240,236,228,0.06);
  border: 0.5px solid rgba(240,236,228,0.15);
  padding: 36px 32px;
}

.stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  display: block;
}

.review-card p {
  color: rgba(240,236,228,0.82);
  font-size: 15.5px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.review-author {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(240,236,228,0.45);
  text-transform: uppercase;
}

.reviews-note {
  text-align: center;
  margin-top: 40px;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(240,236,228,0.35);
}

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--mahogany);
  padding: 80px 60px;
  text-align: center;
}

.cta-band h2 {
  color: var(--soft-white);
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 16px;
}

.cta-band p {
  color: rgba(240,236,228,0.72);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 40px;
}

.cta-band .btn-primary { border-color: rgba(240,236,228,0.5); }

.phone-link {
  display: block;
  margin-top: 24px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(240,236,228,0.5);
  text-decoration: none;
}

.phone-link:hover { color: var(--soft-white); }

/* ─── FOOTER ─── */
footer {
  background: #1A0C06;
  padding: 56px 60px 36px;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 0.5px solid rgba(240,236,228,0.1);
}

.footer-left p {
  font-size: 14px;
  color: rgba(240,236,228,0.4);
  margin-top: 20px;
  line-height: 1.7;
}

.footer-center { text-align: center; }

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.footer-nav a {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(240,236,228,0.45);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--off-white); }

.footer-bottom {
  max-width: 1140px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 11px;
  color: rgba(240,236,228,0.22);
  letter-spacing: 0.05em;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  height: 340px;
  background: var(--navy);
  display: flex;
  align-items: flex-end;
  padding: 0 60px 60px;
  margin-top: 80px;
}

.page-hero h1 {
  color: var(--soft-white);
  font-size: clamp(28px, 4vw, 48px);
}

.page-hero .section-label { color: rgba(240,236,228,0.5); margin-bottom: 10px; }

/* ─── ABOUT PAGE ─── */
.bio-section { background: var(--off-white); }

.bio-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: start;
}

.bio-grid img {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  box-shadow: none;
}

.bio-text h2 { font-size: 28px; margin-bottom: 6px; margin-top: 40px; }
.bio-text h2:first-child { margin-top: 0; }

.bio-text p {
  color: #4A3020;
  margin-bottom: 20px;
  font-size: 17px;
  text-align: justify;
}

.differentiator {
  background: var(--soft-white);
  border-left: 2px solid var(--navy);
  padding: 32px 36px;
  margin: 32px 0;
}

.differentiator p {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--navy);
  font-weight: 400;
}

.differentiator-dark {
  background: var(--navy);
  border-left: 3px solid var(--gold);
}

.differentiator-dark p {
  color: var(--soft-white);
  font-size: 15.5px;
  line-height: 1.8;
}

/* ─── LEGISLATIVE CALLOUT ─── */
.bio-left {
  position: sticky;
  top: 100px;
  align-self: start;
}

.bio-left img {
  position: static;
  display: block;
  width: 100%;
}

.legislative-callout {
  background: var(--navy);
  border-top: 2px solid var(--gold);
  padding: 28px 32px;
}

.legislative-callout p {
  font-size: 14.5px;
  color: rgba(240,236,228,0.82);
  line-height: 1.9;
  margin: 0;
  font-style: italic;
}

/* ─── PRACTICE AREAS PAGE ─── */
.practice-detail { background: var(--off-white); }

.practice-detail-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  align-items: start;
}

.practice-sidebar {
  position: sticky;
  top: 100px;
}

.practice-sidebar ul {
  list-style: none;
  border-left: 1px solid var(--border);
}

.practice-sidebar li a {
  display: block;
  padding: 12px 20px;
  font-family: 'Cinzel', serif;
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  border-left: 2px solid transparent;
  margin-left: -1px;
  transition: all 0.2s;
}

.practice-sidebar li a:hover,
.practice-sidebar li a.active {
  border-left-color: var(--navy);
  color: var(--mahogany);
}

.offense-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin: 24px 0 32px;
}

.offense-tag {
  background: var(--soft-white);
  border: 0.5px solid var(--border);
  padding: 12px 16px;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  display: block;
}

a.offense-tag:hover {
  background: var(--navy);
  color: var(--soft-white);
  border-color: var(--navy);
}

/* ─── MOBILE NAV FIX ─── */
.nav-links.mobile-open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--off-white);
  padding: 24px 28px;
  gap: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.nav-links.mobile-open a { color: var(--navy) !important; }

/* ─── PRACTICE ACCORDION ─── */
.practice-accordion { max-width: 720px; margin: 56px auto 0; }

.pa-item {
  border-top: 1px solid var(--border);
}
.pa-item:last-child { border-bottom: 1px solid var(--border); }

.pa-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 28px 0;
  text-align: left;
}

.pa-toggle .number {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--navy);
  opacity: 0.5;
  min-width: 28px;
}

.pa-toggle .pa-title {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--mahogany);
  flex: 1;
}

.pa-toggle .pa-arrow {
  font-size: 16px;
  color: var(--navy);
  opacity: 0.5;
  transition: transform 0.3s;
}

.pa-item.open .pa-arrow { transform: rotate(180deg); }

.pa-body {
  display: none;
  padding: 0 0 32px 52px;
}
.pa-item.open .pa-body { display: block; }

.pa-body p {
  color: #4A3020;
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 24px;
}

/* ─── CONTACT PAGE ─── */
.contact-section { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { font-size: 32px; margin-bottom: 8px; }

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.contact-item label {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--navy);
  display: block;
  margin-bottom: 6px;
}

.contact-item a,
.contact-item p {
  font-size: 16.5px;
  color: var(--body-text);
  text-decoration: none;
}

.contact-item a:hover { color: var(--mahogany); }

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  font-family: 'Cinzel', serif;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--soft-white);
  background: var(--mahogany);
  padding: 16px 36px;
  transition: background 0.2s;
}

.call-btn:hover { background: var(--navy); }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--soft-white);
  border: 0.8px solid rgba(27,43,75,0.22);
  padding: 14px 16px;
  font-family: 'Lato', sans-serif;
  font-size: 15.5px;
  color: var(--body-text);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-submit {
  font-family: 'Cinzel', serif;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soft-white);
  background: var(--navy);
  border: none;
  padding: 16px 40px;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}

.form-submit:hover { background: var(--mahogany); }

.form-disclaimer {
  font-size: 12px;
  color: rgba(44,26,16,0.45);
  line-height: 1.6;
}

/* ─── HAMBURGER (mobile) ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--soft-white);
  transition: background 0.3s;
}

#nav.scrolled .hamburger span { background: var(--navy); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  #nav { padding: 0 24px; }
  section { padding: 64px 24px; }
  .intro-band, .cta-band, .reviews { padding: 56px 24px; }
  footer { padding: 48px 24px 28px; }
  .page-hero { padding: 0 24px 44px; height: 260px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-content { padding: 0 24px; }
  .hero h1 { font-size: clamp(28px, 9vw, 48px); }
  .btn-primary { padding: 14px 28px; margin-right: 12px; font-size: 9.5px; }
  .btn-secondary { font-size: 9.5px; padding: 14px 0; }

  /* Grids → single column */
  .about-grid,
  .bio-grid,
  .contact-grid,
  .practice-detail-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Reviews → 2 col on tablet, 1 col on phone */
  .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* About / Bio */
  .about-grid img { aspect-ratio: 4/3; object-position: center 20%; }
  .bio-grid img { position: static; max-width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center 15%; }
  .bio-left { position: static; }

  /* Practice */
  .practice-sidebar { position: static; }
  .pa-toggle .pa-title { font-size: 15px; }
  .pa-body { padding-left: 36px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-nav { align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Back to top */
  #back-to-top { bottom: 24px; right: 20px; }

  /* Accepting tag */
  .accepting-tag { font-size: 8px; }
}

@media (max-width: 560px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(26px, 10vw, 42px); }
  .btn-primary, .btn-secondary { display: block; text-align: center; margin-right: 0; margin-bottom: 12px; }
  .hero-content .btn-primary { margin-bottom: 16px; }
  section { padding: 56px 20px; }
  .intro-band, .cta-band, .reviews { padding: 48px 20px; }
  .page-hero { height: 220px; padding: 0 20px 36px; }
  .pa-toggle { padding: 20px 0; }
  .pa-toggle .pa-title { font-size: 14px; }
  .differentiator, .differentiator-dark { padding: 24px 22px; }
  .differentiator p, .differentiator-dark p { font-size: 14px; }
  .contact-grid { gap: 48px; }
  .call-btn { padding: 14px 24px; }
  .form-submit { width: 100%; text-align: center; }
}

/* ─── BACK TO TOP ─── */
#back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  border: 1px solid rgba(240,236,228,0.2);
  color: var(--soft-white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 99;
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#back-to-top:hover { background: var(--mahogany); }

/* ─── ACCEPTING CLIENTS TAG ─── */
.accepting-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(240,236,228,0.65);
  margin-bottom: 28px;
}

.accepting-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ─── LUXURY NAVY DEPTH ─── */

/* Page hero — rich layered gradient + R monogram watermark + vignette */
.page-hero {
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  background:
    radial-gradient(ellipse at 18% 65%, rgba(34,56,100,0.7) 0%, transparent 52%),
    radial-gradient(ellipse at 82% 18%, rgba(8,14,42,0.55) 0%, transparent 48%),
    radial-gradient(ellipse at 50% 110%, rgba(6,10,32,0.5) 0%, transparent 50%),
    linear-gradient(158deg, rgba(28,46,84,1) 0%, rgba(17,28,60,1) 45%, rgba(12,20,52,1) 100%);
}

body.banner-up .page-hero { margin-top: 80px; }

/* R monogram watermark */
.page-hero::before {
  content: 'R';
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: clamp(240px, 32vw, 400px);
  color: rgba(255,255,255,0.027);
  position: absolute;
  right: 5%;
  bottom: -8%;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Vignette on page hero */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 50%, transparent 30%, rgba(5,9,26,0.45) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Ensure page-hero text renders above pseudo-elements */
.page-hero > div {
  position: relative;
  z-index: 1;
}

/* Hero section vignette */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(5,10,28,0.42) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Richer hero overlay (replaces existing linear-gradient) */
.hero-overlay {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(6,10,32,0.6) 0%, transparent 52%),
    radial-gradient(ellipse at 15% 50%, rgba(28,48,88,0.4) 0%, transparent 48%),
    radial-gradient(ellipse at 85% 10%, rgba(6,14,38,0.35) 0%, transparent 44%),
    linear-gradient(175deg, rgba(26,44,80,0.55) 0%, rgba(16,28,62,0.3) 50%, rgba(10,18,50,0.72) 100%);
}

/* Intro band depth */
.intro-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(34,54,96,0.6) 0%, transparent 58%),
    radial-gradient(ellipse at 80% 80%, rgba(6,12,38,0.5) 0%, transparent 50%),
    linear-gradient(158deg, rgba(26,44,76,1) 0%, rgba(18,30,62,1) 50%, rgba(22,36,70,1) 100%);
}

.intro-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 32%, rgba(5,10,28,0.32) 100%);
  pointer-events: none;
}

.intro-band .section-inner { position: relative; z-index: 1; }

/* Reviews section depth */
.reviews {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(34,54,96,0.7) 0%, transparent 52%),
    radial-gradient(ellipse at 12% 80%, rgba(6,12,38,0.5) 0%, transparent 44%),
    radial-gradient(ellipse at 88% 60%, rgba(8,16,44,0.4) 0%, transparent 40%),
    linear-gradient(172deg, rgba(22,36,68,1) 0%, rgba(14,24,54,1) 42%, rgba(18,30,60,1) 100%);
}

.reviews::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 38%, rgba(4,8,26,0.38) 100%);
  pointer-events: none;
}

.reviews .section-inner { position: relative; z-index: 1; }

/* Navy CTA band depth */
.cta-navy {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(34,54,96,0.65) 0%, transparent 58%),
    radial-gradient(ellipse at 80% 80%, rgba(6,12,38,0.5) 0%, transparent 50%),
    linear-gradient(158deg, rgba(26,44,78,1) 0%, rgba(16,26,60,1) 50%, rgba(20,33,68,1) 100%) !important;
}

.cta-navy::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(4,8,26,0.35) 100%);
  pointer-events: none;
}

.cta-navy .section-inner { position: relative; z-index: 1; }

/* Legislative callout depth */
.legislative-callout {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 85% 100%, rgba(32,52,94,0.55) 0%, transparent 58%),
    linear-gradient(155deg, rgba(26,44,78,1) 0%, rgba(15,25,56,1) 100%);
}

.legislative-callout::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 32px;
  right: 32px;
  height: 0.5px;
  background: linear-gradient(90deg, transparent, rgba(139,94,42,0.3), transparent);
  pointer-events: none;
}

/* ─── CONSULTATION BANNER ─── */
#consult-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 36px;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(32,52,94,0.5) 0%, transparent 70%),
    linear-gradient(90deg, rgba(10,18,42,1) 0%, rgba(20,34,66,1) 50%, rgba(10,18,42,1) 100%);
  border-bottom: 0.5px solid rgba(139,94,42,0.28);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

#consult-banner.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

#consult-banner a.banner-link {
  font-family: 'Cinzel', serif;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(240,236,228,0.78);
  transition: color 0.2s;
}

#consult-banner a.banner-link:hover { color: var(--soft-white); }

.banner-sep {
  width: 0.5px;
  height: 13px;
  background: rgba(139,94,42,0.38);
  display: inline-block;
  flex-shrink: 0;
}

#banner-close {
  position: absolute;
  right: 18px;
  background: none;
  border: none;
  color: rgba(240,236,228,0.28);
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  transition: color 0.2s;
  font-family: sans-serif;
}

#banner-close:hover { color: rgba(240,236,228,0.6); }

/* ─── BAR ADMISSION STRIPE ─── */
.bar-admission {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(28,46,84,0.4) 0%, transparent 70%),
    linear-gradient(180deg, rgba(10,16,40,1) 0%, rgba(8,13,34,1) 100%);
  padding: 32px 60px;
  border-top: 0.5px solid rgba(139,94,42,0.18);
}

.bar-admission-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
}

.bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.bar-seal {
  width: 52px;
  height: 52px;
  border: 0.8px solid rgba(139,94,42,0.42);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.bar-seal::before {
  content: '';
  position: absolute;
  inset: 3.5px;
  border: 0.5px solid rgba(139,94,42,0.18);
  border-radius: 50%;
}

.bar-seal-text {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 500;
  color: rgba(139,94,42,0.72);
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.bar-label {
  font-family: 'Cinzel', serif;
  font-size: 8px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(240,236,228,0.36);
  text-align: center;
  line-height: 1.65;
}

.bar-div {
  width: 0.5px;
  height: 38px;
  background: rgba(139,94,42,0.18);
}

/* ─── CONTACT FORM BOX ─── */
.contact-form-box {
  background: #ffffff;
  border: 0.8px solid rgba(27,43,75,0.12);
  padding: 40px 40px 36px;
  box-shadow: 0 2px 28px rgba(27,43,75,0.07), 0 0 0 0.5px rgba(27,43,75,0.05);
}

/* ─── PAGE TRANSITION ─── */
body { animation: page-in 0.4s ease both; }

@keyframes page-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

body.page-exit {
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

/* ─── HERO TYPING CURSOR ─── */
.hero-cursor {
  display: inline-block;
  width: 2px;
  height: 0.82em;
  background: rgba(240,236,228,0.65);
  margin-left: 3px;
  vertical-align: middle;
  animation: cursor-blink 1.1s step-end infinite;
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ─── ANTIQUE BRASS RULE ACCENT ─── */
.brass-rule {
  height: 0.5px;
  background: linear-gradient(90deg, transparent, rgba(139,94,42,0.4), transparent);
  border: none;
  margin: 0 auto;
  max-width: 320px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  #consult-banner { height: 32px; }
  #nav { top: 32px; }
  body.banner-up #nav { top: 0; }
  .page-hero { margin-top: 80px; }
  body.banner-up .page-hero { margin-top: 80px; }
  .bar-admission { padding: 24px 24px; }
  .bar-admission-inner { gap: 28px; flex-wrap: wrap; }
  .bar-div { display: none; }
  .contact-form-box { padding: 28px 24px; }
  #consult-banner a.banner-link { font-size: 8.5px; }
}

@media (max-width: 560px) {
  #consult-banner { display: none; }
  body:not(.banner-up) #nav { top: 0; }
  body:not(.banner-up) .page-hero { margin-top: 80px; }
  .bar-admission-inner { gap: 20px; }
}

/* ─── TYPOGRAPHY REFINEMENTS ─── */

/* More airy, book-like body text */
body { line-height: 1.97; }

/* Nav — thinner, more letter-spaced, editorial */
.nav-links { gap: 44px; }

.nav-links a {
  font-size: 9px;
  letter-spacing: 0.32em;
}

.nav-cta {
  font-size: 9px;
  letter-spacing: 0.22em;
  padding: 9px 22px;
}

/* Hero tagline — larger, more room to breathe */
.hero-tagline {
  font-size: 15px !important;
  letter-spacing: 0.32em !important;
  margin-bottom: 60px !important;
  color: rgba(240,236,228,0.72) !important;
}

/* Narrow reading columns — more editorial, less dense */
.bio-text p,
.bio-text h2 { max-width: 640px; }

.about-text p { max-width: 560px; }

.practice-detail-grid > div > div p { max-width: 600px; }

.pa-body p { max-width: 580px; }

.contact-section p,
.contact-item a,
.contact-item p { max-width: 460px; }

/* Tighten section heading letter spacing for editorial feel */
h1, h2 { letter-spacing: 0.05em; }

h3 { letter-spacing: 0.04em; }

/* Refined review cards — slightly more generous line height */
.review-card p { line-height: 1.9; font-size: 15px; }

/* Offense tags — more refined tracking */
.offense-tag { letter-spacing: 0.14em; }

/* Sidebar nav refinement */
.practice-sidebar li a { letter-spacing: 0.18em; font-size: 9.5px; }

/* ─── DISCLAIMER MODAL ─── */
.disclaimer-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,16,40,0.72);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  padding: 24px;
}

.disclaimer-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.disclaimer-modal {
  background: var(--soft-white);
  max-width: 560px;
  width: 100%;
  padding: 44px 48px 40px;
  position: relative;
  border-top: 2px solid var(--navy);
  transform: translateY(16px);
  transition: transform 0.28s ease;
}

.disclaimer-modal-overlay.open .disclaimer-modal {
  transform: translateY(0);
}

.disclaimer-modal h3 {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
}

.disclaimer-modal p {
  font-size: 14.5px;
  color: #4A3020;
  line-height: 1.9;
  margin-bottom: 0;
}

.disclaimer-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 20px;
  color: rgba(44,26,16,0.35);
  cursor: pointer;
  line-height: 1;
  font-family: sans-serif;
  transition: color 0.2s;
}

.disclaimer-close:hover { color: var(--mahogany); }

/* Disclaimer row in form */
.disclaimer-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}

.disclaimer-row input[type="checkbox"] {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--navy);
  cursor: pointer;
  border-radius: 0;
}

.disclaimer-row label {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  cursor: pointer;
  line-height: 1.6;
}

.disclaimer-row label a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.disclaimer-row label a:hover { color: var(--mahogany); }

/* ─── CONTACT FORM BOX — LUXURY NAVY CARD ─── */
.contact-form-box {
  position: relative;
  overflow: hidden;
  padding: 44px 44px 40px;
  background:
    radial-gradient(ellipse at 18% 65%, rgba(34,56,100,0.7) 0%, transparent 52%),
    radial-gradient(ellipse at 82% 18%, rgba(8,14,42,0.55) 0%, transparent 48%),
    radial-gradient(ellipse at 50% 110%, rgba(6,10,32,0.5) 0%, transparent 50%),
    linear-gradient(158deg, rgba(28,46,84,1) 0%, rgba(17,28,60,1) 45%, rgba(12,20,52,1) 100%);
  border: none;
  box-shadow: none;
}

/* Vignette */
.contact-form-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 50%, transparent 30%, rgba(5,9,26,0.42) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Faint R watermark */
.contact-form-box::before {
  content: 'R';
  font-family: 'Cinzel', serif;
  font-size: 260px;
  color: rgba(255,255,255,0.025);
  position: absolute;
  right: -4%;
  bottom: -10%;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Ensure form content sits above pseudo-elements */
.contact-form-box > * { position: relative; z-index: 1; }

/* Override text colors inside the dark card */
.contact-form-box .section-label { color: rgba(240,236,228,0.48); }
.contact-form-box .rule { background: var(--gold); opacity: 0.6; }

.contact-form-box .form-group label {
  color: rgba(240,236,228,0.65);
}

.contact-form-box .form-group input,
.contact-form-box .form-group select,
.contact-form-box .form-group textarea {
  background: rgba(240,236,228,0.06);
  border: 0.8px solid rgba(240,236,228,0.18);
  color: var(--soft-white);
}

.contact-form-box .form-group input::placeholder,
.contact-form-box .form-group textarea::placeholder {
  color: rgba(240,236,228,0.3);
}

.contact-form-box .form-group select option {
  background: var(--navy);
  color: var(--soft-white);
}

.contact-form-box .form-group input:focus,
.contact-form-box .form-group select:focus,
.contact-form-box .form-group textarea:focus {
  border-color: rgba(139,94,42,0.55);
  outline: none;
}

.contact-form-box .form-submit {
  background: rgba(240,236,228,0.1);
  border: 0.8px solid rgba(240,236,228,0.32);
  color: var(--soft-white);
  transition: background 0.2s, border-color 0.2s;
}

.contact-form-box .form-submit:hover {
  background: rgba(139,94,42,0.35);
  border-color: rgba(139,94,42,0.6);
}

.contact-form-box .disclaimer-row label { color: rgba(240,236,228,0.55); }
.contact-form-box .disclaimer-row label a { color: rgba(139,94,42,0.8); }

/* Antique gold top border accent */
.contact-form-box { border-top: 1.5px solid rgba(139,94,42,0.45); }

@media (max-width: 560px) {
  .contact-form-box { padding: 32px 24px 28px; }
}

/* ─── HERO CINEMATIC REFINEMENT ─── */

/* Cooler, slightly darker filter to push image into atmosphere */
.hero-bg {
  filter: brightness(0.34) contrast(0.94) saturate(0.88);
}

/* Film grain — very subtle paper/analog texture */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='320' height='320' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* Multi-layer overlay with text-backing pocket behind center content */
.hero-overlay {
  background:
    radial-gradient(ellipse at 50% 48%, rgba(4,8,26,0.30) 0%, transparent 44%),
    radial-gradient(ellipse at 50% 105%, rgba(4,8,28,0.70) 0%, transparent 52%),
    radial-gradient(ellipse at 12% 50%, rgba(24,42,84,0.40) 0%, transparent 46%),
    radial-gradient(ellipse at 88% 12%, rgba(6,14,38,0.32) 0%, transparent 44%),
    linear-gradient(172deg, rgba(22,38,76,0.54) 0%, rgba(12,22,58,0.24) 48%, rgba(8,14,46,0.70) 100%);
}

/* 4-edge vignette — cinematic, heavier than the single radial */
.hero::after {
  background:
    linear-gradient(to bottom, rgba(4,8,26,0.60) 0%, transparent 30%),
    linear-gradient(to top, rgba(4,8,26,0.75) 0%, transparent 38%),
    linear-gradient(to right, rgba(4,8,26,0.44) 0%, transparent 26%),
    linear-gradient(to left, rgba(4,8,26,0.44) 0%, transparent 26%),
    radial-gradient(ellipse at center, transparent 22%, rgba(4,8,26,0.52) 100%);
}

/* Hero name — one line on desktop */
.hero h1 {
  font-size: clamp(26px, 4.6vw, 62px);
  letter-spacing: 0.10em;
}

@media (min-width: 901px) {
  .hero h1 { white-space: nowrap; }
}

/* Tagline — more air, more editorial */
.hero-tagline {
  letter-spacing: 0.42em !important;
}

/* Luxury button transitions — slow, intentional */
.btn-primary {
  border-width: 0.5px;
  transition: background 0.55s ease-in-out, color 0.55s ease-in-out, border-color 0.55s ease-in-out, opacity 0.55s ease-in-out;
}

.btn-secondary {
  border-bottom-width: 0.5px;
  transition: color 0.55s ease-in-out, border-color 0.55s ease-in-out, opacity 0.55s ease-in-out;
}
