: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 32px;
}

.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 32px;
  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;
}

.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);
}

.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: 100vh;
}

.hero--page .hero-overlay {
  background: linear-gradient(135deg, rgba(12, 16, 50, 0.904) 0%, rgba(12, 16, 50, 0.712) 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);
}






/* 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;
}

.footer-tagline {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(245, 245, 243, 0.45);
  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.4);
  line-height: 1.6;
}

.footer-contact-item {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(245, 245, 243, 0.35);
  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.25);
  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.45);
  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.25);
}

.reveal {
  opacity: 1;
}








/* 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;
  }
}

@media (min-width: 1536px) {

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

  .about-content {
    padding: 100px 80px;
  }

  .section-about,
  .about-image {
    min-height: 680px;
  }
}

@media (min-width: 1920px) {

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

  .about-content {
    padding: 120px 96px;
  }

  .section-about,
  .about-image {
    min-height: 760px;
  }
}

@media (min-width: 2400px) {

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

  .about-content {
    padding: 140px 112px;
  }

  .section-about,
  .about-image {
    min-height: 840px;
  }
}

@media (min-width: 1536px) {

  .container,
  .nav-inner {
    max-width: 1600px;
  }
}

@media (min-width: 1920px) {

  .container,
  .nav-inner {
    max-width: 1800px;
  }
}

@media (min-width: 2400px) {

  .container,
  .nav-inner {
    max-width: 2100px;
  }
}