@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Manrope:wght@400;500;600;700&display=swap");
:root {
  --navy-950: #07131e;
  --navy-900: #0b1b29;
  --navy-800: #122b3c;
  --ink: #18232b;
  --muted: #69747b;
  --gold: #c8a46b;
  --gold-dark: #a9844e;
  --nude: #e7d8c4;
  --cream: #f4f0ea;
  --paper: #fbfaf8;
  --white: #ffffff;
  --line: rgba(10, 28, 42, 0.13);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 28px 80px rgba(7, 19, 30, 0.12);
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Manrope", Arial, Helvetica, sans-serif;
  --container: min(1220px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  background: #050e15;
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-sans);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--gold);
  color: var(--navy-950);
}

.site-header {
  align-items: center;
  background: rgba(7, 19, 30, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 90px;
  left: 0;
  padding: 0 max(24px, calc((100vw - 1440px) / 2));
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}

.brand {
  align-items: center;
  display: inline-flex;
  justify-self: start;
}

.brand-logo {
  align-items: center;
  display: inline-flex;
  height: 76px;
  justify-content: flex-start;
  width: 146px;
}

.brand-logo img {
  height: 100%;
  object-fit: contain;
  object-position: left center;
  width: 100%;
}

.brand-footer .brand-logo {
  height: auto;
  width: 210px;
}

.brand-mark {
  align-items: center;
  border: 1px solid rgba(200, 164, 107, 0.72);
  color: var(--gold);
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  height: 44px;
  justify-content: center;
  letter-spacing: -0.08em;
  position: relative;
  width: 44px;
}

.brand-mark::after {
  border: 1px solid rgba(200, 164, 107, 0.25);
  content: "";
  inset: 4px;
  position: absolute;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.32em;
  margin-top: 6px;
  text-transform: uppercase;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 25px;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
  transition: color 220ms ease;
}

.desktop-nav a::after {
  background: var(--gold);
  bottom: -9px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
  width: 100%;
}

.desktop-nav a:hover {
  color: var(--white);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 24px;
  justify-content: center;
  letter-spacing: 0.04em;
  min-height: 50px;
  padding: 0 23px;
  transition:
    background-color 220ms ease,
    color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-header {
  border: 1px solid rgba(200, 164, 107, 0.6);
  color: var(--nude);
  justify-self: end;
  min-height: 43px;
}

.button-header:hover {
  background: var(--gold);
  color: var(--navy-950);
}

.button-gold {
  background: var(--gold);
  color: var(--navy-950);
  box-shadow: 0 13px 34px rgba(200, 164, 107, 0.18);
}

.button-gold:hover {
  background: #d7b77f;
  box-shadow: 0 18px 38px rgba(200, 164, 107, 0.26);
}

.mobile-menu {
  display: none;
  justify-self: end;
  position: relative;
}

.mobile-menu summary {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 44px;
  justify-content: center;
  list-style: none;
  width: 44px;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  background: var(--white);
  height: 1px;
  width: 17px;
}

.mobile-menu nav {
  background: var(--navy-950);
  border: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  min-width: 250px;
  padding: 16px;
  position: absolute;
  right: 0;
  top: 55px;
}

.mobile-menu nav a {
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  padding: 13px 8px;
}

.mobile-menu nav a:last-child {
  border: 0;
  color: var(--gold);
}

.hero {
  align-items: stretch;
  background:
    radial-gradient(circle at 77% 12%, rgba(200, 164, 107, 0.14), transparent 26%),
    linear-gradient(118deg, var(--navy-950) 0%, #0a1d2b 58%, #102a3a 100%);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.84fr);
  min-height: 760px;
  overflow: hidden;
  padding: 90px max(30px, calc((100vw - 1220px) / 2)) 0;
  position: relative;
}

.hero::before {
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 78px 78px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to right, black, transparent 80%);
  pointer-events: none;
  position: absolute;
}

.hero-orbit {
  border: 1px solid rgba(200, 164, 107, 0.16);
  border-radius: 50%;
  pointer-events: none;
  position: absolute;
}

.hero-orbit-one {
  height: 520px;
  right: -250px;
  top: 170px;
  width: 520px;
}

.hero-orbit-two {
  height: 700px;
  right: -340px;
  top: 80px;
  width: 700px;
}

.hero-content {
  align-self: center;
  max-width: 720px;
  padding: 90px 70px 80px 0;
  position: relative;
  z-index: 2;
}

.eyebrow {
  align-items: center;
  color: var(--gold-dark);
  display: flex;
  font-size: 10px;
  font-weight: 700;
  gap: 12px;
  letter-spacing: 0.24em;
  margin: 0 0 25px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: currentColor;
  content: "";
  height: 1px;
  width: 32px;
}

.eyebrow-light {
  color: var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(59px, 6.35vw, 94px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.88;
  margin: 0;
  max-width: 760px;
}

.hero h1 em {
  color: var(--gold);
  display: block;
  font-weight: 500;
  margin-top: 15px;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.85;
  margin: 34px 0 0;
  max-width: 610px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.text-link {
  align-items: center;
  color: var(--navy-900);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 17px;
  margin-top: 14px;
  padding-bottom: 4px;
  position: relative;
}

.text-link::after {
  background: currentColor;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0.36;
  position: absolute;
  transition: width 220ms ease;
  width: calc(100% - 36px);
}

.text-link:hover::after {
  width: 100%;
}

.text-link-light {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.hero-proof {
  border-top: 1px solid var(--line-light);
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
  max-width: 680px;
  padding-top: 24px;
}

.hero-proof div {
  display: flex;
  flex-direction: column;
}

.hero-proof strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  letter-spacing: 0.08em;
  margin-top: 2px;
  text-transform: uppercase;
}

.hero-signature {
  align-self: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    radial-gradient(circle at 82% 15%, rgba(200, 164, 107, 0.18), transparent 32%);
  border: 1px solid rgba(200, 164, 107, 0.28);
  box-shadow: 0 38px 90px rgba(1, 9, 15, 0.3);
  min-height: 520px;
  overflow: hidden;
  padding: 72px 48px 54px;
  position: relative;
  z-index: 2;
}

.hero-signature::before {
  border: 1px solid rgba(200, 164, 107, 0.14);
  border-radius: 50%;
  content: "";
  height: 420px;
  position: absolute;
  right: -230px;
  top: -135px;
  width: 420px;
}

.signature-line {
  background: linear-gradient(90deg, transparent, rgba(200, 164, 107, 0.32), transparent);
  height: 1px;
  position: absolute;
  transform: rotate(-34deg);
  width: 570px;
}

.signature-line-one {
  right: -225px;
  top: 190px;
}

.signature-line-two {
  bottom: 108px;
  left: -280px;
}

.signature-monogram {
  align-items: center;
  color: var(--gold);
  display: flex;
  font-family: var(--font-display);
  font-size: 92px;
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.8;
  position: relative;
  width: max-content;
}

.signature-monogram i {
  background: var(--gold);
  height: 104px;
  margin: 0 16px 0 24px;
  opacity: 0.42;
  transform: rotate(24deg);
  width: 1px;
}

.signature-kicker {
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  margin: 28px 0 0;
  text-transform: uppercase;
}

.hero-signature h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 3.8vw, 57px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 14px 0 0;
  max-width: 390px;
}

.hero-signature h2 em {
  color: var(--gold);
  display: block;
  font-weight: 500;
  margin-top: 7px;
}

.signature-credential {
  backdrop-filter: blur(14px);
  background: rgba(7, 19, 30, 0.5);
  border-left: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  margin-top: 38px;
  padding: 14px 18px;
  position: relative;
  width: max-content;
}

.signature-credential span {
  color: rgba(255, 255, 255, 0.43);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signature-credential strong {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  margin-top: 3px;
}

.signature-services {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  padding-top: 18px;
  position: relative;
}

.signature-services span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.experience-seal {
  align-items: center;
  background: var(--gold);
  border-radius: 50%;
  color: var(--navy-950);
  display: flex;
  flex-direction: column;
  height: 112px;
  justify-content: center;
  left: -55px;
  position: absolute;
  top: 24%;
  width: 112px;
  z-index: 3;
}

.experience-seal::before {
  border: 1px solid rgba(7, 19, 30, 0.28);
  border-radius: 50%;
  content: "";
  inset: 7px;
  position: absolute;
}

.experience-seal span {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.experience-seal strong {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
}

.hero-signature .experience-seal {
  left: auto;
  right: 24px;
  top: 24px;
}

.hero-scroll {
  align-items: center;
  bottom: 44px;
  color: rgba(255, 255, 255, 0.42);
  display: flex;
  font-size: 8px;
  font-weight: 700;
  gap: 12px;
  left: max(30px, calc((100vw - 1220px) / 2));
  letter-spacing: 0.16em;
  position: absolute;
  text-transform: uppercase;
  z-index: 3;
}

.hero-scroll span {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  height: 34px;
  position: relative;
  width: 20px;
}

.hero-scroll span::after {
  animation: scroll-dot 1.8s ease infinite;
  background: var(--gold);
  border-radius: 50%;
  content: "";
  height: 3px;
  left: 7px;
  position: absolute;
  top: 7px;
  width: 3px;
}

@keyframes scroll-dot {
  0%,
  100% {
    opacity: 0;
    transform: translateY(0);
  }
  35% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    transform: translateY(13px);
  }
}

.intro-strip {
  align-items: center;
  background: var(--gold);
  color: var(--navy-950);
  display: flex;
  gap: 30px;
  justify-content: center;
  min-height: 78px;
  overflow: hidden;
  padding: 18px 30px;
}

.intro-strip span {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  white-space: nowrap;
}

.intro-strip i {
  background: rgba(7, 19, 30, 0.48);
  height: 3px;
  transform: rotate(45deg);
  width: 3px;
}

.section {
  padding: 130px 0;
}

.section-grid,
.team-showcase,
.practice-grid,
.partner-note,
.trust,
.footer-main,
.footer-links,
.footer-bottom {
  margin-left: auto;
  margin-right: auto;
  width: var(--container);
}

.section-grid {
  display: grid;
  gap: 10%;
  grid-template-columns: 0.9fr 1.1fr;
}

.section-heading h2,
.contact h2 {
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: clamp(43px, 5vw, 67px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0;
}

.about-copy {
  padding-top: 32px;
}

.about-copy p {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 20px;
}

.about-copy .large-copy {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1.38;
}

.team-showcase {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 90px;
}

.lawyer-card {
  background: var(--white);
  border: 1px solid rgba(10, 28, 42, 0.09);
  box-shadow: 0 24px 60px rgba(7, 19, 30, 0.07);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.lawyer-card::before {
  background: var(--gold);
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}

.lawyer-photo {
  background: var(--navy-900);
  height: 420px;
  overflow: hidden;
  position: relative;
}

.lawyer-photo::after {
  background: linear-gradient(to top, rgba(7, 19, 30, 0.62), transparent 38%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.lawyer-photo img {
  filter: saturate(0.88) contrast(1.02);
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
  width: 100%;
}

.lawyer-card:hover .lawyer-photo img {
  transform: scale(1.025);
}

.lawyer-photo-portrait img {
  object-position: center 52%;
}

.lawyer-photo-landscape img {
  object-position: center 43%;
}

.lawyer-photo > span {
  bottom: 24px;
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  left: 28px;
  letter-spacing: 0.19em;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

.lawyer-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 38px 40px 42px;
}

.lawyer-content .eyebrow {
  font-size: 9px;
  margin-bottom: 16px;
}

.lawyer-content h3 {
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: clamp(33px, 3.2vw, 43px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0;
}

.lawyer-role {
  color: var(--gold-dark) !important;
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.55 !important;
  margin: 13px 0 22px !important;
  text-transform: uppercase;
}

.lawyer-content > p:not(.eyebrow, .lawyer-role) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 24px;
}

.lawyer-content ul {
  display: grid;
  gap: 0;
  list-style: none;
  margin: auto 0 0;
  padding: 0;
}

.lawyer-content li {
  border-top: 1px solid var(--line);
  color: #49565d;
  font-size: 12px;
  line-height: 1.5;
  padding: 12px 0 12px 17px;
  position: relative;
}

.lawyer-content li::before {
  background: var(--gold);
  border-radius: 50%;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  top: 19px;
  width: 5px;
}

.practices {
  background: var(--cream);
}

.centered-heading {
  margin: 0 auto 60px;
  max-width: 760px;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading .eyebrow::after {
  background: currentColor;
  content: "";
  height: 1px;
  width: 32px;
}

.centered-heading > p:last-child {
  color: var(--muted);
  font-size: 13px;
  margin: 23px auto 0;
  max-width: 570px;
}

.practice-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.practice-card {
  background: var(--paper);
  display: flex;
  flex-direction: column;
  min-height: 370px;
  padding: 38px 35px;
  position: relative;
  transition:
    background-color 240ms ease,
    color 240ms ease,
    transform 240ms ease;
}

.practice-card:hover {
  background: var(--navy-900);
  color: var(--white);
  transform: translateY(-7px);
  z-index: 2;
}

.card-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.card-number {
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.card-arrow {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-dark);
  display: flex;
  font-size: 15px;
  height: 40px;
  justify-content: center;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
  width: 40px;
}

.practice-card:hover .card-arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-950);
  transform: rotate(45deg);
}

.practice-card h3 {
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.04;
  margin: 53px 0 16px;
  transition: color 240ms ease;
}

.practice-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
  margin: 0;
  transition: color 240ms ease;
}

.practice-card:hover h3 {
  color: var(--white);
}

.practice-card:hover p {
  color: rgba(255, 255, 255, 0.62);
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  padding-top: 28px;
}

.card-tags span {
  background: rgba(200, 164, 107, 0.18);
  border: 1px solid rgba(157, 119, 62, 0.46);
  border-radius: 20px;
  color: #74542b;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 6px 11px;
  text-transform: uppercase;
  transition:
    border-color 240ms ease,
    color 240ms ease;
}

.practice-card:hover .card-tags span {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-950);
}

.partner-note {
  align-items: center;
  background: var(--gold);
  display: grid;
  gap: 28px;
  grid-template-columns: auto 0.9fr 1.2fr;
  margin-top: 44px;
  padding: 35px 42px;
}

.partner-monogram {
  align-items: center;
  border: 1px solid rgba(7, 19, 30, 0.27);
  border-radius: 50%;
  display: flex;
  font-family: var(--font-display);
  font-size: 28px;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.partner-note .eyebrow {
  color: rgba(7, 19, 30, 0.58);
  margin-bottom: 7px;
}

.partner-note h3 {
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 600;
  line-height: 1.05;
  margin: 0;
}

.partner-note > p {
  border-left: 1px solid rgba(7, 19, 30, 0.24);
  font-size: 11px;
  margin: 0;
  padding-left: 30px;
}

.differentials {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    radial-gradient(circle at 8% 86%, rgba(200, 164, 107, 0.16), transparent 31%),
    radial-gradient(circle at 92% 5%, rgba(71, 112, 137, 0.18), transparent 28%),
    linear-gradient(125deg, #06121c 0%, #0b1d2a 56%, #102b3b 100%);
  display: grid;
  gap: 8%;
  grid-template-columns: 0.85fr 1.15fr;
  overflow: hidden;
  padding: 130px max(30px, calc((100vw - 1220px) / 2));
  position: relative;
  width: 100%;
}

.differentials::after {
  border: 1px solid rgba(200, 164, 107, 0.09);
  border-radius: 50%;
  content: "";
  height: 620px;
  pointer-events: none;
  position: absolute;
  right: -310px;
  top: -280px;
  width: 620px;
}

.differentials .section-heading h2 {
  color: var(--white);
}

.differential-heading > p:last-child {
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.85;
  margin: 25px 0 0;
  max-width: 460px;
}

.differential-list article {
  align-items: start;
  border-top: 1px solid var(--line-light);
  display: grid;
  gap: 30px;
  grid-template-columns: 45px 1fr;
  padding: 29px 0;
  position: relative;
  z-index: 1;
}

.differential-list article:last-child {
  border-bottom: 1px solid var(--line-light);
}

.differential-list article > span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.differential-list h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 500;
  margin: 0 0 5px;
}

.differential-list p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
  max-width: 560px;
}

.podcast {
  background:
    radial-gradient(circle at 88% 14%, rgba(200, 164, 107, 0.11), transparent 22%),
    var(--paper);
  padding-left: max(30px, calc((100vw - 1220px) / 2));
  padding-right: max(30px, calc((100vw - 1220px) / 2));
}

.podcast-heading {
  align-items: end;
  display: grid;
  gap: 10%;
  grid-template-columns: 1.1fr 0.9fr;
  margin-bottom: 58px;
}

.podcast-heading h2 {
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0;
  max-width: 720px;
}

.podcast-heading > p {
  border-left: 1px solid var(--gold);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 5px;
  padding-left: 28px;
}

.podcast-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.video-card {
  background: var(--white);
  border: 1px solid rgba(10, 28, 42, 0.09);
  box-shadow: 0 24px 60px rgba(7, 19, 30, 0.07);
  overflow: hidden;
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: var(--navy-950);
  overflow: hidden;
  position: relative;
}

.video-frame iframe {
  border: 0;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.video-info {
  padding: 30px 32px 32px;
}

.video-info > span {
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.video-info h3 {
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 500;
  line-height: 1.1;
  margin: 12px 0 24px;
}

.video-info a {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--navy-900);
  display: flex;
  font-size: 11px;
  font-weight: 700;
  justify-content: space-between;
  padding-top: 18px;
}

.video-info a b {
  color: var(--gold-dark);
  font-size: 17px;
}

.trust {
  align-items: center;
  display: grid;
  gap: 10%;
  grid-template-columns: 0.88fr 1.12fr;
}

.trust-intro h2 {
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 65px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0;
}

.trust-intro > p:last-child {
  color: var(--muted);
  font-size: 12px;
  margin: 25px 0 0;
  max-width: 500px;
}

.trust-panel {
  background: var(--cream);
  min-height: 360px;
  padding: 50px 54px 40px;
  position: relative;
}

.trust-panel::after {
  border: 1px solid rgba(200, 164, 107, 0.48);
  content: "";
  inset: 13px;
  pointer-events: none;
  position: absolute;
}

.quote-mark {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 76px;
  line-height: 0.7;
}

.trust-panel blockquote {
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 29px;
  font-style: italic;
  line-height: 1.25;
  margin: 25px 0 38px;
}

.trust-panel footer {
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding-top: 18px;
}

.trust-panel footer span {
  color: var(--gold-dark);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-panel footer strong {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.contact {
  background:
    radial-gradient(circle at 5% 92%, rgba(200, 164, 107, 0.14), transparent 29%),
    linear-gradient(125deg, #081720 0%, #0b1f2e 62%, #102c3d 100%);
  color: var(--white);
  display: grid;
  gap: 9%;
  grid-template-columns: 0.92fr 1.08fr;
  padding: 120px max(30px, calc((100vw - 1220px) / 2));
}

.contact h2 {
  color: var(--white);
  max-width: 550px;
}

.contact-copy > p:nth-of-type(2) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.85;
  margin: 28px 0 45px;
  max-width: 490px;
}

.contact-details {
  border-top: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
}

.contact-details a {
  border-bottom: 1px solid var(--line-light);
  display: grid;
  gap: 25px;
  grid-template-columns: 90px 1fr;
  padding: 21px 0;
}

.contact-details span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.contact-form {
  background: var(--paper);
  color: var(--ink);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
  padding: 48px;
}

.form-heading {
  display: flex;
  flex-direction: column;
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.form-heading span {
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-heading strong {
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 39px;
  font-weight: 500;
}

.contact-form label {
  color: #536068;
  display: flex;
  flex-direction: column;
  font-size: 10px;
  font-weight: 700;
  gap: 7px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-form label:nth-of-type(5) {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  outline: none;
  padding: 8px 0 10px;
  resize: vertical;
  text-transform: none;
  transition: border-color 180ms ease;
  width: 100%;
}

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

.contact-form textarea {
  min-height: 85px;
}

.contact-form .consent {
  align-items: center;
  flex-direction: row;
  gap: 9px;
  grid-column: 1 / -1;
  letter-spacing: 0;
  text-transform: none;
}

.consent input {
  accent-color: var(--gold-dark);
  flex: 0 0 auto;
  margin: 0;
  width: auto;
}

.form-submit {
  grid-column: 1 / -1;
  margin-top: 5px;
  width: 100%;
}

.contact-form > small {
  color: #899197;
  font-size: 8px;
  grid-column: 1 / -1;
  text-align: center;
}

.footer {
  background: #050e15;
  color: var(--white);
  padding-bottom: max(18px, env(safe-area-inset-bottom));
  padding-top: 75px;
}

.footer > .footer-main,
.footer > .footer-links {
  margin-left: 0;
  margin-right: 0;
  width: auto;
}

.footer {
  display: grid;
  gap: 8%;
  grid-template-columns: 1fr 1fr;
  padding-left: max(30px, calc((100vw - 1220px) / 2));
  padding-right: max(30px, calc((100vw - 1220px) / 2));
}

.footer-main p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.75;
  margin: 25px 0;
  max-width: 390px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social a {
  align-items: center;
  border: 1px solid rgba(200, 164, 107, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  display: inline-flex;
  font-size: 11px;
  gap: 8px;
  letter-spacing: 0.08em;
  padding: 7px 12px 7px 8px;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.footer-social a:hover {
  background: rgba(200, 164, 107, 0.12);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.social-icon {
  align-items: center;
  background: rgba(200, 164, 107, 0.13);
  border-radius: 50%;
  color: var(--gold);
  display: inline-flex;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.social-icon svg {
  fill: currentColor;
  height: 14px;
  overflow: visible;
  stroke: currentColor;
  stroke-width: 1.7;
  width: 14px;
}

.social-icon svg path {
  stroke: none;
}

.social-icon-dot {
  fill: currentColor;
  stroke: none;
}

.footer-links {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(2, 1fr);
}

.footer-links div {
  display: flex;
  flex-direction: column;
}

.footer-links span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  padding: 6px 0;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.58);
  display: flex;
  font-size: 10px;
  grid-column: 1 / -1;
  gap: 24px;
  justify-content: space-between;
  margin-top: 15px;
  padding: 20px 0 26px;
  width: 100%;
}

.footer-credit strong {
  color: var(--gold);
  font-weight: 700;
}

.footer-credit {
  transition: color 180ms ease;
}

.footer-credit:hover {
  color: var(--white);
}

.footer-credit:hover strong {
  color: #dfbd84;
}
.whatsapp-float {
  align-items: center;
  background: #1f9d63;
  bottom: 24px;
  box-shadow: 0 13px 35px rgba(7, 19, 30, 0.24);
  color: var(--white);
  display: flex;
  gap: 10px;
  padding: 9px 15px 9px 9px;
  position: fixed;
  right: 24px;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
  z-index: 45;
}

.whatsapp-float:hover {
  background: #188555;
  transform: translateY(-3px);
}

.whatsapp-float span {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  font-size: 7px;
  font-weight: 700;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.whatsapp-float strong {
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .desktop-nav {
    gap: 18px;
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.95fr);
  }

  .hero-content {
    padding-right: 45px;
  }

  .experience-seal {
    height: 92px;
    left: -42px;
    width: 92px;
  }

  .hero-signature .experience-seal {
    left: auto;
    right: 18px;
  }

  .practice-card {
    padding: 32px 26px;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .button-header {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr 0.72fr;
    min-height: 760px;
  }

  .hero-content {
    padding-right: 32px;
  }

  .hero h1 {
    font-size: clamp(52px, 7.4vw, 72px);
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof div:nth-child(n + 2) {
    display: none;
  }

  .hero-signature {
    min-height: 540px;
    padding: 58px 34px 36px;
  }

  .section-grid,
  .differentials,
  .trust {
    gap: 55px;
    grid-template-columns: 1fr;
  }

  .about-copy {
    max-width: 650px;
    padding-top: 0;
  }

  .team-showcase,
  .podcast-grid {
    grid-template-columns: 1fr;
  }

  .lawyer-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .lawyer-photo {
    height: 100%;
    min-height: 480px;
  }

  .podcast-heading {
    align-items: start;
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .podcast-heading > p {
    max-width: 650px;
  }

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

  .partner-note {
    grid-template-columns: auto 1fr;
  }

  .partner-note > p {
    border-left: 0;
    border-top: 1px solid rgba(7, 19, 30, 0.24);
    grid-column: 1 / -1;
    padding: 20px 0 0;
  }

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

  .contact-copy {
    max-width: 650px;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 30px, 560px);
  }

  html {
    scroll-padding-top: 73px;
  }

  .site-header {
    height: 72px;
    padding: 0 15px;
  }

  .brand {
    min-width: 54px;
  }

  .site-header .brand-logo {
    height: 54px;
    width: 54px;
  }

  .brand-mark {
    font-size: 16px;
    height: 38px;
    width: 38px;
  }

  .brand-copy strong {
    font-size: 20px;
  }

  .brand-copy small {
    font-size: 7px;
    margin-top: 4px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 72px 0 0;
  }

  .hero::before,
  .hero-orbit,
  .hero-scroll {
    display: none;
  }

  .hero-content {
    padding: 72px 20px 52px;
    width: 100%;
  }

  .eyebrow {
    font-size: 8px;
    letter-spacing: 0.18em;
  }

  .hero h1 {
    font-size: clamp(50px, 15vw, 66px);
    line-height: 0.91;
  }

  .hero-lead {
    font-size: 13px;
    line-height: 1.75;
    margin-top: 28px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 19px;
    margin-top: 32px;
  }

  .button-gold {
    width: 100%;
  }

  .text-link-light {
    justify-content: center;
  }

  .hero-proof {
    margin-top: 42px;
  }

  .hero-signature {
    align-self: center;
    display: block;
    margin: 0 15px 38px;
    min-height: 0;
    padding: 44px 28px 30px;
    width: calc(100% - 30px);
  }

  .signature-monogram {
    font-size: 70px;
  }

  .signature-monogram i {
    height: 78px;
  }

  .hero-signature h2 {
    font-size: 42px;
    max-width: 300px;
  }

  .hero-signature .experience-seal {
    height: 76px;
    left: auto;
    right: 22px;
    top: 28px;
    width: 76px;
  }

  .hero-signature .experience-seal strong {
    font-size: 20px;
  }

  .signature-services {
    gap: 10px;
  }

  .signature-services span {
    font-size: 7px;
  }

  .intro-strip {
    gap: 18px;
    justify-content: flex-start;
    min-height: 63px;
    overflow-x: auto;
    padding: 14px 20px;
  }

  .intro-strip span {
    font-size: 16px;
  }

  .section {
    padding: 86px 0;
  }

  .section-grid {
    gap: 35px;
  }

  .section-heading h2,
  .contact h2,
  .trust-intro h2 {
    font-size: 43px;
  }

  .about-copy .large-copy {
    font-size: 24px;
  }

  .team-showcase {
    gap: 20px;
    margin-top: 55px;
  }

  .lawyer-card {
    display: flex;
    grid-template-columns: 1fr;
  }

  .lawyer-photo {
    height: 360px;
    min-height: 0;
  }

  .lawyer-photo-landscape {
    height: 290px;
  }

  .lawyer-content {
    padding: 30px 24px 32px;
  }

  .lawyer-content h3 {
    font-size: 36px;
  }

  .lawyer-role {
    font-size: 10px !important;
  }

  .lawyer-content > p:not(.eyebrow, .lawyer-role) {
    font-size: 13px;
  }

  .practice-grid {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .practice-card {
    min-height: 335px;
  }

  .partner-note {
    gap: 20px;
    padding: 28px 24px;
  }

  .partner-monogram {
    height: 46px;
    width: 46px;
  }

  .partner-note h3 {
    font-size: 24px;
  }

  .differentials {
    padding: 84px 15px;
  }

  .differential-list h3 {
    font-size: 27px;
  }

  .differential-list p {
    font-size: 13px;
  }

  .podcast {
    padding-left: 15px;
    padding-right: 15px;
  }

  .podcast-heading h2 {
    font-size: 43px;
  }

  .podcast-heading > p {
    font-size: 13px;
    padding-left: 19px;
  }

  .podcast-grid {
    gap: 20px;
  }

  .video-info {
    padding: 25px 24px 28px;
  }

  .video-info h3 {
    font-size: 26px;
  }

  .trust {
    gap: 40px;
  }

  .trust-panel {
    min-height: 340px;
    padding: 45px 35px 35px;
  }

  .trust-panel blockquote {
    font-size: 25px;
  }

  .contact {
    padding: 84px 15px;
  }

  .contact-details a {
    gap: 12px;
    grid-template-columns: 75px 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 32px 23px;
  }

  .contact-form label,
  .contact-form label:nth-of-type(5),
  .form-heading,
  .contact-form .consent,
  .form-submit,
  .contact-form > small {
    grid-column: 1;
  }

  .footer {
    gap: 50px;
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    grid-column: 1;
  }

  .whatsapp-float {
    border-radius: 50%;
    bottom: 15px;
    padding: 6px;
    right: 15px;
  }

  .whatsapp-float span {
    height: 38px;
    width: 38px;
  }

  .whatsapp-float strong {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
