﻿:root {
  --orange: #ff6b00;
  --orange-dark: #d94d00;
  --orange-soft: #ff9d5c;
  --charcoal: #171717;
  --graphite: #242321;
  --paper: #f4f0e9;
  --paper-deep: #e9e2d8;
  --white: #ffffff;
  --ink: #201f1d;
  --muted: #6f6b65;
  --line: rgba(32, 31, 29, 0.14);
  --line-inverse: rgba(255, 255, 255, 0.14);
  --container: 1240px;
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shadow: 0 28px 80px rgba(23, 23, 23, 0.16);
  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  margin-bottom: 0;
  font-weight: 700;
  letter-spacing: -0.032em;
  line-height: 1.08;
}

h2 {
  font-size: clamp(2.65rem, 5.2vw, 5.4rem);
}

p {
  line-height: 1.7;
}

::selection {
  background: var(--orange);
  color: var(--charcoal);
}

.container {
  width: min(calc(100% - 56px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 132px 0;
}

#sobre,
#pilares,
#servicos,
#segmentos,
#parceiros,
#sintonia,
#trabalhe-conosco,
#faq,
#contato,
.service-detail {
  scroll-margin-top: 92px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--charcoal);
  font-weight: 750;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  flex: 0 0 34px;
  background: currentColor;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 107, 0, 0.96);
  color: var(--white);
  transition: background 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header--scrolled {
  background: rgba(255, 107, 0, 0.94);
  box-shadow: 0 12px 35px rgba(23, 23, 23, 0.2);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: grid;
  min-height: 88px;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
}

.brand {
  width: 105px;
}

.brand img {
  width: 100%;
  height: auto;
  filter: none;
}

.navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.navigation a {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 620;
  transition: color 180ms ease;
}

.navigation a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--white);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.navigation a:hover,
.navigation a:focus-visible {
  color: var(--white);
}

.navigation a:hover::after,
.navigation a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 780;
  letter-spacing: 0.015em;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.navigation a:focus-visible,
.service-card:focus-visible,
.expertise__sector:focus-visible,
.menu-toggle:focus-visible,
.faq-list summary:focus-visible {
  outline: 3px solid rgba(255, 107, 0, 0.42);
  outline-offset: 4px;
}

.button__arrow {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(23, 23, 23, 0.12);
  font-size: 0.9rem;
}

.button--primary {
  background: var(--orange);
  color: var(--charcoal);
}

.button--primary:hover {
  background: var(--orange-soft);
}

.button--secondary {
  min-height: 45px;
  background: var(--white);
  color: var(--charcoal);
}

.site-header .button--secondary {
  background: var(--charcoal);
  color: var(--white);
}

.site-header .button--secondary:hover {
  background: var(--graphite);
}

.site-header .button:focus-visible,
.site-header .navigation a:focus-visible,
.site-header .menu-toggle:focus-visible {
  outline-color: rgba(255, 255, 255, 0.9);
}

.button--secondary .button__arrow {
  display: none;
}

.button--ghost {
  border-color: rgba(255, 107, 0, 0.45);
  background: transparent;
  color: inherit;
}

.button--ghost:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
}

.hero {
  position: relative;
  min-height: 880px;
  overflow: hidden;
  padding: 175px 0 90px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 92px 92px,
    var(--charcoal);
  color: var(--white);
}

.hero::before {
  position: absolute;
  top: -280px;
  left: -180px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.16);
  content: "";
  filter: blur(120px);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 32%;
  height: 9px;
  background: var(--orange);
  content: "";
}

.hero__orb {
  position: absolute;
  border: 1px solid rgba(255, 107, 0, 0.18);
  border-radius: 50%;
}

.hero__orb--one {
  top: 90px;
  right: -290px;
  width: 760px;
  height: 760px;
}

.hero__orb--two {
  right: -60px;
  bottom: -340px;
  width: 590px;
  height: 590px;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 74px;
}

.hero__content {
  max-width: 760px;
}

.hero .eyebrow {
  max-width: 620px;
  color: var(--orange-soft);
}

.hero .hero__specialty {
  width: fit-content;
  max-width: 100%;
  padding: 10px 15px;
  border: 1px solid rgba(255, 107, 0, 0.38);
  border-radius: 999px;
  background: rgba(255, 107, 0, 0.1);
  color: #ffc49b;
  letter-spacing: 0.11em;
}

.hero .hero__specialty span {
  width: 8px;
  height: 8px;
  flex-basis: 8px;
  border-radius: 50%;
  background: var(--orange);
}


.hero h1 {
  margin-bottom: 30px;
  font-size: clamp(4.1rem, 7.2vw, 7.3rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.hero h1 em,
.inner-hero h1 em {
  color: var(--orange);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.hero__lead {
  max-width: 680px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.08rem;
  line-height: 1.74;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero__actions .button--ghost:hover {
  color: var(--orange-soft);
}

.hero__visual {
  position: relative;
  width: 100%;
  max-width: 500px;
  justify-self: end;
}

.hero__image-wrap {
  position: relative;
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 240px 240px 28px 28px;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.42);
}

.hero__image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 23, 23, 0.02), rgba(23, 23, 23, 0.62));
  content: "";
}

.hero__image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(0.8) contrast(1.04);
}

.section-title {
  max-width: 850px;
}

.section-title h2 {
  margin-bottom: 25px;
}

.section-title__copy {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.78;
}

.section-title--center {
  margin-inline: auto;
  text-align: center;
}

.section-title--center .eyebrow {
  justify-content: center;
}

.section-title--inverse h2 {
  color: var(--white);
}

.section-title--inverse .section-title__copy {
  color: rgba(255, 255, 255, 0.58);
}

.services {
  background: var(--paper);
}

.services__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 68px;
}

.services__heading .section-title {
  max-width: 900px;
}

.services__heading .button {
  flex: 0 0 auto;
  margin-bottom: 5px;
}

.services__grid,
.service-catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 350px;
  flex-direction: column;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.64);
  transition: color 260ms ease, transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.service-card::before {
  position: absolute;
  right: -75px;
  bottom: -125px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 107, 0, 0.32);
  border-radius: 50%;
  content: "";
  transition: transform 320ms ease;
}

.service-card::after {
  position: absolute;
  right: 30px;
  bottom: 28px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.service-card:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
  box-shadow: 0 24px 62px rgba(23, 23, 23, 0.18);
  color: var(--white);
  transform: translateY(-8px);
}

.service-card:focus-visible {
  border-color: var(--charcoal);
  background: var(--charcoal);
  box-shadow: 0 24px 62px rgba(23, 23, 23, 0.18);
  color: var(--white);
  transform: translateY(-5px);
}

.service-card:hover::before {
  transform: scale(1.28);
}

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 82px;
}

.service-card__number {
  color: var(--orange-dark);
  font-size: 0.73rem;
  font-weight: 820;
  letter-spacing: 0.14em;
}

.service-card__mark {
  color: var(--orange);
  font-size: 2rem;
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: 1.62rem;
  line-height: 1.04;
}

.service-card p {
  max-width: 92%;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.68;
  transition: color 260ms ease;
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.6);
}

.service-card:focus-visible p {
  color: rgba(255, 255, 255, 0.68);
}

.service-card__link {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 28px;
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-card__link > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.13);
  font-size: 0.9rem;
  transition: background 220ms ease, transform 220ms ease;
}

.service-card:hover .service-card__link,
.service-card:focus-visible .service-card__link {
  color: var(--orange);
}

.service-card:hover .service-card__link > span,
.service-card:focus-visible .service-card__link > span {
  background: rgba(255, 107, 0, 0.22);
  transform: translate(2px, -2px);
}

.about {
  background: var(--white);
}

.about__grid,
.story__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 92px;
}

.about__visual,
.story__image {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.about__visual::before,
.story__image::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(23, 23, 23, 0.38));
  content: "";
  pointer-events: none;
}

.about__visual img,
.story__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__stamp {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  min-width: 250px;
  grid-template-columns: 40px 1fr;
  gap: 8px 14px;
  padding: 24px 28px;
  border-radius: 28px 0 0;
  background: var(--orange);
  color: var(--charcoal);
}

.about__stamp strong {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.about__stamp span {
  font-size: 0.77rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about__advantages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 28px;
  margin: 38px 0;
}

.about__advantages p {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 670;
  line-height: 1.4;
}

.about__advantages span {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.14);
  color: var(--orange-dark);
}

.pillars {
  position: relative;
  overflow: hidden;
  background: var(--orange);
}

.pillars::before {
  position: absolute;
  top: -310px;
  right: -230px;
  width: 740px;
  height: 740px;
  border: 1px solid rgba(23, 23, 23, 0.18);
  border-radius: 50%;
  content: "";
}

.pillars .eyebrow {
  color: var(--charcoal);
}

.pillars__heading {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 64px;
}

.pillars__heading .section-title__copy {
  color: rgba(23, 23, 23, 0.7);
}

.pillars__monogram {
  color: transparent;
  font-size: clamp(5rem, 11vw, 10rem);
  font-weight: 850;
  letter-spacing: -0.09em;
  line-height: 0.68;
  -webkit-text-stroke: 1px rgba(23, 23, 23, 0.32);
}

.pillars__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.pillars__grid article {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid rgba(23, 23, 23, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.16);
  transition: background 220ms ease, transform 220ms ease;
}

.pillars__grid article:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-6px);
}

.pillars__letter {
  font-family: var(--font-display);
  font-size: 7.4rem;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.pillars__index {
  display: block;
  margin-bottom: 18px;
  color: rgba(23, 23, 23, 0.48);
  font-size: 0.7rem;
  font-weight: 800;
}

.pillars__grid article:hover .pillars__index {
  color: var(--orange);
}

.pillars__grid h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.pillars__grid p {
  margin: 0;
  color: rgba(23, 23, 23, 0.68);
  font-size: 0.88rem;
  line-height: 1.65;
}

.pillars__grid article:hover p {
  color: rgba(255, 255, 255, 0.6);
}

.expertise {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
}

.expertise::before {
  position: absolute;
  top: -280px;
  right: -200px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(255, 107, 0, 0.16);
  border-radius: 50%;
  content: "";
}

.expertise__layout {
  position: relative;
}

.expertise__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 58px;
}

.expertise__regimes {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
  max-width: 470px;
}

.expertise__regimes > span {
  width: 100%;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.expertise__regimes strong {
  padding: 9px 13px;
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.73rem;
  font-weight: 600;
}

.expertise__sectors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 42px;
  border-top: var(--line-inverse) solid 1px;
}

.expertise__sector {
  display: grid;
  min-height: 128px;
  grid-template-columns: 56px 1fr 30px;
  align-items: center;
  gap: 18px;
  padding: 24px 8px;
  border-bottom: var(--line-inverse) solid 1px;
  transition: padding 180ms ease, background 180ms ease;
}

.expertise__sector:hover,
.expertise__sector:focus-visible {
  padding-right: 18px;
  padding-left: 18px;
  background: rgba(255, 107, 0, 0.06);
}

.expertise__sector:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.expertise__sector > span:first-child {
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 800;
}

.expertise__sectors h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.expertise__sectors p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.86rem;
  line-height: 1.55;
}

.expertise__arrow {
  color: var(--orange);
  font-size: 1.25rem;
}

.expertise__action {
  display: flex;
  justify-content: flex-end;
  margin-top: 38px;
}

.expertise__action .button {
  color: var(--white);
}

.expertise__action .button:hover {
  color: var(--orange-soft);
}

.tax-callout {
  background: var(--white);
}

.recognition {
  position: relative;
  overflow: hidden;
  background: var(--paper-deep);
}

.recognition::before {
  position: absolute;
  top: -260px;
  right: -220px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(255, 107, 0, 0.24);
  border-radius: 50%;
  content: "";
}

.recognition__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 110px;
}

.recognition__content h2 {
  margin-bottom: 26px;
}

.recognition__lead {
  max-width: 690px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.05rem;
}

.recognition__criteria {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 34px;
}

.recognition__criteria span {
  position: relative;
  padding: 15px 16px 15px 38px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
  font-weight: 680;
}

.recognition__criteria span::before {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
  transform: translateY(-50%);
}

.recognition__content > small {
  display: block;
  max-width: 650px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.55;
}

.recognition__badge {
  position: relative;
  display: grid;
  width: min(100%, 430px);
  aspect-ratio: 1;
  justify-self: end;
  place-content: center;
  border: 18px solid var(--orange);
  border-radius: 50%;
  background: var(--white);
  box-shadow:
    0 0 0 10px var(--charcoal),
    0 0 0 12px rgba(255, 255, 255, 0.6),
    0 34px 80px rgba(23, 23, 23, 0.2);
  text-align: center;
}

.recognition__badge::before,
.recognition__badge::after {
  position: absolute;
  top: 50%;
  width: 56px;
  height: 14px;
  background: var(--orange);
  content: "";
}

.recognition__badge::before {
  left: -40px;
}

.recognition__badge::after {
  right: -40px;
}

.recognition__badge strong {
  color: var(--charcoal);
  font-size: clamp(6rem, 10vw, 9rem);
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.recognition__badge-top,
.recognition__badge-bottom {
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.recognition__badge-top {
  margin-bottom: 18px;
  color: var(--orange-dark);
}

.recognition__badge-bottom {
  margin-top: 18px;
  color: var(--muted);
}

.careers {
  background: var(--paper);
}

.careers__card {
  position: relative;
  display: grid;
  min-height: 560px;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 107, 0, 0.22), transparent 25%),
    var(--charcoal);
  color: var(--white);
}

.careers__card::after {
  position: absolute;
  right: -220px;
  bottom: -420px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(255, 107, 0, 0.24);
  border-radius: 50%;
  content: "";
}

.careers__number {
  justify-self: center;
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(15rem, 30vw, 26rem);
  font-weight: 400;
  line-height: 0.7;
  -webkit-text-stroke: 1px rgba(255, 107, 0, 0.48);
}

.careers__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 70px 72px 70px 20px;
}

.careers__content h2 {
  margin-bottom: 28px;
}

.careers__content > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.98rem;
  line-height: 1.75;
}

.careers__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.careers__actions > a:not(.button) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
  font-weight: 700;
}

.careers__actions > a:not(.button):hover {
  color: var(--orange);
}

.careers__content > small {
  display: block;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.7rem;
}

.tax-callout__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  gap: 90px;
}

.tax-callout .button {
  margin-top: 36px;
}

.tax-callout__panel {
  position: relative;
  overflow: hidden;
  padding: 52px;
  border-radius: var(--radius-xl);
  background: var(--orange);
}

.tax-callout__panel::after {
  position: absolute;
  right: -150px;
  bottom: -210px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(23, 23, 23, 0.2);
  border-radius: 50%;
  content: "";
}

.tax-callout__panel > p {
  margin-bottom: 42px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tax-callout__panel ol {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(23, 23, 23, 0.24);
  list-style: none;
}

.tax-callout__panel li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 12px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(23, 23, 23, 0.24);
  font-size: 1.12rem;
  font-weight: 680;
}

.tax-callout__panel li span {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.partners {
  background: var(--paper-deep);
}

.partners__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 88px;
}

.partners .button {
  margin-top: 36px;
}

.partners__panel {
  position: relative;
  overflow: hidden;
  padding: 48px;
  border-radius: var(--radius-xl);
  background: var(--charcoal);
  color: var(--white);
}

.partners__panel::after {
  position: absolute;
  right: -130px;
  bottom: -160px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(255, 107, 0, 0.28);
  border-radius: 50%;
  content: "";
}

.partners__panel > p {
  margin-bottom: 30px;
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.partners__areas {
  position: relative;
  z-index: 1;
  border-top: var(--line-inverse) solid 1px;
}

.partners__areas span {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  padding: 20px 0;
  border-bottom: var(--line-inverse) solid 1px;
  font-size: 1.06rem;
  font-weight: 670;
}

.partners__areas small {
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 800;
}

.partners__panel > small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.7rem;
}

.faq-section {
  background: var(--paper);
}

.faq-section__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 48px 1fr 26px;
  align-items: center;
  gap: 8px;
  padding: 25px 0;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 690;
  line-height: 1.35;
  list-style: none;
}

.faq-list summary::after {
  color: var(--orange-dark);
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--orange-dark);
  font-size: 0.69rem;
  font-weight: 820;
}

.faq-list details > p {
  max-width: 760px;
  margin: -2px 40px 28px 48px;
  color: var(--muted);
  line-height: 1.76;
  animation: faq-in 220ms ease both;
}

.contact {
  padding: 120px 0;
  background: var(--orange);
}

.contact__card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--charcoal);
  box-shadow: 0 34px 90px rgba(23, 23, 23, 0.28);
  color: var(--white);
}

.contact__image {
  position: relative;
  min-height: 570px;
}

.contact__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 48%, var(--charcoal));
  content: "";
}

.contact__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75);
}

.contact__content {
  align-self: center;
  padding: 72px 72px 72px 40px;
}

.contact__content h2 {
  margin-bottom: 26px;
  font-size: clamp(2.8rem, 4.6vw, 4.8rem);
}

.contact__content > p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.contact__actions .button--ghost:hover {
  color: var(--orange-soft);
}

.contact__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: var(--line-inverse) solid 1px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.76rem;
}

.contact__meta a:hover {
  color: var(--white);
}

.footer {
  padding: 86px 0 30px;
  background: var(--charcoal);
  color: var(--white);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 68px;
}

.footer__brand img {
  width: 116px;
  height: auto;
  margin-bottom: 22px;
}

.footer__brand p {
  max-width: 355px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer__label {
  margin: 15px 0 24px;
  color: var(--orange);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 13px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__social {
  display: flex;
  gap: 9px;
}

.footer__social a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: var(--line-inverse) solid 1px;
  border-radius: 50%;
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 820;
  transition: background 180ms ease, color 180ms ease;
}

.footer__social a:hover {
  background: var(--orange);
  color: var(--charcoal);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 25px;
  border-top: var(--line-inverse) solid 1px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.72rem;
}

.footer__bottom p {
  margin: 0;
}

.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 210px 0 122px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 92px 92px,
    var(--charcoal);
  color: var(--white);
}

.inner-hero::before {
  position: absolute;
  top: -340px;
  right: -130px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.12);
  content: "";
  filter: blur(110px);
}

.inner-hero::after {
  position: absolute;
  right: -180px;
  bottom: -420px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(255, 107, 0, 0.19);
  border-radius: 50%;
  content: "";
}

.inner-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  align-items: end;
  gap: 88px;
}

.inner-hero h1 {
  font-size: clamp(3.9rem, 7vw, 7.1rem);
  font-weight: 700;
}

.inner-hero__grid > div:last-child > p,
.inner-hero__grid > p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.05rem;
  line-height: 1.72;
}

.inner-hero .button {
  margin-top: 22px;
}

.story {
  background: var(--white);
}

.story__content h2 {
  margin-bottom: 28px;
}

.story__content > p:not(.eyebrow) {
  color: var(--muted);
}

.working-method {
  background: var(--charcoal);
  color: var(--white);
}

.working-method__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 100px;
}

.working-method__intro {
  position: sticky;
  top: 140px;
  align-self: start;
}

.working-method__intro h2 {
  margin-bottom: 25px;
}

.working-method__intro > p:not(.eyebrow) {
  max-width: 530px;
  color: rgba(255, 255, 255, 0.54);
}

.working-method__steps {
  margin: 0;
  padding: 0;
  border-top: var(--line-inverse) solid 1px;
  list-style: none;
}

.working-method__steps li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 25px;
  padding: 34px 0;
  border-bottom: var(--line-inverse) solid 1px;
}

.working-method__steps > li > span {
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.12em;
}

.working-method__steps h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.working-method__steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.9rem;
}

.commitments {
  background: var(--paper);
}

.commitments__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.commitments__heading h2 {
  max-width: 850px;
}

.commitments__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.commitments article {
  min-height: 350px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.56);
}

.commitments article:nth-child(2) {
  background: var(--orange);
}

.commitments article > span {
  display: block;
  margin-bottom: 105px;
  color: var(--orange-dark);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.commitments article:nth-child(2) > span {
  color: var(--charcoal);
}

.commitments h3 {
  margin-bottom: 16px;
  font-size: 1.8rem;
  line-height: 1.08;
}

.commitments p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.commitments article:nth-child(2) p {
  color: rgba(23, 23, 23, 0.68);
}

.service-catalog {
  background: var(--paper);
}

.service-catalog__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 64px;
}

.service-catalog__heading h2 {
  max-width: 920px;
}

.service-card--detailed {
  min-height: 420px;
}

.service-card--detailed .service-card__top {
  margin-bottom: 62px;
}

.service-archive {
  background: var(--white);
}

.service-archive__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding-top: 42px;
  padding-bottom: 42px;
}

.service-archive__nav a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 670;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.service-archive__nav a:hover {
  border-color: var(--orange);
  background: rgba(255, 107, 0, 0.06);
  color: var(--orange-dark);
}

.service-detail {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.service-detail:nth-of-type(even) {
  background: var(--paper);
}

.service-detail__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 92px;
}

.service-detail__header {
  position: sticky;
  top: 125px;
  align-self: start;
}

.service-detail__header h2 {
  margin-bottom: 25px;
  font-size: clamp(2.6rem, 4.3vw, 4.5rem);
}

.service-detail__header > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.98rem;
}

.service-detail__header .button {
  margin-top: 18px;
}

.service-copy {
  padding: 0 0 52px;
  border-bottom: 1px solid var(--line);
}

.service-copy + .service-copy {
  padding-top: 52px;
}

.service-copy h3,
.service-faq h3 {
  margin-bottom: 24px;
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  line-height: 1.12;
}

.service-copy p,
.service-copy li {
  color: var(--muted);
  line-height: 1.76;
}

.service-copy__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.service-copy__items li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.service-faq {
  padding-top: 60px;
}

.service-faq > .eyebrow {
  margin-bottom: 17px;
}

.service-faq > h3 {
  margin-bottom: 32px;
}

.service-detail__index {
  position: absolute;
  right: 2vw;
  bottom: 22px;
  color: rgba(255, 107, 0, 0.1);
  font-size: clamp(7rem, 14vw, 14rem);
  font-weight: 850;
  line-height: 0.72;
  pointer-events: none;
}

.hero-entrance {
  opacity: 0;
  animation: hero-enter 720ms cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease var(--reveal-delay, 0ms), transform 620ms cubic-bezier(0.2, 0.75, 0.25, 1) var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.page-transition {
  animation: page-in 460ms ease both;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes page-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes faq-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  .site-header__inner {
    grid-template-columns: 130px 1fr auto;
  }

  .navigation {
    gap: 23px;
  }

  .site-header__action .button {
    padding-inline: 16px;
  }

  .hero__grid {
    grid-template-columns: 1fr 0.78fr;
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(4rem, 7vw, 6rem);
  }

  .services__grid,
  .service-catalog__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillars__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillars__grid article {
    min-height: 380px;
  }

  .tax-callout__grid,
  .recognition__grid,
  .partners__grid,
  .working-method__grid,
  .service-detail__grid {
    gap: 60px;
  }

  .footer__grid {
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: 35px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 100px 0;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .site-header__action {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    background: transparent;
    place-content: center;
    gap: 6px;
  }

  .menu-toggle span {
    width: 18px;
    height: 1px;
    background: var(--white);
    transition: transform 180ms ease;
  }

  .menu-toggle--open span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle--open span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .navigation {
    position: fixed;
    top: 76px;
    right: 20px;
    left: 20px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 18px;
    background: rgba(255, 107, 0, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .navigation--open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .navigation a {
    padding: 15px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .navigation a:last-child {
    border-bottom: 0;
  }

  .hero {
    padding-top: 150px;
  }

  .hero__grid,
  .about__grid,
  .story__grid,
  .tax-callout__grid,
  .recognition__grid,
  .partners__grid,
  .faq-section__grid,
  .contact__card,
  .inner-hero__grid,
  .working-method__grid,
  .service-detail__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid,
  .about__grid,
  .story__grid,
  .tax-callout__grid,
  .recognition__grid {
    gap: 64px;
  }

  .recognition__badge {
    justify-self: center;
  }

  .careers__card {
    min-height: auto;
    grid-template-columns: 0.45fr 1.55fr;
  }

  .careers__content {
    padding: 60px 48px 60px 0;
  }

  .hero__visual {
    width: min(100%, 600px);
    max-width: none;
    justify-self: center;
  }

  .hero__image-wrap {
    min-height: 620px;
  }

  .about__visual,
  .story__image {
    min-height: 560px;
  }

  .working-method__intro,
  .service-detail__header {
    position: static;
  }

  .working-method__grid,
  .service-detail__grid,
  .faq-section__grid {
    gap: 52px;
  }

  .expertise__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .expertise__regimes {
    justify-content: flex-start;
  }

  .expertise__sectors {
    grid-template-columns: 1fr;
  }

  .expertise__sector:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .expertise__action {
    justify-content: flex-start;
  }

  .contact__image {
    min-height: 390px;
  }

  .contact__image::after {
    background: linear-gradient(180deg, transparent 50%, var(--charcoal));
  }

  .contact__content {
    padding: 12px 48px 58px;
  }

  .inner-hero__grid {
    gap: 42px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 82px 0;
  }

  h2 {
    font-size: clamp(2.45rem, 12vw, 3.8rem);
  }

  .site-header__inner {
    min-height: 76px;
  }

  .brand {
    width: 92px;
  }

  .hero {
    min-height: auto;
    padding: 130px 0 76px;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 17vw, 5rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero .hero__specialty {
    border-radius: 18px;
    font-size: 0.64rem;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__image-wrap {
    min-height: 480px;
    border-radius: 210px 210px 24px 24px;
  }

  .services__heading,
  .pillars__heading,
  .service-catalog__heading,
  .commitments__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .pillars__monogram {
    display: none;
  }

  .services__grid,
  .service-catalog__grid,
  .pillars__grid,
  .about__advantages,
  .commitments__grid,
  .service-copy__items {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 330px;
  }

  .pillars__grid article {
    min-height: 350px;
  }

  .pillars__letter {
    font-size: 6rem;
  }

  .about__visual,
  .story__image {
    min-height: 450px;
  }

  .about__stamp {
    min-width: 220px;
    padding: 20px 22px;
  }

  .expertise__sector {
    grid-template-columns: 36px 1fr 22px;
    gap: 12px;
  }

  .expertise__sectors h3 {
    font-size: 1.2rem;
  }

  .expertise__action .button {
    width: 100%;
  }

  .tax-callout__panel {
    padding: 34px 26px;
  }

  .partners__panel {
    padding: 34px 26px;
  }

  .recognition__criteria {
    grid-template-columns: 1fr;
  }

  .recognition__badge {
    width: min(88vw, 360px);
    border-width: 14px;
  }

  .recognition__badge::before,
  .recognition__badge::after {
    width: 40px;
  }

  .recognition__badge::before {
    left: -28px;
  }

  .recognition__badge::after {
    right: -28px;
  }

  .careers__card {
    display: block;
    min-height: 560px;
  }

  .careers__number {
    position: absolute;
    top: 40px;
    left: 24px;
    font-size: 13rem;
  }

  .careers__content {
    padding: 210px 26px 46px;
  }

  .careers__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .tax-callout__panel li {
    font-size: 1rem;
  }

  .faq-list summary {
    grid-template-columns: 36px 1fr 22px;
    font-size: 0.94rem;
  }

  .faq-list details > p {
    margin-right: 0;
    margin-left: 36px;
  }

  .contact {
    padding: 74px 0;
  }

  .contact__card {
    border-radius: var(--radius-lg);
  }

  .contact__image {
    min-height: 300px;
  }

  .contact__content {
    padding: 8px 26px 38px;
  }

  .contact__actions .button {
    width: 100%;
  }

  .inner-hero {
    padding: 165px 0 90px;
  }

  .inner-hero h1 {
    font-size: clamp(3.45rem, 16vw, 5rem);
  }

  .working-method__steps li {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .commitments article {
    min-height: 310px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  body.menu-open {
    overflow: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal],
  .hero-entrance {
    opacity: 1;
    transform: none;
  }
}
