:root {
  --graphite: #3f4247;
  --graphite-deep: #292c31;
  --gold: #b89f5d;
  --gold-light: #c8b273;
  --gold-dark: #756238;
  --gray: #c8c5c3;
  --paper: #f3f1ed;
  --paper-deep: #e9e6e0;
  --white: #ffffff;
  --ink: #2d3035;
  --muted: #686a6d;
  --border: rgba(63, 66, 71, 0.16);
  --shadow: 0 24px 70px rgba(41, 44, 49, 0.12);
  --radius: 22px;
  --container: 1180px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  color: var(--graphite-deep);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5.4vw, 5rem);
  font-weight: 650;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 4vw, 3.55rem);
  font-weight: 630;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.25rem;
  font-weight: 650;
}

:focus-visible {
  outline: 3px solid var(--gold-dark);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px var(--white);
}

.closing :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--gold-light);
  box-shadow: 0 0 0 6px var(--graphite-deep);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--graphite-deep);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(76px, 9vw, 126px) 0;
}

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

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

.lead {
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
  line-height: 1.65;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  color: var(--white);
  background: var(--graphite);
  border: 1px solid var(--graphite);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(41, 44, 49, 0.14);
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--graphite-deep);
  box-shadow: 0 16px 34px rgba(41, 44, 49, 0.22);
  transform: translateY(-2px);
}

.button--compact {
  min-height: 48px;
  padding: 10px 17px;
  font-size: 0.82rem;
}

.button--light {
  color: var(--graphite-deep);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

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

.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  color: var(--graphite);
  font-weight: 700;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 8px 28px rgba(41, 44, 49, 0.07);
}

.header-inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 26px;
}

.brand {
  display: block;
  width: 96px;
  flex: 0 0 96px;
  overflow: hidden;
  text-decoration: none;
}

.brand-crop {
  display: block;
  width: 90px;
  height: 83px;
  overflow: hidden;
}

.brand img {
  width: 145px;
  height: 145px;
  max-width: none;
  margin-top: -31px;
  margin-left: -28px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  margin-left: auto;
}

.main-nav a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  color: var(--graphite);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

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

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--white) 0%, var(--paper) 100%);
}

.hero-glow {
  position: absolute;
  top: 10%;
  right: -10%;
  width: min(48vw, 680px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(200, 178, 115, 0.28), transparent 67%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: min(790px, calc(100vh - 92px));
  align-items: center;
  grid-template-columns: minmax(0, 1.15fr) minmax(370px, 0.72fr);
  gap: clamp(48px, 7vw, 105px);
  padding-top: 72px;
}

.hero-copy {
  padding: 42px 0 82px;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 25px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-note span {
  color: var(--gold);
  font-size: 0.64rem;
}

.hero-portrait {
  position: relative;
  align-self: end;
}

.portrait-frame {
  position: relative;
  height: min(660px, calc(100vh - 180px));
  min-height: 520px;
  overflow: hidden;
  background: #d4d0c8;
  border-radius: 180px 180px 22px 22px;
  box-shadow: var(--shadow);
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.portrait-caption {
  position: absolute;
  right: -24px;
  bottom: 34px;
  display: grid;
  min-width: 245px;
  gap: 2px;
  padding: 18px 22px;
  color: var(--white);
  background: rgba(41, 44, 49, 0.94);
  border-left: 4px solid var(--gold);
  box-shadow: 0 14px 35px rgba(41, 44, 49, 0.22);
}

.portrait-caption strong {
  font-size: 0.93rem;
}

.portrait-caption span {
  color: var(--gray);
  font-size: 0.8rem;
}

.trust-strip {
  color: var(--white);
  background: var(--graphite-deep);
}

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

.trust-grid p {
  display: flex;
  min-height: 98px;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 23px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.94rem;
  font-weight: 650;
}

.trust-grid p:last-child {
  border-right: 0;
}

.trust-grid span {
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.split-heading {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: clamp(50px, 9vw, 130px);
}

.office-copy {
  max-width: 600px;
}

.office-copy p:not(.lead) {
  color: var(--muted);
}

.values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 35px;
}

.values-row span {
  padding: 8px 14px;
  color: var(--graphite);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

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

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

.section-heading--row > div {
  max-width: 690px;
}

.section-heading--row > p {
  max-width: 380px;
  color: rgba(255, 255, 255, 0.7);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.audience-card {
  min-height: 280px;
  padding: 28px;
  background: var(--white);
  border: 1px solid transparent;
  border-radius: var(--radius);
  box-shadow: 0 12px 35px rgba(41, 44, 49, 0.06);
  transition: border-color 180ms ease, transform 180ms ease;
}

.audience-card:hover {
  border-color: rgba(184, 159, 93, 0.5);
  transform: translateY(-4px);
}

.audience-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.card-index {
  display: block;
  margin-bottom: 72px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

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

.practice h2,
.practice h3 {
  color: var(--white);
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.practice-card {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.practice-card > span {
  display: block;
  margin-bottom: 52px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.practice-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.88rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  position: relative;
  display: flex;
  min-height: 235px;
  gap: 22px;
  padding: 30px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps li + li {
  border-left: 1px solid var(--border);
}

.step-number {
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
}

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

.service-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 28px;
  padding: 22px 26px;
  background: var(--paper);
  border-radius: 12px;
}

.service-note p {
  margin: 0;
  font-size: 0.88rem;
}

.profile {
  padding-bottom: 0;
  background: var(--paper);
}

.profile-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(330px, 0.8fr) minmax(0, 1fr);
  gap: clamp(55px, 9vw, 130px);
}

.profile-photo {
  align-self: end;
  height: 630px;
  overflow: hidden;
  border-radius: 160px 160px 0 0;
}

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

.profile-copy {
  max-width: 590px;
  padding: 60px 0 95px;
}

.profile-copy > p:not(.eyebrow, .profile-oab, .lead) {
  color: var(--muted);
}

.profile-oab {
  margin-top: -12px;
  color: var(--gold-dark);
  font-size: 0.86rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.profile-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 30px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.profile-data div {
  padding: 18px 0;
}

.profile-data div + div {
  padding-left: 22px;
  border-left: 1px solid var(--border);
}

.profile-data dt {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-data dd {
  margin: 4px 0 0;
  font-weight: 650;
}

.entities-grid {
  display: grid;
  max-width: 950px;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-inline: auto;
}

.entity-card {
  display: flex;
  min-height: 190px;
  align-items: center;
  gap: 24px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 15px 35px rgba(41, 44, 49, 0.05);
}

.entity-monogram {
  display: grid;
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  place-items: center;
  color: var(--gold-dark);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 1.15rem;
  font-weight: 750;
}

.entity-card h3 {
  margin-bottom: 7px;
  font-size: 1.45rem;
}

.entity-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: clamp(50px, 8vw, 115px);
}

.faq-grid .section-heading p:last-child {
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  position: relative;
  min-height: 72px;
  padding: 23px 46px 20px 0;
  color: var(--graphite-deep);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 21px;
  right: 4px;
  color: var(--gold-dark);
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 650px;
  padding: 0 45px 22px 0;
  color: var(--muted);
}

.closing {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 10vw, 135px) 0;
  color: var(--white);
  background: var(--graphite-deep);
}

.closing::after {
  position: absolute;
  top: -80%;
  right: -6%;
  width: 570px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(184, 159, 93, 0.22), transparent 68%);
  border-radius: 50%;
  content: "";
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.closing h2 {
  color: var(--white);
}

.closing-inner > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
}

.site-footer {
  padding: 68px 0 25px;
  color: rgba(255, 255, 255, 0.72);
  background: #202227;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.7fr;
  gap: 50px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer p {
  margin-bottom: 7px;
  font-size: 0.86rem;
}

.site-footer a {
  display: block;
  width: fit-content;
  min-height: 36px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  text-decoration: none;
}

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

.footer-brand {
  display: grid;
  align-content: start;
  gap: 2px;
  color: var(--white);
}

.footer-brand > span:last-child {
  padding-left: 3px;
  font-size: 0.67rem;
  letter-spacing: 0.48em;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.footer-logo b {
  color: var(--gold);
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal p {
  margin: 0;
  font-size: 0.72rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 95;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: #157a43;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(21, 122, 67, 0.35);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: transform 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

@media (max-width: 1040px) {
  .header-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.66fr);
    gap: 44px;
  }

  .portrait-caption {
    right: -10px;
  }

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

@media (max-width: 820px) {
  html {
    scroll-padding-top: 76px;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand {
    width: 78px;
    flex-basis: 78px;
  }

  .brand-crop {
    width: 74px;
    height: 69px;
  }

  .brand img {
    width: 120px;
    height: 120px;
    margin-top: -26px;
    margin-left: -23px;
  }

  .has-js .menu-toggle {
    display: inline-flex;
    min-width: 52px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-left: auto;
    padding: 8px 12px;
    color: var(--graphite);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 999px;
  }

  .menu-toggle__text {
    font-size: 0.78rem;
    font-weight: 700;
  }

  .menu-toggle__icon {
    position: relative;
    width: 17px;
    height: 12px;
    border-top: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
  }

  .menu-toggle__icon::after {
    position: absolute;
    top: 4px;
    left: 0;
    width: 100%;
    border-top: 2px solid currentColor;
    content: "";
  }

  .main-nav {
    display: flex;
    position: absolute;
    top: 74px;
    right: 20px;
    left: 20px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 16px;
    padding: 12px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .has-js .main-nav {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .has-js .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-top: 25px;
  }

  .hero-copy {
    padding: 70px 0 0;
  }

  .hero-portrait {
    width: min(100%, 500px);
    margin-inline: auto;
  }

  .portrait-frame {
    height: 580px;
  }

  .trust-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .trust-grid p {
    min-height: 72px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .split-heading,
  .profile-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .section-heading--row {
    display: block;
  }

  .steps li {
    min-height: 0;
    padding: 26px 12px;
    border-bottom: 1px solid var(--border);
  }

  .steps li + li {
    border-left: 0;
  }

  .service-note {
    display: grid;
  }

  .profile {
    padding-top: 0;
  }

  .profile-grid {
    gap: 10px;
  }

  .profile-photo {
    width: min(100%, 500px);
    height: 600px;
    margin-inline: auto;
  }

  .profile-copy {
    max-width: none;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

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

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .portrait-frame {
    min-height: 0;
    height: 490px;
    border-radius: 120px 120px 16px 16px;
  }

  .portrait-caption {
    right: 10px;
    bottom: 18px;
    min-width: 220px;
  }

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

  .audience-card {
    min-height: 230px;
  }

  .card-index {
    margin-bottom: 45px;
  }

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

  .profile-photo {
    height: 520px;
    border-radius: 110px 110px 0 0;
  }

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

  .profile-data div + div {
    padding-left: 0;
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .entity-card {
    min-height: 175px;
    padding: 26px;
  }

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

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

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
