/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1d2d4a;
  --navy-dark: #111c33;
  --gold: #b8952a;
  --gold-hover: #9d7e21;
  --cream: #faf9f7;
  --white: #ffffff;
  --gray-50: #f7f6f4;
  --gray-100: #eeece9;
  --gray-200: #dddad5;
  --gray-500: #8a8680;
  --gray-700: #4a4844;
  --gray-900: #1e1c19;
  --max-w: 1160px;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 4px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.12);
  --transition: 180ms ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--gray-900);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(1.9rem, 4vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.35rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { color: var(--gray-700); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-hover); }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 24px; }
.section--white { background: var(--white); }
.section--gray { background: var(--gray-50); }
.section--navy { background: var(--navy); }
.section--navy-dark { background: var(--navy-dark); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .93rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border: none;
  line-height: 1;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-hover); color: var(--white); }
.btn-gold {
  background: #c49a2a;
  color: #fff;
  border: 2px solid #c49a2a;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: background .2s, opacity .2s;
  letter-spacing: .3px;
}
.btn-gold:hover {
  background: #e8c04a;
  border-color: #e8c04a;
  color: #fff;
  opacity: 1;
}
.btn-secondary { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.55); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--gray-50); color: var(--navy); }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  height: 68px;
  gap: 16px;
}
.logo { display: flex; flex-direction: row; align-items: center; text-decoration: none; gap: 10px; flex-shrink: 0; }
.logo-name { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600; color: var(--white); line-height: 1.12; white-space: nowrap; }
.logo-sub { font-size: .65rem; color: rgba(255,255,255,.55); letter-spacing: .09em; text-transform: uppercase; }
.logo:hover .logo-name { color: var(--gold); }

/* ── Logo Images ── */
.logo-img-icon {
  height: 50px;
  width: 50px;
  object-fit: contain;
  mix-blend-mode: screen;
  flex-shrink: 0;
}
.logo-img-full {
  height: 80px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
}
.footer-logo-img {
  height: 150px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  display: block;
  margin-bottom: 10px;
}

.site-nav { display: flex; align-items: center; gap: 2px; }
.nav-link {
  color: rgba(255,255,255,.82);
  font-size: .875rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,.1); }

.dropdown { position: relative; }
.dropdown > .nav-link::after { content: ' ▾'; font-size: .7em; opacity: .7; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 230px;
  padding: 6px 0;
  z-index: 200;
  border-top: 3px solid var(--gold);
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-item {
  display: block;
  padding: 11px 18px;
  color: var(--gray-700);
  font-size: .875rem;
  transition: all var(--transition);
  text-decoration: none;
}
.dropdown-item:hover { background: var(--gray-50); color: var(--navy); padding-left: 22px; }
.dropdown-item .di-icon { display: inline-block; width: 1.5em; text-align: center; margin-right: 4px; }

/* Insights mega-dropdown (auto-built in js/main.js) */
.dropdown-menu-insights { left: auto; right: 0; min-width: 320px; max-height: 74vh; overflow-y: auto; overscroll-behavior: contain; }
.dropdown-group { padding: 11px 18px 4px; font-size: .66rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--gold); }
.dropdown-group:first-child { padding-top: 4px; }
.dropdown-menu-insights .dropdown-item { padding-top: 8px; padding-bottom: 8px; }

.header-cta { flex-shrink: 0; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; border-radius: 2px; transition: all var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy) 60%, #233660 100%);
  color: var(--white);
  padding: 100px 24px 90px;
}
.hero .container { max-width: 820px; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero .subhead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  max-width: 640px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ===== SECTION HELPERS ===== */
.section-label {
  display: block;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-intro { max-width: 700px; margin-bottom: 52px; }
.section-intro.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-intro h2 { margin-bottom: 14px; }
.section-intro p { font-size: 1.05rem; }

/* ===== CARD GRID ===== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 6px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card h3 { color: var(--navy); margin-bottom: 12px; }
.card p { font-size: .9rem; color: var(--gray-700); }
.card .card-link { display: inline-block; margin-top: 16px; font-size: .875rem; font-weight: 600; color: var(--gold); }
.card .card-link:hover { color: var(--gold-hover); }
.card-icon { width: 44px; height: 44px; background: rgba(184,149,42,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.card-icon svg { width: 22px; height: 22px; stroke: var(--gold); }

/* ===== VALUE PROPS ===== */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 40px; }
.value-item {}
.value-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  opacity: .7;
}
.value-item h3 { margin-bottom: 8px; }
.value-item p { font-size: .9rem; }

/* ===== TOPICS LIST ===== */
.topics-list { list-style: none; margin-top: 8px; }
.topics-list li { border-bottom: 1px solid var(--gray-200); }
.topics-list li:first-child { border-top: 1px solid var(--gray-200); }
.topics-list a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 4px;
  color: var(--gray-900);
  font-weight: 500;
  gap: 12px;
  transition: all var(--transition);
  text-decoration: none;
}
.topics-list a:hover { color: var(--gold); padding-left: 10px; }
.topics-list .q-arrow { flex-shrink: 0; color: var(--gray-500); transition: all var(--transition); margin-top: 2px; }
.topics-list a:hover .q-arrow { color: var(--gold); }
.topic-text strong { display: block; margin-bottom: 3px; }
.topic-text span { font-size: .85rem; color: var(--gray-500); font-weight: 400; }

/* ===== ABOUT / ATTORNEY SECTION ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1.8fr; gap: 60px; align-items: center; }
.about-photo-wrap {
  background: var(--gray-100);
  border-radius: 6px;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--gray-500);
  overflow: hidden;
}
.about-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-content h2 { margin-bottom: 16px; }
.about-content p { margin-bottom: 14px; }

/* ===== PARTNER BLOCK ===== */
.partner-block {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 48px 52px;
  border-top: 4px solid var(--gold);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.partner-block h2 { margin-bottom: 16px; }
.partner-block p { font-size: 1.05rem; margin-bottom: 24px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ===== SERVICES LIST (practice area pages) ===== */
.services-list { margin-top: 8px; }
.service-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-100);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
}
.service-item:first-child { border-top: 1px solid var(--gray-100); }
.service-label { font-family: var(--font-serif); color: var(--gold); font-size: 1.05rem; line-height: 1.3; padding-top: 2px; }
.service-item p { margin: 0; font-size: .95rem; }

/* ===== WHO WE SERVE ===== */
.serve-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 12px; margin-top: 12px; }
.serve-item {
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
}
.serve-item strong { display: block; color: var(--navy); font-size: .9rem; margin-bottom: 3px; }
.serve-item span { font-size: .84rem; color: var(--gray-500); }

/* ===== APPROACH BLOCK ===== */
.approach-content { max-width: 740px; }
.approach-content h2 { margin-bottom: 20px; }
.approach-content p { font-size: 1rem; margin-bottom: 14px; }

/* ===== FAQ ===== */
.faq-list { margin-top: 12px; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item:first-child { border-top: 1px solid var(--gray-200); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: .975rem;
  font-weight: 600;
  color: var(--navy);
  gap: 16px;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--gray-100);
  border-radius: 50%;
  position: relative;
  transition: background var(--transition);
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.faq-icon::before { width: 10px; height: 2px; top: 10px; left: 6px; }
.faq-icon::after { width: 2px; height: 10px; top: 6px; left: 10px; }
.faq-item.open .faq-icon { background: var(--gold); }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: var(--white); }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-answer { display: none; padding: 0 0 22px 0; }
.faq-answer p { font-size: .9rem; max-width: 680px; }
.faq-item.open .faq-answer { display: block; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 80px 24px;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.78); max-width: 500px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== DISCLAIMER CALLOUT ===== */
.disclaimer-callout {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: 24px 28px;
  border-radius: var(--radius);
  margin-top: 16px;
}
.disclaimer-callout p { font-size: .78rem; color: var(--gray-500); line-height: 1.65; margin: 0; }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy-dark); padding: 64px 24px 32px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 32px;
}
.footer-logo-name { font-family: var(--font-serif); font-size: 1.1rem; color: var(--white); display: block; margin-bottom: 4px; }
.footer-logo-sub { font-size: .65rem; color: rgba(255,255,255,.4); letter-spacing: .09em; text-transform: uppercase; display: block; margin-bottom: 12px; }
.footer-tagline { font-size: .82rem; color: rgba(255,255,255,.42); font-style: italic; margin-top: 10px; }
.footer-contact p { font-size: .825rem; color: rgba(255,255,255,.6); margin-bottom: 5px; }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,.62);
  font-size: .85rem;
  margin-bottom: 9px;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-disclaimer {
  font-size: .72rem;
  color: rgba(255,255,255,.38);
  line-height: 1.7;
  max-width: 900px;
  margin-bottom: 28px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .77rem;
  color: rgba(255,255,255,.32);
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 0 16px; }
.footer-legal a { color: rgba(255,255,255,.38); text-decoration: none; font-size: .77rem; transition: color var(--transition); }
.footer-legal a:hover { color: var(--gold); }

/* ===== INLINE CROSS-LINK ===== */
.crosslink-block {
  background: rgba(184,149,42,.06);
  border: 1px solid rgba(184,149,42,.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 32px 0;
}
.crosslink-block p { margin: 0; font-size: .875rem; color: var(--gray-700); }
.crosslink-block a { font-weight: 600; }

/* ===== PAGE INTRO BREADCRUMB ===== */
.page-intro { background: var(--navy); padding: 10px 24px; }
.page-intro .container { display: flex; align-items: center; gap: 6px; font-size: .8rem; color: rgba(255,255,255,.5); max-width: var(--max-w); }
.page-intro a { color: rgba(255,255,255,.5); text-decoration: none; }
.page-intro a:hover { color: rgba(255,255,255,.85); }
.page-intro span { opacity: .4; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .service-item { grid-template-columns: 1fr; gap: 8px; }
  .service-label { font-size: .95rem; }
}
@media (max-width: 768px) {
  .section { padding: 56px 20px; }
  .site-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    padding: 12px 20px 20px;
    gap: 2px;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: flex; flex-direction: column; justify-content: center; }
  .header-cta { display: none; }
  .logo-img-icon { height: 48px; width: 48px; }
  .logo-name { font-size: 1.2rem; }
  .logo { gap: 8px; }
  .dropdown-menu { position: static; box-shadow: none; border: none; background: rgba(255,255,255,.05); border-top: none; padding: 0 0 4px 12px; min-width: unset; }
  .dropdown-item { color: rgba(255,255,255,.7); padding: 8px 12px; font-size: .85rem; }
  .dropdown-item:hover { background: rgba(255,255,255,.06); padding-left: 16px; }
  .hero { padding: 72px 20px 60px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo-wrap { aspect-ratio: 4/3; max-width: 340px; }
  .card-grid, .value-grid { grid-template-columns: 1fr; }
  .partner-block { padding: 32px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.7rem; }
  h2 { font-size: 1.5rem; }
  .logo-img-icon { height: 48px; width: 48px; }
  .logo-name { font-size: 1.05rem; }
}
