:root {
  --navy-950: #05111f;
  --navy-900: #071827;
  --navy-800: #0d2235;
  --charcoal: #171411;
  --brown: #3a2a1d;
  --gold: #b78a3a;
  --gold-600: #9f7227;
  --gold-200: #d8bd86;
  --gold-100: #ead8b8;
  --warm-white: #fbf8f2;
  --ivory: #f4efe6;
  --stone: #e2d8c9;
  --muted: #70685e;
  --text: #1d1a17;
  --white: #ffffff;
  --shadow-sm: 0 10px 26px rgba(7, 24, 39, 0.08);
  --shadow-md: 0 22px 54px rgba(7, 24, 39, 0.14);
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-standard: cubic-bezier(0.2, 0, 0, 1);
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
  --container: 1184px;
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(184, 138, 59, 0.045), transparent 28%),
    linear-gradient(180deg, var(--warm-white), #f8f3ea 100%);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(23, 20, 17, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 20, 17, 0.018) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 104px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  isolation: isolate;
  transition: transform 220ms var(--ease-standard), background 220ms ease, border-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.2) 42%, transparent 72%);
  opacity: 0;
  transform: translateX(-120%);
  transition: transform 520ms var(--ease-premium), opacity 220ms ease;
}

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

.btn:hover::before {
  opacity: 1;
  transform: translateX(120%);
}

.btn span {
  transition: transform 220ms var(--ease-standard);
}

.btn:hover span {
  transform: translateX(3px);
}

.btn:focus-visible,
.primary-nav__link:focus-visible,
.mobile-menu a:focus-visible,
.testimonial-arrow:focus-visible,
.newsletter__form input:focus-visible,
.whatsapp-float:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.btn--gold {
  background: linear-gradient(180deg, #cda051 0%, var(--gold) 100%);
  color: var(--navy-950);
  box-shadow: 0 12px 24px rgba(184, 138, 59, 0.22);
}

.btn--gold:hover {
  background: var(--gold-600);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(184, 138, 59, 0.28);
}

.btn--outline {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
}

.btn--outline:hover {
  border-color: var(--gold);
  background: rgba(184, 138, 59, 0.16);
  color: var(--white);
}

.btn--dark-text {
  border-color: rgba(5, 17, 31, 0.22);
  color: var(--navy-950);
}

.btn--dark-text:hover {
  border-color: var(--gold-600);
  background: rgba(184, 138, 59, 0.12);
  color: var(--navy-950);
}

.btn--dark {
  background: var(--navy-900);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--brown);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 242, 0.94);
  border-bottom: 1px solid rgba(58, 42, 29, 0.12);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 40px rgba(7, 24, 39, 0.1);
}

.site-header__top {
  position: relative;
  background: var(--navy-950);
  color: var(--white);
}

.site-header__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  gap: 32px;
  transition: min-height 240ms var(--ease-standard);
}

.site-header__inner {
  display: flex;
  align-items: center;
  min-height: 64px;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--white);
}

.brand__logo {
  display: block;
  width: clamp(202px, 17vw, 258px);
  height: auto;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.18));
  transition: transform 260ms var(--ease-standard), filter 260ms var(--ease-standard), opacity 220ms ease;
}

.site-header.is-scrolled .site-header__top-inner {
  min-height: 74px;
}

.site-header.is-scrolled .brand__logo {
  width: clamp(176px, 14vw, 220px);
}

.site-header.is-scrolled .header-contact {
  opacity: 0.82;
}

.brand:hover .brand__logo {
  filter: drop-shadow(0 16px 30px rgba(183, 138, 58, 0.18));
  transform: translateY(-1px);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 36px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 700;
}

.header-contact a,
.header-contact span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.header-contact span span,
.header-contact a span {
  color: var(--gold);
  font-size: 18px;
  font-weight: 400;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 24px;
}

.primary-nav__link {
  position: relative;
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 64px;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms var(--ease-standard);
}

.primary-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 16px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 240ms var(--ease-premium);
}

.primary-nav__link:hover,
.primary-nav__link--active {
  color: var(--gold-600);
}

.primary-nav__link:hover {
  transform: translateY(-1px);
}

.primary-nav__link:hover::after,
.primary-nav__link--active::after {
  width: 100%;
}

.site-header__cta {
  min-height: 44px;
  padding-inline: 20px;
}

.menu-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  background: transparent;
}

.menu-toggle span {
  position: absolute;
  left: 11px;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(1) { top: 13px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 29px; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 35%, rgba(184, 138, 58, 0.12), transparent 26%),
    linear-gradient(90deg, rgba(5, 17, 31, 0.88) 0%, rgba(5, 17, 31, 0.7) 43%, rgba(5, 17, 31, 0.28) 74%, rgba(5, 17, 31, 0.12) 100%),
    url("../assets/images/hero-courtroom.png") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background:
    linear-gradient(90deg, rgba(234, 216, 184, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(234, 216, 184, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 62%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(234, 216, 184, 0.65), transparent);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 372px;
  align-items: end;
  gap: 64px;
  min-height: 690px;
  padding-top: 104px;
  padding-bottom: 84px;
}

.hero__content {
  max-width: 760px;
  width: 100%;
  color: var(--white);
}

.hero__content > * {
  animation: heroLift 760ms var(--ease-premium) both;
}

.hero__content > *:nth-child(2) {
  animation-delay: 90ms;
}

.hero__content > *:nth-child(3) {
  animation-delay: 170ms;
}

.hero__content > *:nth-child(4) {
  animation-delay: 250ms;
}

.hero__title {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(54px, 7vw, 86px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
}

.hero__copy {
  max-width: 600px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.75;
  overflow-wrap: break-word;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(234, 216, 184, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.hero__trust span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 138, 58, 0.13);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.hero__aside {
  display: grid;
  gap: 18px;
}

.consult-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(234, 216, 184, 0.26);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(5, 17, 31, 0.74);
  color: var(--white);
  box-shadow: 0 26px 74px rgba(5, 17, 31, 0.28);
  backdrop-filter: blur(18px);
  isolation: isolate;
  animation: panelSettle 680ms var(--ease-premium) both;
  transition: transform 260ms var(--ease-standard), border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.consult-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 0%, rgba(216, 189, 134, 0.22), transparent 36%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 48%);
  pointer-events: none;
}

.consult-card:hover {
  border-color: rgba(234, 216, 184, 0.42);
  box-shadow: 0 30px 82px rgba(5, 17, 31, 0.34);
  transform: translateY(-3px);
}

.consult-card__label {
  margin: 0 0 14px;
  color: var(--gold-100);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.consult-card h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.consult-card p:not(.consult-card__label) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.7;
}

.consult-card .btn {
  width: 100%;
  margin-top: 24px;
}

.consult-card__note {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.hero__panel {
  width: 100%;
  padding: 24px 28px;
  border: 1px solid rgba(234, 216, 184, 0.2);
  border-radius: 8px;
  background: rgba(5, 17, 31, 0.68);
  color: var(--white);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
  animation: panelSettle 680ms var(--ease-premium) both;
  transition: transform 260ms var(--ease-standard), border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.hero__panel:hover {
  border-color: rgba(234, 216, 184, 0.34);
  background: rgba(5, 17, 31, 0.76);
  box-shadow: 0 26px 64px rgba(7, 24, 39, 0.2);
  transform: translateY(-3px);
}

.hero__panel p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.7;
  overflow-wrap: break-word;
}

.hero__panel dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.hero__panel div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(234, 216, 184, 0.16);
}

.hero__panel dt {
  color: var(--gold-100);
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hero__scroll {
  position: absolute;
  left: 24px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.hero__scroll::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
  transform-origin: left;
  animation: scrollLine 1600ms var(--ease-premium) infinite;
}

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

.hero__panel dd {
  max-width: 110px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-align: right;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 80px;
}

.section-heading--center {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 700;
  line-height: 1;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.practice {
  background: var(--warm-white);
}

.practice__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.practice-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 32px;
  border: 1px solid rgba(58, 42, 29, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  isolation: isolate;
  transition: transform 260ms var(--ease-standard), border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.practice-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(184, 138, 59, 0.08), transparent 42%),
    radial-gradient(circle at 18% 0%, rgba(234, 216, 184, 0.34), transparent 34%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.practice-card::after {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--ease-premium);
}

.practice-card:hover {
  border-color: rgba(184, 138, 59, 0.44);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

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

.practice-card:hover::after {
  transform: scaleX(1);
}

.practice-card__icon {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  color: var(--gold);
  background: currentColor;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
  transition: transform 260ms var(--ease-standard), color 220ms ease;
}

.practice-card:hover .practice-card__icon {
  color: var(--gold-600);
  transform: translateY(-2px) scale(1.06);
}

.practice-card h3 {
  margin: 0 0 14px;
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.practice-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.practice-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease, gap 220ms var(--ease-standard);
}

.practice-card a:hover {
  gap: 10px;
  color: var(--navy-900);
}

.about {
  background: var(--ivory);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.about__image {
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy-950);
  box-shadow: var(--shadow-md);
}

.about__image img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 52% 50%;
  transform: scale(1.01);
  transition: transform 700ms var(--ease-premium), filter 320ms ease;
}

.about__image:hover img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.045);
}

.about__story h2 {
  max-width: 620px;
  margin: 0;
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 700;
  line-height: 1;
}

.about__story p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.85;
}

.about__story .btn {
  margin-top: 32px;
}

.about__stats {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.about__stats article {
  min-height: 132px;
  padding: 24px 18px;
  border: 1px solid rgba(58, 42, 29, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  transition: transform 240ms var(--ease-standard), background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.about__stats article:hover {
  border-color: rgba(184, 138, 59, 0.34);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.about__stats strong {
  display: block;
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.about__stats span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-transform: uppercase;
}

.principles {
  background: var(--warm-white);
}

.principles__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.principles__grid article {
  position: relative;
  padding: 32px;
  border-top: 1px solid var(--stone);
  transition: transform 240ms var(--ease-standard), border-color 220ms ease;
}

.principles__grid article::before {
  content: "";
  position: absolute;
  left: 32px;
  top: -1px;
  width: 56px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--ease-premium);
}

.principles__grid article:hover {
  border-color: rgba(184, 138, 59, 0.36);
  transform: translateY(-3px);
}

.principles__grid article:hover::before {
  transform: scaleX(1);
}

.principles__grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.principles__grid h3 {
  margin: 0 0 12px;
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1;
}

.principles__grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.quote-strip {
  padding: 32px 0;
  background: var(--navy-950);
}

.quote-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--white);
}

.quote-strip__inner > span {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 62px;
  line-height: 0.75;
}

.quote-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 34px);
  font-style: italic;
  line-height: 1.2;
}

.team {
  background:
    linear-gradient(180deg, var(--warm-white) 0%, var(--ivory) 100%);
}

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

.team-directory {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.attorney-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 468px;
  overflow: hidden;
  border: 1px solid rgba(58, 42, 29, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 46px rgba(38, 29, 20, 0.08);
  cursor: pointer;
  outline: none;
  isolation: isolate;
  transition: transform 280ms var(--ease-standard), box-shadow 240ms ease, border-color 220ms ease, background 220ms ease;
}

.attorney-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 0%, rgba(184, 138, 58, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent 48%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.attorney-card:hover,
.attorney-card:focus-within {
  border-color: rgba(184, 138, 59, 0.42);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 64px rgba(38, 29, 20, 0.13);
  transform: translateY(-5px);
}

.attorney-card:hover::before,
.attorney-card:focus-within::before {
  opacity: 1;
}

.attorney-card--lead {
  grid-template-columns: minmax(240px, 0.72fr) 1fr;
  grid-template-rows: 1fr;
  min-height: 360px;
}

.attorney-card__photo {
  position: relative;
  display: grid;
  place-items: end center;
  height: 292px;
  min-height: 256px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 17, 31, 0.04), rgba(5, 17, 31, 0.24)),
    radial-gradient(circle at 50% 22%, rgba(234, 216, 184, 0.72), rgba(184, 138, 58, 0.14) 36%, transparent 58%),
    linear-gradient(135deg, #182536, #5f5141);
}

.attorney-card__photo--image {
  place-items: stretch;
  background: var(--navy-950);
}

.attorney-card__photo--image::before,
.attorney-card__photo--image::after {
  display: none;
}

.attorney-card__photo--image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.9) contrast(1.03);
  transform: scale(1.01);
  transition: transform 700ms var(--ease-premium), filter 320ms ease;
}

.attorney-card:hover .attorney-card__photo--image img,
.attorney-card:focus-within .attorney-card__photo--image img {
  filter: saturate(1.02) contrast(1.04);
  transform: scale(1.045);
}

.attorney-card__photo::before {
  content: "";
  position: absolute;
  bottom: -8px;
  width: 138px;
  height: 178px;
  border-radius: 80px 80px 14px 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 36%),
    linear-gradient(135deg, #222a34, #090f18);
  box-shadow: inset 0 0 0 1px rgba(234, 216, 184, 0.14), 0 20px 46px rgba(0, 0, 0, 0.28);
}

.attorney-card__photo::after {
  content: "";
  position: absolute;
  top: 52px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 30%, rgba(255, 255, 255, 0.38), transparent 22%),
    linear-gradient(135deg, #d8bd86, #8d6b33);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.attorney-card__photo span {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}

.attorney-card--lead .attorney-card__photo {
  height: auto;
  min-height: 100%;
}

.attorney-card__photo--abhishek img { object-position: center 18%; }
.attorney-card__photo--sourav img { object-position: center 16%; }
.attorney-card__photo--somi img { object-position: center 12%; }
.attorney-card__photo--esha img { object-position: center 16%; }
.attorney-card__photo--shivam img { object-position: center 14%; }
.attorney-card__photo--sanjay img { object-position: center 16%; }

.attorney-card__photo--somi { background-color: #172637; }
.attorney-card__photo--esha { background-color: #2c241d; }
.attorney-card__photo--shivam { background-color: #25303a; }
.attorney-card__photo--sanjay { background-color: #27221e; }

.attorney-card__content {
  display: grid;
  align-content: end;
  padding: 26px;
}

.attorney-card--lead .attorney-card__content {
  padding: 38px;
}

.attorney-card__kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  color: var(--gold-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.attorney-card h3 {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: clamp(29px, 2.5vw, 42px);
  line-height: 0.95;
}

.attorney-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.attorney-card__trigger {
  width: fit-content;
  margin-top: 24px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--navy-900);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding: 0 0 5px;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms var(--ease-standard);
}

.attorney-card__trigger:hover,
.attorney-card__trigger:focus-visible {
  color: var(--gold-600);
  transform: translateX(2px);
}

.attorney-card__bio {
  display: none;
}

.consultation-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 0%, rgba(234, 216, 184, 0.16), transparent 34%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.06), transparent 42%);
  opacity: 0.82;
  pointer-events: none;
}

.testimonials {
  background: var(--ivory);
}

.testimonial-shell {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 24px;
}

.testimonial-window {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 420ms var(--ease-premium);
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  flex: 0 0 calc((100% - 48px) / 3);
  min-height: 260px;
  padding: 40px;
  border: 1px solid rgba(58, 42, 29, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  transition: transform 260ms var(--ease-standard), background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(184, 138, 59, 0.08), transparent 42%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.testimonial-card:hover {
  border-color: rgba(184, 138, 59, 0.32);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.testimonial-card:hover::after {
  opacity: 1;
}

.testimonial-card__quote {
  display: block;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 58px;
  line-height: 0.7;
}

.testimonial-card__stars {
  margin: 20px 0 16px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 3px;
}

.testimonial-card p {
  margin: 0 0 24px;
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.75;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  color: var(--navy-950);
  font-weight: 800;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 13px;
}

.testimonial-arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(58, 42, 29, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy-950);
  font-size: 30px;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms var(--ease-standard);
}

.testimonial-arrow:hover {
  border-color: var(--gold);
  background: var(--navy-900);
  color: var(--white);
  transform: translateY(-2px);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.testimonial-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #cfc3b1;
  transition: transform 180ms var(--ease-standard), background 180ms ease;
}

.testimonial-dots button.is-active {
  background: var(--gold);
  transform: scale(1.35);
}

.insights {
  background:
    radial-gradient(circle at 14% 10%, rgba(184, 138, 58, 0.1), transparent 28%),
    linear-gradient(180deg, #fbf8f2 0%, #f3eee5 100%);
}

.insights-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.52fr) minmax(340px, 0.68fr);
  gap: 28px;
  align-items: start;
}

.insights-editorial {
  display: grid;
  gap: 24px;
}

.insight-feature,
.insight-card,
.insights-brief {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(58, 42, 29, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 54px rgba(29, 26, 23, 0.07);
  transition: transform 260ms var(--ease-standard), box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.insight-feature:hover,
.insight-card:hover,
.insights-brief:hover {
  border-color: rgba(184, 138, 59, 0.4);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 66px rgba(29, 26, 23, 0.11);
  transform: translateY(-3px);
}

.insight-feature {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) 1fr;
  min-height: 360px;
}

.insight-feature__media {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 28%, rgba(234, 216, 184, 0.32), transparent 32%),
    linear-gradient(145deg, var(--navy-900), var(--navy-950));
}

.insight-feature__media img,
.insight-card img {
  display: block;
  object-fit: contain;
  filter: sepia(0.12) saturate(0.9);
  transition: transform 700ms var(--ease-premium), filter 320ms ease;
}

.insight-feature__media img {
  width: min(170px, 58%);
  height: auto;
  opacity: 0.88;
}

.insight-feature:hover img,
.insight-card:hover img {
  filter: sepia(0.06) saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.insight-feature__content {
  display: grid;
  align-content: end;
  padding: 38px;
}

.insight-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  color: var(--gold-600);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.insight-feature time,
.insight-card time {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.insight-feature h3,
.insight-card h3,
.insights-brief h3 {
  margin: 14px 0 0;
  color: var(--navy-950);
  font-family: var(--font-heading);
  line-height: 1;
}

.insight-feature h3 {
  max-width: 620px;
  font-size: clamp(34px, 3.4vw, 48px);
}

.insight-feature p,
.insights-brief p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.insight-feature a,
.insight-card a {
  width: fit-content;
  margin-top: 28px;
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms var(--ease-standard);
}

.insight-feature a:hover,
.insight-card a:hover {
  color: var(--navy-900);
  transform: translateX(2px);
}

.insight-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.insight-card {
  display: grid;
  grid-template-columns: 94px 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 132px;
  padding: 18px;
}

.insight-card img {
  width: 94px;
  height: 94px;
  padding: 20px;
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 20%, rgba(234, 216, 184, 0.48), transparent 46%),
    linear-gradient(145deg, var(--navy-900), var(--navy-950));
}

.insight-card h3 {
  max-width: 520px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.32;
}

.insight-card a {
  align-self: end;
  margin: 0 2px 2px 0;
  white-space: nowrap;
}

.insights-rail {
  display: grid;
  gap: 18px;
}

.insights-brief {
  padding: 28px;
}

.insights-brief h3 {
  font-size: 34px;
}

.insights-brief ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.insights-brief li {
  position: relative;
  padding: 13px 0 13px 22px;
  border-top: 1px solid rgba(58, 42, 29, 0.12);
  color: var(--charcoal);
  font-size: 14px;
  line-height: 1.55;
}

.insights-brief li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.consultation-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(13, 34, 53, 0.98), rgba(5, 17, 31, 0.98));
  color: var(--white);
  isolation: isolate;
  box-shadow: 0 22px 58px rgba(7, 24, 39, 0.18);
  transition: transform 260ms var(--ease-standard), box-shadow 220ms ease;
}

.consultation-panel:hover {
  box-shadow: 0 24px 60px rgba(7, 24, 39, 0.18);
  transform: translateY(-3px);
}

.consultation-panel h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 1;
}

.consultation-panel p:not(.eyebrow):not(.newsletter__message) {
  margin: 20px 0 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.75;
}

.contact-details {
  display: grid;
  gap: 16px;
  margin: 22px 0 24px;
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.contact-actions a {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 15px 16px;
  border: 1px solid rgba(216, 189, 134, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.075);
  color: var(--white);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms var(--ease-standard), box-shadow 180ms ease;
}

.contact-actions a:hover {
  border-color: rgba(216, 189, 134, 0.45);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
  transform: translateY(-1px);
}

.contact-actions span,
.contact-meta span,
.office-list span {
  display: block;
  color: var(--gold-100);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-actions strong {
  color: var(--white);
  font-size: 15px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-meta {
  display: grid;
  gap: 9px;
  padding: 0 2px;
}

.contact-meta a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.5;
  overflow-wrap: anywhere;
  transition: color 180ms ease;
}

.contact-meta a:hover {
  color: var(--gold-100);
}

.contact-meta span {
  margin-bottom: 3px;
}

.office-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.office-list div {
  position: relative;
  padding: 18px 0 18px 24px;
}

.office-list div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.office-list div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(184, 138, 58, 0.12);
}

.office-list p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.65;
}

.insights-grid {
  display: grid;
  grid-template-columns: 1.18fr repeat(2, minmax(0, 0.91fr));
  gap: 18px;
  align-items: stretch;
}

.insights-grid .insight-card {
  display: flex;
  min-height: 330px;
  padding: 26px;
  flex-direction: column;
  gap: 24px;
  border: 1px solid rgba(58, 42, 29, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(29, 26, 23, 0.07);
}

.insights-grid .insight-card--feature {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.8)),
    radial-gradient(circle at 18% 0%, rgba(184, 138, 58, 0.16), transparent 32%);
}

.insight-card__icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 20%, rgba(234, 216, 184, 0.52), transparent 46%),
    linear-gradient(145deg, var(--navy-900), var(--navy-950));
}

.insight-card__icon img {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  filter: sepia(0.1) saturate(0.95);
}

.insight-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.insights-grid .insight-card h3 {
  max-width: none;
  margin: 14px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(28px, 2.2vw, 36px);
  font-weight: 700;
  line-height: 1.02;
}

.insights-grid .insight-card:not(.insight-card--feature) h3 {
  font-size: clamp(25px, 2vw, 31px);
}

.insights-grid .insight-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.insights-grid .insight-card a {
  margin-top: auto;
  padding-top: 26px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1fr);
  gap: 30px;
  margin-top: 22px;
  padding: 34px 36px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 8% 0%, rgba(216, 189, 134, 0.18), transparent 30%),
    linear-gradient(145deg, var(--navy-900), var(--navy-950));
  color: var(--white);
  box-shadow: 0 24px 70px rgba(7, 24, 39, 0.18);
}

.contact-section__intro h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 0.95;
}

.contact-section__intro p:not(.eyebrow) {
  margin: 18px 0 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.contact-section__main {
  display: grid;
  gap: 16px;
  align-content: center;
}

.contact-section .contact-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-section .contact-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.newsletter__form {
  display: grid;
  gap: 14px;
  padding-top: 2px;
}

.newsletter__form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.newsletter__form input {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 0 16px;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.newsletter__form input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.newsletter__form input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(184, 138, 59, 0.12);
}

.newsletter__form .btn {
  width: 100%;
}

.newsletter__message {
  min-height: 20px;
  margin: 0;
  color: var(--gold-100);
  font-size: 13px;
}

.footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.78);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(360px, 0.9fr) minmax(420px, 1.18fr);
  gap: 56px;
  align-items: start;
  padding-top: 68px;
  padding-bottom: 56px;
}

.brand--footer {
  margin-bottom: 22px;
}

.brand--footer .brand__logo {
  width: min(266px, 100%);
}

.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-firm-card {
  position: relative;
  max-width: 420px;
  padding: 18px 0 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-firm-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.footer-firm-card span {
  display: block;
  color: var(--gold-100);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-firm-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.72;
}

.footer__socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms var(--ease-standard);
}

.footer__socials a:hover {
  border-color: var(--gold);
  color: var(--gold-100);
  transform: translateY(-2px);
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__column h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__column a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.45;
  transition: color 180ms ease, transform 180ms var(--ease-standard);
}

.footer__column a:hover {
  color: var(--gold-100);
  transform: translateX(2px);
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  padding: 4px 0 0;
}

.footer__nav .footer__column {
  gap: 8px;
}

.footer__nav h2 {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__nav a {
  width: 100%;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.footer__contact {
  gap: 12px;
}

.footer-contact-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-list > li > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(216, 189, 134, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.9);
  font-size: 27px;
  font-weight: 400;
  letter-spacing: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.footer-contact-list strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.footer-contact-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.72;
}

.footer-contact-list p + p {
  margin-top: 14px;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.72);
  overflow-wrap: anywhere;
}

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

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #2fd04f;
  color: var(--white);
  box-shadow: 0 18px 42px rgba(47, 208, 79, 0.34), 0 0 0 8px rgba(47, 208, 79, 0.12);
  transition: transform 220ms var(--ease-standard), box-shadow 220ms ease, background 220ms ease;
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
}

.whatsapp-float:hover {
  background: #26bf45;
  box-shadow: 0 22px 50px rgba(47, 208, 79, 0.42), 0 0 0 10px rgba(47, 208, 79, 0.14);
  transform: translateY(-3px) scale(1.03);
}

.footer__bottom {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.footer__credit {
  margin-top: 8px !important;
  color: rgba(255, 255, 255, 0.48) !important;
}

.footer__credit a {
  color: var(--gold-100);
  font-weight: 700;
  transition: color 180ms ease;
}

.footer__credit a:hover {
  color: var(--gold);
}

.article-page {
  min-height: 100vh;
  padding: 72px 24px;
  background:
    radial-gradient(circle at 16% 8%, rgba(184, 138, 58, 0.12), transparent 28%),
    linear-gradient(180deg, var(--warm-white), var(--ivory));
}

.article-shell {
  width: min(100%, 880px);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(58, 42, 29, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 70px rgba(29, 26, 23, 0.1);
}

.article-back {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-shell h1 {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: clamp(44px, 6vw, 70px);
  line-height: 0.95;
}

.article-lead {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.62;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 42px;
  color: var(--gold-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-meta span::before {
  content: "/";
  margin-right: 10px;
  color: rgba(58, 42, 29, 0.3);
}

.article-shell section {
  padding: 28px 0;
  border-top: 1px solid rgba(58, 42, 29, 0.11);
}

.article-shell h2 {
  margin: 0 0 14px;
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 1;
}

.article-shell p,
.article-shell li {
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.82;
}

.article-shell ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.article-note {
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(184, 138, 58, 0.08);
}

.profile-page {
  min-height: 100vh;
  padding: 72px 24px;
  background:
    radial-gradient(circle at 12% 6%, rgba(184, 138, 58, 0.14), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(5, 17, 31, 0.08), transparent 30%),
    linear-gradient(180deg, var(--warm-white), var(--ivory));
}

.profile-shell {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.profile-back {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) 1fr;
  overflow: hidden;
  border: 1px solid rgba(58, 42, 29, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 78px rgba(29, 26, 23, 0.12);
}

.profile-photo {
  position: relative;
  min-height: 620px;
  background: var(--navy-950);
}

.profile-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(5, 17, 31, 0.22));
  pointer-events: none;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.94) contrast(1.03);
}

.profile-content {
  display: grid;
  align-content: center;
  gap: 30px;
  padding: clamp(34px, 5vw, 66px);
}

.profile-kicker {
  display: inline-flex;
  width: fit-content;
  color: var(--gold-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.profile-content h1 {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.92;
}

.profile-role {
  margin: -14px 0 0;
  color: var(--charcoal);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.profile-lead {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.profile-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-points li {
  padding: 16px 18px;
  border: 1px solid rgba(58, 42, 29, 0.1);
  border-radius: 8px;
  background: rgba(250, 247, 240, 0.78);
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.profile-note {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(58, 42, 29, 0.12);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.reveal {
  opacity: 0.72;
  transform: translateY(18px);
  transition: opacity 720ms var(--ease-premium), transform 720ms var(--ease-premium);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroLift {
  from {
    opacity: 1;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panelSettle {
  from {
    opacity: 1;
    transform: translateY(20px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes scrollLine {
  0%, 100% {
    transform: scaleX(0.55);
    opacity: 0.55;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.icon-briefcase { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 18v-4h20v4h10v34H12V18h10zm4 0h12v-2H26v2zm24 12H14v20h36V30zm0-10H14v8h36v-8zM26 34h12v5H26v-5z'/%3E%3C/svg%3E"); }
.icon-scales { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 10h4v42h12v4H18v-4h12V10zm-14 9h32v4H16v-4zm6 5 10 18H12l10-18zm0 8-4 7h8l-4-7zm20-8 10 18H32l10-18zm0 8-4 7h8l-4-7z'/%3E%3C/svg%3E"); }
.icon-document { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 8h26l8 8v40H16V8zm4 4v40h26V20h-8v-8H20zm22 2v2h2l-2-2zM24 24h16v4H24v-4zm0 9h16v4H24v-4zm0 9h10v4H24v-4zm22-9 8 8-14 14h-8v-8l14-14z'/%3E%3C/svg%3E"); }
.icon-building { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 56V10h32v46h8v4H8v-4h8zm4 0h8v-8h8v8h8V14H20v42zm6-34h6v6h-6v-6zm12 0h6v6h-6v-6zM26 34h6v6h-6v-6zm12 0h6v6h-6v-6z'/%3E%3C/svg%3E"); }
.icon-people { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 30a10 10 0 1 1 0-20 10 10 0 0 1 0 20zm0-4a6 6 0 1 0 0-12 6 6 0 0 0 0 12zm20 4a8 8 0 1 1 0-16 8 8 0 0 1 0 16zm0-4a4 4 0 1 0 0-8 4 4 0 0 0 0 8zM8 54c1-12 8-18 16-18s15 6 16 18H8zm5-4h22c-2-7-6-10-11-10s-9 3-11 10zm25-13c8 0 14 5 15 17h-8c0-6-2-11-7-14v-3z'/%3E%3C/svg%3E"); }
.icon-client { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 30a10 10 0 1 1 0-20 10 10 0 0 1 0 20zm16 24H8c1-12 8-18 16-18s15 6 16 18zm7-28a8 8 0 1 1 0-16 8 8 0 0 1 0 16zm9 28H44c0-6-2-12-6-16 2-1 5-2 8-2 6 0 11 6 10 18z'/%3E%3C/svg%3E"); }
.icon-shield { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 6 54 16v14c0 14-8 24-22 30C18 54 10 44 10 30V16L32 6zm0 5-18 8v11c0 11 6 19 18 25 12-6 18-14 18-25V19l-18-8zm10 17 3 3-15 15-9-9 3-3 6 6 12-12z'/%3E%3C/svg%3E"); }
.icon-gavel { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m22 10 20 20-6 6-8-8-18 18-6-6 18-18-6-6 6-6zm23 22 9 9-6 6-9-9 6-6zM28 46h24v6H28v-6z'/%3E%3C/svg%3E"); }

@media (max-width: 1120px) {
  .header-contact {
    gap: 18px;
    font-size: 12px;
  }

  .site-header__cta {
    display: none;
  }

  .primary-nav {
    gap: 18px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
  }

  .hero__panel {
    max-width: 680px;
  }

  .hero__aside {
    max-width: 680px;
  }

  .about__grid,
  .about__stats {
    grid-column: auto;
  }

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

  .team-showcase,
  .team-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insights-layout {
    grid-template-columns: 1fr;
  }

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

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

  .profile-photo {
    min-height: 480px;
  }

  .insights-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

}

@media (max-width: 860px) {
  .section {
    padding: 80px 0;
  }

  .site-header__top-inner {
    min-height: 94px;
  }

  .site-header.is-scrolled .site-header__top-inner {
    min-height: 82px;
  }

  .brand__logo {
    width: 188px;
  }

  .site-header.is-scrolled .brand__logo {
    width: 172px;
  }

  .site-header__inner {
    display: none;
  }

  .header-contact {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    background: rgba(255, 255, 255, 0.035);
    transition: border-color 180ms ease, background 180ms ease;
  }

  .menu-toggle:hover,
  .menu-toggle.is-open {
    border-color: rgba(216, 189, 134, 0.5);
    background: rgba(255, 255, 255, 0.075);
  }

  .mobile-menu {
    position: fixed;
    inset: 94px 0 auto;
    z-index: 90;
    display: grid;
    gap: 0;
    max-height: calc(100vh - 94px);
    overflow: auto;
    padding: 12px 24px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--navy-950);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-scrolled .mobile-menu {
    inset: 82px 0 auto;
    max-height: calc(100vh - 82px);
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a:not(.btn) {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .mobile-menu .btn {
    margin-top: 20px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(5, 17, 31, 0.94) 0%, rgba(5, 17, 31, 0.82) 54%, rgba(5, 17, 31, 0.92) 100%),
      url("../assets/images/hero-premium-law-bg.png") 62% center / cover no-repeat;
  }

  .hero__inner {
    min-height: auto;
    gap: 36px;
    padding-top: 56px;
    padding-bottom: 48px;
  }

  .hero__title {
    font-size: clamp(42px, 10vw, 56px);
    line-height: 0.98;
  }

  .hero__copy {
    font-size: 16px;
  }

  .hero__scroll {
    display: none;
  }

  .section-heading--split,
  .about__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .practice__grid,
  .principles__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-shell {
    grid-template-columns: 1fr;
  }

  .testimonial-arrow {
    display: none;
  }

  .testimonial-card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .footer__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 42px 34px;
  }

  .footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-left: 0;
  }

  .footer__contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }

  .section {
    padding: 64px 0;
  }

  .brand {
    max-width: 176px;
  }

  .brand__logo {
    width: 164px;
  }

  .hero__inner {
    gap: 24px;
    padding-top: 42px;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__title {
    font-size: 38px;
  }

  .hero__copy {
    max-width: 310px;
    font-size: 14px;
    line-height: 1.7;
  }

  .hero__trust {
    gap: 8px;
  }

  .hero__trust span {
    min-height: 34px;
    padding: 8px 12px;
    font-size: 10px;
  }

  .hero__actions,
  .hero__panel div {
    flex-direction: column;
  }

  .hero__actions .btn,
  .mobile-menu .btn,
  .btn {
    width: 100%;
  }

  .hero__aside,
  .hero__panel,
  .consult-card {
    max-width: none;
  }

  .footer-contact-list li {
    grid-template-columns: 50px 1fr;
    gap: 16px;
    padding: 20px 0;
  }

  .footer-contact-list > li > span {
    width: 46px;
    height: 46px;
    font-size: 22px;
  }

  .footer-contact-list strong {
    font-size: 23px;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
  }

  .hero__panel,
  .consult-card {
    padding: 20px;
    border-radius: 6px;
  }

  .consult-card h2 {
    font-size: 28px;
    line-height: 1.05;
  }

  .consult-card p:not(.consult-card__label) {
    font-size: 13px;
  }

  .hero__panel dl {
    gap: 0;
  }

  .hero__panel div {
    align-items: flex-start;
    padding: 16px 0;
  }

  .hero__panel dt {
    font-size: 28px;
  }

  .whatsapp-float {
    box-shadow: 0 12px 28px rgba(47, 208, 79, 0.3), 0 0 0 6px rgba(47, 208, 79, 0.1);
  }

  .hero__panel p {
    max-width: 260px;
  }

  .hero__panel dd {
    max-width: none;
    text-align: left;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2,
  .about__story h2 {
    font-size: 38px;
  }

  .section-heading p:not(.eyebrow),
  .about__story p:not(.eyebrow) {
    max-width: 330px;
    overflow-wrap: break-word;
  }

  .practice__grid,
  .principles__grid,
  .team-showcase,
  .team-directory,
  .insights-layout,
  .insights-grid,
  .insight-list,
  .insights-rail,
  .contact-section,
  .footer__grid,
  .about__stats {
    grid-template-columns: 1fr;
  }

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

  .insight-feature,
  .insight-card {
    grid-template-columns: 1fr;
  }

  .insight-feature__content {
    padding: 30px;
  }

  .insight-feature__media {
    min-height: 220px;
  }

  .insight-card img {
    width: 112px;
    height: 112px;
  }

  .insight-card__icon img {
    width: 42px;
    height: 42px;
  }

  .insights-grid .insight-card {
    min-height: auto;
    padding: 24px;
  }

  .contact-section {
    padding: 26px;
  }

  .contact-section .contact-actions,
  .contact-section .contact-meta {
    grid-template-columns: 1fr;
  }

  .practice-card,
  .principles__grid article,
  .testimonial-card,
  .consultation-panel {
    padding: 26px;
  }

  .attorney-card,
  .attorney-card--lead {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .attorney-card--lead .attorney-card__photo,
  .attorney-card__photo {
    height: 320px;
    min-height: 320px;
  }

  .attorney-card--lead .attorney-card__content,
  .attorney-card__content {
    padding: 26px;
  }

  .profile-page {
    padding: 36px 16px;
  }

  .profile-photo {
    min-height: 380px;
  }

  .profile-content {
    padding: 30px 24px;
  }

  .profile-points {
    grid-template-columns: 1fr;
  }

  .profile-actions .btn {
    width: 100%;
  }

  .about__image img {
    min-height: 320px;
  }

  .testimonial-card {
    flex-basis: 100%;
  }

  .quote-strip__inner {
    align-items: flex-start;
    gap: 16px;
  }

  .quote-strip p {
    font-size: 24px;
  }
}
