/* Frances Dunham Law — Site styles
   Palette: deep navy, refined gold, white */

:root{
  --navy:        #0F1E3D;
  --navy-deep:   #0A1530;
  --navy-mid:    #1B2D55;
  --gold:        #B8924A;
  --gold-light:  #C9A961;
  --gold-dark:   #8F6F32;
  --cream:       #F8F6F3;
  --cream-dark:  #ECE7DD;
  --ink:         #14172A;
  --muted:       #6F7388;
  --line:        #D8D2C5;
  --white:       #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(15,30,61,0.06);
  --shadow-md: 0 8px 28px rgba(15,30,61,0.10);
  --shadow-lg: 0 18px 60px rgba(15,30,61,0.16);
}

*,*::before,*::after{ box-sizing: border-box; }
html,body{ margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
img{ max-width:100%; height:auto; display:block; }
a{ color: var(--gold-dark); text-decoration: none; transition: color .25s ease; }
a:hover{ color: var(--gold); }

h1,h2,h3,h4,h5{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0 0 .6em;
  line-height: 1.12;
}
h1{ font-size: clamp(38px, 5.5vw, 72px); }
h2{ font-size: clamp(30px, 4vw, 52px); }
h3{ font-size: clamp(22px, 2.4vw, 30px); }
h4{ font-size: clamp(18px, 1.6vw, 22px); }
p{ margin: 0 0 1.1em; color: #2A2E45; }
.lede{ font-size: 19px; color: #3A3E55; line-height: 1.7; }

.container{ max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container-narrow{ max-width: 880px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px){
  .container, .container-narrow{ padding: 0 20px; }
}

.eyebrow{
  display:inline-block;
  font-family:'Inter', sans-serif;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--gold);
}
.eyebrow.on-dark{ color: var(--gold-light); }

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:'Inter', sans-serif;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  padding: 16px 36px; border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .3s ease;
  text-decoration:none;
}
.btn-gold{ background: var(--gold); color: #fff; }
.btn-gold:hover{ background: var(--gold-dark); color:#fff; }
.btn-navy{ background: var(--navy); color: #fff; }
.btn-navy:hover{ background: var(--navy-deep); color: #fff; }
.btn-ghost{ background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover{ background: var(--navy); color: #fff; }
.btn-ghost-light{ background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-ghost-light:hover{ background: var(--gold); border-color: var(--gold); color: #fff; }
.btn-sm{ padding: 10px 22px; font-size: 11px; }

/* Nav */
.site-nav{
  position: fixed; top:0; left:0; right:0;
  z-index: 100; height: 84px;
  display:flex; align-items:center;
  transition: background .3s ease, backdrop-filter .3s ease, height .3s ease, box-shadow .3s ease;
}
.site-nav.transparent{ background: transparent; }
.site-nav.solid{
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(15,30,61,0.06);
  height: 72px;
}
.nav-inner{
  width:100%; max-width: 1280px;
  margin: 0 auto; padding: 0 32px;
  display:flex; align-items:center; justify-content:space-between;
}
.nav-brand{
  display:flex; flex-direction: column;
  font-family: 'Cormorant Garamond', serif;
  text-decoration:none; line-height: 1;
}
.nav-brand .brand-name{
  font-size: 22px; font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--white);
  transition: color .3s ease;
}
.nav-brand .brand-sub{
  font-family:'Inter', sans-serif;
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 6px;
}
.site-nav.solid .nav-brand .brand-name{ color: var(--navy); }
.site-nav.solid .nav-brand .brand-sub{ color: var(--gold); }

.nav-links{ display:flex; align-items:center; gap: 32px; }
.nav-links a{
  font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color .25s ease;
  padding: 8px 0;
}
.site-nav.solid .nav-links a{ color: var(--navy); }
.nav-links a:hover{ color: var(--gold-light); }
.site-nav.solid .nav-links a:hover{ color: var(--gold); }
.nav-links a.active{ color: var(--gold-light); }
.site-nav.solid .nav-links a.active{ color: var(--gold); }

.nav-cta{
  background: var(--gold);
  color: #fff !important;
  padding: 12px 22px !important;
  font-size: 11px !important;
}
.nav-cta:hover{ background: var(--gold-dark); color:#fff !important; }

.nav-toggle{
  display:none;
  background:transparent; border:none;
  width:32px; height:32px;
  cursor:pointer;
  flex-direction: column; justify-content: center; gap: 6px;
}
.nav-toggle span{
  display:block; width: 26px; height: 1.5px;
  background: var(--white);
  transition: background .25s ease, transform .25s ease, opacity .25s ease;
}
.site-nav.solid .nav-toggle span{ background: var(--navy); }
.nav-toggle.active span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2){ opacity: 0; }
.nav-toggle.active span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 1024px){
  .nav-toggle{ display: flex; }
  .nav-links{
    position: fixed; inset: 84px 0 0 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 48px 32px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform .35s ease;
    overflow-y: auto;
  }
  .nav-links.open{ transform: translateX(0); }
  .nav-links a{ color: #fff !important; font-size: 18px !important; letter-spacing: 0.1em !important; }
  .nav-cta{ margin-top: 16px; }
}

/* Hero */
.hero{
  position: relative; width: 100%; min-height: 100vh;
  background: var(--navy-deep);
  overflow: hidden;
  display:flex; align-items: center;
}
#globe-canvas{ position:absolute; inset:0; width:100%; height:100%; z-index:1; opacity:.95; }
.hero-content{
  position: relative; z-index: 5;
  width: 100%; text-align: center;
  padding: 120px 32px 80px;
}
.hero h1{
  color: #fff;
  font-size: clamp(42px, 6.5vw, 88px);
  line-height: 1.02;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
  margin-bottom: 28px;
  font-weight: 400;
}
.hero .lede{
  color: rgba(255,255,255,0.78);
  max-width: 600px; margin: 0 auto 36px;
  font-size: 19px;
}
.hero .hero-actions{ display:flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero .eyebrow{ color: var(--gold-light); margin-bottom: 24px; letter-spacing: 0.3em; }
.scroll-cue{
  position:absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  animation: bounce-y 2.4s ease-in-out infinite;
}
@keyframes bounce-y{ 0%,100%{ transform: translate(-50%, 0); } 50%{ transform: translate(-50%, 10px); } }

/* Page hero (inner) */
.page-hero{
  position: relative;
  padding: 180px 0 100px;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.page-hero::before{
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(circle at 20% 30%, rgba(184,146,74,0.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(27,45,85,0.6), transparent 50%);
  pointer-events: none;
}
.page-hero .container{ position: relative; z-index: 2; }
.page-hero .eyebrow{ color: var(--gold-light); }
.page-hero h1{ color: #fff; margin: 18px 0 24px; font-size: clamp(40px, 5.5vw, 68px); }
.page-hero p{ color: rgba(255,255,255,0.78); max-width: 680px; font-size: 19px; line-height: 1.7; }
.breadcrumb{
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.breadcrumb a{ color: rgba(255,255,255,0.65); }
.breadcrumb a:hover{ color: var(--gold-light); }
.breadcrumb .sep{ margin: 0 10px; opacity: 0.4; }

/* Sections */
section.section{ padding: 110px 0; }
@media (max-width: 768px){ section.section{ padding: 72px 0; } }
.section-cream{ background: var(--cream); }
.section-white{ background: var(--white); }
.section-navy{ background: var(--navy); color: #fff; }
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4{ color:#fff; }
.section-navy p{ color: rgba(255,255,255,0.75); }
.section-cream-dark{ background: var(--cream-dark); }

.section-head{ text-align:center; max-width: 760px; margin: 0 auto 64px; }
.section-head h2{ margin: 14px 0 18px; }
.section-head p{ color: var(--muted); font-size: 18px; }

/* Feature cards */
.feature-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
@media (max-width: 900px){ .feature-grid{ grid-template-columns: 1fr; gap: 24px; } }
.feature{
  background: #fff;
  padding: 40px 32px;
  border-top: 2px solid var(--gold);
  border-radius: 2px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.feature:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature .feature-icon{
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cream);
  display:flex; align-items:center; justify-content:center;
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 22px;
}
.feature h3{ font-size: 22px; margin-bottom: 12px; }
.feature p{ color: var(--muted); font-size: 15px; }

/* Stats */
.stats{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
@media (max-width: 768px){ .stats{ grid-template-columns: repeat(2, 1fr); gap: 36px; } }
.stat{ text-align: center; }
.stat-value{
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 56px);
  color: var(--gold-light);
  line-height: 1; font-weight: 500;
}
.stat-label{
  margin-top: 12px;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.6);
}

/* Practice grid */
.practice-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px){ .practice-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .practice-grid{ grid-template-columns: 1fr; } }
.practice-card{
  background: #fff;
  padding: 36px 30px;
  border-radius: 2px;
  position: relative;
  transition: all .35s ease;
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  display:block;
}
.practice-card::before{
  content:''; position:absolute;
  left:0; top:0; height: 100%; width: 3px;
  background: var(--gold);
  transform: scaleY(0); transform-origin: top;
  transition: transform .35s ease;
}
.practice-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.practice-card:hover::before{ transform: scaleY(1); }
.practice-card .pa-icon{ font-size: 26px; color: var(--gold); margin-bottom: 18px; }
.practice-card h3{ font-size: 21px; margin-bottom: 8px; color: var(--navy); }
.practice-card p{ color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0; }
.practice-card .pa-link{
  display:inline-block; margin-top: 18px;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--navy);
}
.practice-card:hover .pa-link{ color: var(--gold); }

/* Attorney */
.attorney-grid{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 36px; }
@media (max-width: 900px){ .attorney-grid{ grid-template-columns: 1fr; } }
.attorney-card{
  background: #fff;
  border-radius: 2px; overflow:hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}
.attorney-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.attorney-portrait{
  width:100%; aspect-ratio: 4 / 5;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.attorney-portrait .initials{
  position: absolute; inset: 0;
  display:flex; align-items:center; justify-content:center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px; color: var(--gold);
  font-weight: 400; letter-spacing: -0.04em;
}
.attorney-body{ padding: 36px 32px; }
.attorney-body h3{ margin-bottom: 4px; }
.attorney-role{
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px; display: block;
}
.attorney-body p{ color: var(--muted); margin-bottom: 22px; font-size: 15px; }

/* Results */
.results-grid{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 768px){ .results-grid{ grid-template-columns: 1fr; } }
.result-card{
  background: #fff;
  padding: 40px;
  border-left: 3px solid var(--gold);
  border-radius: 0 2px 2px 0;
  box-shadow: var(--shadow-sm);
}
.result-amount{
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; color: var(--gold);
  line-height: 1; font-weight: 500;
}
.result-type{
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--navy);
  margin: 16px 0; font-weight: 600;
}
.result-desc{ color: var(--muted); font-size: 15px; margin: 0; }

/* Testimonials */
.testimonials-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px){ .testimonials-grid{ grid-template-columns: 1fr; } }
.testimonial{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px 34px;
  border-radius: 2px;
  position: relative;
}
.testimonial::before{
  content: '“';
  position: absolute; top: 12px; left: 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 90px; color: var(--gold);
  opacity: 0.4; line-height: 1;
}
.testimonial .stars{ color: var(--gold-light); margin-bottom: 14px; letter-spacing: 2px; }
.testimonial p{
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; line-height: 1.45;
  color: #fff;
  position: relative; z-index: 1;
}
.testimonial cite{
  display:block; margin-top: 24px;
  font-style: normal;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-light);
}

/* FAQ */
.faq-item{ border-bottom: 1px solid var(--line); }
.faq-item button{
  width: 100%; background: transparent; border: none;
  text-align: left; padding: 26px 0; cursor: pointer;
  display:flex; align-items:center; justify-content: space-between;
  gap: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; color: var(--navy); font-weight: 500;
}
.faq-item button .plus{
  width: 24px; height: 24px;
  position: relative; flex-shrink: 0;
  transition: transform .3s ease;
}
.faq-item button .plus::before,
.faq-item button .plus::after{
  content:''; position: absolute;
  background: var(--gold);
  left: 50%; top: 50%;
}
.faq-item button .plus::before{ width: 16px; height: 1.5px; transform: translate(-50%,-50%); }
.faq-item button .plus::after { width: 1.5px; height: 16px; transform: translate(-50%,-50%); transition: transform .3s ease; }
.faq-item.open button .plus::after{ transform: translate(-50%,-50%) rotate(90deg); }
.faq-panel{ max-height: 0; opacity: 0; overflow: hidden; transition: max-height .4s ease, opacity .4s ease; }
.faq-item.open .faq-panel{ max-height: 600px; opacity: 1; }
.faq-panel-inner{ padding: 0 0 28px; color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 760px; }

/* CTA band */
.cta-band{
  background:
    linear-gradient(rgba(15,30,61,0.85), rgba(15,30,61,0.95)),
    radial-gradient(circle at 30% 20%, var(--gold-dark), transparent 50%);
  background-color: var(--navy);
  padding: 100px 32px;
  text-align: center;
  color: #fff;
}
.cta-band h2{ color: #fff; max-width: 760px; margin: 0 auto 16px; }
.cta-band p{ color: rgba(255,255,255,0.78); max-width: 600px; margin: 0 auto 36px; font-size: 18px; }
.cta-band .btn-group{ display:flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Article body (for inner pages) */
.article-body h2{ margin-top: 56px; }
.article-body h3{ margin-top: 40px; }
.article-body ul, .article-body ol{ margin: 0 0 1.3em; padding-left: 1.4em; color: #2A2E45; }
.article-body li{ margin-bottom: 8px; line-height: 1.7; }
.article-body blockquote{
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 28px;
  margin: 28px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-style: italic;
  color: var(--navy); line-height: 1.45;
}

.inline-cta{
  margin: 56px 0 0;
  padding: 48px;
  background: var(--navy);
  color: #fff;
  text-align:center;
  border-radius: 2px;
}
.inline-cta h3{ color: #fff; margin-bottom: 12px; }
.inline-cta p{ color: rgba(255,255,255,0.78); margin-bottom: 24px; }

/* Blog */
.blog-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 900px){ .blog-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .blog-grid{ grid-template-columns: 1fr; } }
.blog-card{
  background: #fff;
  border-radius: 2px; overflow:hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
  display:flex; flex-direction: column;
  text-decoration: none;
}
.blog-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card .image{
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  position: relative; overflow: hidden;
}
.blog-card .image::after{
  content: attr(data-num);
  position: absolute;
  bottom: 16px; right: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 84px;
  color: rgba(184,146,74,0.35);
  line-height: 1;
}
.blog-card .body{ padding: 28px; flex: 1; display:flex; flex-direction: column; }
.blog-card .cat{
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.blog-card h3{ font-size: 22px; margin-bottom: 12px; line-height: 1.25; color: var(--navy); }
.blog-card p{ color: var(--muted); font-size: 14px; flex:1; }
.blog-card .read-more{
  margin-top: 16px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy);
}
.blog-card:hover .read-more{ color: var(--gold); }

/* Contact */
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 56px; }
@media (max-width: 900px){ .contact-grid{ grid-template-columns: 1fr; gap: 36px; } }
.contact-info-block + .contact-info-block{ margin-top: 28px; }
.contact-info-block .label{
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px; display:block;
}
.contact-info-block p{ margin: 0; color: var(--ink); font-size: 16px; }
.contact-info-block a{ color: var(--ink); }
.contact-info-block a:hover{ color: var(--gold); }

.form-card{
  background: #fff;
  padding: 48px 40px;
  border-radius: 2px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 600px){ .form-card{ padding: 32px 24px; } }
.form-field{ margin-bottom: 22px; }
.form-field label{
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px; display:block;
}
.form-field input,
.form-field select,
.form-field textarea{
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color .25s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{ border-bottom-color: var(--gold); }
.form-field textarea{ resize: vertical; min-height: 90px; }
.form-grid-2{ display:grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 600px){ .form-grid-2{ grid-template-columns: 1fr; } }

.map-embed{
  width:100%; aspect-ratio: 16/10;
  border-radius: 2px; overflow:hidden;
  border: 0; box-shadow: var(--shadow-sm);
}

/* Footer */
.site-footer{
  background: var(--navy-deep);
  color: rgba(255,255,255,0.65);
  padding: 80px 0 32px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 600px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-brand .brand-name{
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; color: #fff;
  margin-bottom: 4px; display:block;
}
.footer-brand .brand-sub{
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px; display:block;
}
.footer-brand p{ color: rgba(255,255,255,0.55); font-size: 14px; max-width: 320px; }
.footer-col h5{
  color: var(--gold-light);
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul{ list-style: none; padding: 0; margin: 0; }
.footer-col ul li{ margin-bottom: 10px; }
.footer-col ul a{
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  text-decoration: none;
  transition: color .25s ease;
}
.footer-col ul a:hover{ color: var(--gold-light); }
.footer-bar{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 26px;
  display:flex; justify-content:space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: rgba(255,255,255,0.4);
}
.footer-bar a{ color: rgba(255,255,255,0.4); }
.footer-bar a:hover{ color: var(--gold-light); }
.disclaimer{
  margin-top: 32px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 11px; line-height: 1.7;
  color: rgba(255,255,255,0.4);
  max-width: 920px;
}

/* Sticky CTA */
.sticky-cta{
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 90;
  background: var(--gold);
  color: #fff;
  padding: 14px 22px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  transform: translateY(120%);
  transition: transform .35s ease, background .3s ease;
  display:inline-flex; align-items:center; gap: 10px;
}
.sticky-cta.visible{ transform: translateY(0); }
.sticky-cta:hover{ background: var(--gold-dark); color:#fff; }

/* Exit popup */
.exit-popup{
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(15,30,61,0.75);
  display:none; align-items:center; justify-content:center;
  padding: 20px;
  backdrop-filter: blur(6px);
}
.exit-popup.show{ display:flex; }
.exit-popup-inner{
  background: #fff;
  max-width: 520px; width: 100%;
  padding: 48px 40px;
  border-radius: 2px;
  text-align:center; position: relative;
  border-top: 4px solid var(--gold);
}
.exit-popup-inner h3{ margin-bottom: 12px; }
.exit-popup-inner p{ color: var(--muted); margin-bottom: 24px; }
.exit-popup-close{
  position: absolute;
  top: 14px; right: 16px;
  background: transparent; border: none;
  font-size: 22px; color: var(--muted);
  cursor: pointer;
}

/* Trust badges */
.trust-row{
  display:flex; flex-wrap:wrap; gap: 36px; justify-content: center; align-items:center;
  padding: 44px 32px;
}
.trust-row .badge{
  display:flex; flex-direction: column; align-items:center; gap: 6px;
  text-align:center;
}
.trust-row .badge i{ font-size: 32px; color: var(--gold); }
.trust-row .badge span{
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy);
}

/* Reveal-on-scroll */
.reveal{ opacity: 0; transform: translateY(36px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in{ opacity: 1; transform: translateY(0); }
.reveal-stagger > *{ opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal-stagger.in > *{ opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(2){ transition-delay: .1s; }
.reveal-stagger.in > *:nth-child(3){ transition-delay: .2s; }
.reveal-stagger.in > *:nth-child(4){ transition-delay: .3s; }
.reveal-stagger.in > *:nth-child(5){ transition-delay: .4s; }
.reveal-stagger.in > *:nth-child(6){ transition-delay: .5s; }

/* Utilities */
.text-center{ text-align: center; }
.divider{ border: 0; border-top: 1px solid var(--line); margin: 56px 0; }
.row{ display:flex; flex-wrap:wrap; margin: 0 -16px; }
.col{ padding: 0 16px; flex: 1; }
.col-half{ padding: 0 16px; flex: 0 0 50%; max-width: 50%; }
@media (max-width:900px){ .col-half{ flex: 0 0 100%; max-width: 100%; } }
.gap-16{ gap: 16px; }
.mt-4{ margin-top: 32px; }
.mt-6{ margin-top: 48px; }


/* Attorney portrait — photo variant */
.attorney-portrait.has-photo{
  background: var(--navy);
}
.attorney-portrait.has-photo img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.attorney-portrait.has-photo .initials{ display: none; }

/* ============================================
   BLOG POST PAGES
   ============================================ */
.container-narrow{ max-width: 760px; margin: 0 auto; padding: 0 20px; }
.article-section{ padding: 80px 0 60px; }

.article-body{ font-family: 'Inter', sans-serif; color: #2A2D45; font-size: 17px; line-height: 1.75; }
.article-body p{ margin: 0 0 1.3em; }
.article-body p.lede{ font-size: 21px; line-height: 1.6; color: var(--navy); font-family: 'Cormorant Garamond', serif; font-weight: 500; letter-spacing: 0.005em; padding: 0 0 6px; border-bottom: 1px solid rgba(184,146,74,0.18); margin-bottom: 1.4em; }
.article-body h2{ font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 600; color: var(--navy); margin: 1.6em 0 0.5em; letter-spacing: -0.01em; }
.article-body h3{ font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; color: var(--navy); margin: 1.5em 0 0.45em; }
.article-body h4{ font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-dark); margin: 1.6em 0 0.4em; }
.article-body ul, .article-body ol{ margin: 0 0 1.3em 1.2em; padding: 0; }
.article-body li{ margin: 0 0 0.5em; }
.article-body a{ color: var(--navy); text-decoration: underline; text-decoration-color: rgba(184,146,74,0.5); text-underline-offset: 3px; text-decoration-thickness: 1px; transition: all 0.2s ease; }
.article-body a:hover{ color: var(--gold-dark); text-decoration-color: var(--gold); }
.article-body blockquote{ margin: 1.5em 0; padding: 8px 0 8px 24px; border-left: 3px solid var(--gold); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 22px; line-height: 1.5; color: var(--navy); }
.article-body strong{ color: var(--navy); font-weight: 600; }

.post-meta a{ color: var(--gold) !important; }

/* Authority link box */
.authority-link{ margin: 32px 0 24px; padding: 20px 24px; background: rgba(15,30,61,0.04); border-left: 3px solid var(--navy); border-radius: 2px; }
.authority-link p{ margin: 6px 0 0; font-size: 15px; color: #3A3E55; }
.authority-link a{ color: var(--navy); font-weight: 600; }

/* Inline CTA in articles */
.inline-cta{ margin: 36px 0; padding: 40px 36px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); border-radius: 4px; color: var(--cream); position: relative; overflow: hidden; }
.inline-cta::before{ content: ''; position: absolute; top: 0; right: 0; width: 200px; height: 200px; background: radial-gradient(circle, rgba(201,169,97,0.18) 0%, transparent 70%); pointer-events: none; }
.inline-cta-inner{ position: relative; }
.inline-cta .eyebrow{ color: var(--gold); }
.inline-cta h3{ font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 500; margin: 8px 0 10px; color: var(--cream); }
.inline-cta p{ margin: 0 0 22px; color: rgba(248,246,243,0.85); font-size: 16px; }
.inline-cta-actions{ display: flex; flex-wrap: wrap; gap: 12px; }
.btn-outline-light{ background: transparent; color: var(--cream); border: 1px solid rgba(248,246,243,0.4); padding: 12px 26px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; font-size: 12px; transition: all 0.25s ease; text-decoration: none; display: inline-block; border-radius: 2px; }
.btn-outline-light:hover{ background: rgba(248,246,243,0.1); border-color: var(--cream); color: var(--cream); }

/* Author box */
.author-box{ margin: 40px 0 0; padding: 32px; background: var(--cream); border-radius: 3px; border: 1px solid rgba(184,146,74,0.18); }
.author-box-inner{ display: flex; gap: 24px; align-items: flex-start; }
.author-portrait{ flex-shrink: 0; width: 96px; height: 96px; border-radius: 50%; overflow: hidden; position: relative; background: var(--navy); }
.author-portrait.has-photo img{ width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.author-portrait.monogram{ display: flex; align-items: center; justify-content: center; color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 500; letter-spacing: 0.03em; }
.author-box-text{ flex: 1; }
.author-box .btn-sm{ padding: 9px 20px; font-size: 11px; }
@media (max-width: 600px){
  .author-box{ padding: 24px; }
  .author-box-inner{ flex-direction: column; gap: 18px; }
  .author-portrait{ width: 72px; height: 72px; }
}

/* Related posts */
.related-grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.related-card{ display: block; padding: 24px 22px; background: #fff; border: 1px solid rgba(20,23,42,0.08); border-radius: 3px; text-decoration: none; color: inherit; transition: all 0.3s ease; position: relative; min-height: 180px; }
.related-card:hover{ border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.related-cat{ display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-dark); margin-bottom: 12px; }
.related-card h4{ font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500; line-height: 1.3; color: var(--navy); margin: 0 0 14px; }
.related-read{ font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-dark); font-weight: 600; }
.related-card:hover .related-read{ color: var(--gold); }

/* Prev / Next nav */
.prev-next-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 24px 0 0; border-top: 1px solid rgba(20,23,42,0.08); }
.prev-next{ display: block; padding: 22px 24px; background: var(--cream); border-radius: 3px; text-decoration: none; color: inherit; transition: all 0.25s ease; border: 1px solid transparent; }
.prev-next:hover{ background: #fff; border-color: rgba(184,146,74,0.3); box-shadow: var(--shadow-sm); }
.prev-next.next{ text-align: right; }
.pn-label{ display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-dark); margin-bottom: 8px; }
.pn-title{ display: block; font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 500; color: var(--navy); line-height: 1.35; }
@media (max-width: 720px){
  .prev-next-grid{ grid-template-columns: 1fr; }
  .prev-next.next{ text-align: left; }
}

/* Mobile tightening */
@media (max-width: 720px){
  .article-section{ padding: 56px 0 40px; }
  .article-body{ font-size: 16px; line-height: 1.7; }
  .article-body p.lede{ font-size: 19px; }
  .article-body h2{ font-size: 26px; }
  .article-body h3{ font-size: 21px; }
  .inline-cta{ padding: 32px 24px; }
  .inline-cta h3{ font-size: 24px; }
}

/* Blog index card links */
.blog-card-link{ text-decoration: none; color: inherit; display: block; }
.blog-card-link .blog-card{ transition: transform 0.3s ease, box-shadow 0.3s ease; height: 100%; }
.blog-card-link:hover .blog-card{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-link:hover .read-more{ color: var(--gold); }
