:root {
  --navy: #07111f;
  --navy-soft: #0d1d31;
  --ink: #101820;
  --muted: #5b6570;
  --paper: #f4f5f3;
  --white: #ffffff;
  --accent: #f2a51a;
  --accent-dark: #c27b00;
  --line: rgba(16, 24, 32, 0.18);
  --shell: min(1380px, calc(100vw - 96px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--navy);
  background: var(--white);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: clamp(88px, 10vw, 160px);
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 88px;
  align-items: center;
  justify-content: space-between;
  padding-inline: 48px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  transition: background-color 280ms ease, height 280ms ease, border-color 280ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(7, 17, 31, 0.96);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  width: 154px;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 42px);
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 10px;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.site-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.lang-link {
  opacity: 0.7;
}

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 22px;
  color: var(--navy);
  background: var(--white);
  transition: color 180ms ease, background-color 180ms ease;
}

.nav-cta:hover {
  color: var(--white);
  background: var(--accent);
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  position: absolute;
  left: 8px;
  width: 28px;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease, top 220ms ease;
}

.menu-toggle > span:first-child {
  top: 17px;
}

.menu-toggle > span:nth-child(2) {
  top: 27px;
}

.menu-toggle[aria-expanded="true"] > span:first-child {
  top: 22px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  top: 22px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  transform: scale(1.02);
  animation: hero-in 1.8s var(--ease) both;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 12, 23, 0.9) 0%, rgba(4, 12, 23, 0.64) 46%, rgba(4, 12, 23, 0.1) 100%),
    linear-gradient(0deg, rgba(4, 12, 23, 0.62) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  padding-top: 140px;
  padding-bottom: 120px;
}

.hero-eyebrow {
  color: var(--accent);
  animation: text-in 800ms 160ms var(--ease) both;
}

.hero h1 {
  max-width: 1180px;
  margin: 0;
  font-size: clamp(4rem, 9.5vw, 9.4rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.88;
  text-wrap: balance;
  animation: text-in 900ms 240ms var(--ease) both;
}

.hero-intro {
  max-width: 740px;
  margin: 42px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 1.55vw, 1.4rem);
  line-height: 1.55;
  animation: text-in 900ms 340ms var(--ease) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
  animation: text-in 900ms 440ms var(--ease) both;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 800;
  transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

.button-primary {
  color: var(--navy);
  background: var(--accent);
}

.button-primary:hover {
  background: #ffc149;
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(7, 17, 31, 0.18);
}

.button-ghost:hover {
  color: var(--navy);
  background: var(--white);
}

.button-whatsapp {
  color: var(--white);
  background: #128c7e;
  border-color: #128c7e;
}

.button-whatsapp:hover {
  color: #075e54;
  background: var(--white);
  border-color: var(--white);
}

.whatsapp-float {
  position: fixed;
  z-index: 95;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 7px 18px 7px 7px;
  color: var(--white);
  background: #128c7e;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  box-shadow: 0 14px 38px rgba(7, 17, 31, 0.26);
  transition: background-color 180ms ease, transform 180ms var(--ease);
}

.whatsapp-float:hover {
  background: #075e54;
  transform: translateY(-3px);
}

.whatsapp-float span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #075e54;
  background: var(--white);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.whatsapp-float b {
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 48px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.scroll-cue i::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 1px;
  height: 100%;
  background: var(--white);
  content: "";
  animation: scroll-line 2s ease-in-out infinite;
}

.proof-strip {
  color: var(--white);
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

.proof-grid > div {
  display: flex;
  min-height: 136px;
  align-items: center;
  gap: 22px;
  padding: 30px 38px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-grid strong {
  color: var(--accent);
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.proof-grid span {
  max-width: 180px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 72px;
  align-items: end;
  margin-bottom: clamp(70px, 8vw, 124px);
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.profile h2,
.contact h2 {
  margin: 0;
  font-size: clamp(3rem, 5.6vw, 6.1rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.97;
}

.section-heading > p:last-child {
  max-width: 580px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.65;
}

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

.service {
  min-height: 380px;
  padding: 32px clamp(28px, 3.2vw, 52px) 42px 0;
  border-right: 1px solid var(--line);
}

.service + .service {
  padding-left: clamp(28px, 3.2vw, 52px);
}

.service:last-child {
  padding-right: 0;
  border-right: 0;
}

.service-index {
  display: block;
  margin-bottom: 84px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service h3 {
  margin: 0 0 22px;
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.service p {
  min-height: 84px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.service a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.service a span,
.text-link span {
  transition: transform 220ms var(--ease);
}

.service a:hover span,
.text-link:hover span {
  transform: translate(3px, -3px);
}

.capabilities {
  margin: 90px 0 0;
  padding-top: 28px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: clamp(1rem, 1.7vw, 1.3rem);
  font-weight: 700;
  line-height: 1.8;
}

.capabilities span {
  margin-inline: 8px;
  color: var(--accent-dark);
}

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

.section-heading-light > p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.case-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: repeat(2, minmax(360px, 1fr));
  gap: 16px;
}

.case {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--navy-soft);
}

.case-wide {
  grid-row: 1 / 3;
}

.case picture,
.case img,
.case-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.case picture {
  display: block;
}

.case img {
  object-fit: cover;
  transition: transform 800ms var(--ease), filter 500ms ease;
}

.case:hover img {
  filter: saturate(0.85) contrast(1.05);
  transform: scale(1.035);
}

.case-shade {
  background: linear-gradient(0deg, rgba(4, 12, 23, 0.92), rgba(4, 12, 23, 0.05) 74%);
}

.case-content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(28px, 4.5vw, 64px);
}

.case-content p {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-content strong {
  display: block;
  margin-bottom: 16px;
  font-size: clamp(3.2rem, 6vw, 7.8rem);
  letter-spacing: -0.065em;
  line-height: 0.85;
}

.case-content h3 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.case:not(.case-wide) .case-content {
  padding: clamp(26px, 3vw, 42px);
}

.case:not(.case-wide) .case-content strong {
  font-size: clamp(2.8rem, 4vw, 5.4rem);
}

.case:not(.case-wide) .case-content h3 {
  font-size: clamp(1.1rem, 1.55vw, 1.5rem);
}

.case-typographic {
  background:
    linear-gradient(135deg, rgba(242, 165, 26, 0.13), transparent 58%),
    var(--navy-soft);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.case-typographic::before {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 64px;
  height: 64px;
  border-top: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
  content: "";
}

.references .text-link {
  margin-top: 46px;
}

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

.profile {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(60px, 10vw, 180px);
  align-items: start;
}

.profile-kicker {
  position: sticky;
  top: 130px;
}

.profile-kicker > span,
.profile-kicker > .profile-portrait {
  display: grid;
  width: clamp(180px, 20vw, 290px);
  aspect-ratio: 1;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.08em;
}

.profile-portrait {
  overflow: hidden;
  background: var(--navy-soft);
}

.profile-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-kicker p {
  max-width: 290px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-copy {
  max-width: 850px;
}

.profile-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 48px 0 36px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.7;
}

.contact {
  color: var(--white);
  background: var(--accent);
}

.contact .eyebrow {
  color: rgba(7, 17, 31, 0.68);
}

.contact-inner {
  color: var(--navy);
}

.contact-inner h2 {
  max-width: 1120px;
}

.contact-inner > p:not(.eyebrow) {
  max-width: 660px;
  margin: 42px 0 0;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 34px;
  margin-top: 44px;
}

.button-light {
  color: var(--white);
  background: var(--navy);
}

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

.contact-phone {
  padding-block: 7px;
  border-bottom: 1px solid rgba(7, 17, 31, 0.5);
  font-weight: 800;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  padding-block: 64px;
  align-items: end;
}

.footer-brand {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.footer-grid > p {
  max-width: 420px;
  margin: 0;
  justify-self: end;
  text-align: right;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 0.88rem;
}

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

.footer-grid small {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

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

@keyframes hero-in {
  from {
    opacity: 0.5;
    transform: scale(1.08);
  }
}

@keyframes text-in {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
}

@keyframes scroll-line {
  0% {
    transform: translateY(0);
  }
  60%,
  100% {
    transform: translateY(200%);
  }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 48px, 780px);
  }

  .site-header {
    height: 74px;
    padding-inline: 24px;
  }

  .site-header.is-scrolled {
    height: 66px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 92px 36px 40px;
    background: var(--navy);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-16px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .site-nav > a {
    font-size: clamp(2rem, 8vw, 4rem);
    letter-spacing: -0.04em;
  }

  .site-nav > .lang-link {
    margin-top: 24px;
    font-size: 1rem;
    letter-spacing: 0.1em;
  }

  .site-nav > .nav-cta {
    min-height: 54px;
    margin-top: 12px;
    padding-inline: 24px;
    font-size: 1rem;
    letter-spacing: 0;
  }

  .hero h1 {
    font-size: clamp(4rem, 15vw, 7.7rem);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 12, 23, 0.9) 0%, rgba(4, 12, 23, 0.52) 100%),
      linear-gradient(0deg, rgba(4, 12, 23, 0.68) 0%, transparent 50%);
  }

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

  .proof-grid > div {
    min-height: 108px;
    padding-inline: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .proof-grid > div:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .section-heading > p:last-child {
    max-width: 660px;
  }

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

  .service,
  .service + .service {
    min-height: auto;
    padding: 30px 0 48px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-index {
    margin-bottom: 46px;
  }

  .service p {
    min-height: 0;
  }

  .case-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 600px 430px 430px;
  }

  .case-wide {
    grid-row: auto;
  }

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

  .profile-kicker {
    position: static;
    display: flex;
    align-items: end;
    gap: 24px;
  }

  .profile-kicker > span,
  .profile-kicker > .profile-portrait {
    width: 170px;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100vw - 36px);
  }

  .section {
    padding-block: 84px;
  }

  .brand {
    width: 116px;
  }

  .hero-content {
    justify-content: flex-end;
    padding-top: 120px;
    padding-bottom: 96px;
  }

  .hero-media {
    transform-origin: 60% center;
  }

  .hero-media img {
    object-position: 60% center;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 18vw, 6.2rem);
    line-height: 0.9;
  }

  .hero-intro {
    margin-top: 30px;
    font-size: 1.02rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 30px;
  }

  .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading h2,
  .profile h2,
  .contact h2 {
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

  .capabilities {
    margin-top: 62px;
  }

  .case-grid {
    grid-template-rows: 510px 410px 410px;
  }

  .case-content,
  .case:not(.case-wide) .case-content {
    padding: 26px 22px;
  }

  .case-content strong,
  .case:not(.case-wide) .case-content strong {
    font-size: 3.2rem;
  }

  .case-content h3,
  .case:not(.case-wide) .case-content h3 {
    font-size: 1.15rem;
  }

  .profile-kicker {
    display: block;
  }

  .profile-kicker > span,
  .profile-kicker > .profile-portrait {
    width: 140px;
  }

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

  .contact-phone {
    align-self: center;
  }

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

  .footer-grid > p,
  .footer-grid small {
    justify-self: start;
    text-align: left;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@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;
  }

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

/* Interior pages */

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

.inner-page .site-header {
  background: rgba(7, 17, 31, 0.96);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 72svh;
  align-items: end;
  overflow: hidden;
  padding: 180px 0 96px;
  color: var(--white);
  background: var(--navy);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(242, 165, 26, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 45%);
  content: "";
}

.page-hero.has-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 12, 23, 0.95), rgba(4, 12, 23, 0.45));
  content: "";
}

.page-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 46px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.page-hero h1 {
  max-width: 1150px;
  margin: 0;
  font-size: clamp(4rem, 8vw, 8.6rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-wrap: balance;
}

.page-hero-lede {
  max-width: 800px;
  margin: 40px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  line-height: 1.55;
}

.page-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.page-hero-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(48px, 9vw, 150px);
  align-items: start;
}

.intro-grid h2,
.editorial-heading h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.intro-copy {
  max-width: 800px;
}

.intro-copy > p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
  line-height: 1.75;
}

.intro-copy > p:first-child {
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.55;
}

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

.editorial-heading {
  max-width: 920px;
  margin-bottom: clamp(58px, 8vw, 110px);
}

.editorial-heading > p:last-child {
  max-width: 720px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

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

.service-row {
  display: grid;
  grid-template-columns: 100px 0.85fr 1.2fr auto;
  gap: clamp(26px, 4vw, 70px);
  align-items: start;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.service-row-index {
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-row h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.service-row-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.service-row-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-row-copy li {
  padding: 6px 9px;
  color: var(--navy-soft);
  background: rgba(7, 17, 31, 0.06);
  font-size: 0.76rem;
  font-weight: 700;
}

.service-row-link {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  font-size: 1.15rem;
  transition: color 180ms ease, background-color 180ms ease;
}

.service-row-link:hover {
  color: var(--white);
  background: var(--navy);
}

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

.intervention-card {
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.intervention-card-media {
  display: block;
  height: clamp(260px, 30vw, 430px);
  overflow: hidden;
  background: var(--navy-soft);
}

.intervention-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 400ms ease;
}

.intervention-card:hover .intervention-card-media img {
  filter: saturate(0.9) contrast(1.04);
  transform: scale(1.025);
}

.intervention-card-copy {
  min-height: 300px;
  padding: clamp(30px, 4vw, 54px);
}

.intervention-card-copy > p {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.intervention-card-copy h3 {
  margin: 0 0 24px;
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.intervention-card-copy > div {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.02rem;
  line-height: 1.7;
}

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

.audience-card,
.delivery-card {
  min-height: 290px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
}

.audience-card span,
.delivery-card span {
  display: block;
  margin-bottom: 72px;
  color: var(--accent-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audience-card h3,
.delivery-card h3 {
  margin: 0 0 18px;
  font-size: 1.65rem;
  letter-spacing: -0.04em;
}

.audience-card p,
.delivery-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.dark-panel .editorial-heading > p:last-child,
.dark-panel .intro-copy > p {
  color: rgba(255, 255, 255, 0.7);
}

.dark-panel .delivery-card {
  background: var(--navy-soft);
  border-color: rgba(255, 255, 255, 0.13);
}

.dark-panel .delivery-card p {
  color: rgba(255, 255, 255, 0.68);
}

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

.reference-entry {
  display: grid;
  grid-template-columns: 150px 1.05fr 1fr;
  gap: clamp(34px, 6vw, 100px);
  padding: clamp(48px, 7vw, 92px) 0;
  border-bottom: 1px solid var(--line);
}

.reference-number {
  color: var(--accent-dark);
  font-size: clamp(3.4rem, 6vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.85;
}

.reference-main .eyebrow {
  margin-bottom: 18px;
}

.reference-main h2 {
  margin: 0 0 24px;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.reference-main > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.reference-detail h3 {
  margin: 0 0 16px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reference-detail ul,
.clean-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.reference-detail li,
.clean-list li {
  position: relative;
  padding: 11px 0 11px 20px;
  color: var(--muted);
  border-bottom: 1px solid rgba(16, 24, 32, 0.1);
  line-height: 1.5;
}

.reference-detail li::before,
.clean-list li::before {
  position: absolute;
  top: 19px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--accent);
  content: "";
}

.reference-list-rich {
  border-top: 0;
}

.reference-case {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 7vw, 112px);
  align-items: stretch;
  padding: clamp(72px, 9vw, 132px) 0;
  border-bottom: 1px solid var(--line);
}

.reference-case:first-child {
  padding-top: 0;
}

.reference-case:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.reference-case-reverse {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
}

.reference-case-reverse .reference-case-media {
  grid-column: 2;
}

.reference-case-reverse .reference-case-content {
  grid-column: 1;
  grid-row: 1;
}

.reference-case-media {
  min-height: 590px;
  overflow: hidden;
  background: var(--paper);
}

.reference-case-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.reference-case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reference-case-content {
  align-self: center;
}

.reference-case-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
}

.reference-case-heading > strong {
  color: var(--accent-dark);
  font-size: clamp(2.6rem, 5.5vw, 6.6rem);
  letter-spacing: -0.07em;
  line-height: 0.82;
}

.reference-case-heading .eyebrow {
  margin-bottom: 16px;
}

.reference-case-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.2vw, 4.8rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.reference-case-intro {
  margin: 38px 0 44px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.75;
}

.reference-case-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 54px);
}

.reference-case-lists h3 {
  margin: 0 0 14px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reference-case-lists ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.reference-case-lists li {
  position: relative;
  padding: 10px 0 10px 18px;
  color: var(--muted);
  border-bottom: 1px solid rgba(16, 24, 32, 0.1);
  font-size: 0.94rem;
  line-height: 1.55;
}

.reference-case-lists li::before {
  position: absolute;
  top: 18px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--accent);
  content: "";
}

.other-references {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(48px, 9vw, 150px);
}

.other-references h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-grid > div {
  min-height: 210px;
  padding: 38px;
  border-right: 1px solid var(--line);
}

.stat-grid > div:last-child {
  border-right: 0;
}

.stat-grid strong {
  display: block;
  margin-bottom: 22px;
  color: var(--accent-dark);
  font-size: clamp(3.5rem, 6vw, 7rem);
  letter-spacing: -0.07em;
  line-height: 0.85;
}

.stat-grid span {
  display: block;
  max-width: 260px;
  font-weight: 700;
  line-height: 1.4;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.principle {
  min-height: 260px;
  padding: clamp(30px, 4vw, 56px);
  background: var(--paper);
}

.principle h3 {
  margin: 0 0 22px;
  font-size: clamp(1.7rem, 2.7vw, 2.7rem);
  letter-spacing: -0.045em;
}

.principle p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.article-card {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 4vw, 54px);
  background: var(--white);
  border: 1px solid var(--line);
  transition: color 240ms ease, background-color 240ms ease, transform 240ms var(--ease);
}

.article-card:hover {
  color: var(--white);
  background: var(--navy);
  transform: translateY(-4px);
}

.article-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-card h2 {
  margin: 74px 0 24px;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.article-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.article-card:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.article-card-arrow {
  margin-top: 38px;
  font-size: 1.3rem;
}

.article-page .page-hero {
  min-height: 78svh;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.article-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 780px);
  gap: clamp(50px, 9vw, 150px);
  justify-content: center;
  align-items: start;
}

.article-aside {
  position: sticky;
  top: 120px;
}

.article-aside p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.article-aside a {
  display: block;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 700;
}

.article-body {
  font-size: 1.08rem;
  line-height: 1.78;
}

.article-visual {
  display: block;
  margin: 0 0 58px;
}

.article-picture {
  display: block;
  overflow: hidden;
  background: #d9dde0;
}

.article-picture img {
  width: 100%;
  height: auto;
}

.article-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.article-gallery .article-picture:first-child {
  grid-column: 1 / -1;
}

.article-gallery .article-picture:not(:first-child) img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.article-body .article-lead {
  margin: 0 0 64px;
  color: var(--ink);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.55;
}

.article-body h2 {
  margin: 84px 0 28px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.article-body h3 {
  margin: 44px 0 18px;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.article-body p {
  margin: 0 0 26px;
  color: #37414a;
}

.article-body ul,
.article-body ol {
  margin: 26px 0 34px;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 13px;
  padding-left: 8px;
  color: #37414a;
}

.article-callout {
  margin: 56px 0;
  padding: 34px;
  color: var(--white);
  background: var(--navy);
}

.article-callout strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-callout p {
  margin: 0;
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1.55;
}

.article-source-note {
  margin-top: 70px;
  padding-top: 26px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(60px, 10vw, 160px);
}

.contact-page-grid h2 {
  margin: 0 0 34px;
  font-size: clamp(3rem, 5vw, 5.6rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.contact-page-grid > div > p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

.contact-methods {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.contact-method {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-method span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-method strong {
  font-size: 1.05rem;
}

.contact-brief {
  padding: clamp(34px, 5vw, 58px);
  color: var(--white);
  background: var(--navy);
}

.contact-brief h3 {
  margin: 0 0 30px;
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.contact-brief ul {
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.contact-brief li {
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-brief .button {
  width: 100%;
}

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

.legal-section {
  padding: clamp(30px, 4vw, 54px);
  background: var(--white);
  border: 1px solid var(--line);
}

.legal-section-wide {
  grid-column: 1 / -1;
}

.legal-section h2 {
  margin: 0 0 28px;
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.legal-section p {
  max-width: 840px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section a {
  color: var(--ink);
  border-bottom: 1px solid currentColor;
}

.legal-facts {
  margin: 0;
}

.legal-facts div {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) 1.3fr;
  gap: 22px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.legal-facts dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.legal-facts dd {
  margin: 0;
  font-weight: 700;
}

.legacy-note {
  margin-bottom: 52px;
  padding: 22px 26px;
  color: #5f4913;
  background: rgba(242, 165, 26, 0.15);
  border-left: 4px solid var(--accent);
}

@media (max-width: 980px) {
  .page-hero {
    min-height: 62svh;
    padding-top: 150px;
  }

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

  .service-row {
    grid-template-columns: 64px 1fr auto;
  }

  .service-row-copy {
    grid-column: 2 / 4;
  }

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

  .reference-case,
  .reference-case-reverse {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .reference-case-reverse .reference-case-media,
  .reference-case-reverse .reference-case-content {
    grid-column: 1;
  }

  .reference-case-reverse .reference-case-media {
    grid-row: 1;
  }

  .reference-case-reverse .reference-case-content {
    grid-row: 2;
  }

  .reference-case-media {
    min-height: 480px;
  }

  .other-references {
    grid-template-columns: 1fr;
  }

  .reference-entry {
    grid-template-columns: 120px 1fr;
  }

  .reference-detail {
    grid-column: 2;
  }

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

  .article-body {
    max-width: 780px;
    margin-inline: auto;
  }

  .article-aside {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 24px;
  }

  .article-aside p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .page-hero {
    min-height: 70svh;
    padding: 128px 0 72px;
  }

  .page-hero h1 {
    font-size: clamp(3.7rem, 17vw, 6rem);
  }

  .page-hero-lede {
    margin-top: 28px;
    font-size: 1rem;
  }

  .breadcrumb {
    margin-bottom: 30px;
  }

  .service-row {
    grid-template-columns: 42px 1fr auto;
    gap: 18px;
  }

  .service-row-copy {
    grid-column: 1 / -1;
  }

  .audience-grid,
  .delivery-grid,
  .article-grid,
  .principles-grid {
    grid-template-columns: 1fr;
  }

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

  .intervention-card-media {
    height: 280px;
  }

  .intervention-card-copy {
    min-height: 0;
  }

  .reference-case {
    gap: 30px;
    padding: 78px 0;
  }

  .reference-case-media {
    min-height: 360px;
  }

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

  .reference-case-lists {
    grid-template-columns: 1fr;
  }

  .audience-card,
  .delivery-card {
    min-height: 240px;
  }

  .reference-entry {
    grid-template-columns: 1fr;
  }

  .reference-detail {
    grid-column: 1;
  }

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

  .stat-grid > div {
    min-height: 160px;
    padding-inline: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .article-card {
    min-height: 360px;
  }

  .article-aside {
    grid-template-columns: 1fr;
  }

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

  .legal-section-wide {
    grid-column: auto;
  }

  .legal-facts div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 52px;
    padding: 6px;
  }

  .whatsapp-float b {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .article-gallery {
    grid-template-columns: 1fr;
  }

  .article-gallery .article-picture:first-child {
    grid-column: auto;
  }

  .article-gallery .article-picture:not(:first-child) img {
    height: auto;
  }

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

  .contact-method span {
    grid-column: 1 / -1;
  }
}
