:root {
  --navy: #0c1032;
  --navy-dark: #0a0e28;
  --gold: #c8a75a;
  --gold-deep: #a8873b;
  --ivory: #f5f5f3;
  --charcoal: #1a1a1a;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  background: var(--navy-dark);
  color: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
}

.section-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}

.gold-rule {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 32px 0;
}

.gold-rule--center {
  margin: 28px auto;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 32px 0;
  transition: all 0.3s ease;
  border-bottom: 0px solid rgba(200, 167, 90, 0.2);
}

nav.scrolled {
  background: rgba(12, 16, 50, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 0;
  border-bottom: 1px solid rgba(200, 167, 90, 0.2);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.25;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 245, 243, 0.8);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--ivory);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* Contact outline button in nav */
.nav-links li:last-child a {
  border: 1px solid rgba(200, 167, 90, 0.5);
  padding: 10px 24px;
  border-radius: 0;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.nav-links li:last-child a::after {
  display: none;
}

.nav-links li:last-child a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.nav-item--dropdown {
  position: relative;
}

.nav-item--dropdown>a::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  height: 20px;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--navy);
  border: 1px solid rgba(200, 167, 90, 0.2);
  padding: 8px 0;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.nav-item--dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245, 245, 243, 0.7);
  padding: 12px 24px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  background: #111630;
  color: var(--gold);
}

.nav-dropdown a::after {
  display: none;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.nav-overlay-close {
  display: none;
  /* Replaced by hamburger animation */
}

.nav-overlay-links {
  list-style: none;
  text-align: center;
}

.nav-overlay-links li {
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(20px);
}

.nav-overlay-links a {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--ivory);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-overlay-links a:hover {
  color: var(--gold);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(12, 16, 50, 0.95) 0%, rgba(12, 16, 50, 0.8) 50%, rgba(12, 16, 50, 0.5) 100%);
}

.hero-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 167, 90, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  left: -100px;
  top: 20%;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 60px;
  max-width: 860px;
  text-align: center;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: block;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 72px;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: 840px;
  margin: 0 auto;
}

.hero-rule {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 32px auto;
}

.hero-body {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: rgba(245, 245, 243, 0.7);
  line-height: 1.85;
  max-width: 580px;
  margin: 0 auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

/* PAGE HERO (smaller) */
.hero--page {
  min-height: 60vh;
}

.hero--page .hero-overlay {
  background: linear-gradient(135deg, rgba(12, 16, 50, 0.96) 0%, rgba(12, 16, 50, 0.85) 100%);
}

.hero--page .hero-content {
  padding-top: 140px;
  padding-bottom: 80px;
}

.hero--page h1 {
  font-size: 60px;
}

/* BUTTONS */
.btn {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 0;
  cursor: pointer;
  border: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
}

.btn--primary:hover {
  background: var(--gold-deep);
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(200, 167, 90, 0.5);
  color: var(--gold);
}

.btn--ghost:hover {
  border-color: var(--gold);
  background: rgba(200, 167, 90, 0.08);
}

.btn--ghost-light {
  background: transparent;
  border: 1px solid rgba(245, 245, 243, 0.4);
  color: var(--ivory);
}

.btn--ghost-light:hover {
  border-color: var(--ivory);
  background: rgba(245, 245, 243, 0.06);
}

.btn--cta-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 16px 44px;
}

.btn--cta-primary:hover {
  background: var(--gold-deep);
}

/* HERO SCROLL */
.hero-scroll {
  position: absolute;
  bottom: 48px;
  right: 64px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-scroll-text {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(200, 167, 90, 0.5);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(200, 167, 90, 0.4);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }

  50% {
    opacity: 0.8;
    transform: scaleY(0.6);
  }
}

/* POSITIONING */
.section-positioning {
  background: var(--navy-dark);
  padding: 120px 0;
}

.positioning-label {
  margin-bottom: 20px;
}

.positioning-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 60px;
  font-weight: 400;
  color: var(--ivory);
  max-width: 900px;
  line-height: 1.1;
}

.positioning-pull {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 28px;
  font-weight: 300;
  color: rgba(200, 167, 90, 0.65);
  margin-top: 24px;
  margin-bottom: 0;
}

.positioning-body {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: rgba(245, 245, 243, 0.65);
  max-width: 620px;
  line-height: 1.85;
}

/* PRACTICE GRID */
.section-practice {
  background: var(--navy);
  padding: 120px 0;
}

.practice-header {
  margin-bottom: 64px;
}

.practice-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-weight: 500;
  color: var(--ivory);
  max-width: 640px;
  line-height: 1.1;
  margin-top: 12px;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--navy-dark);
  border-top: 1px solid rgba(200, 167, 90, 0.15);
  border-left: 1px solid rgba(200, 167, 90, 0.15);
}

.practice-card {
  background: var(--navy);
  padding: 64px 40px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-right: 1px solid rgba(200, 167, 90, 0.15);
  border-bottom: 1px solid rgba(200, 167, 90, 0.15);
}

.practice-card:hover {
  background: #111630;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-number {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  display: block;
  margin-bottom: 24px;
  opacity: 0.6;
}

.card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.practice-card:hover .card-title {
  color: var(--gold);
}

.card-desc {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(245, 245, 243, 0.6);
  line-height: 1.6;
  margin-top: auto;
}

.card-arrow {
  margin-top: 32px;
  color: var(--gold);
  font-size: 18px;
  transition: transform 0.3s ease;
}

.practice-card:hover .card-arrow {
  transform: translateX(6px);
}

.practice-grid .practice-card:last-child:nth-child(7) {
  grid-column: 1 / -1;
}

/* ABOUT */
.section-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.about-image {
  background-image: url("../assets/images/office-interior.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 600px;
}

.about-content {
  background: var(--ivory);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content .section-label {
  color: var(--gold);
}

.about-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  max-width: 460px;
}

.about-body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(26, 26, 26, 0.75);
  line-height: 1.85;
}

.about-content .gold-rule {
  background: var(--gold);
}

.stats-row {
  display: flex;
  gap: 32px;
  border-top: 1px solid rgba(12, 16, 50, 0.12);
  padding-top: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 80px;
}

.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.stat-label {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(12, 16, 50, 0.75);
  display: block;
  margin-top: 6px;
}

/* DIVISIONS */
.section-divisions {
  position: relative;
  background: var(--navy);
  padding: 120px 0;
  overflow: hidden;
}

.divisions-inner {
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
}

.divisions-left {
  padding-right: 80px;
}

.divisions-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.1;
  margin-top: 12px;
}

.divisions-body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(245, 245, 243, 0.6);
  line-height: 1.85;
  max-width: 440px;
}

.divisions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.division-card {
  background: transparent;
  border: 1px solid rgba(200, 167, 90, 0.2);
  padding: 28px 24px;
  transition: border-color 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

.division-card:hover {
  border-color: rgba(200, 167, 90, 0.6);
  background: rgba(200, 167, 90, 0.04);
}

.div-tag {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.div-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ivory);
  display: block;
  margin-bottom: 12px;
}

.div-body {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(245, 245, 243, 0.5);
  line-height: 1.8;
}

.divisions-image-panel {
  position: absolute;
  right: -64px;
  top: 0;
  height: 100%;
  width: calc(45% + 64px);
  background-image: url("../assets/images/divisions-bg.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.divisions-image-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12, 16, 50, 1) 0%, rgba(12, 16, 50, 0.3) 100%);
}

/* WHY */
.section-why {
  background: var(--navy-dark);
  padding: 120px 0;
}

.why-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--ivory);
  max-width: 560px;
  line-height: 1.1;
}

.why-divider {
  width: 100%;
  height: 1px;
  background: rgba(200, 167, 90, 0.2);
  margin: 52px 0;
}

.why-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

.why-col {
  padding: 0 48px;
  border-right: 1px solid rgba(200, 167, 90, 0.15);
}

.why-col:first-child {
  padding-left: 0;
}

.why-col:last-child {
  border-right: none;
}

.why-title {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ivory);
  display: block;
  margin-bottom: 20px;
}

.why-dash {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
}

.why-body {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(245, 245, 243, 0.55);
  line-height: 1.85;
}

/* CTA */
.section-cta {
  position: relative;
  background-image: url("../assets/images/cta-bg.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 140px 0;
  overflow: hidden;
  text-align: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 16, 50, 0.88);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 62px;
  font-weight: 400;
  color: var(--ivory);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.1;
}

.cta-body {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: rgba(245, 245, 243, 0.65);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.85;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 44px;
  flex-wrap: wrap;
}

/* FOOTER */
.footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(200, 167, 90, 0.2);
  padding: 72px 0 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
  line-height: 1.25;
}

.footer-tagline {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(245, 245, 243, 0.7);
  max-width: 300px;
  line-height: 1.8;
}

.footer-addresses {
  margin-top: 32px;
}

.footer-city-label {
  font-family: "Inter", sans-serif;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.footer-address-text {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(245, 245, 243, 0.65);
  line-height: 1.6;
}

.footer-contact-item {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(245, 245, 243, 0.65);
  display: block;
  margin-top: 4px;
}

.footer-contact-group {
  margin-top: 16px;
}

.footer-col-label {
  font-family: "Inter", sans-serif;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(245, 245, 243, 0.6);
  display: block;
  margin-bottom: 24px;
}

.footer-nav-list {
  list-style: none;
}

.footer-nav-list li {
  line-height: 2.4;
}

.footer-nav-list a {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(245, 245, 243, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav-list a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(200, 167, 90, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(245, 245, 243, 0.6);
}

.reveal {
  opacity: 1;
}

/* PRACTICE EDITORIAL ROWS (practice-areas.html) */
.practice-list-section {
  background: var(--navy);
  padding: 120px 0;
}

.practice-list {
  border-top: 1px solid rgba(200, 167, 90, 0.15);
  margin-top: 48px;
}

.practice-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 16px;
  border-bottom: 1px solid rgba(200, 167, 90, 0.15);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease;
}

.practice-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(200, 167, 90, 0.04);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.practice-row:hover::before {
  opacity: 1;
}

.practice-row:hover .row-number {
  color: var(--gold);
}

.practice-row:hover .row-title {
  transform: translateX(8px);
  color: var(--gold);
}

.practice-row:hover .row-arrow {
  opacity: 1;
  transform: translateX(0);
}

.practice-row-left {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.row-number {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(200, 167, 90, 0.35);
  width: 32px;
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.row-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--ivory);
  transition: transform 0.3s ease, color 0.3s ease;
}

.row-desc {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(245, 245, 243, 0.45);
  max-width: 380px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.row-arrow {
  color: var(--gold);
  font-size: 20px;
  opacity: 0;
  transform: translateX(-10px);
  transition: transform 0.3s ease, opacity 0.3s ease;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* OVERVIEW (single-column max 800) */
.section-overview {
  padding: 120px 0;
}

.section-overview--dark {
  background: var(--navy-dark);
}

.section-overview--navy {
  background: var(--navy);
}

.overview-content {
  max-width: 800px;
}

.overview-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.2;
}

.overview-body {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: rgba(245, 245, 243, 0.65);
  line-height: 1.85;
}

.overview-body+.overview-body {
  margin-top: 24px;
}

/* SERVICES (2-col) */
.section-services {
  background: var(--navy);
  padding: 120px 0;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.services-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.2;
  max-width: 440px;
}

.services-intro {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(245, 245, 243, 0.6);
  line-height: 1.85;
  margin-top: 24px;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  counter-reset: service-counter;
}

.services-list li {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(245, 245, 243, 0.75);
  line-height: 1.6;
  padding: 24px 32px;
  background: var(--navy-dark);
  border: 1px solid rgba(200, 167, 90, 0.15);
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  counter-increment: service-counter;
}

.services-list li::before {
  content: counter(service-counter, decimal-leading-zero);
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.services-list li:hover {
  border-color: rgba(200, 167, 90, 0.5);
  background: rgba(200, 167, 90, 0.04);
  transform: translateY(-2px);
  color: var(--ivory);
}

@media (max-width: 1024px) {
  .services-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-list {
    grid-template-columns: 1fr;
  }
}

/* CLIENTS (4-col cards) */
.section-clients {
  padding: 120px 0;
}

.section-clients--dark {
  background: var(--navy-dark);
}

.section-clients--navy {
  background: var(--navy);
}

.clients-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.2;
  max-width: 700px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.client-card {
  border: 1px solid rgba(200, 167, 90, 0.2);
  padding: 32px 24px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.client-card:hover {
  border-color: rgba(200, 167, 90, 0.6);
  background: rgba(200, 167, 90, 0.04);
}

.client-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ivory);
  display: block;
  margin-bottom: 12px;
}

.client-body {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(245, 245, 243, 0.55);
  line-height: 1.8;
}

/* PRINCIPLES (3-col with numbers) */
.section-principles {
  background: var(--navy);
  padding: 120px 0;
}

.principles-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.2;
  max-width: 600px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.principle-card {
  border: 1px solid rgba(200, 167, 90, 0.15);
  padding: 56px 36px;
  background: var(--navy-dark);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.principle-card:hover {
  background: #111630;
  border-color: rgba(200, 167, 90, 0.4);
}

.principle-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  display: block;
  margin-bottom: 28px;
  line-height: 1;
}

.principle-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--ivory);
  display: block;
  margin-bottom: 16px;
  line-height: 1.2;
}

.principle-body {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(245, 245, 243, 0.6);
  line-height: 1.8;
}

/* OFFICES (light section) */
.section-offices {
  background: var(--ivory);
  padding: 120px 0;
  color: var(--navy);
}

.section-offices .section-label {
  color: var(--gold);
}

.section-offices .gold-rule {
  background: var(--gold);
}

.offices-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  max-width: 600px;
}

.offices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.office-card {
  border: 1px solid rgba(12, 16, 50, 0.12);
  padding: 40px 36px;
  background: #FAFAF8;
  transition: border-color 0.3s ease;
}

.office-card:hover {
  border-color: rgba(200, 167, 90, 0.5);
}

.office-city {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.office-address-text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(26, 26, 26, 0.85);
  line-height: 1.85;
}

.office-contact {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(26, 26, 26, 0.6);
  margin-top: 20px;
  display: block;
  line-height: 1.8;
}

/* CONTACT FORM */
.section-contact {
  background: var(--navy-dark);
  padding: 120px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-details-h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 32px;
  line-height: 1.2;
}

.contact-block {
  margin-bottom: 32px;
}

.contact-block-label {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.contact-block-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.5;
}

.contact-block-detail {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(245, 245, 243, 0.55);
  display: block;
  margin-top: 4px;
}

.contact-divider {
  width: 100%;
  height: 1px;
  background: rgba(200, 167, 90, 0.2);
  margin: 32px 0;
}

.contact-note {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 245, 243, 0.55);
  line-height: 1.7;
}

.form-h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 32px;
  line-height: 1.2;
}

.form-field {
  display: block;
  margin-bottom: 32px;
}

.form-label {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.form-input,
.form-select,
.form-textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(200, 167, 90, 0.35);
  padding: 12px 0;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--ivory);
  outline: none;
  transition: border-color 0.3s ease;
  border-radius: 0;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(245, 245, 243, 0.3);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-bottom-color: var(--gold);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23C8A75A' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 24px;
  cursor: pointer;
}

.form-select option {
  background: var(--navy);
  color: var(--ivory);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  background: var(--gold);
  color: var(--navy);
  padding: 16px;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 16px;
}

.form-submit:hover {
  background: var(--gold-deep);
}

.form-disclaimer {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: italic;
  color: rgba(245, 245, 243, 0.45);
  margin-top: 20px;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 1024px) {

  .container,
  .nav-inner {
    padding: 0 32px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero--page h1 {
    font-size: 42px;
  }

  .positioning-h2,
  .practice-h2,
  .about-h2,
  .divisions-h2,
  .why-h2,
  .cta-h2,
  .overview-h2,
  .services-h2,
  .clients-h2,
  .principles-h2,
  .offices-h2 {
    font-size: 36px;
  }

  .divisions-inner {
    grid-template-columns: 1fr;
  }

  .divisions-left {
    padding-right: 0;
  }

  .divisions-image-panel {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col-1 {
    grid-column: 1 / -1;
  }

  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .principles-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .offices-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .container,
  .nav-inner {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero--page h1 {
    font-size: 32px;
  }

  .hero-body {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    text-align: center;
  }

  .hero-scroll {
    display: none;
  }

  .hero-content {
    padding-top: 120px;
    padding-bottom: 64px;
  }

  .hero--page .hero-content {
    padding-top: 120px;
    padding-bottom: 64px;
  }

  .positioning-h2 {
    font-size: 30px;
  }

  .positioning-pull {
    font-size: 22px;
  }

  .section-positioning,
  .section-practice,
  .section-divisions,
  .section-why,
  .section-overview,
  .section-services,
  .section-clients,
  .section-principles,
  .section-offices,
  .section-contact,
  .practice-list-section {
    padding: 80px 0;
  }

  .practice-h2,
  .about-h2,
  .divisions-h2,
  .why-h2,
  .cta-h2,
  .overview-h2,
  .services-h2,
  .clients-h2,
  .principles-h2,
  .offices-h2,
  .contact-details-h3,
  .form-h3 {
    font-size: 28px;
  }

  .practice-grid {
    grid-template-columns: 1fr;
    background: transparent;
    border: none;
    gap: 24px;
  }

  .practice-card {
    padding: 48px 32px;
    border: 1px solid rgba(200, 167, 90, 0.15);
  }

  .section-about {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 300px;
    order: 2;
  }

  .about-content {
    padding: 48px 24px;
    order: 1;
  }

  .stats-row {
    gap: 20px;
  }

  .divisions-grid {
    grid-template-columns: 1fr;
  }

  .divisions-image-panel {
    display: none;
  }

  .why-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-col {
    padding: 0;
    border-right: none;
    border-bottom: 1px solid rgba(200, 167, 90, 0.15);
    padding-bottom: 32px;
  }

  .why-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .why-h2 {
    font-size: 30px;
  }

  .cta-h2 {
    font-size: 32px;
  }

  .section-cta {
    padding: 100px 0;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .about-content .gold-rule {
    margin: 24px 0;
  }

  .clients-grid {
    grid-template-columns: 1fr;
  }

  .practice-row {
    padding: 24px 12px;
  }

  .row-title {
    font-size: 22px;
  }

  .row-desc {
    display: none;
  }
}