/* ===================================================
   PRAVAH LAW — Main Stylesheet
   Mobile-first, responsive
   =================================================== */

/* ---------- Variables ---------- */
:root {
  --navy:       #1a2744;
  --navy-light: #253561;
  --gold:       #c9a84c;
  --gold-light: #e2c97e;
  --cream:      #faf8f3;
  --white:      #ffffff;
  --text-dark:  #1e1e2e;
  --text-mid:   #4a4a6a;
  --text-light: #7a7a9a;
  --border:     #e4e1d8;
  --shadow-sm:  0 2px 8px rgba(26,39,68,.08);
  --shadow-md:  0 6px 24px rgba(26,39,68,.12);
  --shadow-lg:  0 16px 48px rgba(26,39,68,.16);
  --radius:     4px;
  --radius-lg:  8px;
  --transition: 220ms ease;
  --max-width:  1200px;
  --nav-height: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.1rem; font-family: 'Inter', sans-serif; font-weight: 600; }
p  { font-size: 1rem; color: var(--text-mid); }

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .75rem;
}

/* ---------- Layout ---------- */
.container {
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
}
section { padding: 80px 0; }
.section-header { margin-bottom: 3rem; }
.section-header p { max-width: 640px; margin-top: .75rem; }

/* ---------- Divider ---------- */
.gold-rule {
  width: 48px; height: 2px;
  background: var(--gold);
  margin: 1rem 0 1.5rem;
}

/* =================================================
   NAVIGATION
   ================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .02em;
}
.nav__logo img {
  height: 40px;
  width: auto;
}
.nav__logo-text { line-height: 1.15; }
.nav__logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--text-mid);
  position: relative;
  transition: color var(--transition);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--navy); }
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1.25rem;
  background: var(--navy);
  color: var(--white) !important;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.nav__cta:hover { background: var(--gold) !important; color: var(--navy) !important; }
.nav__cta::after { display: none !important; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  transition: all var(--transition);
  border-radius: 2px;
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-md);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--navy); }

/* Page offset for fixed nav */
main { padding-top: var(--nav-height); }

/* =================================================
   HERO
   ================================================= */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 100px 0 80px;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,.08) 0%, transparent 70%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 59px,
      rgba(255,255,255,.025) 59px,
      rgba(255,255,255,.025) 60px
    );
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
}

.hero__content { max-width: 720px; }

.hero__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero__lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
}
.btn--gold:hover { background: var(--gold-light); }
.btn--outline {
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover { background: var(--navy-light); }


/* =================================================
   ABOUT STRIP
   ================================================= */
.about-strip {
  background: var(--cream);
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.about-strip__inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.about-strip__text { flex: 1; min-width: 260px; }
.about-strip p {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.85;
}
.about-strip__courts {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.court-tag {
  padding: .4rem .9rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--white);
}

/* =================================================
   CARDS GRID (Home page navigation cards)
   ================================================= */
.cards-grid { background: var(--white); }
.cards-grid__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .cards-grid__inner { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .cards-grid__inner { grid-template-columns: repeat(4, 1fr); }
}

.nav-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: all var(--transition);
  overflow: hidden;
}
.nav-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-2px);
}
.nav-card:hover::before { transform: scaleX(1); }

.nav-card__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  color: var(--navy);
}
.nav-card h3 {
  font-size: 1.2rem;
  margin-bottom: .5rem;
}
.nav-card p {
  font-size: .9rem;
  color: var(--text-light);
  flex: 1;
}
.nav-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: 1.5rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: gap var(--transition);
}
.nav-card:hover .nav-card__arrow { gap: .6rem; }

/* =================================================
   PRACTICE AREAS SECTION (Home preview)
   ================================================= */
.practice-preview { background: var(--cream); }
.practice-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 768px) {
  .practice-list { grid-template-columns: 1fr 1fr; }
}

.practice-item {
  background: var(--white);
  padding: 2rem 2.25rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: background var(--transition);
}
.practice-item:hover { background: var(--cream); }
.practice-item__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: .4;
  line-height: 1;
  min-width: 2.5rem;
}
.practice-item__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .35rem;
}
.practice-item p { font-size: .9rem; }

/* =================================================
   CONTACT SECTION
   ================================================= */
.contact { background: var(--navy); }
.contact .section-label { color: var(--gold-light); }
.contact h2 { color: var(--white); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .contact__inner { grid-template-columns: 1fr 1fr; }
}

.contact__info { color: rgba(255,255,255,.8); }
.contact__info p {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  margin-bottom: 2rem;
}
.contact__detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact__detail-icon {
  width: 36px; height: 36px;
  background: rgba(201,168,76,.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact__detail-text { font-size: .95rem; color: rgba(255,255,255,.75); line-height: 1.5; }
.contact__detail-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .2rem;
}

/* Form */
.contact__form {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-size: .95rem;
  color: var(--white);
  font-family: inherit;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form__submit {
  width: 100%;
  padding: .9rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition);
  border: none;
  cursor: pointer;
}
.form__submit:hover { background: var(--gold-light); }

/* =================================================
   FOOTER
   ================================================= */
.footer {
  background: #0f1929;
  color: rgba(255,255,255,.5);
  padding: 48px 0 32px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.footer__brand .nav__logo { margin-bottom: .75rem; }
.footer__brand p {
  font-size: .83rem;
  color: rgba(255,255,255,.4);
  max-width: 280px;
  line-height: 1.6;
}
.footer__links h5 {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer__links ul { display: flex; flex-direction: column; gap: .6rem; }
.footer__links a {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: .78rem;
}
.footer__disclaimer-link {
  color: rgba(255,255,255,.35);
  cursor: pointer;
  transition: color var(--transition);
}
.footer__disclaimer-link:hover { color: var(--gold); }

/* =================================================
   DISCLAIMER MODAL
   ================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,15,30,.88);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}
.modal-overlay.hidden { display: none; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 560px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.modal__header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.modal__header h3 { font-size: 1.3rem; }
.modal__icon {
  width: 40px; height: 40px;
  background: rgba(201,168,76,.12);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.modal p {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 1rem;
}
.modal p:last-of-type { margin-bottom: 0; }
.modal__actions {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
}
.modal__proceed {
  padding: .75rem 2rem;
  background: var(--navy);
  color: var(--white);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.modal__proceed:hover { background: var(--gold); color: var(--navy); }

/* =================================================
   PAGE HERO (inner pages)
   ================================================= */
.page-hero {
  background: var(--navy);
  padding: 60px 0 56px;
}
.page-hero .section-label { color: var(--gold-light); }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.65); font-size: 1.05rem; max-width: 620px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep { color: rgba(255,255,255,.25); }

/* =================================================
   FOUNDER PAGE
   ================================================= */
.founder__profile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
  padding: 80px 0;
}
@media (min-width: 900px) {
  .founder__profile { grid-template-columns: 340px 1fr; }
}
.founder__photo-wrap {
  position: static;
}
@media (min-width: 900px) {
  .founder__photo-wrap {
    position: sticky;
    top: calc(var(--nav-height) + 2rem);
  }
}
.founder__photo {
  aspect-ratio: 3/4;
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.founder__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.founder__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream) 0%, #e8e4d8 100%);
  color: var(--text-light);
  font-size: .85rem;
}
.founder__card {
  margin-top: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
}
.founder__card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .2rem;
}
.founder__card-title {
  font-size: .82rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .04em;
}
.founder__card-linkedin {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .75rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}
.founder__card-linkedin:hover { color: var(--gold); }

.founder__content { max-width: 760px; }
.founder__section { margin-bottom: 3.5rem; }
.founder__section h2 {
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}
.founder__bio-block { margin-bottom: 1.25rem; }
.founder__bio-block p { line-height: 1.85; font-size: .98rem; }

.edu-card {
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--gold);
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: .75rem;
}
.edu-card__degree { font-weight: 600; color: var(--navy); margin-bottom: .25rem; }
.edu-card__school { font-size: .9rem; color: var(--text-mid); }
.edu-card__note { font-size: .82rem; color: var(--gold); font-weight: 500; margin-top: .35rem; }

/* Publications list */
.pub-list { display: flex; flex-direction: column; gap: .5rem; }
.pub-item {
  display: flex;
  gap: 1rem;
  padding: .85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all var(--transition);
  align-items: baseline;
}
.pub-item:hover {
  background: var(--cream);
  border-color: var(--border);
}
.pub-item__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 1.75rem;
  line-height: 1.6;
}
.pub-item__content { flex: 1; }
.pub-item__venue {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: .04em;
}
.pub-item__title {
  font-size: .92rem;
  color: var(--navy);
  font-weight: 500;
  margin-top: .1rem;
}
.pub-item__title a { color: inherit; text-decoration: underline; text-decoration-color: transparent; transition: text-decoration-color var(--transition); }
.pub-item__title a:hover { text-decoration-color: var(--gold); color: var(--gold); }

/* In the News */
.news-list { display: flex; flex-direction: column; gap: .6rem; }
.news-item {
  display: flex;
  gap: 1rem;
  padding: .85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  align-items: baseline;
  transition: all var(--transition);
}
.news-item:hover { background: var(--cream); border-color: var(--border); }
.news-item__bullet {
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1.4;
  flex-shrink: 0;
}
.news-item__venue {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-light);
}
.news-item__title a {
  font-size: .9rem;
  color: var(--navy);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all var(--transition);
}
.news-item__title a:hover { text-decoration-color: var(--gold); color: var(--gold); }

/* =================================================
   ASSOCIATES PAGE
   ================================================= */
.associates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 80px 0;
}
@media (min-width: 640px) {
  .associates-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .associates-grid { grid-template-columns: repeat(3, 1fr); }
}

.associate-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: all var(--transition);
}
.associate-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.associate-card__photo {
  aspect-ratio: 1/1;
  background: var(--cream);
  overflow: hidden;
}
.associate-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.45);
  transform-origin: 50% 0%;
  transition: transform var(--transition);
}
.associate-card__photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream) 0%, #e8e4d8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.associate-card__photo-placeholder svg { color: var(--text-light); opacity: .4; }
.associate-card__body { padding: 1.5rem; }
.associate-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .2rem;
}
.associate-card__title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.associate-card p { font-size: .88rem; line-height: 1.7; color: var(--text-mid); }
.associate-card__linkedin {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}
.associate-card__linkedin:hover { color: var(--gold); }

/* =================================================
   PRACTICE AREAS PAGE
   ================================================= */
.practice-areas-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 80px 0;
}
.practice-area-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.practice-area-item:last-child { border-bottom: none; }
@media (min-width: 768px) {
  .practice-area-item { grid-template-columns: 120px 1fr; gap: 3rem; }
}
.practice-area-item__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: .25;
  line-height: 1;
  text-align: center;
}
.practice-area-item__content {}
.practice-area-item h2 { font-size: 1.8rem; margin-bottom: .75rem; }
.practice-area-item p { font-size: 1rem; line-height: 1.8; max-width: 700px; }

/* =================================================
   INSIGHTS (BLOG) PAGE
   ================================================= */
.insights-header {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.insights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1200px) {
  .insights-grid { grid-template-columns: repeat(3, 1fr); }
}

.post-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.post-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.post-card__img {
  aspect-ratio: 16/9;
  background: var(--cream);
  overflow: hidden;
}
.post-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.post-card:hover .post-card__img img { transform: scale(1.03); }
.post-card__img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
}
.post-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.post-card__meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .85rem;
  flex-wrap: wrap;
}
.post-card__tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,.1);
  padding: .2rem .6rem;
  border-radius: 100px;
}
.post-card__read-time {
  font-size: .75rem;
  color: var(--text-light);
}
.post-card h3 {
  font-size: 1.15rem;
  line-height: 1.35;
  margin-bottom: .6rem;
  color: var(--navy);
}
.post-card p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
}
.post-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.post-card__author {
  font-size: .8rem;
  color: var(--text-light);
  font-weight: 500;
}
.post-card__link {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .25rem;
  transition: gap var(--transition);
}
.post-card:hover .post-card__link { gap: .5rem; }

/* =================================================
   BLOG POST PAGE
   ================================================= */
.post-hero { padding: 60px 0 50px; background: var(--navy); }
.post-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); max-width: 820px; margin-top: .5rem; }
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
  align-items: center;
}
.post-meta__item {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: .35rem;
}
.post-meta__item svg { color: var(--gold); opacity: .8; }

.post-body { padding: 64px 0 80px; }
.post-body__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .post-body__inner { grid-template-columns: 1fr 300px; align-items: start; }
}

.post-content {
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
}
.post-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--navy);
}
.post-content h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.post-content p { margin-bottom: 1.25rem; }
.post-content p:last-child { margin-bottom: 0; }
.post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-mid);
}
.post-content ol, .post-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--text-mid);
}
.post-content ol { list-style: decimal; }
.post-content ul { list-style: disc; }
.post-content li { margin-bottom: .5rem; }
.post-content a { color: var(--gold); text-decoration: underline; text-decoration-color: transparent; transition: text-decoration-color var(--transition); }
.post-content a:hover { text-decoration-color: var(--gold); }
.post-content .footnote { font-size: .82rem; color: var(--text-light); border-top: 1px solid var(--border); padding-top: 1rem; margin-top: 2rem; }

.post-sidebar { position: sticky; top: calc(var(--nav-height) + 2rem); }
.sidebar-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.sidebar-card__header {
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
}
.sidebar-card__body { padding: 1.25rem; }
.recent-post-link {
  display: block;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
  color: var(--navy);
  font-weight: 500;
  transition: color var(--transition);
  line-height: 1.4;
}
.recent-post-link:last-child { border-bottom: none; padding-bottom: 0; }
.recent-post-link:hover { color: var(--gold); }

.post-author-card {
  padding: 1.25rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.post-author-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .25rem;
}
.post-author-card__title { font-size: .78rem; color: var(--gold); font-weight: 600; }
.post-author-card p { font-size: .82rem; margin-top: .75rem; color: var(--text-light); }

/* ---- Contact form feedback ---- */
.form-status {
  display: none;
  margin-top: 1rem;
  padding: .85rem 1.1rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
}
.form-status--success { background: #e9f7ef; color: #1a6b38; border: 1px solid #a8dbbf; }
.form-status--error   { background: #fdecea; color: #8b1c1c; border: 1px solid #f5b7b1; }

.field-error { border-color: #c0392b !important; box-shadow: 0 0 0 2px rgba(192,57,43,.15) !important; }

/* =================================================
   UTILITIES
   ================================================= */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }

/* =================================================
   RESPONSIVE ADJUSTMENTS
   ================================================= */
@media (max-width: 767px) {
  section { padding: 56px 0; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 60px; min-height: auto; }
}


/* Smooth anchor link offset */
:target { scroll-margin-top: calc(var(--nav-height) + 1rem); }
