*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --navy: #0b1f3a;
  --navy-mid: #132847;
  --navy-light: #1e3a5f;
  --gold: #b8962e;
  --gold-light: #d4ae4a;
  --gold-pale: #f5edd0;
  --cream: #faf8f3;
  --white: #ffffff;
  --text-dark: #0b1f3a;
  --text-mid: #2c4a6e;
  --text-muted: #6b7c93;
  --border: #d4c99a;
  --border-light: #eae3c8;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.7;
  min-height: 100vh;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(184, 150, 46, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 68px;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  text-decoration: none;
  line-height: 1.2;
}
.nav-logo span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--sans);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 1px;
}
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--gold-light);
}
#home {
  min-height: 100vh;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 4rem 4rem;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero-firm-name {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}
.hero-descriptor {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.hero-tagline {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  max-width: 400px;
  margin-bottom: 3rem;
  border-left: 2px solid var(--gold);
  padding-left: 1.2rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  background: var(--gold-light);
}
.btn-outline {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}
.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 4rem 2rem;
  position: relative;
  z-index: 2;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(184, 150, 46, 0.2);
  align-self: flex-end;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
}
.hero-stat {
  background: rgba(11, 31, 58, 0.6);
  padding: 2.8rem 1.5rem;
  text-align: center;
}
.hero-stat-number {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.hero-stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.5) 40px,
      rgba(255, 255, 255, 0.5) 41px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.5) 40px,
      rgba(255, 255, 255, 0.5) 41px
    );
  pointer-events: none;
}
section {
  padding: 6rem 0;
}
.section-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 3rem;
}
.section-header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 2rem;
  margin-bottom: 4rem;
}
.section-number {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 400;
  color: var(--border);
  line-height: 1;
  letter-spacing: -0.02em;
}
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
}
.section-title-white {
  color: var(--white);
}
#about {
  background: var(--white);
  border-top: 1px solid var(--border-light);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-body p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}
.about-legacy {
  background: var(--navy);
  padding: 2.5rem;
  margin-top: 2.5rem;
  border-left: 3px solid var(--gold);
}
.about-legacy-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.about-legacy p {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
}
.about-right {
  padding-top: 1rem;
}
.firm-facts {
  list-style: none;
  margin-bottom: 2rem;
}
.firm-facts li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.firm-facts li:first-child {
  border-top: 1px solid var(--border-light);
}
.firm-fact-label {
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 0.25rem 0.6rem;
  margin-top: 2px;
  min-width: 80px;
  text-align: center;
}
.commitment-box {
  background: var(--cream);
  border: 1px solid var(--border-light);
  padding: 1.8rem;
  margin-top: 1.5rem;
}
.commitment-box h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.8rem;
}
.commitment-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
#practice-areas {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#practice-areas .section-label {
  color: var(--gold);
}
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(184, 150, 46, 0.15);
  margin-top: 1rem;
}
.practice-card {
  background: var(--navy-mid);
  padding: 2.2rem 1.8rem;
  transition: background 0.25s;
  cursor: default;
  position: relative;
}
.practice-card:hover {
  background: var(--navy-light);
}
.practice-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1.8rem;
  right: 1.8rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.practice-card:hover::after {
  transform: scaleX(1);
}
.practice-number {
  font-family: var(--serif);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
  opacity: 0.7;
}
.practice-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 1rem;
}
.practice-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}
#partners {
  background: var(--cream);
  border-top: 1px solid var(--border-light);
}
.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.partner-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: auto 1fr;
}
.partner-accent {
  width: 6px;
  background: var(--gold);
}
.partner-body {
  padding: 2.5rem;
}
.partner-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.partner-title {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.partner-bio {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.partner-bars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.bar-tag {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border: 1px solid var(--border);
  color: var(--text-muted);
}
#publications {
  background: var(--white);
  border-top: 1px solid var(--border-light);
}
.publications-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
.pub-intro p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.pub-list {
  list-style: none;
}
.pub-item {
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
}
.pub-item:first-child {
  border-top: 1px solid var(--border-light);
}
.pub-type {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 0.3rem 0.7rem;
  white-space: nowrap;
  margin-top: 3px;
}
.pub-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.3rem;
  line-height: 1.35;
}
.pub-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.pub-coming-soon {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 3rem 0;
  text-align: center;
}
.pub-coming-soon-label {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.pub-coming-soon-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 28rem;
  margin: 0 auto;
}
#contact {
  background: var(--navy);
  border-top: 3px solid var(--gold);
}
#contact .section-label {
  color: var(--gold);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-intro {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.contact-detail {
  margin-bottom: 1.5rem;
}
.contact-detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.contact-detail-value {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}
.contact-form-group {
  margin-bottom: 1.2rem;
}
.contact-form-group label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.5rem;
}
.contact-form-group input,
.contact-form-group textarea,
.contact-form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  padding: 0.75rem 1rem;
  font-family: var(--sans);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.contact-form-group input:focus,
.contact-form-group textarea:focus,
.contact-form-group select:focus {
  border-color: var(--gold);
}
.contact-form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form-group select option {
  background: var(--navy);
  color: white;
}
footer {
  background: #060f1c;
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(184, 150, 46, 0.15);
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.05em;
}
.footer-disclaimer {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.2);
  text-align: right;
  max-width: 280px;
  line-height: 1.5;
}
.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  /* width: 44px;
  height: 44px; */
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-light);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Tablet */
@media (max-width: 1024px) {
  nav {
    padding: 0 1.5rem;
  }
  .hero-left {
    padding: 7rem 2rem 3rem 2rem;
  }
  .hero-right {
    padding: 3rem 2rem;
  }
  .section-inner {
    padding: 0 1.5rem;
  }
  .about-grid {
    gap: 3rem;
  }
  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    gap: 3rem;
  }
  footer {
    padding: 2rem 1.5rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  nav {
    padding: 0 1rem;
    height: 60px;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    gap: 0;
    background: var(--navy);
    padding: 1.5rem 1rem 2rem;
    border-top: 1px solid rgba(184, 150, 46, 0.2);
    overflow-y: auto;
  }
  .nav-open .nav-links {
    display: flex;
  }
  .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-links a {
    display: block;
    padding: 1rem 0.5rem;
    font-size: 0.8rem;
  }
  .nav-logo {
    font-size: 1rem;
    max-width: calc(100% - 52px);
  }

  #home {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 6.5rem 1.25rem 2rem;
    order: 1;
  }
  .hero-right {
    padding: 0 1.25rem 2.5rem;
    order: 2;
  }
  .hero-stats {
    max-width: none;
    margin-left: 0;
  }
  .hero-stat {
    padding: 2rem 1rem;
  }
  .hero-stat-number {
    font-size: 2.25rem;
  }
  .hero-tagline {
    max-width: none;
    font-size: 1rem;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    text-align: center;
    width: 100%;
  }

  section {
    padding: 4rem 0;
  }
  .section-inner {
    padding: 0 1.25rem;
  }
  .section-header {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
  }
  .section-number {
    font-size: 2.5rem;
  }
  .section-title br {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-legacy {
    padding: 1.5rem;
  }
  .firm-facts li {
    flex-direction: column;
    gap: 0.5rem;
  }
  .firm-fact-label {
    align-self: flex-start;
  }

  .practice-grid {
    grid-template-columns: 1fr;
  }
  .practice-card {
    padding: 1.75rem 1.25rem;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }
  .partner-body {
    padding: 1.5rem;
  }
  .partner-name {
    font-size: 1.35rem;
  }

  .publications-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pub-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1.25rem 0;
  }
  .pub-type {
    align-self: flex-start;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-intro {
    font-size: 1.25rem;
  }
  .contact-detail-value {
    word-break: break-word;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
  }
  .footer-disclaimer {
    text-align: left;
    max-width: none;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .nav-logo span {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }
  .hero-firm-name {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }
  .hero-descriptor {
    letter-spacing: 0.14em;
  }
  .section-title {
    font-size: clamp(1.65rem, 6vw, 2rem);
  }
  .partner-card {
    grid-template-columns: 1fr;
  }
  .partner-accent {
    width: 100%;
    height: 4px;
  }
}
