:root {
  --ink: #191915;
  --ink-soft: #292822;
  --ivory: #f4f0e7;
  --paper: #fbf9f4;
  --sand: #ddd3c1;
  --gold: #b89a62;
  --gold-light: #d6bd8b;
  --sage: #77796d;
  --white: #fff;
  --line: rgba(25, 25, 21, .14);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --display: "Manrope", Arial, sans-serif;
  --container: min(1180px, calc(100vw - 48px));
  --shadow: 0 25px 70px rgba(23, 22, 17, .14);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
body.is-loading { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.icon {
  width: 1em; height: 1em; display: inline-block; flex: 0 0 auto;
  fill: currentColor; overflow: visible;
}
.icon-action { width: 11px; height: 11px; }
.icon-arrow { width: 12px; height: 12px; }
.icon-arrow-down { width: 9px; height: 12px; }
.container { width: var(--container); margin-inline: auto; }
.skip-link {
  position: fixed; left: 12px; top: -80px; z-index: 1000;
  padding: 10px 16px; background: var(--gold); color: var(--ink);
}
.skip-link:focus { top: 12px; }
.site-loader {
  position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center;
  background: #151512; color: var(--white); overflow: hidden;
  transition: opacity .7s ease, visibility .7s, transform .8s cubic-bezier(.7,0,.2,1);
}
.site-loader::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 50% 45%, rgba(184,154,98,.11), transparent 30%);
}
.site-loader.is-hidden { opacity: 0; visibility: hidden; transform: translateY(-100%); }
.loader-lines {
  position: absolute; inset: 0; opacity: .08;
  background-image:
    linear-gradient(90deg, transparent calc(50% - .5px), #fff 50%, transparent calc(50% + .5px)),
    linear-gradient(0deg, transparent calc(50% - .5px), #fff 50%, transparent calc(50% + .5px));
  background-size: 25vw 100%, 100% 25vh;
  animation: loader-lines 2.6s ease-in-out infinite alternate;
}
@keyframes loader-lines { to { opacity: .14; transform: scale(1.04); } }
.loader-content { position: relative; z-index: 1; width: min(360px, calc(100vw - 48px)); text-align: center; }
.loader-mark {
  width: 86px; height: 86px; margin: 0 auto 31px; display: grid; place-items: center;
  border: 1px solid var(--gold-light); transform: rotate(45deg);
  color: transparent; position: relative;
}
.loader-mark::after {
  content: "AP"; position: absolute; color: var(--gold-light); transform: rotate(-45deg);
  font: italic 500 27px/1 var(--serif);
}
.loader-name { display: flex; flex-direction: column; line-height: 1; }
.loader-name strong { font: 600 16px/1 var(--display); letter-spacing: .22em; }
.loader-name small { margin-top: 10px; color: rgba(255,255,255,.46); font-size: 8px; letter-spacing: .52em; }
.loader-progress { position: relative; height: 1px; margin-top: 38px; background: rgba(255,255,255,.13); overflow: hidden; }
.loader-progress span {
  display: block; width: 100%; height: 100%; background: var(--gold-light);
  transform: scaleX(0); transform-origin: left center; transition: transform .12s linear;
}
.loader-percent { display: block; margin-top: 13px; color: rgba(255,255,255,.42); font: 500 9px/1 var(--display); letter-spacing: .2em; }
.scroll-progress {
  position: fixed; inset: 0 0 auto; z-index: 250; height: 3px;
  background: rgba(255,255,255,.08); pointer-events: none;
}
.scroll-progress span {
  display: block; width: 100%; height: 100%; background: var(--gold-light);
  transform: scaleX(0); transform-origin: left center; will-change: transform;
}

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  color: var(--white); border-bottom: 1px solid rgba(255,255,255,.14);
  transition: background .35s ease, color .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  background: rgba(251, 249, 244, .96); color: var(--ink);
  box-shadow: 0 10px 30px rgba(19,18,15,.08); backdrop-filter: blur(12px);
}
.nav-wrap { min-height: 86px; display: flex; align-items: center; gap: 44px; }
.brand { display: inline-flex; align-items: center; gap: 13px; flex: 0 0 auto; }
.brand-mark {
  width: 43px; height: 43px; display: grid; place-items: center;
  border: 1px solid currentColor; font-size: 0; letter-spacing: -.5px;
  transform: rotate(45deg);
}
.brand-mark { position: relative; }
.brand-mark::after {
  content: "AP"; position: absolute; color: currentColor;
  transform: rotate(-45deg); font: 500 15px/1 var(--serif);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font: 600 14px/1 var(--display); letter-spacing: .17em; }
.brand-copy small { margin-top: 7px; font-size: 8px; letter-spacing: .45em; opacity: .68; }
.desktop-nav { display: flex; align-items: center; gap: 29px; margin-left: auto; }
.desktop-nav a { font-size: 12px; font-weight: 500; letter-spacing: .05em; position: relative; }
.desktop-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -8px;
  height: 1px; background: var(--gold); transition: right .3s ease;
}
.desktop-nav a:hover::after { right: 0; }
.desktop-nav a.is-active::after { right: 0; }
.desktop-nav a.is-active { color: var(--gold-light); }
.site-header.scrolled .desktop-nav a.is-active { color: #8b6c36; }
.button {
  min-height: 52px; padding: 0 25px; border: 0; display: inline-flex;
  align-items: center; justify-content: center; gap: 15px; font-size: 12px;
  font-weight: 600; letter-spacing: .06em; position: relative; overflow: hidden;
  transform: translate3d(var(--mag-x,0px),var(--mag-y,0px),0);
  transition: transform .28s cubic-bezier(.2,.75,.2,1), background .25s, color .25s, box-shadow .3s;
}
.button::after {
  content: ""; position: absolute; top: -50%; bottom: -50%; left: -35%; width: 20%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transform: translateX(-180%) skewX(-22deg); transition: transform .65s ease; pointer-events: none;
}
.button:hover {
  transform: translate3d(var(--mag-x,0px),calc(var(--mag-y,0px) - 3px),0) scale(1.018);
  box-shadow: 0 13px 35px rgba(20,18,13,.17);
}
.button:hover::after { transform: translateX(720%) skewX(-22deg); }
.button > .icon, .text-link > .icon { transition: transform .3s cubic-bezier(.2,.75,.2,1); }
.button:hover > .icon, .text-link:hover > .icon { transform: translate(4px,-2px) rotate(3deg); }
.button-small { min-height: 43px; padding-inline: 20px; border: 1px solid rgba(255,255,255,.48); }
.site-header.scrolled .button-small { background: var(--ink); color: var(--white); border-color: var(--ink); }
.button-gold { background: var(--gold-light); color: var(--ink); }
.button-gold:hover { background: #e2cca0; }
.button-dark { background: var(--ink); color: var(--white); width: 100%; }
.button-outline-light { border: 1px solid rgba(255,255,255,.35); color: var(--white); }
.menu-toggle {
  width: 44px; height: 44px; display: none; place-items: center;
  background: transparent; color: inherit; border: 1px solid currentColor;
}
.menu-toggle span { display: block; width: 18px; height: 1px; background: currentColor; margin: 3px; transition: .3s; }
.mobile-nav { display: none; }

.hero {
  min-height: 800px; height: 100svh; max-height: 980px; position: relative;
  background: var(--ink); color: var(--white); isolation: isolate; overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; z-index: 0; visibility: hidden; opacity: 0;
  isolation: isolate; transition: opacity 1.05s ease, visibility 1.05s;
}
.hero-slide.is-active { z-index: 1; visibility: visible; opacity: 1; }
.hero-backdrop {
  position: absolute; inset: 0; z-index: -2;
  background-position: center; background-size: cover; background-repeat: no-repeat;
  transform: scale(1.035) translate3d(0, var(--hero-parallax, 0), 0);
  transition: transform 8s cubic-bezier(.2,.7,.2,1), filter 1s ease;
  will-change: transform;
}
.hero-slide.is-active .hero-backdrop { transform: scale(1.095) translate3d(0, var(--hero-parallax, 0), 0); }
.hero-backdrop-office { background-image: url("../images/hero-office.webp"); }
.hero-backdrop-contract { background-image: url("../images/hero-contract-v2.webp"); }
.hero-backdrop-library { background-image: url("../images/hero-library-v2.webp"); }
.hero-slide::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(13,13,11,.94) 0%, rgba(15,15,12,.79) 43%, rgba(12,12,10,.21) 74%, rgba(12,12,10,.32) 100%),
    linear-gradient(0deg, rgba(12,12,10,.56), transparent 45%);
}
.hero-grid { height: 100%; display: grid; grid-template-columns: 1fr 300px; align-items: center; gap: 80px; padding-top: 85px; }
.hero-content { max-width: 740px; }
.hero-slide .hero-content > *,
.hero-slide .hero-card {
  opacity: 0; transform: translate3d(0, 28px, 0);
  transition: opacity .68s ease, transform .8s cubic-bezier(.2,.75,.2,1);
}
.hero-slide.is-active .hero-content > *,
.hero-slide.is-active .hero-card { opacity: 1; transform: translate3d(0,0,0); }
.hero-slide.is-active .hero-content > :nth-child(1) { transition-delay: .16s; }
.hero-slide.is-active .hero-content > :nth-child(2) { transition-delay: .24s; }
.hero-slide.is-active .hero-content > :nth-child(3) { transition-delay: .34s; }
.hero-slide.is-active .hero-content > :nth-child(4) { transition-delay: .44s; }
.hero-slide.is-active .hero-card { transition-delay: .48s; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 11px; text-transform: uppercase;
  color: var(--sage); font-size: 10px; font-weight: 600; letter-spacing: .24em;
}
.eyebrow i { width: 25px; height: 1px; background: var(--gold); }
.eyebrow-light { color: rgba(255,255,255,.62); }
.hero h1 {
  margin: 29px 0 27px; font: 500 clamp(52px, 6.1vw, 88px)/.98 var(--serif);
  letter-spacing: -.045em;
}
.mobile-break { display: none; }
h1 em, h2 em, blockquote em { color: var(--gold-light); font-weight: 500; }
.hero-content > p { max-width: 600px; color: rgba(255,255,255,.69); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 39px; }
.text-link {
  display: inline-flex; align-items: center; gap: 13px; font-size: 11px;
  font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding-bottom: 7px; border-bottom: 1px solid var(--gold);
  transform: translate3d(var(--mag-x,0px),var(--mag-y,0px),0);
  transition: transform .3s cubic-bezier(.2,.75,.2,1), color .25s;
}
.text-link-light { color: rgba(255,255,255,.82); border-color: rgba(255,255,255,.38); }
.hero-card {
  align-self: end; margin-bottom: 112px; padding: 28px; border: 1px solid rgba(255,255,255,.23);
  background: rgba(22,22,18,.42); backdrop-filter: blur(12px);
}
.hero-card-kicker { font-size: 9px; text-transform: uppercase; letter-spacing: .19em; color: var(--gold-light); }
.hero-card p { margin: 17px 0; color: rgba(255,255,255,.76); font: 500 17px/1.5 var(--serif); }
.hero-card a { display: inline-flex; align-items: center; gap: 10px; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.hero-card a .icon { color: var(--gold-light); transition: transform .25s ease; }
.hero-card a:hover .icon { transform: translateX(4px); }
.hero-footer {
  position: absolute; z-index: 12; bottom: 0; left: 50%; transform: translateX(-50%);
  min-height: 74px; display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.47);
  font-size: 9px; text-transform: uppercase; letter-spacing: .18em;
}
.hero-controls { display: flex; align-items: center; gap: 15px; }
.hero-arrow {
  width: 31px; height: 31px; display: grid; place-items: center; padding: 0;
  border: 1px solid rgba(255,255,255,.22); border-radius: 50%;
  background: transparent; color: rgba(255,255,255,.75); transition: .25s ease;
  transform: translate3d(var(--mag-x,0px),var(--mag-y,0px),0);
}
.hero-arrow .icon { width: 11px; height: 11px; transition: transform .25s ease; }
.hero-arrow:hover .icon { transform: scale(1.1); }
.hero-arrow:hover { color: var(--ink); background: var(--gold-light); border-color: var(--gold-light); }
.hero-dots { display: flex; align-items: center; gap: 10px; }
.hero-dot {
  position: relative; width: 46px; height: 31px; padding: 0; overflow: hidden;
  border: 0; background: transparent; color: rgba(255,255,255,.38);
  font-size: 8px; letter-spacing: .1em; text-align: left;
}
.hero-dot::before, .hero-dot::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 3px; height: 1px;
  background: rgba(255,255,255,.2);
}
.hero-dot::after {
  right: auto; width: 100%; background: var(--gold-light); transform: scaleX(0);
  transform-origin: left center;
}
.hero-dot.is-active { color: var(--white); }
.hero-dot.is-active::after { animation: hero-meter 7s linear forwards; }
.hero.is-paused .hero-dot.is-active::after { animation-play-state: paused; }
@keyframes hero-meter { to { transform: scaleX(1); } }
.scroll-cue { display: flex; gap: 18px; align-items: center; }
.scroll-cue b { display: grid; place-items: center; color: var(--gold-light); font-size: 12px; animation: scroll-nudge 1.7s ease-in-out infinite; }
@keyframes scroll-nudge { 50% { transform: translateY(5px); } }

.trust-strip { background: var(--ivory); border-bottom: 1px solid var(--line); }
.trust-grid { min-height: 112px; display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div {
  display: flex; align-items: center; gap: 18px; border-right: 1px solid var(--line); padding: 20px 34px;
}
.trust-grid > div:first-child { border-left: 1px solid var(--line); }
.trust-grid strong { font: 500 22px/1 var(--serif); color: var(--gold); }
.trust-grid span { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }

.section { padding: 132px 0; }
.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 1.02fr .9fr; gap: 115px; align-items: center; }
.about-visual { min-height: 650px; position: relative; }
.about-image {
  position: absolute; inset: 0 60px 0 0;
  background: url("../images/areda-padilha-portrait-v1.webp") center 18%/cover no-repeat;
  filter: saturate(.88) contrast(.98); transform: translate3d(0,var(--parallax-y,0),0) scale(1.04);
  transition: filter .6s ease; will-change: transform;
}
.about-visual:hover .about-image { filter: saturate(1) contrast(1); }
.about-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(18,18,15,.31), transparent 50%); }
.monogram-card {
  position: absolute; right: 0; bottom: 55px; width: 205px; height: 190px;
  padding: 29px; background: var(--ink); color: var(--white); box-shadow: var(--shadow);
  display: flex; flex-direction: column; justify-content: space-between;
}
.monogram-card > span { font: italic 500 46px/1 var(--serif); color: var(--gold-light); }
.monogram-card small { color: rgba(255,255,255,.63); font-size: 10px; text-transform: uppercase; letter-spacing: .13em; line-height: 1.7; }
.about-copy h2, .section-heading h2, .method h2, .faq h2, .contact h2 {
  margin: 24px 0 30px; font: 500 clamp(44px, 5vw, 67px)/1.04 var(--serif); letter-spacing: -.035em;
}
.about-copy h2 em, .section-heading h2 em, .faq h2 em { color: var(--gold); }
.about-copy .lead { font: 500 20px/1.58 var(--serif); color: #49483f; }
.about-copy p:not(.lead) { color: #747267; font-size: 14px; margin: 24px 0; }
.signature { font: italic 500 28px/1 var(--serif); color: var(--gold); margin: 30px 0; }

.areas { background: var(--ivory); }
.section-heading { display: grid; grid-template-columns: 1fr 420px; gap: 100px; align-items: end; margin-bottom: 68px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { color: #727064; font-size: 14px; padding-bottom: 11px; }
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.area-card {
  min-height: 350px; padding: 32px 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  transition: background .35s, color .35s, transform .35s, box-shadow .35s;
  transform-style: preserve-3d;
}
.area-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; pointer-events: none;
  background: radial-gradient(circle at var(--pointer-x,50%) var(--pointer-y,50%), rgba(184,154,98,.16), transparent 42%);
  transition: opacity .3s;
}
.area-card:hover {
  background: var(--paper);
  transform: perspective(900px) translateY(-6px) rotateX(var(--tilt-y,0deg)) rotateY(var(--tilt-x,0deg));
  box-shadow: var(--shadow); z-index: 2;
}
.area-card:hover::before { opacity: 1; }
.area-number { position: absolute; top: 27px; right: 29px; font-size: 9px; letter-spacing: .12em; color: #9b988d; }
.area-icon {
  width: 54px; height: 60px; display: grid; place-items: center;
  color: var(--gold); border: 1px solid rgba(184,154,98,.28);
  background: rgba(184,154,98,.055); transition: .35s ease;
}
.area-icon .icon { width: 24px; height: 24px; }
.area-card:hover .area-icon {
  color: var(--paper); background: var(--gold); border-color: var(--gold);
  transform: translateY(-3px) rotate(-2deg); box-shadow: 0 12px 24px rgba(100,76,34,.18);
}
.area-card h3 { font: 500 23px/1.25 var(--serif); margin: 19px 0 15px; }
.area-card p { color: #777469; font-size: 13px; line-height: 1.75; margin: 0 0 25px; }
.area-card > a { display: inline-flex; align-items: center; gap: 10px; margin-top: auto; font-size: 9px; text-transform: uppercase; letter-spacing: .16em; }
.area-card > a .icon { color: var(--gold); transition: transform .25s ease; }
.area-card > a:hover .icon { transform: translate(3px,-3px); }
.area-card-cta { background: var(--ink-soft); color: var(--white); justify-content: center; }
.area-card-cta:hover { background: #22221d; }
.area-card-cta h3 { font-size: 30px; margin: 28px 0 32px; }
.area-card-cta .button { align-self: flex-start; margin-top: 0; }

.criminal-highlight {
  position: relative; padding: 142px 0 0; overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(119,52,48,.18), transparent 31%),
    linear-gradient(135deg, #211716 0%, #151411 62%, #1d1714 100%);
  color: var(--white);
}
.criminal-highlight::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .16;
  background-image: linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,.12) 50%, transparent 50.2%);
  background-size: 230px 100%;
}
.criminal-word {
  position: absolute; right: -25px; top: 34px; color: rgba(255,255,255,.025);
  font: 600 clamp(150px, 22vw, 330px)/1 var(--display); letter-spacing: -.08em;
  user-select: none; pointer-events: none;
}
.criminal-layout {
  position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr;
  gap: 105px; align-items: center; padding-bottom: 125px;
}
.criminal-copy h2 {
  margin: 27px 0 29px; max-width: 590px;
  font: 500 clamp(45px, 4.5vw, 65px)/1.07 var(--serif); letter-spacing: -.035em;
}
.criminal-copy h2 em { color: #c99b70; font-weight: 500; }
.criminal-eyebrow { color: #d0ab84; }
.criminal-eyebrow i { background: #8f433e; }
.criminal-lead {
  max-width: 580px; margin: 0 0 21px; color: rgba(255,255,255,.81);
  font: 500 19px/1.58 var(--serif);
}
.criminal-copy > p:not(.criminal-lead) {
  max-width: 570px; margin: 0; color: rgba(255,255,255,.5); font-size: 13px;
}
.criminal-services {
  display: grid; grid-template-columns: 1fr 1fr; margin: 37px 0;
  border-top: 1px solid rgba(255,255,255,.14); border-left: 1px solid rgba(255,255,255,.14);
}
.criminal-services > div {
  min-height: 81px; display: flex; align-items: center; gap: 15px;
  padding: 17px 18px; border-right: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14);
  transition: background .3s ease, transform .3s ease;
}
.criminal-services > div:hover { background: rgba(143,67,62,.15); transform: translateY(-2px); }
.criminal-services span { color: #c99b70; font: italic 500 12px/1 var(--serif); }
.criminal-services strong { font-size: 10px; font-weight: 500; letter-spacing: .04em; line-height: 1.45; }
.criminal-button { background: #8c443f; color: var(--white); }
.criminal-button:hover { background: #a0524a; }
.criminal-visual { min-height: 670px; position: relative; }
.criminal-photo {
  position: absolute; inset: 0 68px 64px 0;
  background: url("../images/criminal-defense-v1.webp") center/cover no-repeat;
  filter: saturate(.72) contrast(1.05);
  transform: scale(1.01); transition: transform 1.1s cubic-bezier(.2,.7,.2,1), filter .6s ease;
}
.criminal-visual:hover .criminal-photo { transform: scale(1.045); filter: saturate(.9) contrast(1.04); }
.criminal-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(23,16,15,.36), transparent 50%);
}
.criminal-confidential {
  position: absolute; right: 0; bottom: 0; width: 355px; padding: 28px 31px;
  background: #efe7da; color: var(--ink); box-shadow: 0 25px 65px rgba(0,0,0,.28);
}
.criminal-confidential span {
  display: block; margin-bottom: 12px; color: #8c443f;
  font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: .17em;
}
.criminal-confidential p { margin: 0; color: #5f5b53; font: 500 16px/1.5 var(--serif); }
.criminal-seal {
  position: absolute; left: -46px; top: 53px; width: 112px; height: 112px; border-radius: 50%;
  display: grid; place-content: center; text-align: center; background: #8c443f; color: var(--white);
  border: 1px solid rgba(255,255,255,.35); box-shadow: 0 15px 40px rgba(0,0,0,.24);
  animation: seal-float 4s ease-in-out infinite;
}
.criminal-seal::before { content: ""; position: absolute; inset: 7px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }
.criminal-seal span { font: italic 500 24px/1 var(--serif); color: #e7c59e; }
.criminal-seal small { margin-top: 7px; font-size: 7px; line-height: 1.35; text-transform: uppercase; letter-spacing: .13em; }
@keyframes seal-float { 50% { transform: translateY(-8px); } }
.criminal-marquee {
  position: relative; z-index: 1; overflow: hidden; padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.16);
}
.criminal-marquee div {
  width: max-content; white-space: nowrap; font: 500 18px/1 var(--display);
  letter-spacing: .22em; animation: criminal-marquee 25s linear infinite;
}
.criminal-marquee i { margin: 0 28px; color: #8c443f; font-style: normal; }
@keyframes criminal-marquee { to { transform: translateX(-50%); } }

.method { background: var(--ink); color: var(--white); position: relative; overflow: hidden; }
.method::after {
  content: "AP"; position: absolute; right: -35px; bottom: -130px;
  font: italic 500 390px/1 var(--serif); color: rgba(255,255,255,.018); pointer-events: none;
}
.method-grid { display: grid; grid-template-columns: .8fr 1.25fr; gap: 125px; position: relative; z-index: 1; }
.method-intro { position: sticky; top: 135px; align-self: start; }
.method h2 { color: var(--white); }
.method-intro > p { max-width: 390px; color: rgba(255,255,255,.56); font-size: 14px; margin-bottom: 38px; }
.steps { border-top: 1px solid rgba(255,255,255,.16); }
.step {
  display: grid; grid-template-columns: 65px 1fr; gap: 20px; padding: 37px 0;
  border-bottom: 1px solid rgba(255,255,255,.16); position: relative;
}
.step::after {
  content: ""; position: absolute; left: 0; bottom: -1px; width: 100%; height: 1px;
  background: var(--gold-light); transform: scaleX(0); transform-origin: left; transition: transform .9s ease .2s;
}
.step.visible::after { transform: scaleX(1); }
.step > span { color: var(--gold-light); font: italic 500 14px/1 var(--serif); padding-top: 8px; }
.step h3 { font: 500 24px/1.25 var(--serif); margin: 0 0 10px; }
.step p { margin: 0; color: rgba(255,255,255,.54); font-size: 13px; max-width: 530px; }

.quote-parallax { position: relative; height: 300vh; background: var(--paper); }
.quote-sticky {
  position: sticky; top: 0; height: 100vh; min-height: 700px; overflow: hidden;
  display: grid; place-items: center; isolation: isolate;
}
.quote-sticky::before, .quote-sticky::after {
  content: ""; position: absolute; z-index: -1; border-radius: 50%; pointer-events: none;
  border: 1px solid rgba(184,154,98,.16);
}
.quote-sticky::before { width: 48vw; height: 48vw; left: -25vw; top: -17vw; }
.quote-sticky::after { width: 33vw; height: 33vw; right: -17vw; bottom: -13vw; }
.quote-background {
  position: absolute; left: -4vw; top: 50%; z-index: -2; white-space: nowrap;
  color: rgba(25,25,21,.025); font: 600 clamp(100px,15vw,225px)/1 var(--display);
  letter-spacing: -.055em; transform: translate3d(var(--quote-bg-x,0),-50%,0); will-change: transform;
}
.quote-stage { height: 100%; position: relative; }
.quote-panel {
  --quote-opacity: 0; --quote-y: 100px; --quote-scale: .94; --quote-blur: 8px;
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  max-width: 940px; margin: auto; text-align: center; pointer-events: none;
  opacity: var(--quote-opacity);
  transform: translate3d(0,var(--quote-y),0) scale(var(--quote-scale));
  filter: blur(var(--quote-blur));
  will-change: opacity, transform, filter;
}
.quote-panel:first-child { --quote-opacity: 1; --quote-y: 0px; --quote-scale: 1; --quote-blur: 0px; }
.quote-panel.is-active { pointer-events: auto; }
.quote-mark { display: block; color: var(--gold); font: 500 85px/.6 var(--serif); }
.quote-panel blockquote {
  margin: 39px 0 29px; font: 500 clamp(38px,4.6vw,63px)/1.19 var(--serif);
  letter-spacing: -.03em;
}
.quote-panel blockquote em { color: var(--gold); font-weight: 500; }
.quote-panel p { margin: 0; font-size: 9px; text-transform: uppercase; letter-spacing: .22em; color: #8d8a80; }
.quote-index {
  position: absolute; top: 110px; right: max(30px,calc((100vw - 1180px)/2));
  display: flex; align-items: center; gap: 12px; color: var(--gold);
  font: 500 12px/1 var(--display); letter-spacing: .12em;
}
.quote-index i { width: 38px; height: 1px; background: var(--line); }
.quote-index small { color: #9b988e; font-size: 8px; }
.quote-progress {
  position: absolute; left: max(30px,calc((100vw - 1180px)/2)); right: max(30px,calc((100vw - 1180px)/2));
  bottom: 67px; height: 1px; background: var(--line);
}
.quote-progress span {
  display: block; width: 100%; height: 100%; background: var(--gold);
  transform: scaleX(0); transform-origin: left center; will-change: transform;
}
.quote-scroll-hint {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%);
  display: flex; align-items: center; gap: 12px; color: #9a978d;
  font-size: 8px; text-transform: uppercase; letter-spacing: .17em;
}
.quote-scroll-hint b { display: inline-grid; place-items: center; color: var(--gold); animation: scroll-nudge 1.7s ease-in-out infinite; }
.quote-scroll-hint b .icon { width: 9px; height: 12px; }

.faq { background: var(--ivory); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 120px; }
.faq-heading { position: sticky; top: 130px; align-self: start; }
.faq-heading > p { color: #747166; font-size: 14px; max-width: 390px; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary {
  min-height: 88px; display: flex; align-items: center; justify-content: space-between;
  gap: 25px; list-style: none; cursor: pointer; font: 500 18px/1.4 var(--serif);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span {
  flex: 0 0 29px; height: 29px; display: grid; place-items: center; border: 1px solid var(--line);
  color: var(--gold); font: 300 19px/1 var(--sans); transition: transform .25s;
}
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { margin: -7px 55px 30px 0; color: #747166; font-size: 13px; }

.contact { padding: 130px 0; background: #23231e; color: var(--white); position: relative; }
.contact::before {
  content: ""; position: absolute; inset: 0; opacity: .07;
  background-image: radial-gradient(circle at 20% 30%, var(--gold) 0 1px, transparent 1px);
  background-size: 26px 26px;
}
.contact-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 115px; position: relative; }
.contact h2 { font-size: clamp(47px, 5vw, 67px); }
.contact-copy > p { max-width: 470px; color: rgba(255,255,255,.57); font-size: 14px; }
.contact-list { margin-top: 43px; display: grid; gap: 18px; }
.contact-list > a, .contact-list > div { display: flex; align-items: center; gap: 16px; }
.contact-symbol {
  width: 41px; height: 41px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.19);
  color: var(--gold-light); transition: background .3s, color .3s, border-color .3s, transform .3s;
}
.contact-symbol .icon { width: 17px; height: 17px; }
.contact-symbol-whatsapp { color: #25d366; border-color: rgba(37,211,102,.36); }
.contact-list > a:hover .contact-symbol {
  color: var(--ink); background: var(--gold-light); border-color: var(--gold-light);
  transform: translateY(-2px);
}
.contact-list > a:hover .contact-symbol-whatsapp { color: var(--white); background: #25d366; border-color: #25d366; }
.contact-list span:last-child { display: flex; flex-direction: column; }
.contact-list small { color: rgba(255,255,255,.43); font-size: 8px; text-transform: uppercase; letter-spacing: .15em; }
.contact-list strong { margin-top: 2px; font-size: 12px; font-weight: 400; }
.contact-form { padding: 43px 47px; background: var(--paper); color: var(--ink); box-shadow: 0 30px 70px rgba(0,0,0,.17); }
.contact-form { transition: transform .4s ease, box-shadow .4s ease; }
.contact-form:hover { transform: translateY(-5px); box-shadow: 0 38px 90px rgba(0,0,0,.24); }
.form-heading { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 24px; border-bottom: 1px solid var(--line); margin-bottom: 27px; }
.form-heading span { font: 500 24px/1 var(--serif); }
.form-heading small { color: #8e8a7d; font-size: 8px; text-transform: uppercase; letter-spacing: .12em; }
.contact-form label { display: block; margin-bottom: 20px; color: #666359; font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; }
.contact-form input:not([type=checkbox]), .contact-form select, .contact-form textarea {
  width: 100%; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid var(--line);
  border-radius: 0; outline: none; padding: 10px 0 12px; font-size: 13px; text-transform: none; letter-spacing: 0;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; min-height: 95px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 27px; }
.contact-form .check { display: flex; align-items: flex-start; gap: 10px; font-size: 9px; font-weight: 400; letter-spacing: 0; text-transform: none; }
.check input { accent-color: var(--gold); margin-top: 4px; }
.form-status { min-height: 18px; color: #74613c; font-size: 11px; margin: 10px 0 0; text-align: center; }

.site-footer { background: #131310; color: var(--white); padding: 65px 0 26px; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 60px; padding-bottom: 50px; }
.footer-main > p { color: rgba(255,255,255,.43); font-size: 12px; max-width: 310px; }
.footer-main nav { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 20px; justify-self: end; }
.footer-main nav a { color: rgba(255,255,255,.57); font-size: 10px; letter-spacing: .05em; }
.footer-bottom {
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,.11);
  display: flex; justify-content: space-between; color: rgba(255,255,255,.3); font-size: 8px; text-transform: uppercase; letter-spacing: .1em;
}
.floating-whatsapp {
  position: fixed; right: 25px; bottom: 25px; z-index: 80; width: 62px; height: 62px;
  display: flex; align-items: center; justify-content: center; gap: 0; padding: 0;
  background: #25d366; color: var(--white); border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px; box-shadow: 0 12px 34px rgba(10,80,37,.3), 0 4px 12px rgba(0,0,0,.17);
  transform: translate3d(var(--mag-x,0px),var(--mag-y,0px),0);
  transition: width .42s cubic-bezier(.2,.75,.2,1), transform .3s cubic-bezier(.2,.75,.2,1), box-shadow .3s, background .3s;
  overflow: visible;
}
.floating-whatsapp .whatsapp-icon { width: 29px; height: 29px; flex: 0 0 auto; position: relative; z-index: 2; }
.whatsapp-pulse {
  position: absolute; inset: -1px; z-index: -1; border: 1px solid rgba(37,211,102,.7);
  border-radius: inherit; animation: whatsapp-pulse 2.4s ease-out infinite;
}
.whatsapp-label {
  max-width: 0; opacity: 0; overflow: hidden; white-space: nowrap;
  display: flex; flex-direction: column; line-height: 1.2;
  transition: max-width .38s ease, opacity .25s ease, margin .38s ease;
}
.whatsapp-label small { color: rgba(255,255,255,.74); font-size: 8px; letter-spacing: .11em; text-transform: uppercase; }
.whatsapp-label strong { margin-top: 3px; font-size: 12px; font-weight: 650; }
.floating-whatsapp:hover {
  transform: translate3d(var(--mag-x,0px),calc(var(--mag-y,0px) - 4px),0) scale(1.04);
  width: 216px; gap: 13px; background: #1fbd59;
  box-shadow: 0 18px 45px rgba(10,80,37,.36), 0 5px 16px rgba(0,0,0,.19);
}
.floating-whatsapp:hover .whatsapp-label { max-width: 135px; opacity: 1; }
@keyframes whatsapp-pulse {
  0%, 42% { opacity: .72; transform: scale(1); }
  82%, 100% { opacity: 0; transform: scale(1.38); }
}
.cookie-bar {
  position: fixed; left: 25px; bottom: 25px; z-index: 90; max-width: 390px; padding: 18px 20px;
  display: flex; align-items: center; gap: 20px; background: var(--paper); box-shadow: var(--shadow); border: 1px solid var(--line);
  transition: opacity .3s, transform .3s;
}
.cookie-bar.hidden { opacity: 0; transform: translateY(20px); pointer-events: none; }
.cookie-bar p { margin: 0; color: #706d62; font-size: 10px; line-height: 1.5; }
.cookie-bar button { flex: 0 0 auto; border: 0; border-bottom: 1px solid var(--gold); background: none; padding: 4px 0; font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }

.reveal {
  opacity: 0; transform: translate3d(var(--reveal-x,0), 28px, 0);
  transition: opacity .8s ease, transform .85s cubic-bezier(.2,.7,.2,1);
}
.reveal.visible { opacity: 1; transform: translate3d(0,0,0); }
.reveal-delay, .reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }
.reveal-delay-3 { transition-delay: .32s; }
.about-visual.reveal { --reveal-x: -22px; }
.about-copy.reveal, .step.reveal { --reveal-x: 22px; }
.area-card.reveal:nth-child(3n+1) { --reveal-x: -18px; }
.area-card.reveal:nth-child(3n+3) { --reveal-x: 18px; }

@media (max-width: 1020px) {
  :root { --container: min(100% - 40px, 860px); }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .mobile-nav {
    position: fixed; inset: 86px 0 auto; padding: 32px var(--container) 38px;
    background: var(--paper); color: var(--ink); flex-direction: column; gap: 20px;
    box-shadow: 0 25px 40px rgba(0,0,0,.12);
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a:not(.button) { border-bottom: 1px solid var(--line); padding-bottom: 12px; font: 500 22px/1.2 var(--serif); }
  .hero { min-height: 760px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .hero-content { max-width: 690px; }
  .hero-footer > span:first-child { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div:nth-child(2) { border-right: 1px solid var(--line); }
  .about-grid { gap: 60px; }
  .about-visual { min-height: 560px; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .section-heading > p { max-width: 550px; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .criminal-layout { gap: 60px; }
  .criminal-visual { min-height: 600px; }
  .method-grid, .faq-grid, .contact-grid { gap: 70px; }
  .contact-form { padding: 38px 32px; }
}

@media (max-width: 760px) {
  :root { --container: calc(100% - 32px); }
  html { scroll-padding-top: 72px; }
  .nav-wrap { min-height: 72px; }
  .brand-mark { width: 37px; height: 37px; }
  .brand-copy strong { font-size: 11px; }
  .mobile-nav { inset-block-start: 72px; padding-inline: 16px; }
  .hero { min-height: 720px; max-height: none; height: 100svh; }
  .hero-grid { padding-top: 72px; }
  .hero-slide::before {
    background: linear-gradient(90deg, rgba(12,12,10,.93), rgba(12,12,10,.58)),
      linear-gradient(0deg, rgba(12,12,10,.62), transparent 45%);
  }
  .hero-backdrop-office { background-position: 61% center; }
  .hero-backdrop-contract { background-position: 67% center; }
  .hero-backdrop-library { background-position: 65% center; }
  .hero h1 { font-size: clamp(43px, 12vw, 58px); }
  .mobile-break { display: block; }
  .hero-content > p { font-size: 14px; max-width: 93%; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 25px; }
  .hero-footer { justify-content: center; }
  .hero-footer .scroll-cue { display: none; }
  .hero-controls { gap: 10px; }
  .hero-dot { width: 38px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div { padding: 18px 14px; gap: 11px; min-height: 82px; }
  .trust-grid strong { font-size: 17px; }
  .trust-grid span { font-size: 8px; }
  .section { padding: 88px 0; }
  .about-grid, .method-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 65px; }
  .about-visual { min-height: 460px; }
  .about-image { right: 34px; }
  .monogram-card { width: 165px; height: 155px; right: 0; bottom: 30px; padding: 23px; }
  .about-copy h2, .section-heading h2, .method h2, .faq h2, .contact h2 { font-size: 43px; }
  .area-grid { grid-template-columns: 1fr; }
  .area-card { min-height: 310px; }
  .criminal-highlight { padding-top: 90px; }
  .criminal-layout { grid-template-columns: 1fr; gap: 65px; padding-bottom: 85px; }
  .criminal-copy h2 { font-size: 43px; }
  .criminal-services { grid-template-columns: 1fr; }
  .criminal-visual { min-height: 500px; }
  .criminal-photo { inset: 0 28px 54px 0; }
  .criminal-confidential { width: min(335px, calc(100% - 25px)); padding: 24px; }
  .criminal-seal { left: auto; right: 0; top: -35px; width: 94px; height: 94px; }
  .criminal-word { top: 15px; right: -10px; font-size: 132px; }
  .criminal-marquee div { font-size: 14px; }
  .method-grid, .faq-grid { gap: 55px; }
  .method-intro, .faq-heading { position: static; }
  .quote-parallax { height: 270vh; }
  .quote-sticky { min-height: 650px; }
  .quote-panel { max-width: calc(100% - 24px); }
  .quote-panel blockquote { font-size: clamp(34px,10.5vw,46px); line-height: 1.18; }
  .quote-index { top: 91px; right: 16px; }
  .quote-progress { left: 16px; right: 16px; bottom: 61px; }
  .quote-scroll-hint { bottom: 25px; }
  .quote-background { font-size: 115px; }
  .contact { padding-block: 88px; }
  .contact-grid { gap: 55px; }
  .contact-form { padding: 32px 23px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-heading { display: block; }
  .form-heading small { display: block; margin-top: 10px; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .footer-main nav { justify-self: start; }
  .footer-bottom { flex-direction: column; gap: 12px; line-height: 1.6; }
  .cookie-bar { left: 12px; right: 12px; bottom: 12px; max-width: none; padding: 14px 16px; gap: 13px; }
  .cookie-bar p { min-width: 0; font-size: 9px; }
  .floating-whatsapp { right: 15px; bottom: 15px; width: 58px; height: 58px; }
  .floating-whatsapp:hover { width: 58px; gap: 0; }
  .floating-whatsapp:hover .whatsapp-label { max-width: 0; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .criminal-marquee div, .criminal-seal { animation: none; }
  .site-loader { display: none; }
  body.is-loading { overflow: auto; }
  .quote-parallax { height: auto; }
  .quote-sticky { position: relative; height: auto; min-height: 0; padding: 100px 0; }
  .quote-stage { height: auto; display: grid; gap: 95px; }
  .quote-panel {
    position: relative; inset: auto; opacity: 1; transform: none; filter: none;
    pointer-events: auto;
  }
  .quote-index, .quote-progress, .quote-scroll-hint { display: none; }
}
