:root {
  --navy: #0F1B3D;
  --navy-mid: #1A2851;
  --navy-lt: #2A3D6F;
  --gold: #B8935A;
  --gold-lt: #D4B078;
  --gold-dk: #8F6F3E;
  --cream: #F5EFDF;
  --bone: #FAF5E8;
  --parchment: #F0E8D2;
  --char: #1A1A1A;
  --text: #1A1F35;
  --muted: #5A6480;
  --border: #E0D6BE;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Cormorant Garamond', serif;
  background: var(--bone);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
  line-height: 1.6;
}

/* DEMO BANNER */
.demo-banner {
  background: #1C2D4F; border-bottom: 1px solid rgba(42,111,212,0.4);
  padding: 10px 2rem; text-align: center; font-size: 14px;
  color: rgba(220,230,248,0.9); display: flex; align-items: center;
  justify-content: center; gap: 12px; flex-wrap: wrap; font-family: 'Cormorant Garamond', serif;
}
.demo-banner strong { color: #7EB8F7; }
.demo-banner a {
  background: #2A6FD4; color: #fff; text-decoration: none;
  padding: 4px 14px; border-radius: 20px; font-size: 13px; font-weight: 600;
}

/* NAV */
nav {
  background: var(--navy);
  color: var(--cream);
  padding: 1.25rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(184,147,90,0.20);
  position: sticky; top: 0; z-index: 100;
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: inherit; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700;
  color: var(--navy); font-style: italic;
  box-shadow: 0 4px 15px rgba(184,147,90,0.3);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600; color: var(--cream); letter-spacing: 0.01em; }
.brand-name em { color: var(--gold-lt); font-style: italic; font-weight: 500; }
.brand-tag { font-size: 11px; color: rgba(245,239,223,0.55); letter-spacing: 0.15em; text-transform: uppercase; margin-top: 3px; font-family: 'Cormorant Garamond', serif; font-style: italic; }

.nav-links { display: flex; gap: 2.25rem; list-style: none; }
.nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; color: rgba(245,239,223,0.80);
  text-decoration: none; font-weight: 500;
  transition: color 0.2s; padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  letter-spacing: 0.02em;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-lt); border-bottom-color: var(--gold); }

.nav-cta {
  background: transparent;
  color: var(--gold-lt);
  padding: 10px 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-weight: 600;
  border: 1.5px solid var(--gold);
  text-decoration: none; transition: all 0.2s;
  letter-spacing: 0.03em;
}
.nav-cta:hover { background: var(--gold); color: var(--navy); }

/* HERO */
.hero {
  position: relative;
  padding: 7rem 3rem 8rem;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy) 100%);
  color: var(--cream);
  overflow: hidden;
  text-align: center;
}
.hero-ornament {
  position: absolute; opacity: 0.06; pointer-events: none;
}
.hero-ornament.tl { top: 3rem; left: 3rem; }
.hero-ornament.br { bottom: 3rem; right: 3rem; transform: rotate(180deg); }
.hero-ornament svg { width: 80px; height: 80px; color: var(--gold); }
.hero-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 1.5rem; font-weight: 500;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '—'; margin: 0 0.75rem; opacity: 0.6;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 72px); font-weight: 700;
  line-height: 1.1; margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.hero h1 em { font-style: italic; color: var(--gold-lt); font-weight: 400; }
.hero-sub {
  font-size: 21px; color: rgba(245,239,223,0.75);
  line-height: 1.75; max-width: 620px; margin: 0 auto 2.5rem;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-gold {
  background: var(--gold); color: var(--navy);
  padding: 14px 32px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 600;
  border: none; cursor: pointer; text-decoration: none;
  transition: all 0.2s; letter-spacing: 0.03em;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(184,147,90,0.35); }
.btn-outline-gold {
  background: transparent; color: var(--gold-lt);
  padding: 14px 32px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 600;
  border: 1.5px solid var(--gold);
  text-decoration: none; transition: all 0.2s; letter-spacing: 0.03em;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }

/* PILLARS */
.pillars {
  background: var(--parchment);
  padding: 3rem 3rem;
  border-bottom: 1px solid var(--border);
}
.pillars-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  text-align: center;
}
.pillar-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 700; color: var(--navy);
  line-height: 1; margin-bottom: 6px;
}
.pillar-num em { color: var(--gold); font-style: italic; }
.pillar-label {
  font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}

/* SECTIONS */
section { padding: 6rem 3rem; }
.inner { max-width: 1180px; margin: 0 auto; }
.eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-dk); font-weight: 600; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--gold);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 52px); font-weight: 600; line-height: 1.15;
  color: var(--navy); margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.section-sub {
  font-size: 20px; color: var(--muted); line-height: 1.7;
  max-width: 620px; font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 3.5rem;
}
.section-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem 0 2rem;
}

/* PRACTICE PREVIEW GRID */
.practice-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.practice-card {
  background: var(--bone);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-decoration: none; color: inherit;
  transition: all 0.3s;
  position: relative;
}
.practice-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.practice-card:hover { background: var(--parchment); }
.practice-card:hover::before { transform: scaleX(1); }
.practice-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(184,147,90,0.15);
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.practice-icon-wrap i { color: var(--gold-dk); font-size: 26px; }
.practice-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 600; color: var(--navy);
  margin-bottom: 8px;
}
.practice-card p { font-size: 16px; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.practice-link { color: var(--gold-dk); font-size: 14px; font-weight: 600; letter-spacing: 0.05em; }

/* ABOUT/COMMITMENT */
.commitment {
  background: var(--parchment);
  position: relative;
}
.commitment::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--border);
}
.commitment-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem;
  align-items: center;
}
.commitment-visual {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.commitment-visual::before {
  content: ''; position: absolute; inset: 12px;
  border: 1px solid rgba(184,147,90,0.4);
}
.commitment-crest {
  font-family: 'Playfair Display', serif;
  font-size: 120px; color: var(--gold); font-style: italic;
  font-weight: 700; text-shadow: 0 4px 30px rgba(184,147,90,0.4);
}
.commitment-text p {
  font-size: 18px; color: var(--text); line-height: 1.85;
  margin-bottom: 1.25rem; font-weight: 400;
}
.commitment-signature {
  margin-top: 2rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.commitment-signature-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-style: italic; color: var(--navy);
  margin-bottom: 4px;
}
.commitment-signature-title {
  font-size: 14px; color: var(--muted); letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* CTA STRIP */
.cta-strip {
  background: var(--navy);
  color: var(--cream);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before, .cta-strip::after {
  content: '';
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.cta-strip::before { left: 3rem; }
.cta-strip::after { right: 3rem; background: linear-gradient(-90deg, transparent, var(--gold)); }
.cta-strip h2 { color: var(--cream); margin-bottom: 1rem; }
.cta-strip h2 em { color: var(--gold-lt); }
.cta-strip p {
  font-size: 20px; color: rgba(245,239,223,0.75);
  max-width: 560px; margin: 0 auto 2rem;
  font-style: italic; line-height: 1.7;
}

/* PAGE HERO (smaller for internal pages) */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--cream);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero .eyebrow {
  justify-content: center; color: var(--gold-lt);
  margin-bottom: 1rem;
}
.page-hero .eyebrow::before { background: var(--gold); }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 58px); font-weight: 700;
  color: var(--cream); line-height: 1.15;
  margin-bottom: 1rem;
}
.page-hero h1 em { color: var(--gold-lt); font-style: italic; font-weight: 400; }
.page-hero-sub {
  font-size: 20px; color: rgba(245,239,223,0.75);
  max-width: 640px; margin: 0 auto;
  font-style: italic; line-height: 1.7;
  font-family: 'Cormorant Garamond', serif;
}

/* PRACTICE AREAS PAGE */
.practice-detail {
  padding: 5rem 3rem;
}
.practice-detail-inner { max-width: 1180px; margin: 0 auto; }
.practice-list { display: flex; flex-direction: column; gap: 4rem; }
.practice-item {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 2rem; padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}
.practice-item:last-child { border-bottom: none; padding-bottom: 0; }
.practice-item-icon {
  width: 80px; height: 80px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.practice-item-icon i { color: var(--gold); font-size: 36px; }
.practice-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 600; color: var(--navy);
  margin-bottom: 8px;
}
.practice-item-lead {
  font-size: 18px; color: var(--gold-dk); font-style: italic;
  margin-bottom: 1.25rem; font-family: 'Cormorant Garamond', serif;
}
.practice-item-desc {
  font-size: 17px; color: var(--text); line-height: 1.75;
  margin-bottom: 1.5rem;
}
.practice-item-list {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 8px 2rem; list-style: none;
}
.practice-item-list li {
  font-size: 15px; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}
.practice-item-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold); flex-shrink: 0;
}

/* ATTORNEYS PAGE */
.attorneys-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.attorney-card {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 2rem;
  background: var(--parchment);
  padding: 2rem;
  border: 1px solid var(--border);
}
.attorney-portrait {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-family: 'Playfair Display', serif;
  font-size: 60px; font-style: italic; font-weight: 700;
  border: 4px solid var(--cream);
  box-shadow: 0 8px 24px rgba(15,27,61,0.2);
}
.attorney-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 600; color: var(--navy);
  margin-bottom: 4px;
}
.attorney-title {
  font-size: 15px; color: var(--gold-dk); font-style: italic;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.attorney-bio {
  font-size: 15px; color: var(--text); line-height: 1.7;
  margin-bottom: 1.25rem;
}
.attorney-creds {
  display: flex; flex-direction: column; gap: 6px;
}
.attorney-cred {
  font-size: 13px; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}
.attorney-cred i { color: var(--gold-dk); font-size: 16px; flex-shrink: 0; }

/* RESULTS PAGE */
.results-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.results-list {
  display: flex; flex-direction: column; gap: 1.5rem;
  max-width: 900px; margin: 0 auto;
}
.result-card {
  background: var(--bone);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 2rem 2.5rem;
  display: grid; grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: center;
  transition: all 0.3s;
}
.result-card:hover {
  border-left-color: var(--gold-dk);
  background: var(--parchment);
}
.result-amount {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 700;
  color: var(--navy); line-height: 1;
}
.result-amount em { color: var(--gold); font-style: italic; font-weight: 400; font-size: 24px; }
.result-type {
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; margin-top: 6px;
}
.result-desc {
  font-size: 16px; color: var(--text); line-height: 1.7;
  margin-bottom: 6px;
}
.result-year {
  font-size: 13px; color: var(--muted); font-style: italic;
}

/* CONTACT PAGE */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 600; color: var(--navy);
  margin-bottom: 1.5rem;
}
.contact-detail {
  display: flex; gap: 1rem; margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(184,147,90,0.15); border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon i { color: var(--gold-dk); font-size: 20px; }
.contact-detail-label {
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; margin-bottom: 4px;
}
.contact-detail-val {
  font-size: 17px; color: var(--navy); font-weight: 500;
}
.contact-detail-val a { color: inherit; text-decoration: none; }
.contact-detail-val a:hover { color: var(--gold-dk); }

.contact-form {
  background: var(--parchment);
  padding: 2.5rem;
  border: 1px solid var(--border);
}
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 600; color: var(--navy);
  margin-bottom: 6px;
}
.contact-form-sub {
  font-size: 15px; color: var(--muted); font-style: italic;
  margin-bottom: 1.5rem;
}
.form-field { margin-bottom: 1.25rem; }
.form-field label {
  display: block; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; margin-bottom: 6px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px;
  background: var(--bone);
  border: 1px solid var(--border);
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; color: var(--text);
  outline: none; transition: border-color 0.2s;
}
.form-field textarea { min-height: 100px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--gold);
}
.form-submit {
  width: 100%; background: var(--navy); color: var(--gold-lt);
  padding: 14px; border: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 600; letter-spacing: 0.05em;
  cursor: pointer; transition: background 0.2s;
}
.form-submit:hover { background: var(--navy-mid); }

/* FOOTER */
footer {
  background: var(--char);
  color: rgba(245,239,223,0.65);
  padding: 4rem 3rem 2rem;
}
.footer-inner { max-width: 1180px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,239,223,0.1);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.footer-brand-mark {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700;
  color: var(--navy); font-style: italic;
}
.footer-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px; color: var(--cream); font-weight: 600;
}
.footer-brand-text em { color: var(--gold-lt); font-style: italic; font-weight: 400; }
footer p {
  font-size: 15px; color: rgba(245,239,223,0.55); line-height: 1.7;
  margin-bottom: 0.5rem;
}
.footer-contact { margin-top: 1.5rem; }
.footer-contact p {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: rgba(245,239,223,0.6);
}
.footer-contact i { color: var(--gold); font-size: 16px; }
.footer-col h4 {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 1rem;
  font-family: 'Cormorant Garamond', serif;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  font-size: 15px; color: rgba(245,239,223,0.65);
  text-decoration: none; transition: color 0.2s;
}
.footer-col li a:hover { color: var(--gold-lt); }
.footer-bottom {
  padding-top: 2rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 13px; color: rgba(245,239,223,0.35); }
.footer-disclaimer {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245,239,223,0.05);
  margin-top: 1.5rem;
}
.footer-disclaimer p {
  font-size: 12px; color: rgba(245,239,223,0.35);
  line-height: 1.6; font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; flex-wrap: wrap; }
  .nav-links { display: none; }
  .brand-tag { display: none; }
  section, .hero, .page-hero, .pillars, .cta-strip, .practice-detail { padding-left: 1.5rem; padding-right: 1.5rem; }
  .hero { padding-top: 4rem; padding-bottom: 5rem; }
  .pillars-inner { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .practice-grid, .attorneys-grid, .contact-grid, .commitment-grid { grid-template-columns: 1fr; gap: 2rem; }
  .practice-item { grid-template-columns: 1fr; gap: 1rem; }
  .practice-item-list { grid-template-columns: 1fr; }
  .result-card { grid-template-columns: 1fr; gap: 1rem; padding: 1.5rem; }
  .attorney-card { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.5rem; }
  .attorney-portrait { max-width: 200px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .commitment-visual { max-width: 300px; margin: 0 auto; }
  .cta-strip::before, .cta-strip::after { display: none; }
}