:root {
  --ink: #171716;
  --charcoal: #1f211d;
  --muted: #6b6257;
  --soft: #8b8072;
  --paper: #fffaf1;
  --ivory: #f7efe3;
  --sand: #eadcc9;
  --line: #ded2c0;
  --line-soft: rgba(112, 88, 55, 0.18);
  --gold: #a67335;
  --gold-strong: #c08a45;
  --gold-dark: #7e552b;
  --white: #ffffff;
  --header-glass: rgba(255, 255, 255, 0.06);
  --header-glass-strong: rgba(255, 255, 255, 0.12);
  --header-stroke: rgba(255, 255, 255, 0.26);
  --header-highlight: rgba(255, 255, 255, 0.14);
  --header-shadow: 0 14px 34px rgba(24, 18, 12, 0.1);
  --shadow: 0 22px 60px rgba(44, 32, 20, 0.13);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", Arial, Helvetica, sans-serif;
  --header-height: 70px;
}

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

html {
  scroll-behavior: smooth;
}

section[id],
article[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

img,
video {
  height: auto;
}

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

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

button {
  border: 0;
  cursor: pointer;
}

::selection {
  background: rgba(192, 138, 69, 0.24);
  color: var(--ink);
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  width: auto;
  height: auto;
  clip: auto;
  background: var(--charcoal);
  color: var(--white);
  padding: 10px 14px;
}

.container {
  width: min(100% - 48px, 1320px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid var(--header-stroke);
  backdrop-filter: blur(28px) saturate(180%) brightness(1.06);
  -webkit-backdrop-filter: blur(28px) saturate(180%) brightness(1.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 30px rgba(24, 18, 12, 0.08);
  transition: box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04) 46%, rgba(255, 255, 255, 0)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 0.08));
  opacity: 0.9;
  pointer-events: none;
}

.site-header.is-compact {
  background: rgba(255, 255, 255, 0.14);
  border-bottom-color: rgba(255, 255, 255, 0.3);
  box-shadow: var(--header-shadow);
}

.header-shell {
  position: relative;
  isolation: isolate;
  min-height: var(--header-height);
  width: min(100% - 48px, 1440px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.header-shell::before {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 220px;
}

.brand img {
  width: 210px;
  height: auto;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.32))
    drop-shadow(0 6px 14px rgba(44, 32, 20, 0.08))
    saturate(1.06)
    contrast(1.08);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  color: rgba(31, 33, 29, 0.92);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.36),
    0 0 10px rgba(255, 255, 255, 0.2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  padding-block: 28px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-cta,
.button-primary {
  background: var(--gold);
  color: var(--white);
  border: 1px solid rgba(126, 85, 43, 0.9);
  box-shadow:
    0 10px 26px rgba(126, 85, 43, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.button-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.button-secondary {
  color: var(--charcoal);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.button-secondary:hover,
.button-quiet:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.button-quiet {
  color: var(--charcoal);
  border: 1px solid var(--line);
  background: var(--paper);
}

.header-cta svg,
.button svg,
.text-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 2px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--charcoal);
  margin: 4px auto;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.hero {
  position: relative;
  height: clamp(470px, 39vw, 600px);
  min-height: 470px;
  max-height: none;
  padding-block: 0;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  display: none;
}

.hero::after {
  display: none;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  overflow: hidden;
  transform: scale(1.018);
  transition: opacity 860ms ease, transform 5600ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: none;
  transform: none;
  transform-origin: center center;
}

@media (min-width: 761px) {
  .hero-slide img {
    width: 100%;
    object-position: center center;
    transform: none;
  }
}

.hero-slide:nth-child(2) img {
  object-position: center center;
}

.hero-slide:nth-child(5) img {
  object-position: center center;
}

.hero-slide:nth-child(3) img {
  object-position: center center;
  transform: none;
}

.hero-slide:nth-child(4) img {
  object-position: center center;
}

@media (min-width: 761px) {
  .hero-slide img {
    width: 100%;
    object-position: center center;
    transform: none;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  align-content: center;
}

.hero-copy {
  position: relative;
  isolation: isolate;
  display: grid;
  align-content: center;
  max-width: 650px;
  padding-block: 54px 72px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -20px -36px -24px -999px;
  z-index: -1;
  background: #2a1e14;
}

.eyebrow,
.small-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 670px;
  margin-bottom: 22px;
  color: var(--charcoal);
  font-size: clamp(3.1rem, 5vw, 5.35rem);
  line-height: 0.94;
}

.hero h1 {
  color: var(--paper);
  text-shadow: none;
}

h1 span {
  color: var(--gold-dark);
}

.hero-lead {
  max-width: 500px;
  margin-bottom: 34px;
  color: rgba(255, 250, 241, 0.82);
  font-size: 1.05rem;
  line-height: 1.72;
}

.hero-actions,
.about-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero .button-secondary {
  color: var(--paper);
  border-color: rgba(255, 250, 241, 0.4);
  background: rgba(255, 250, 241, 0.08);
}

.hero .button-secondary:hover {
  border-color: var(--gold-strong);
  color: var(--gold-strong);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 30px;
  display: flex;
  gap: 14px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 13px;
  height: 13px;
  padding: 0;
  border: 1px solid rgba(255, 250, 241, 0.78);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.88);
  box-shadow: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.hero-dots button.is-active {
  border-color: var(--gold-strong);
  background: var(--gold-strong);
  transform: scale(1.06);
}

.institutional-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.institutional-bar .reveal {
  opacity: 1;
  transform: none;
}

.institutional-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.74fr) minmax(470px, 1fr) minmax(390px, 0.86fr);
  gap: 0;
  align-items: stretch;
  padding-block: 28px;
}

.seal-highlight {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  align-items: center;
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.seal-highlight img {
  width: 88px;
  aspect-ratio: 375 / 587;
  object-fit: cover;
}

.seal-highlight strong {
  display: block;
  max-width: 440px;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 600;
  line-height: 1.08;
}

.seal-highlight span,
.metric span,
.publication-link,
.presence-card p,
.media-card p,
.team-note p {
  color: var(--muted);
  font-size: 0.84rem;
}

.metric-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-right: 1px solid var(--line);
}

.metric {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  min-height: 120px;
  padding: 8px 34px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric svg,
.area-card svg,
.team-note svg,
.presence-card svg,
.contact-list svg {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.metric strong {
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.36rem;
  font-weight: 600;
  line-height: 1;
}

.metric span {
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.institutional-media {
  display: grid;
  align-content: center;
  gap: 16px;
  padding-left: 28px;
}

.institutional-media-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.institutional-media-heading .small-label {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

.institutional-media-grid img {
  width: 100%;
  height: 98px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.institutional-media-grid img:nth-child(1),
.institutional-media-grid img:nth-child(3) {
  object-position: 50% 34%;
}

.institutional-media-grid img:nth-child(2) {
  object-position: 50% 42%;
}

.section {
  padding-block: 80px;
}

.section-light {
  background: var(--ivory);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 34px;
}

.section-heading.spread {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
}

.section-heading h2,
.about-copy h2,
.founder-card h2,
.media-copy h2,
.contact-hero h2 {
  margin-bottom: 0;
  color: var(--charcoal);
  font-size: clamp(2.4rem, 4vw, 4.15rem);
  line-height: 0.98;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  white-space: nowrap;
}

.text-link::after {
  content: "→";
  line-height: 1;
}

.area-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.34);
}

.area-strip .area-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 315px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 46px 38px 38px;
  text-align: left;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: opacity 520ms ease, transform 170ms ease, box-shadow 170ms ease;
  will-change: transform;
}

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

.area-strip .area-card:hover {
  z-index: 1;
  background: rgba(255, 250, 241, 0.12);
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 14px 34px rgba(44, 32, 20, 0.07);
}

.area-card::before,
.area-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 170ms ease;
  will-change: opacity;
}

.area-card::before {
  z-index: -2;
  background: var(--area-card-image) center / cover no-repeat;
  transform: scale(1.045);
  transition: opacity 170ms ease, transform 420ms ease;
  will-change: opacity, transform;
}

.area-card::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.74), rgba(255, 250, 241, 0.56)),
    rgba(255, 255, 255, 0.16);
}

.area-card:hover::before {
  opacity: 1;
  transform: scale(1.015);
}

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

.area-card-tax {
  --area-card-image: url("assets/img/direito-tributario-hover.webp");
}

.area-card-business {
  --area-card-image: url("assets/img/EMPRESARIAL.webp");
}

.area-card-family {
  --area-card-image: url("assets/img/FAMILIA.webp");
}

.area-card-contracts {
  --area-card-image: url("assets/img/CONTRATOS.webp");
}

.area-card-penal {
  --area-card-image: url("assets/img/PENAL.webp");
}

.area-card-social-security {
  --area-card-image: url("assets/img/PREVIDENCIARIO.webp");
}

.area-card-consumer {
  --area-card-image: url("assets/img/CONSUMIDOR.webp");
}

.area-card-international {
  --area-card-image: url("assets/img/INTERNACIONAL.webp");
}

.area-card svg {
  width: 44px;
  height: 44px;
}

.area-card h3 {
  max-width: 270px;
  margin: 4px 0 0;
  color: var(--charcoal);
  font-size: 1.72rem;
  line-height: 1.08;
}

.area-card p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.62;
}

.area-card a {
  align-self: end;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.area-card a::after {
  content: " →";
  color: var(--gold);
}

.about-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.98), rgba(255, 250, 241, 0.76)),
    var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(430px, 1fr) minmax(340px, 430px);
  gap: 42px;
  align-items: center;
}

.about-copy {
  padding-block: 18px;
}

.about-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1rem;
}

.about-copy p + p {
  margin-top: -4px;
}

.about-actions {
  margin-top: 28px;
}

.about-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 430px);
  height: 520px;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #d8d0bf;
}

.about-visual::before {
  display: none;
}

.about-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 82%;
  filter: saturate(1.08) contrast(1.03);
}

.office-hero {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.8), rgba(255, 250, 241, 0.56) 28%, rgba(255, 250, 241, 0.18) 50%, rgba(255, 250, 241, 0.04)),
    url("assets/img/banner.webp") center center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.office-hero::after {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -84px;
  width: 330px;
  height: 208px;
  border: 2px solid rgba(166, 115, 53, 0.34);
  border-radius: 56% 0 0 0;
  transform: rotate(-12deg);
}

.office-hero-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
}

.office-hero-content {
  max-width: 670px;
  padding: 82px 0 86px 28px;
}

.office-hero h1 {
  max-width: 700px;
  margin-bottom: 20px;
  color: var(--charcoal);
}

.office-hero p {
  max-width: 540px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.office-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.office-hero-actions .button {
  min-width: 220px;
}

.office-strategy {
  background:
    linear-gradient(180deg, rgba(247, 239, 227, 0.9), rgba(255, 250, 241, 0.9)),
    var(--ivory);
}

.office-strategy-copy {
  max-width: 860px;
}

.office-strategy-copy h2 {
  max-width: 760px;
  margin-bottom: 18px;
}

.office-strategy-copy p {
  max-width: 840px;
  color: var(--muted);
  font-size: 1rem;
}

.office-strategy-copy p + p {
  margin-top: -2px;
}

.office-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}

.office-value {
  min-height: 214px;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.78);
  box-shadow: 0 12px 32px rgba(44, 32, 20, 0.05);
}

.office-value span {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 700;
}

.office-value h3 {
  margin: 16px 0 12px;
  color: var(--charcoal);
  font-size: 1.74rem;
  line-height: 1.04;
}

.office-value p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.68;
}

.founder-section {
  background:
    radial-gradient(circle at 100% 0%, rgba(192, 138, 69, 0.08), transparent 30%),
    var(--paper);
  border-block: 1px solid var(--line);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 42px rgba(44, 32, 20, 0.07);
}

.founder-card-large {
  grid-template-columns: minmax(320px, 0.84fr) minmax(470px, 1.16fr);
}

.founder-card-author {
  grid-template-columns: minmax(430px, 1.08fr) minmax(300px, 0.92fr);
}

.founder-media-founder-link {
  position: relative;
  display: grid;
}

.founder-card img {
  width: 100%;
  height: 470px;
  min-height: 0;
  object-fit: contain;
  object-position: center bottom;
  background: linear-gradient(180deg, rgba(233, 223, 209, 0.72), rgba(245, 238, 228, 0.9));
}

.founder-card-large img {
  height: 520px;
  object-position: center bottom;
}

.founder-card-author img {
  height: 470px;
  object-position: center bottom;
}

.founder-linkedin {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(10, 102, 194, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 24px rgba(31, 33, 29, 0.12);
  color: #0a66c2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.founder-linkedin:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(31, 33, 29, 0.16);
  background: var(--white);
}

.founder-linkedin:focus-visible {
  outline: 2px solid rgba(10, 102, 194, 0.3);
  outline-offset: 3px;
}

.founder-linkedin svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.founder-card > div {
  display: grid;
  align-content: center;
  padding: 44px 46px;
  background: linear-gradient(135deg, rgba(255, 250, 241, 0.82), rgba(255, 255, 255, 0.68));
}

.founder-card h2,
.founder-card h3 {
  max-width: 440px;
  margin: 0 0 16px;
  color: var(--charcoal);
  font-size: clamp(2.2rem, 4vw, 3.35rem);
  line-height: 0.96;
}

.founder-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.72;
}

.founder-card p:last-of-type {
  margin-bottom: 0;
}

.team-note {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  align-items: center;
  padding: 28px 32px;
  border: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255, 250, 241, 0.92), rgba(255, 255, 255, 0.82));
}

.team-note svg {
  width: 54px;
  height: 54px;
}

.team-note h3 {
  margin: 0 0 6px;
  color: var(--charcoal);
  font-size: 1.5rem;
  line-height: 1.05;
}

.team-note p {
  max-width: 720px;
  margin: 0;
}

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

.publication-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  color: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.publication-card:hover,
.publication-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(44, 32, 20, 0.09);
}

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

.publication-card img {
  width: 100%;
  height: 215px;
  object-fit: cover;
  object-position: 50% 36%;
  filter: none;
}

.publication-card:nth-child(4) img {
  object-position: 50% 32%;
}

.publication-card > div {
  display: grid;
  min-height: 198px;
  padding: 24px;
}

.publication-card time {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.96rem;
  font-weight: 700;
}

.publication-card h3 {
  margin: 14px 0 24px;
  color: var(--charcoal);
  font-size: 1.42rem;
  line-height: 1.12;
}

.publication-link {
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--gold-dark);
  font-weight: 800;
}

.publication-link::after {
  content: "→";
}

.publications-page {
  padding-top: 72px;
  min-height: 70vh;
}

.areas-page {
  min-height: 70vh;
}

.areas-hero {
  position: relative;
  min-height: 340px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(20, 19, 16, 0.78), rgba(20, 19, 16, 0.54) 38%, rgba(20, 19, 16, 0.22)),
    url("assets/img/areas-hero-statue.webp") center 30% / cover no-repeat;
}

.areas-hero-grid {
  position: relative;
  z-index: 1;
  min-height: 340px;
  display: grid;
  align-items: center;
}

.areas-hero-copy {
  max-width: 720px;
  padding-block: 52px 60px;
}

.areas-hero-copy .eyebrow {
  color: var(--gold-strong);
}

.areas-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2.45rem, 4.5vw, 4.35rem);
  font-weight: 600;
  line-height: 0.94;
}

.areas-hero-copy .page-lead {
  max-width: 610px;
  margin-top: 18px;
  color: rgba(255, 250, 241, 0.9);
}

.areas-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.areas-summary {
  position: relative;
  z-index: 2;
  margin-top: -26px;
  padding-bottom: 8px;
}

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

.areas-summary-card {
  min-height: 150px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 28px 26px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.97);
  box-shadow: 0 18px 42px rgba(44, 32, 20, 0.1);
}

.areas-summary-card strong {
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1.02;
}

.areas-summary-card span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.66;
}

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

.practice-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.78fr) minmax(0, 1.22fr);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 40px rgba(44, 32, 20, 0.07);
}

.practice-card-media {
  min-height: 100%;
  background: linear-gradient(180deg, rgba(233, 223, 209, 0.72), rgba(245, 238, 228, 0.9));
}

.practice-card-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}

.practice-card-body {
  display: grid;
  align-content: center;
  padding: 34px 32px;
}

.practice-index {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 700;
}

.practice-card h3 {
  margin: 0 0 14px;
  color: var(--charcoal);
  font-size: clamp(1.9rem, 2.4vw, 2.55rem);
  line-height: 0.98;
}

.practice-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.72;
}

.practice-approach {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.96), rgba(247, 239, 227, 0.92)),
    var(--paper);
  border-block: 1px solid var(--line);
}

.practice-cta {
  padding-block: 80px;
  background:
    linear-gradient(135deg, rgba(247, 239, 227, 0.82), rgba(255, 250, 241, 0.98)),
    var(--ivory);
}

.practice-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 28px;
  align-items: end;
}

.practice-cta-copy h2 {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--charcoal);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.98;
}

.practice-cta-copy p:last-child {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.practice-cta-actions {
  display: grid;
  gap: 12px;
  min-width: 240px;
}

.publications-page .section-heading {
  max-width: 940px;
}

.page-lead {
  max-width: 620px;
  margin-top: 18px;
  margin-bottom: 0;
  color: var(--muted);
}

.publications-page .publication-grid {
  margin-top: 30px;
}

.publications-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(20, 19, 16, 0.82), rgba(20, 19, 16, 0.46) 44%, rgba(20, 19, 16, 0.12)),
    url("assets/img/publicacoes-banner-brasilia-hd.webp") center 48% / cover no-repeat;
}

.publications-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -96px;
  width: 360px;
  height: 220px;
  border: 2px solid rgba(255, 250, 241, 0.64);
  border-radius: 60% 0 0 0;
  transform: rotate(-12deg);
}

.publications-hero-content {
  position: relative;
  z-index: 1;
  padding-block: 84px 98px;
}

.publications-hero .eyebrow {
  color: var(--gold-strong);
}

.publications-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.45rem);
  font-weight: 600;
  line-height: 0.92;
}

.publications-hero h1 span {
  color: #f2bd73;
}

.publications-hero p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 250, 241, 0.9);
  font-size: 1.02rem;
  line-height: 1.7;
}

.publication-topics {
  position: relative;
  z-index: 4;
  margin-top: -44px;
}

.publication-topic-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.96);
  box-shadow: 0 18px 45px rgba(44, 32, 20, 0.13);
}

.topic-pill {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 78px;
  padding: 18px 20px;
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  border-right: 1px solid var(--line);
}

.topic-pill:last-child {
  border-right: 0;
}

.topic-pill.is-active,
.topic-pill:hover {
  color: var(--gold-dark);
}

.topic-pill.is-active::after,
.topic-pill:hover::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 3px;
  background: var(--gold-strong);
}

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

.section-heading.centered h2 {
  margin-bottom: 0;
}

.publication-editorial-grid {
  align-items: stretch;
  gap: 26px;
}

.publication-card .publication-category {
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.publication-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.84rem;
}

.publication-card-muted {
  opacity: 0.9;
}

.publication-card-muted .publication-link {
  color: var(--muted);
}

.publication-card-muted .publication-link::after {
  content: "";
}

.media-section {
  background: var(--paper);
}

.media-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(620px, 1.28fr);
  gap: 44px;
  align-items: start;
}

.media-copy {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.media-copy p {
  color: var(--muted);
}

.media-grid {
  display: grid;
  gap: 20px;
}

.media-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.54);
}

.media-card img {
  width: 100%;
  height: 260px;
  min-height: 0;
  object-fit: cover;
}

.media-card > div {
  display: grid;
  align-content: center;
  padding: 32px;
}

.media-card h3 {
  margin: 0 0 12px;
  color: var(--charcoal);
  font-size: 1.75rem;
  line-height: 1.04;
}

.presence-section {
  padding-block: 76px;
  background: var(--ivory);
  border-block: 1px solid var(--line);
}

.presence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.presence-card {
  display: grid;
  grid-template-rows: 220px minmax(228px, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(44, 32, 20, 0.05);
}

.presence-card-media {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(229, 236, 246, 0.72), rgba(255, 255, 255, 0.92));
}

.presence-card img,
.presence-map-hover {
  width: 100%;
  height: 220px;
}

.presence-card img {
  object-fit: cover;
  object-position: center center;
  transition: transform 260ms ease, opacity 220ms ease;
}

.presence-map-hover {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 250, 241, 0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.presence-map-hover iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.presence-map-cta {
  position: absolute;
  left: 12px;
  top: 12px;
  min-height: 40px;
  padding-inline: 14px;
  box-shadow: 0 10px 24px rgba(44, 32, 20, 0.16);
}

.presence-card-address:hover img,
.presence-card-address:focus-within img {
  transform: scale(1.02);
  opacity: 0;
}

.presence-card-address:hover .presence-map-hover,
.presence-card-address:focus-within .presence-map-hover {
  opacity: 1;
  pointer-events: auto;
}

.presence-card-address img,
.presence-card-address .presence-map-hover {
  height: 220px;
}

.presence-card-address img,
.presence-card-natal img,
.presence-card-brazil img {
  width: 100%;
  height: 220px;
  padding: 0;
  object-fit: cover;
  object-position: center center;
}

.presence-card-brazil img {
  padding: 16px 20px;
  object-fit: contain;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(255, 255, 255, 1));
}

.presence-card > div {
  display: grid;
  align-content: start;
  align-items: start;
  min-height: 228px;
  padding: 28px 28px 30px;
}

.presence-card svg {
  width: 28px;
  height: 28px;
  margin-bottom: 16px;
}

.presence-card h3 {
  margin: 0 0 8px;
  min-height: 3.35rem;
  color: var(--charcoal);
  font-size: 1.46rem;
  line-height: 1.14;
}

.presence-card-brazil {
  min-height: 100%;
  background: linear-gradient(135deg, rgba(255, 250, 241, 0.92), rgba(255, 255, 255, 0.76));
}

.presence-card-brazil > div {
  min-height: 228px;
}

.presence-card p {
  line-height: 1.65;
}

.contact-hero {
  padding-block: 68px;
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.94), rgba(255, 250, 241, 0.58) 45%, rgba(255, 250, 241, 0.04)),
    url("assets/img/brasilia-jk-hero-premium.webp") right center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.contact-hero-grid {
  min-height: 310px;
  display: grid;
  align-items: center;
}

.contact-hero-copy {
  max-width: 760px;
}

.contact-hero h2 {
  margin-bottom: 28px;
}

.contact-section {
  padding-block: 68px;
  background: var(--paper);
}

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

.form-title {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-info {
  display: grid;
  gap: 22px;
  width: min(100%, 1120px);
  margin-inline: auto;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 48px;
}

.contact-list > a,
.contact-list > span {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-size: 0.9rem;
  min-width: 0;
}

.contact-list > a > span,
.contact-list > span > span {
  min-width: 0;
}

.contact-list strong {
  display: block;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.05;
}

.contact-list svg {
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.contact-page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 54px 112px;
  background:
    linear-gradient(90deg, rgba(28, 24, 20, 0.72) 0%, rgba(28, 24, 20, 0.54) 24%, rgba(28, 24, 20, 0.14) 48%, rgba(28, 24, 20, 0.06) 100%),
    url("assets/img/contact-banner.webp") center center / cover no-repeat;
  color: var(--paper);
}

.contact-page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(255, 250, 241, 0), var(--paper));
}

.contact-page-hero-grid {
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
}

.contact-page-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.contact-page-copy .eyebrow {
  color: rgba(234, 220, 201, 0.92);
}

.contact-page-copy h1 {
  margin: 0 0 24px;
  color: var(--white);
  font-size: clamp(3.2rem, 5.2vw, 4.7rem);
  line-height: 0.96;
}

.contact-page-copy .page-lead {
  max-width: 520px;
  color: rgba(255, 250, 241, 0.84);
  font-size: 1.02rem;
}

.contact-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.contact-page-section,
.contact-cards-section {
  position: relative;
}

.contact-cards-section {
  margin-top: -68px;
  z-index: 2;
}

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

.contact-card {
  min-height: 230px;
  padding: 30px 28px;
  border: 1px solid rgba(255, 250, 241, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(51, 43, 35, 0.94), rgba(27, 24, 21, 0.97)),
    #25211d;
  box-shadow: 0 18px 44px rgba(31, 25, 20, 0.22);
  color: rgba(255, 250, 241, 0.78);
}

.contact-card-clickable {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-card-clickable:hover,
.contact-card-clickable:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(192, 138, 69, 0.44);
  box-shadow: 0 24px 56px rgba(31, 25, 20, 0.28);
}

.contact-card svg {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  fill: none;
  stroke: var(--gold-strong);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card svg path {
  vector-effect: non-scaling-stroke;
}

.contact-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.contact-card span {
  display: block;
  max-width: 18ch;
  font-size: 1rem;
  line-height: 1.7;
}

.contact-card em {
  display: inline-flex;
  margin-top: 20px;
  color: var(--gold-strong);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 700;
}

.contact-page-section {
  padding: 36px 0 78px;
  background:
    radial-gradient(circle at left top, rgba(192, 138, 69, 0.08), transparent 34%),
    var(--paper);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: start;
}

.contact-panel {
  min-height: 100%;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 239, 227, 0.74));
  box-shadow: var(--shadow);
}

.contact-details-panel {
  background:
    radial-gradient(circle at 88% 16%, rgba(192, 138, 69, 0.14), transparent 22%),
    linear-gradient(180deg, #2c2621, #1d1916);
  border-color: rgba(192, 138, 69, 0.16);
  color: rgba(255, 250, 241, 0.74);
}

.contact-panel h2 {
  margin: 0 0 16px;
}

.contact-form-panel p:not(.eyebrow),
.contact-details-panel p:not(.eyebrow) {
  margin-top: 0;
}

.contact-message-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

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

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

.contact-message-form label {
  display: grid;
  gap: 8px;
}

.contact-message-form span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-message-form input,
.contact-message-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--charcoal);
  padding: 15px 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-message-form input:focus,
.contact-message-form textarea:focus {
  outline: 0;
  border-color: rgba(192, 138, 69, 0.7);
  box-shadow: 0 0 0 4px rgba(192, 138, 69, 0.12);
}

.contact-form-message textarea {
  min-height: 172px;
  resize: vertical;
}

.contact-message-form .button {
  margin-top: 6px;
  width: fit-content;
}

.contact-details-panel .eyebrow,
.contact-details-panel h2 {
  color: var(--paper);
}

.contact-detail-list {
  display: grid;
  gap: 26px;
  margin-top: 28px;
}

.contact-detail-item {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 14px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 250, 241, 0.12);
}

.contact-detail-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-detail-item svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--gold-strong);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 2px;
}

.contact-detail-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.52rem;
  font-weight: 600;
  line-height: 1.05;
}

.contact-detail-item p {
  margin: 0 0 10px;
  max-width: 28ch;
}

.contact-detail-item a {
  color: var(--gold-strong);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-detail-item a:hover {
  color: var(--white);
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.contact-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.04);
  color: var(--gold-strong);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.contact-social-links a:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 250, 241, 0.34);
  background: rgba(255, 250, 241, 0.1);
  color: var(--white);
}

.contact-social-links a:focus-visible {
  outline: 2px solid rgba(192, 138, 69, 0.55);
  outline-offset: 3px;
}

.contact-social-links svg {
  width: 18px;
  height: 18px;
  margin-top: 0;
  fill: currentColor;
  stroke: none;
}

.contact-social-links a[aria-label*="Instagram"] svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(192, 138, 69, 0.16), transparent 34%),
    #20211d;
  color: rgba(255, 250, 241, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.72fr 0.82fr;
  gap: 54px;
  padding-block: 56px;
}

.footer-brand img {
  width: 200px;
  height: auto;
  margin-bottom: 18px;
  filter: brightness(0) invert(1) sepia(0.28) saturate(0.6);
}

.footer-brand p,
.site-footer p {
  max-width: 330px;
  color: rgba(255, 250, 241, 0.68);
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--gold-strong);
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 700;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 250, 241, 0.72);
  font-size: 0.9rem;
}

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

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 0;
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.04);
  color: var(--gold-strong);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.footer-social-links a:hover {
  transform: translateY(-1px);
  color: var(--white);
  border-color: rgba(255, 250, 241, 0.3);
  background: rgba(255, 250, 241, 0.1);
}

.footer-social-links a:focus-visible {
  outline: 2px solid rgba(192, 138, 69, 0.55);
  outline-offset: 3px;
}

.footer-social-links svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke: none;
}

.footer-social-links a[aria-label*="Instagram"] svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 32px;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 250, 241, 0.14);
}

.footer-bottom span {
  margin: 0;
  color: rgba(255, 250, 241, 0.54);
  font-size: 0.8rem;
  line-height: 1.45;
}

.footer-bottom [data-year] {
  display: inline;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  transition: transform 300ms ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

.floating-whatsapp img {
  display: block;
  width: 72px;
  height: 72px;
}

.cookie-modal-open {
  overflow: hidden;
}

.cookie-consent {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 1100;
  pointer-events: none;
}

.cookie-consent > * {
  pointer-events: auto;
}

.cookie-consent:not(.is-banner-hidden) .cookie-manage-button,
.cookie-consent.is-modal-open .cookie-manage-button {
  display: none;
}

.cookie-manage-button[hidden] {
  display: none !important;
}

.cookie-manage-button {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(31, 33, 29, 0.12);
  border-radius: 999px;
  background: rgba(244, 239, 231, 0.98);
  box-shadow: 0 18px 30px rgba(44, 32, 20, 0.12);
  color: var(--gold-dark);
}

.cookie-manage-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cookie-banner {
  width: min(100vw - 32px, 440px);
  margin-bottom: 16px;
  padding: 28px 28px 26px;
  border: 1px solid rgba(112, 88, 55, 0.12);
  border-radius: 26px;
  background: rgba(255, 250, 241, 0.98);
  box-shadow: 0 24px 64px rgba(44, 32, 20, 0.18);
  backdrop-filter: blur(12px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__header strong,
.cookie-option strong,
.cookie-modal__header h2 {
  color: var(--charcoal);
}

.cookie-banner__eyebrow {
  margin: 0 0 6px;
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.cookie-banner__header strong {
  font-family: var(--serif);
  font-size: 1.56rem;
  font-weight: 600;
  line-height: 1;
}

.cookie-banner__text,
.cookie-modal__text,
.cookie-option small {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.cookie-banner__text {
  margin: 16px 0 14px;
}

.cookie-banner__text a,
.cookie-banner__links button {
  color: var(--gold-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__links {
  margin-bottom: 20px;
}

.cookie-banner__links button,
.cookie-modal__close {
  padding: 0;
  background: transparent;
}

.cookie-banner__actions,
.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-button {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.cookie-button--primary {
  background: #b4bcb6;
  color: var(--white);
  border: 1px solid #b4bcb6;
}

.cookie-button--primary:hover {
  background: #9ea7a1;
  border-color: #9ea7a1;
}

.cookie-button--secondary {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}

.cookie-button--secondary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.cookie-button--ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid rgba(31, 33, 29, 0.22);
}

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

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
}

.cookie-modal.is-open {
  display: block;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 16, 0.42);
}

.cookie-modal__dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(100vw - 32px, 620px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 28px;
  border-radius: 26px;
  border: 1px solid rgba(112, 88, 55, 0.12);
  background: var(--paper);
  box-shadow: 0 26px 80px rgba(18, 18, 16, 0.24);
  transform: translate(-50%, -50%);
}

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

.cookie-modal__header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  line-height: 0.98;
}

.cookie-modal__close {
  color: var(--soft);
  font-size: 2rem;
  line-height: 1;
}

.cookie-option-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 24px;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
}

.cookie-option span {
  display: grid;
  gap: 4px;
}

.cookie-option input {
  width: 20px;
  height: 20px;
  accent-color: var(--gold);
  flex: 0 0 auto;
}

[vw-access-button] {
  bottom: 110px !important;
  right: 0 !important;
}

.privacy-page {
  background: var(--paper);
}

.privacy-hero {
  padding-top: 28px;
  background: var(--paper);
}

.privacy-hero-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(44, 32, 20, 0.08);
  background: #3a2818;
}

.privacy-hero-frame img {
  width: 100%;
  height: auto;
}

.privacy-intro-section {
  padding-top: 32px;
  padding-bottom: 20px;
}

.privacy-intro-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 34px 36px;
  border: 1px solid var(--line);
  background: #fffdf9;
  box-shadow: 0 10px 28px rgba(44, 32, 20, 0.05);
}

.privacy-intro-card h1 {
  max-width: 860px;
  margin-bottom: 16px;
  color: var(--charcoal);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 0.98;
}

.privacy-intro-card .page-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.privacy-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 560px;
  margin-top: 32px;
}

.privacy-meta-item,
.privacy-document,
.privacy-inline-note,
.privacy-closing-note {
  border: 1px solid var(--line);
  background: #fffdf9;
  box-shadow: 0 10px 28px rgba(44, 32, 20, 0.05);
}

.privacy-meta-item {
  padding: 18px 20px;
}

.privacy-meta-item span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-meta-item strong,
.privacy-meta-item a {
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 700;
  line-height: 1.1;
}

.privacy-content-section {
  padding-top: 12px;
  padding-bottom: 84px;
}

.privacy-document-shell {
  width: min(100%, 980px);
  margin-inline: auto;
}

.privacy-document {
  padding: 32px;
  background: #fffdf9;
}

.privacy-document-header {
  max-width: 840px;
}

.privacy-document-header h2 {
  margin-bottom: 12px;
  color: var(--charcoal);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.02;
}

.privacy-document-header p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.privacy-document-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 36px;
  padding: 20px;
  border: 1px solid var(--line);
  background: #faf4ea;
}

.privacy-document-nav a {
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
}

.privacy-document-nav a:hover {
  color: var(--gold-dark);
}

.privacy-block + .privacy-block {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid rgba(112, 88, 55, 0.14);
}

.privacy-block h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--charcoal);
  font-size: 2.16rem;
  line-height: 1;
}

.privacy-block h2 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  min-height: 50px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(166, 115, 53, 0.24);
  background: rgba(247, 239, 227, 0.86);
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 700;
}

.privacy-block p {
  margin: 0 0 14px;
  color: #3e392f;
  font-size: 1rem;
  line-height: 1.82;
}

.privacy-block p:last-child {
  margin-bottom: 0;
}

.privacy-list {
  margin: 0 0 14px;
  padding-left: 22px;
  color: #3e392f;
}

.privacy-list li {
  margin-bottom: 10px;
  padding-left: 4px;
  line-height: 1.72;
}

.privacy-list li:last-child {
  margin-bottom: 0;
}

.privacy-list-alpha {
  padding-left: 24px;
}

.privacy-identity {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(166, 115, 53, 0.18);
  background: #faf4ea;
}

.privacy-identity p {
  margin: 0;
}

.privacy-identity strong,
.privacy-inline-note strong,
.privacy-closing-note strong {
  color: var(--charcoal);
}

.privacy-inline-note {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding: 18px 20px;
  background: #faf4ea;
}

.privacy-inline-note p {
  margin: 0;
}

.privacy-block-closing {
  padding-bottom: 4px;
}

.privacy-closing-note {
  margin-top: 22px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(32, 33, 29, 0.96), rgba(44, 32, 20, 0.94));
}

.privacy-page .reveal,
.privacy-page .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.privacy-closing-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-strong);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.privacy-closing-note p {
  margin: 0;
  color: rgba(255, 250, 241, 0.78);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

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

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

@media (max-width: 1240px) {
  .header-shell {
    gap: 20px;
  }

  .site-nav {
    gap: 20px;
  }

  .header-cta {
    padding-inline: 14px;
  }

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

@media (max-width: 1080px) {
  :root {
    --header-height: 68px;
  }

  .header-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand img {
    width: 190px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-open .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    background: rgba(255, 250, 241, 0.92);
    border-bottom: 1px solid rgba(190, 151, 90, 0.28);
    box-shadow: 0 26px 60px rgba(44, 32, 20, 0.18);
    backdrop-filter: blur(26px) saturate(160%) brightness(1.04);
    -webkit-backdrop-filter: blur(26px) saturate(160%) brightness(1.04);
  }

  .nav-open .site-nav a {
    color: var(--charcoal);
    padding: 18px 24px;
    border-top: 1px solid rgba(190, 151, 90, 0.2);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.52);
  }

  .nav-open .site-nav a::after {
    display: none;
  }

  .hero {
    height: clamp(440px, 39vw, 580px);
    min-height: 440px;
    max-height: none;
  }

  .institutional-grid,
  .about-grid,
  .media-layout,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
    padding-block: 56px 82px;
  }

  .seal-highlight {
    border-right: 0;
    padding-right: 0;
  }

  .metric-list {
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .institutional-media {
    padding-left: 0;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }

  .about-grid,
  .media-layout,
  .contact-grid {
    gap: 34px;
  }

  .about-visual {
    justify-self: center;
    width: min(100%, 430px);
  }

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

  .office-value:last-child {
    grid-column: 1 / -1;
  }

  .founder-card,
  .founder-card-large,
  .founder-card-author {
    grid-template-columns: 1fr;
  }

  .office-hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

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

  .founder-card-author img {
    order: -1;
  }

  .founder-media-founder-link {
    order: -1;
  }

  .media-copy {
    position: static;
  }

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

  .practice-cta-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

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

  .topic-pill {
    border-bottom: 1px solid var(--line);
  }

  .topic-pill:nth-child(3n) {
    border-right: 0;
  }

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

@media (max-width: 760px) {
  .container,
  .header-shell {
    width: min(100% - 32px, 1320px);
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 174px;
  }

  .section,
  .presence-section,
  .contact-section {
    padding-block: 58px;
  }

  .hero {
    height: calc(100vw * 690 / 1563);
    min-height: 0;
    max-height: none;
    padding-block: 0;
  }

  .hero::before {
    display: none;
  }

  .hero-slide img,
  .hero-slide:nth-child(2) img,
  .hero-slide:nth-child(3) img,
  .hero-slide:nth-child(4) img,
  .hero-slide:nth-child(5) img {
    object-fit: cover;
    object-position: center center;
    transform: none;
  }

  .hero-content {
    align-content: end;
  }

  .hero-copy {
    padding-block: 74px 96px;
  }

  h1 {
    font-size: 3.1rem;
    line-height: 1;
  }

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

  .hero h1 {
    font-size: 2.72rem;
  }

  .office-hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(255, 250, 241, 0.82), rgba(255, 250, 241, 0.58) 48%, rgba(255, 250, 241, 0.34)),
      url("assets/img/banner.webp") 62% center / cover no-repeat;
  }

  .office-hero::after {
    display: none;
  }

  .areas-hero {
    min-height: 300px;
    background:
      linear-gradient(180deg, rgba(20, 19, 16, 0.74), rgba(20, 19, 16, 0.5) 48%, rgba(20, 19, 16, 0.22)),
      url("assets/img/areas-hero-statue.webp") 56% center / cover no-repeat;
  }

  .areas-hero::after {
    display: none;
  }

  .areas-hero-grid {
    min-height: 300px;
  }

  .areas-hero-copy {
    max-width: none;
    padding-block: 42px 50px;
  }

  .areas-hero-copy h1 {
    font-size: 2.56rem;
  }

  .office-hero-grid {
    gap: 22px;
  }

  .office-hero-content {
    max-width: none;
    padding: 56px 0 44px;
  }

  .office-hero h1 {
    font-size: 3rem;
  }

  .office-value {
    min-height: 0;
    padding: 24px;
  }

  .hero-actions,
  .about-actions,
  .contact-actions,
  .contact-page-actions,
  .office-hero-actions,
  .areas-hero-actions,
  .section-heading.spread {
    display: grid;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .institutional-grid {
    padding-block: 22px;
  }

  .seal-highlight {
    grid-template-columns: 72px 1fr;
    gap: 16px;
  }

  .seal-highlight img {
    width: 72px;
  }

  .seal-highlight strong {
    font-size: 1.22rem;
  }

  .metric-list,
  .area-strip,
  .office-value-grid,
  .areas-summary-grid,
  .practice-grid,
  .publication-grid,
  .privacy-meta,
  .privacy-document-nav,
  .publication-topic-bar,
  .presence-grid,
  .contact-list,
  .media-card,
  .founder-card,
  .founder-card-large {
    grid-template-columns: 1fr;
  }

  .publications-hero {
    min-height: 360px;
  }

  .areas-summary {
    margin-top: -10px;
  }

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

  .practice-card-media img {
    min-height: 240px;
  }

  .practice-card-body {
    padding: 24px;
  }

  .publications-hero-content {
    padding-block: 64px 92px;
  }

  .publications-hero h1 {
    font-size: 3.1rem;
  }

  .publication-topics {
    margin-top: -30px;
  }

  .topic-pill,
  .topic-pill:nth-child(3n) {
    min-height: 58px;
    border-right: 0;
  }

  .metric {
    min-height: 108px;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .area-card,
  .area-card:nth-child(4n) {
    border-right: 1px solid var(--line);
  }

  .area-strip .area-card.is-scroll-active {
    z-index: 1;
    background: rgba(255, 250, 241, 0.12);
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 14px 34px rgba(44, 32, 20, 0.07);
  }

  .area-card.is-scroll-active::before {
    opacity: 1;
    transform: scale(1.015);
  }

  .area-card.is-scroll-active::after {
    opacity: 1;
  }

  .about-visual,
  .founder-card img,
  .founder-card-large img {
    height: 430px;
    min-height: 0;
  }

  .presence-card img,
  .presence-map-hover {
    height: 230px;
  }

  .founder-card-author img {
    order: -1;
  }

  .founder-linkedin {
    right: 18px;
    bottom: 18px;
    width: 40px;
    height: 40px;
  }

  .about-visual {
    width: min(100%, 340px);
  }

  .strategy-panel,
  .founder-card > div,
  .team-note,
  .media-card > div,
  .presence-card > div,
  .privacy-document,
  .privacy-intro-card {
    padding: 24px;
  }

  .founder-card:nth-child(2) img {
    order: -1;
  }

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

  .contact-hero {
    padding-block: 54px;
    background:
      linear-gradient(90deg, rgba(255, 250, 241, 0.97), rgba(255, 250, 241, 0.86)),
      url("assets/img/brasilia-jk-hero-premium.webp") right center / cover no-repeat;
  }

  .contact-page-hero {
    padding-block: 42px 108px;
    background:
      linear-gradient(180deg, rgba(28, 24, 20, 0.72) 0%, rgba(28, 24, 20, 0.5) 46%, rgba(28, 24, 20, 0.18) 100%),
      url("assets/img/contact-banner.webp") 78% center / cover no-repeat;
  }

  .contact-page-hero-grid {
    min-height: 320px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-page-copy {
    max-width: none;
  }

  .contact-page-copy h1 {
    font-size: 2.86rem;
  }

  .contact-cards-section {
    margin-top: -54px;
  }

  .contact-card,
  .contact-panel {
    padding: 28px 24px;
  }

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

  .contact-hero-grid {
    min-height: auto;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .privacy-hero {
    padding-top: 18px;
  }

  .privacy-intro-section {
    padding-top: 22px;
    padding-bottom: 10px;
  }

  .privacy-intro-card h1,
  .privacy-block h2 {
    max-width: none;
  }

  .privacy-block h2 {
    align-items: flex-start;
    font-size: 1.82rem;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }

  [vw-access-button] {
    bottom: 98px !important;
    right: 0 !important;
  }

  .cookie-consent {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner {
    width: min(100vw - 32px, 100%);
    padding: 24px 22px 22px;
    border-radius: 22px;
  }

  .cookie-banner__actions,
  .cookie-modal__actions {
    flex-direction: column;
  }

  .cookie-button {
    width: 100%;
  }

  .cookie-modal__dialog {
    width: min(100vw - 24px, 620px);
    padding: 24px 20px;
  }

  .cookie-option {
    align-items: start;
  }
}

@media (max-width: 440px) {
  h1 {
    font-size: 2.66rem;
  }

  .office-hero h1 {
    font-size: 2.54rem;
  }

  .areas-hero-copy h1,
  .practice-cta-copy h2 {
    font-size: 2.54rem;
  }

  .cookie-manage-button {
    width: 58px;
    height: 58px;
  }

  .cookie-banner__header strong {
    font-size: 1.34rem;
  }

  .contact-page-copy h1 {
    font-size: 2.46rem;
  }

  .section-heading h2,
  .about-copy h2,
  .founder-card h2,
  .media-copy h2,
  .contact-hero h2 {
    font-size: 2.22rem;
  }

  .about-visual,
  .founder-card img,
  .founder-card-large img {
    height: 360px;
    min-height: 0;
  }

  .office-hero h1 {
    font-size: 2.54rem;
  }

  .about-visual {
    width: min(100%, 300px);
  }

  .office-hero-content {
    padding-block: 48px 56px;
  }

  .hero {
    height: calc(100vw * 690 / 1563);
    min-height: 0;
  }

  .hero h1 {
    font-size: 2.34rem;
  }

  .hero-copy {
    padding-block: 64px 84px;
  }

  .hero-dots {
    bottom: 22px;
  }

  .privacy-intro-card h1 {
    font-size: 2.52rem;
  }

  .privacy-meta-item strong,
  .privacy-meta-item a {
    font-size: 1.22rem;
  }

  .privacy-block h2 {
    font-size: 1.6rem;
  }

  .privacy-block h2 span {
    min-width: 42px;
    min-height: 42px;
    font-size: 0.98rem;
  }

  .publication-card img {
    height: 188px;
  }

  .presence-map-cta {
    width: calc(100% - 24px);
    justify-self: stretch;
  }
}
