:root {
  --black: #0d0d0d;
  --black-soft: #151515;
  --gold: #b59870;
  --gold-dark: #917352;
  --white: #ffffff;
  --off-white: #f7f5f2;
  --line: rgba(13, 13, 13, 0.12);
  --line-dark: rgba(255, 255, 255, 0.14);
  --text: #171717;
  --text-soft: #5d5a55;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
  --container: 1240px;
  --header-height: 88px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--white);
  color: var(--text);
  font-family: "Lufga", "Inter", "Montserrat", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

button {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--black);
  font-weight: 500;
  transition: transform .25s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container,
.container-wide {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
}

.container-wide {
  width: min(100%, 1460px);
}

.section {
  padding-block: clamp(68px, 7vw, 108px);
}

.light-section {
  background: var(--white);
  color: var(--text);
}

.soft-section {
  background: var(--off-white);
  color: var(--text);
}

.dark-section {
  background: var(--black);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

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

.section-title {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.1rem, 4.7vw, 4.7rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.06;
}

.section-lead {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.8;
}

.dark-section .section-lead {
  color: rgba(255, 255, 255, .65);
}

.section-heading {
  margin-bottom: clamp(42px, 5vw, 68px);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: end;
}

.split-heading .section-lead {
  margin: 0 0 6px;
}

.centered-heading {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

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

.centered-heading .section-lead {
  margin-inline: auto;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  overflow: hidden;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 500;
  line-height: 1;
  transition: color .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}

.button::before {
  position: absolute;
  inset: 0;
  transform: translateX(-102%);
  background: var(--white);
  content: "";
  transition: transform .45s var(--ease);
}

.button > * ,
.button {
  isolation: isolate;
}

.button svg {
  position: relative;
  z-index: 1;
  width: 19px;
  height: 19px;
  transition: transform .35s var(--ease);
}

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

.button:hover::before {
  transform: translateX(0);
}

.button:hover svg {
  transform: translateX(4px);
}

.button-gold {
  background: var(--gold);
  color: var(--black);
}

.button-gold:hover {
  border-color: var(--white);
  color: var(--black);
}

.button-ghost {
  border-color: rgba(255, 255, 255, .28);
  background: transparent;
  color: var(--white);
}

.button-ghost::before {
  background: rgba(255, 255, 255, .08);
}

.button-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 7px;
  font-size: .95rem;
  font-weight: 500;
  transition: color .25s ease, gap .25s ease;
}

.text-link:hover {
  gap: 18px;
  color: var(--gold-dark);
}

.text-link svg {
  width: 18px;
  height: 18px;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease), transform .4s var(--ease);
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(13, 13, 13, .86);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .15);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  width: min(100%, 1460px);
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}

.brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: clamp(170px, 16vw, 225px);
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
}

.nav-link {
  position: relative;
  padding-block: 12px;
  color: rgba(255, 255, 255, .72);
  font-size: .79rem;
  font-weight: 400;
  white-space: nowrap;
  transition: color .25s ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  content: "";
  transition: transform .3s var(--ease);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  padding: 12px 17px;
  border: 1px solid rgba(181, 152, 112, .62);
  border-radius: 999px;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: var(--gold);
  color: var(--black);
}

.header-cta svg {
  width: 16px;
  height: 16px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle svg,
.menu-close svg {
  width: 22px;
  height: 22px;
}

.mobile-menu {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  transform: translateY(-3%);
  background: var(--black);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: visibility .45s, opacity .45s var(--ease), transform .45s var(--ease);
}

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

.mobile-menu::before {
  position: absolute;
  right: -18vw;
  bottom: -18vw;
  width: min(70vw, 520px);
  height: min(70vw, 520px);
  border: 1px solid rgba(181, 152, 112, .14);
  border-radius: 50%;
  content: "";
}

.mobile-menu-top {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding-inline: 22px;
  border-bottom: 1px solid var(--line-dark);
}

.mobile-menu-top img {
  width: 190px;
  height: auto;
}

.menu-close {
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.mobile-menu nav {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 28px 22px;
}

.mobile-menu nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: clamp(1.65rem, 7vw, 2.7rem);
  font-weight: 300;
  letter-spacing: -.03em;
}

.mobile-menu nav a::after {
  color: var(--gold);
  content: "↗";
  font-size: .9rem;
}

.mobile-menu-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border-top: 1px solid var(--line-dark);
}

.mobile-menu-footer p {
  max-width: 270px;
  margin: 0;
  color: rgba(255, 255, 255, .5);
  font-size: .78rem;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  align-items: center;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 90px;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.95%, rgba(255,255,255,.055) 50%, transparent 50.05%),
    radial-gradient(circle at 13% 20%, rgba(181, 152, 112, .11), transparent 28%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
}

.hero-copy {
  max-width: 750px;
  padding-block: 40px;
}

.hero-title {
  max-width: 770px;
  margin: 0;
  font-size: clamp(3rem, 6.4vw, 7.2rem);
  font-weight: 300;
  letter-spacing: -.06em;
  line-height: .94;
}

.hero-lead {
  max-width: 635px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero-meta {
  display: flex;
  gap: 46px;
  margin-top: clamp(46px, 7vw, 76px);
}

.hero-meta > div {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 16px;
}

.hero-meta > div::before {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 1px;
  background: var(--gold);
  content: "";
}

.hero-meta strong {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: .04em;
}

.hero-meta span {
  color: rgba(255, 255, 255, .48);
  font-size: .78rem;
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 560px);
  padding: 20px 20px 65px 45px;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 72%;
  height: 83%;
  border: 1px solid rgba(181, 152, 112, .42);
  content: "";
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: .78;
  border-radius: 170px 10px 10px 10px;
  background: #1c1c1c;
  box-shadow: var(--shadow);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: contrast(1.02) saturate(.94);
  transition: transform 1.1s var(--ease);
}

.hero-visual:hover .hero-image-wrap img {
  transform: scale(1.025);
}

.hero-image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,13,13,.48) 100%);
  pointer-events: none;
}

.hero-caption {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-left: 47px;
}

.hero-caption span {
  font-size: 1.07rem;
  font-weight: 500;
}

.hero-caption small {
  color: rgba(255, 255, 255, .52);
  font-size: .72rem;
  text-align: right;
}

.hero-monogram {
  position: absolute;
  bottom: 55px;
  left: -20px;
  display: flex;
  width: 86px;
  height: 86px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(181, 152, 112, .42);
  border-radius: 50%;
  background: var(--black);
}

.hero-monogram img {
  width: 62%;
  height: 62%;
  object-fit: contain;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .38);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 48px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .18);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: var(--gold);
  content: "";
  animation: scrollLine 2.3s infinite var(--ease);
}

@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(100%); }
}

/* Credibility */
.credibility-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric {
  display: flex;
  min-height: 132px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 22px 26px;
  border-right: 1px solid var(--line);
  text-align: left;
}

.metric:first-child {
  border-left: 1px solid var(--line);
}

.metric strong {
  color: var(--gold-dark);
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  font-weight: 300;
  line-height: 1;
}

.metric svg {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  color: var(--gold-dark);
}

.metric span {
  max-width: 150px;
  color: var(--text-soft);
  font-size: .84rem;
  line-height: 1.45;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: minmax(330px, .9fr) minmax(0, 1.1fr);
  gap: clamp(58px, 9vw, 130px);
  align-items: center;
}

.about-visual {
  position: relative;
  max-width: 515px;
}

.about-image-large {
  position: relative;
  overflow: hidden;
  aspect-ratio: .82;
  border-radius: 10px 120px 10px 10px;
  background: var(--off-white);
}

.about-image-large::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13,13,13,.2));
  content: "";
}

.about-image-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  filter: contrast(1.02) saturate(.92);
}

.about-stamp {
  position: absolute;
  right: -45px;
  bottom: 42px;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  box-shadow: 0 20px 50px rgba(0,0,0,.17);
}

.about-stamp img {
  width: 65%;
}

.about-note {
  position: absolute;
  right: -26px;
  bottom: -31px;
  width: 255px;
  margin: 0;
  padding: 18px 22px;
  border-left: 2px solid var(--gold);
  background: var(--white);
  box-shadow: 0 15px 45px rgba(0,0,0,.09);
  font-size: .81rem;
  line-height: 1.55;
}

.about-copy > p:not(.eyebrow):not(.section-lead) {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--text-soft);
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 40px;
  background: var(--line);
}

.principles > div {
  min-height: 125px;
  padding: 20px;
  background: var(--white);
}

.principles span {
  color: var(--gold-dark);
  font-size: .75rem;
  letter-spacing: .1em;
}

.principles p {
  margin: 26px 0 0;
  font-size: .82rem;
  line-height: 1.45;
}

/* Practice */
.practice {
  position: relative;
  overflow: hidden;
}

.practice::before {
  position: absolute;
  right: -220px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(181, 152, 112, .12);
  border-radius: 50%;
  content: "";
}

.practice-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.practice-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  padding: clamp(30px, 4vw, 55px);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: background .4s var(--ease), transform .4s var(--ease);
}

.practice-card::before {
  position: absolute;
  inset: 0;
  transform: translateY(100%);
  background: var(--gold);
  content: "";
  transition: transform .55s var(--ease);
}

.practice-card > * {
  position: relative;
  z-index: 1;
}

.practice-card:hover::before {
  transform: translateY(0);
}

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

.practice-card:hover p,
.practice-card:hover li,
.practice-card:hover .practice-number {
  color: rgba(13,13,13,.7);
}

.practice-number {
  position: absolute;
  top: 34px;
  right: 38px;
  color: rgba(255, 255, 255, .24);
  font-size: .75rem;
  letter-spacing: .12em;
}

.practice-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  transition: color .35s ease, transform .45s var(--ease);
}

.practice-card:hover .practice-icon {
  transform: translateY(-5px) rotate(-3deg);
  color: var(--black);
}

.practice-card h3 {
  margin: 56px 0 14px;
  font-size: clamp(1.65rem, 2.7vw, 2.65rem);
  font-weight: 400;
  letter-spacing: -.04em;
}

.practice-card p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, .58);
  transition: color .35s ease;
}

.practice-card ul {
  display: grid;
  gap: 7px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.practice-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .72);
  font-size: .83rem;
  transition: color .35s ease;
}

.practice-card li::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.practice-card:hover li::before {
  background: var(--black);
}

.practice-card > a {
  position: absolute;
  right: clamp(30px, 4vw, 55px);
  bottom: 38px;
  left: clamp(30px, 4vw, 55px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.18);
  font-size: .8rem;
  font-weight: 500;
}

.practice-card:hover > a {
  border-color: rgba(13,13,13,.25);
}

.practice-card > a svg {
  width: 18px;
  height: 18px;
  transition: transform .3s ease;
}

.practice-card > a:hover svg {
  transform: translateX(6px);
}

/* Team */
.team-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, .88fr);
  gap: clamp(28px, 4vw, 52px);
}

.team-secondary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}

.professional {
  position: relative;
}

.professional-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: .76;
  border-radius: var(--radius-sm);
  background: var(--off-white);
}

.professional-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.93) contrast(1.02);
  transition: transform .8s var(--ease), filter .5s ease;
}

.professional:hover .professional-photo img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.03);
}

.professional:nth-child(1) .professional-photo img {
  object-position: center 25%;
}

.professional:nth-child(2) .professional-photo img {
  object-position: center top;
}

.photo-line {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  transform: scaleX(.24);
  transform-origin: left;
  background: var(--gold);
  transition: transform .55s var(--ease);
}

.professional:hover .photo-line {
  transform: scaleX(1);
}

.professional-content {
  position: relative;
  padding: 24px 4px 0;
}

.professional-featured {
  display: grid;
  grid-template-columns: minmax(300px, .88fr) minmax(280px, .72fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: end;
}

.professional-featured .professional-photo {
  aspect-ratio: .76;
}

.professional-featured .professional-content {
  padding: 0 0 34px;
}

.professional-role {
  margin: 0 0 9px;
  color: var(--gold-dark);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.professional h3 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.05;
}

.team-secondary .professional h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.professional-oab {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: .78rem;
  letter-spacing: .05em;
}

.professional-content > p:not(.professional-role):not(.professional-oab) {
  margin: 20px 0 0;
  color: var(--text-soft);
  font-size: .88rem;
}

.professional-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.professional-tags span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  font-size: .68rem;
}

/* Advantages */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.advantage {
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.55);
  transition: transform .35s var(--ease), background .35s ease, box-shadow .35s ease;
}

.advantage:hover {
  transform: translateY(-6px);
  background: var(--white);
  box-shadow: 0 20px 50px rgba(0,0,0,.07);
}

.advantage svg {
  width: 34px;
  height: 34px;
  color: var(--gold-dark);
}

.advantage h3 {
  margin: 54px 0 10px;
  font-size: 1rem;
  font-weight: 500;
}

.advantage p {
  margin: 0;
  color: var(--text-soft);
  font-size: .8rem;
  line-height: 1.65;
}

.advantage-large {
  display: flex;
  grid-column: span 2;
  align-items: flex-end;
  gap: 32px;
  background: var(--black);
  color: var(--white);
}

.advantage-large:hover {
  background: var(--black-soft);
}

.advantage-large > span {
  color: var(--gold);
  font-size: clamp(4.8rem, 9vw, 8.5rem);
  font-weight: 300;
  letter-spacing: -.07em;
  line-height: .75;
}

.advantage-large h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.advantage-large p {
  color: rgba(255,255,255,.58);
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(56px, 9vw, 140px);
}

.process-intro {
  position: sticky;
  top: 125px;
  align-self: start;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: item;
}

.process-list li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 22px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-list > li > span {
  color: var(--gold-dark);
  font-size: .76rem;
  letter-spacing: .12em;
}

.process-list h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 400;
  letter-spacing: -.025em;
}

.process-list p {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: .88rem;
}

/* Statement */
.statement {
  position: relative;
  overflow: hidden;
  padding-block: clamp(78px, 9vw, 140px);
}

.statement::before,
.statement::after {
  position: absolute;
  top: 50%;
  width: 32vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(181,152,112,.35));
  content: "";
}

.statement::before {
  left: 0;
}

.statement::after {
  right: 0;
  transform: rotate(180deg);
}

.statement-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.statement-inner img {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: min(46vw, 480px);
  transform: translate(-50%, -50%);
  opacity: .055;
}

.statement-inner p {
  max-width: 1030px;
  margin: 0 auto;
  font-size: clamp(2.4rem, 5.7vw, 6.2rem);
  font-weight: 300;
  letter-spacing: -.055em;
  line-height: 1.08;
}

.statement-inner em {
  color: var(--gold);
  font-style: normal;
}

.statement-inner > span {
  display: block;
  width: 90px;
  height: 1px;
  margin: 52px auto 0;
  background: var(--gold);
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(56px, 5vw, 80px);
  align-items: start;
}

.faq-intro,
.accordion {
  min-width: 0;
}

.faq-intro {
  max-width: 470px;
}

.faq-intro .section-title {
  max-width: 100%;
  font-size: clamp(2.6rem, 4vw, 4.25rem);
  line-height: 1.07;
  text-wrap: pretty;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-item h3 {
  margin: 0;
}

.accordion-item button {
  display: flex;
  width: 100%;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 400;
  text-align: left;
}

.accordion-item button svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--gold-dark);
  transition: transform .35s var(--ease);
}

.accordion-item button[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows .35s var(--ease), opacity .35s ease;
}

.accordion-panel[hidden] {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
}

.accordion-panel > div {
  overflow: hidden;
}

.accordion-panel p {
  max-width: 700px;
  margin: 0;
  padding: 0 52px 30px 0;
  color: var(--text-soft);
  font-size: .9rem;
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
}

.contact::before {
  position: absolute;
  top: -180px;
  left: -180px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(181,152,112,.11);
  border-radius: 50%;
  content: "";
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-links {
  display: grid;
  gap: 1px;
  margin-top: 40px;
  background: var(--line-dark);
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  background: var(--black);
  transition: color .25s ease, padding-left .25s ease;
}

.contact-links a:hover {
  padding-left: 8px;
  color: var(--gold);
}

.contact-links svg {
  width: 27px;
  height: 27px;
  color: var(--gold);
}

.contact-links span {
  display: flex;
  flex-direction: column;
  font-size: .95rem;
}

.contact-links small {
  color: rgba(255,255,255,.42);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-seal {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 28px;
  color: rgba(255,255,255,.45);
}

.contact-seal svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.contact-seal p {
  margin: 0;
  font-size: .75rem;
}

.contact-form {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
  background: rgba(255,255,255,.035);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  position: relative;
  margin-bottom: 22px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.62);
  font-size: .73rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.custom-select-button {
  width: 100%;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 10px;
  outline: none;
  background: rgba(255,255,255,.035);
  color: var(--white);
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.field input,
.custom-select-button {
  height: 54px;
  padding: 0 16px;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
  padding: 15px 16px;
}

.custom-select {
  position: relative;
  isolation: isolate;
}

.custom-select-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025)),
    #151515;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

.custom-select-button::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleY(.35);
  transition: opacity .22s ease, transform .22s ease;
}

.custom-select-button:hover {
  border-color: rgba(181,152,112,.48);
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035)),
    #151515;
}

.custom-select-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: rgba(255,255,255,.66);
  transition: transform .24s ease, color .24s ease;
}

.custom-select-label {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: rgba(255,255,255,.38);
  font-size: .94rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-select.has-value .custom-select-label {
  color: var(--white);
}

.custom-select-panel {
  position: absolute;
  z-index: 40;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  display: grid;
  gap: 5px;
  max-height: min(320px, 48vh);
  padding: 9px;
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid rgba(181,152,112,.34);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), transparent 30%),
    #151515;
  box-shadow: 0 26px 60px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.045);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-7px) scale(.985);
  transform-origin: top center;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  scrollbar-color: rgba(181,152,112,.5) transparent;
  scrollbar-width: thin;
}

.custom-select-panel[hidden] {
  display: none !important;
}

.custom-select-panel::-webkit-scrollbar {
  width: 7px;
}

.custom-select-panel::-webkit-scrollbar-thumb {
  border: 2px solid #151515;
  border-radius: 999px;
  background: rgba(181,152,112,.56);
}

.custom-select.opens-up .custom-select-panel {
  top: auto;
  bottom: calc(100% + 10px);
  transform: translateY(7px) scale(.985);
  transform-origin: bottom center;
}

.custom-select.is-open {
  z-index: 25;
}

.custom-select.is-open .custom-select-panel:not([hidden]),
.custom-select.is-open.opens-up .custom-select-panel:not([hidden]) {
  display: grid;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.custom-select.is-open .custom-select-button {
  border-color: var(--gold);
  background:
    linear-gradient(180deg, rgba(181,152,112,.11), rgba(255,255,255,.035)),
    #151515;
  box-shadow: 0 0 0 3px rgba(181,152,112,.1), inset 0 1px 0 rgba(255,255,255,.055);
}

.custom-select.is-open .custom-select-button::before,
.custom-select.has-value .custom-select-button::before {
  opacity: 1;
  transform: scaleY(1);
}

.custom-select.is-open .custom-select-button svg {
  color: var(--gold);
  transform: rotate(180deg);
}

.custom-select-option {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 42px 11px 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: rgba(255,255,255,.78);
  font: inherit;
  font-size: .9rem;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}

.custom-select-option::after {
  position: absolute;
  right: 17px;
  width: 6px;
  height: 11px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  content: "";
  opacity: 0;
  transform: rotate(45deg) scale(.45);
  transition: opacity .18s ease, transform .18s ease;
}

.custom-select-option:hover,
.custom-select-option:focus-visible {
  border-color: rgba(181,152,112,.18);
  outline: none;
  background: rgba(181,152,112,.11);
  color: var(--white);
  transform: translateX(2px);
}

.custom-select-option.is-selected {
  border-color: rgba(181,152,112,.26);
  background: linear-gradient(90deg, rgba(181,152,112,.2), rgba(181,152,112,.07));
  color: #f4e4ca;
}

.custom-select-option.is-selected::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255,255,255,.3);
}

.field input:focus,
.field textarea:focus,
.custom-select-button:focus-visible {
  border-color: var(--gold);
  background: rgba(255,255,255,.055);
  box-shadow: 0 0 0 3px rgba(181,152,112,.1);
}

.field.has-error input,
.field.has-error textarea,
.field.has-error .custom-select-button {
  border-color: #d59b95;
}

.field-error {
  display: block;
  min-height: 16px;
  margin-top: 6px;
  color: #e0aaa4;
  font-size: .68rem;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,.55);
  cursor: pointer;
  font-size: .74rem;
}

.consent input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  accent-color: var(--gold);
}

.consent-error {
  min-height: 19px;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--gold);
  font-size: .78rem;
  text-align: center;
}

.legal-note {
  margin: 18px 0 0;
  color: rgba(255,255,255,.32);
  font-size: .67rem;
  line-height: 1.55;
  text-align: center;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255,255,255,.08);
  background: #090909;
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, .72fr);
  gap: clamp(36px, 6vw, 90px);
  padding-top: 72px;
  padding-bottom: 58px;
}

.footer-brand img {
  width: min(100%, 300px);
  height: auto;
}

.footer-brand > p {
  max-width: 340px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.48);
  font-size: .8rem;
}

.footer-brand .oab {
  color: var(--gold);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column button {
  border: 0;
  background: none;
  color: rgba(255,255,255,.58);
  cursor: pointer;
  font-size: .79rem;
  text-align: left;
  transition: color .2s ease;
}

.footer-column a:hover,
.footer-column button:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.35);
  font-size: .68rem;
}

.back-to-top {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease;
}

.back-to-top:hover {
  border-color: var(--gold);
  background: rgba(181,152,112,.08);
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(181,152,112,.45);
  border-radius: 999px;
  background: rgba(13,13,13,.9);
  color: var(--gold);
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: border-color .3s ease, transform .3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.whatsapp-float span {
  overflow: hidden;
  max-width: 0;
  padding: 0;
  color: var(--white);
  font-size: .75rem;
  white-space: nowrap;
  opacity: 0;
  transition: max-width .4s var(--ease), padding .4s var(--ease), opacity .25s ease;
}

.whatsapp-float:hover span {
  max-width: 190px;
  padding-left: 18px;
  opacity: 1;
}

.whatsapp-float svg {
  width: 54px;
  height: 54px;
  padding: 14px;
}

/* Dialog */
.legal-dialog {
  width: min(calc(100% - 40px), 650px);
  max-height: 82vh;
  padding: 0;
  border: 1px solid rgba(181,152,112,.3);
  border-radius: 16px;
  background: var(--black);
  color: var(--white);
  box-shadow: 0 30px 90px rgba(0,0,0,.4);
}

.legal-dialog::backdrop {
  background: rgba(0,0,0,.72);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line-dark);
}

.dialog-head h2 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 400;
}

.dialog-head button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.dialog-body {
  padding: 25px;
}

.dialog-body p {
  margin: 0 0 16px;
  color: rgba(255,255,255,.66);
  font-size: .88rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

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

/* Responsive */
@media (max-width: 1160px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(370px, .78fr);
    gap: 42px;
  }

  .hero-title {
    font-size: clamp(3.2rem, 7vw, 6rem);
  }

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

  .professional-featured {
    grid-template-columns: minmax(330px, .7fr) minmax(280px, .7fr);
  }

  .team-secondary {
    max-width: 760px;
    margin-left: auto;
  }

  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .advantage-large {
    grid-column: span 2;
  }

  .footer-top {
    grid-template-columns: 1.25fr repeat(3, .75fr);
    gap: 35px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 78px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 44px);
  }

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

  .hero-copy {
    max-width: 760px;
    padding-bottom: 0;
  }

  .hero-visual {
    justify-self: center;
    width: min(100%, 570px);
    margin-top: 10px;
  }

  .scroll-cue {
    display: none;
  }

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

  .metric:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .metric:nth-child(3),
  .metric:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .metric:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .split-heading .section-lead {
    margin: 0;
  }

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

  .about-visual {
    width: min(86%, 520px);
  }

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

  .professional-featured {
    grid-template-columns: 1fr 1fr;
  }

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

  .process-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .faq-intro {
    max-width: 680px;
  }

  .faq-intro .section-title {
    font-size: clamp(2.15rem, 7.8vw, 3.65rem);
  }

  .process-intro,
  .contact-copy {
    position: static;
  }

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

  .footer-column:last-child {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .section {
    padding-block: 64px;
  }

  .faq-intro .section-title {
    font-size: clamp(2rem, 9.5vw, 3rem);
  }

  .mobile-menu-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .mobile-menu-footer p {
    display: none;
  }

  .mobile-menu-footer .button {
    width: 100%;
  }

  .hero {
    padding-bottom: 64px;
  }

  .hero-title {
    font-size: clamp(2.75rem, 13vw, 4.5rem);
    line-height: .98;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-meta {
    gap: 30px;
  }

  .hero-visual {
    padding: 14px 12px 56px 28px;
  }

  .hero-image-wrap {
    border-radius: 110px 9px 9px 9px;
  }

  .hero-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding-left: 30px;
  }

  .hero-caption small {
    text-align: left;
  }

  .hero-monogram {
    bottom: 48px;
    left: -5px;
    width: 68px;
    height: 68px;
  }

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

  .metric {
    min-height: 130px;
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }

  .metric strong {
    font-size: 2.8rem;
  }

  .metric svg {
    width: 30px;
    height: 30px;
  }

  .about-visual {
    width: calc(100% - 24px);
  }

  .about-stamp {
    right: -24px;
    width: 92px;
    height: 92px;
  }

  .about-note {
    right: -24px;
    width: 225px;
  }

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

  .principles > div {
    min-height: 100px;
  }

  .principles p {
    margin-top: 15px;
  }

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

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

  .professional-featured {
    grid-template-columns: 1fr;
  }

  .professional-featured .professional-content {
    padding-bottom: 18px;
  }

  .team-secondary {
    grid-template-columns: 1fr;
  }

  .team-secondary .professional {
    display: grid;
    grid-template-columns: minmax(145px, .58fr) minmax(0, 1fr);
    gap: 20px;
    align-items: center;
  }

  .team-secondary .professional-photo {
    aspect-ratio: .77;
  }

  .team-secondary .professional-content {
    padding: 0;
  }

  .professional-tags {
    gap: 5px;
  }

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

  .advantage-large {
    grid-column: auto;
    min-height: 280px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

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

  .footer-column:last-child {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .brand img {
    width: 165px;
  }

  .hero-lead {
    font-size: .95rem;
  }

  .hero-meta {
    flex-direction: column;
    gap: 18px;
  }

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

  .metric,
  .metric:first-child,
  .metric:nth-child(3) {
    min-height: 105px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .metric:nth-child(2),
  .metric:nth-child(3),
  .metric:nth-child(4) {
    border-top: 0;
  }

  .about-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 24px);
    margin: -25px 0 0 24px;
  }

  .about-stamp {
    right: -8px;
    bottom: 92px;
  }

  .team-secondary .professional {
    grid-template-columns: 1fr;
  }

  .team-secondary .professional-photo {
    aspect-ratio: .83;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
    gap: 15px;
  }

  .contact-form {
    padding: 24px 18px;
  }

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

  .footer-brand,
  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    padding-block: 18px;
  }

  .footer-bottom p {
    max-width: 240px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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

/* Refinements — layout, readability and interaction fixes */
.section-title,
.hero-title,
.professional h3,
.about-principles h3 {
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.section-heading > *,
.split-heading > *,
.about-editorial > *,
.professional-heading > * {
  min-width: 0;
}

/* Keep the animated button layer behind every label and icon. */
.button {
  isolation: isolate;
}

.button::before {
  z-index: 0;
  pointer-events: none;
}

.button-label,
.button svg {
  position: relative;
  z-index: 1;
}

.button-gold:hover,
.button-gold:focus-visible {
  background: var(--gold);
  color: var(--black);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: var(--gold);
}

/* About — photo-free editorial composition */
.about {
  position: relative;
  overflow: hidden;
}

.about::before {
  position: absolute;
  top: 9%;
  right: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(181, 152, 112, .16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.about::after {
  position: absolute;
  top: calc(9% + 58px);
  right: -62px;
  width: 244px;
  height: 244px;
  border: 1px solid rgba(181, 152, 112, .1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.about .container {
  position: relative;
  z-index: 1;
}

.about-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .72fr);
  gap: clamp(48px, 8vw, 116px);
  align-items: start;
  padding-bottom: clamp(48px, 7vw, 86px);
  border-bottom: 1px solid var(--line);
}

.about-heading-block .section-title {
  max-width: 760px;
}

.about-copy-refined {
  padding-top: 42px;
}

.about-copy-refined .section-lead {
  margin-top: 0;
}

.about-copy-refined > p:not(.section-lead) {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--text-soft);
}

.about-copy-refined .text-link {
  margin-top: 34px;
}

.about-foundation {
  display: grid;
  grid-template-columns: minmax(270px, .72fr) minmax(0, 1.28fr);
  gap: clamp(22px, 4vw, 46px);
  margin-top: clamp(28px, 4vw, 48px);
}

.about-experience-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
}

.about-experience-card::after {
  position: absolute;
  right: -74px;
  bottom: -92px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(181, 152, 112, .28);
  border-radius: 50%;
  content: "";
}

.about-card-label {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.about-experience-number {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  gap: 18px;
  margin-block: 30px;
}

.about-experience-number strong {
  color: var(--gold);
  font-size: clamp(4.7rem, 8vw, 7.6rem);
  font-weight: 300;
  letter-spacing: -.07em;
  line-height: .78;
}

.about-experience-number span {
  padding-bottom: 4px;
  color: rgba(255, 255, 255, .72);
  font-size: .84rem;
  line-height: 1.45;
}

.about-experience-card > p:last-child {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: .86rem;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.about-principles article {
  position: relative;
  min-height: 330px;
  padding: clamp(26px, 3.2vw, 40px);
  background: var(--white);
}

.about-principles article::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  transform: scaleX(.22);
  transform-origin: left;
  background: var(--gold);
  content: "";
  transition: transform .45s var(--ease);
}

.about-principles article:hover::after {
  transform: scaleX(1);
}

.about-principles span {
  color: var(--gold-dark);
  font-size: .72rem;
  letter-spacing: .14em;
}

.about-principles h3 {
  margin: 72px 0 18px;
  font-size: clamp(1.18rem, 1.7vw, 1.55rem);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.18;
}

.about-principles p {
  margin: 0;
  color: var(--text-soft);
  font-size: .82rem;
  line-height: 1.7;
}

/* Team — consistent, organized cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.8vw, 34px);
  align-items: stretch;
}

.team-grid .professional {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(13, 13, 13, .045);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s ease;
}

.team-grid .professional:hover {
  transform: translateY(-7px);
  border-color: rgba(181, 152, 112, .52);
  box-shadow: 0 24px 58px rgba(13, 13, 13, .1);
}

.team-grid .professional-highlight {
  border-color: rgba(181, 152, 112, .58);
}

.team-grid .professional-photo {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 0;
  background: var(--off-white);
}

.team-grid .professional-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(13, 13, 13, .14));
  content: "";
  pointer-events: none;
}

.team-grid .professional-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-grid .professional:nth-child(1) .professional-photo img {
  object-position: center 20%;
}

.team-grid .professional:nth-child(2) .professional-photo img {
  object-position: center 18%;
}

.team-grid .professional:nth-child(3) .professional-photo img {
  object-position: center 12%;
}

.team-grid .professional:nth-child(4) .professional-photo img {
  object-position: center 10%;
}

.team-grid .professional:nth-child(5) .professional-photo img {
  object-position: center 12%;
}

.team-grid .professional:nth-child(6) .professional-photo img {
  object-position: center 8%;
}

.professional-badge {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: rgba(13, 13, 13, .78);
  color: var(--white);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .04em;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.team-grid .photo-line {
  z-index: 3;
  height: 3px;
}

.team-grid .professional-content {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
}

.professional-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.team-grid .professional h3 {
  font-size: clamp(1.4rem, 1.8vw, 2rem);
  line-height: 1.08;
}

.team-grid .professional-oab {
  flex: 0 0 auto;
  margin: 3px 0 0;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  font-size: .63rem;
  line-height: 1;
  white-space: nowrap;
}

.team-grid .professional-content > p:not(.professional-role):not(.professional-oab) {
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: .86rem;
  line-height: 1.72;
}

.team-grid .professional-tags {
  margin-top: auto;
  padding-top: 26px;
}

.team-grid .professional-tags span {
  background: var(--off-white);
}

@media (max-width: 1100px) {
  .about-editorial {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .8fr);
    gap: 56px;
  }

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

  .about-experience-card {
    min-height: 270px;
  }

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

@media (max-width: 900px) {
  .section-title {
    font-size: clamp(2.15rem, 7.8vw, 3.65rem);
    line-height: 1.07;
    letter-spacing: -.038em;
  }

  .about-editorial {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

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

  .about-principles article {
    min-height: 0;
  }

  .about-principles h3 {
    margin-top: 36px;
  }
}

@media (max-width: 720px) {
  .section-title {
    font-size: clamp(2rem, 9.5vw, 3rem);
    line-height: 1.08;
    letter-spacing: -.035em;
  }

  .hero-title {
    font-size: clamp(2.45rem, 11vw, 3.7rem);
    line-height: 1.01;
    letter-spacing: -.045em;
  }

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

  .about::before,
  .about::after {
    display: none;
  }

  .about-editorial {
    padding-bottom: 48px;
  }

  .about-foundation {
    margin-top: 24px;
  }

  .about-experience-card {
    min-height: 300px;
  }

  .about-principles article {
    padding: 28px 24px;
  }

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

  .professional-heading {
    flex-direction: column;
    gap: 12px;
  }

  .team-grid .professional-oab {
    margin-top: 0;
  }

  .button {
    min-height: 56px;
    padding-inline: 20px;
  }
}

@media (max-width: 400px) {
  .section-title {
    font-size: clamp(1.85rem, 9vw, 2.35rem);
  }

  .hero-title {
    font-size: clamp(2.2rem, 10.7vw, 2.85rem);
  }

  .about-experience-number {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .about-experience-number strong {
    font-size: 5.3rem;
  }

  .professional-badge {
    right: 12px;
    bottom: 12px;
    font-size: .61rem;
  }
}

@media (max-width: 720px) {
  .metric {
    min-height: 112px;
    padding: 20px 18px;
  }
}

/* Ajuste fino: aproxima a seção da equipe do escritório */
.team.section {
  padding-bottom: clamp(28px, 2.8vw, 44px);
}

.team.section + .about.section {
  padding-top: clamp(36px, 3.4vw, 54px);
}

@media (max-width: 720px) {
  .team.section {
    padding-bottom: 34px;
  }

  .team.section + .about.section {
    padding-top: 38px;
  }
}
