/* ============================================================
   Denielson Cipriano — Advocacia Criminal
   Design system: dark editorial, burgundy/copper, restrained motion
   ============================================================ */

:root {
  --bg: #120d0f;
  --bg-2: #171113;
  --bg-3: #1d1417;
  --burgundy: #3a1821;
  --burgundy-soft: #2b1319;
  --charcoal: #211b1d;
  --copper: #b87759;
  --copper-light: #dca183;
  --copper-pale: #f1dfd7;
  --ivory: #f5eee9;
  --neutral: #c8bbb5;
  --ivory-70: rgba(245, 238, 232, 0.7);
  --ivory-55: rgba(245, 238, 232, 0.55);
  --ivory-35: rgba(245, 238, 232, 0.22);
  --font-display: "Instrument Serif", Georgia, serif;
  --font-sans: "Manrope", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 92px;
  --header-h-mobile: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
}

em {
  font-style: italic;
  color: var(--copper-light);
}

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 18px;
  background: var(--copper);
  color: var(--bg);
  font-weight: 700;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

:focus-visible {
  outline: 2px solid var(--copper-light);
  outline-offset: 3px;
}

/* ---------- Eyebrow / small labels ---------- */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 26px;
  height: 1px;
  display: inline-block;
  background: currentColor;
}

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

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: fixed;
  z-index: 40;
  left: 0;
  top: 0;
  width: 100%;
  color: var(--ivory);
  background: transparent;
  transition: background 260ms var(--ease), box-shadow 260ms var(--ease), backdrop-filter 260ms var(--ease);
}

.site-header.is-scrolled {
  background: rgba(18, 13, 15, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.header-inner {
  width: min(1240px, calc(100% - 48px));
  height: var(--header-h);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}

.brand-logo {
  height: 62px;
  width: auto;
  display: block;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  opacity: 0.8;
  transition: opacity 160ms var(--ease);
  padding: 6px 0;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  opacity: 1;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 18px;
  background: var(--copper);
  color: var(--bg);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 160ms var(--ease), transform 160ms var(--ease);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--copper-light);
  transform: translateY(-1px);
}

.mobile-menu-btn {
  display: none;
  padding: 6px;
  color: var(--ivory);
}

.mobile-menu-btn .icon-close {
  display: none;
}

.mobile-menu-btn.is-open .icon-menu {
  display: none;
}

.mobile-menu-btn.is-open .icon-close {
  display: block;
}

.mobile-nav {
  display: none;
}

.mobile-nav.is-open {
  display: grid;
  position: absolute;
  top: var(--header-h-mobile);
  left: 0;
  width: 100%;
  padding: 10px 24px 22px;
  background: rgba(18, 13, 15, 0.98);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.35);
}

.mobile-nav a {
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--ivory-35);
  font-size: 13px;
  font-weight: 700;
}

.mobile-nav-cta {
  margin-top: 14px !important;
  border-bottom: none !important;
  color: var(--copper-light);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 92vh;
  padding: calc(var(--header-h) + 64px) 0 0;
  background: var(--bg);
  isolation: isolate;
  overflow: hidden;
}

.hero-gridlines {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(220, 161, 131, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 161, 131, 0.14) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 8%, transparent 72%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  top: -220px;
  left: -180px;
  background: radial-gradient(circle, rgba(58, 24, 33, 0.55), transparent 68%);
}

.hero-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 56px;
}

.hero-copy h1 {
  margin: 0 0 26px;
  font-size: clamp(46px, 5.4vw, 76px);
  letter-spacing: -0.03em;
  line-height: 1.02;
  max-width: 680px;
}

.hero-lead {
  max-width: 500px;
  color: var(--ivory-70);
  font-size: 15px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 36px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  background: var(--copper);
  color: var(--bg);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: background 160ms var(--ease), transform 160ms var(--ease);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--copper-light);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: scale(0.97);
}

.link-underline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 700;
  border-bottom: 1px solid var(--ivory-35);
  padding-bottom: 6px;
  transition: border-color 160ms var(--ease);
}

.link-underline:hover,
.link-underline:focus-visible {
  border-color: var(--copper-light);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  align-self: end;
  padding: 0 0 34px 30px;
}

.hero-photo {
  margin: 0;
  width: 100%;
  max-width: 430px;
  height: 560px;
  overflow: hidden;
  position: relative;
  background: var(--burgundy-soft);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  filter: saturate(0.96) contrast(1.08) brightness(0.98);
  transform: scale(1.03);
}

.hero-photo-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(18, 13, 15, 0.68) 0%, transparent 38%),
    linear-gradient(155deg, rgba(58, 24, 33, 0.22), transparent 50%),
    radial-gradient(ellipse 90% 70% at 50% 50%, transparent 55%, rgba(18, 13, 15, 0.35) 100%);
}

.hero-oab {
  position: absolute;
  z-index: 2;
  right: -18px;
  top: 34px;
  width: 84px;
  height: 84px;
  display: grid;
  place-content: center;
  gap: 6px;
  text-align: center;
  color: var(--bg);
  background: var(--copper-light);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}

.hero-oab svg {
  margin: 0 auto;
}

.hero-oab span {
  font-size: 8px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.hero-caption {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  padding: 22px 24px;
  background: var(--burgundy);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

.hero-caption span {
  display: block;
  margin-bottom: 8px;
  color: var(--copper-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-caption strong {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.05;
  font-weight: 400;
}

.hero-vertical-label {
  position: absolute;
  bottom: 150px;
  right: -46px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin: 0;
  color: var(--ivory-55);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.hero-trust {
  width: min(1180px, calc(100% - 48px));
  min-height: 96px;
  margin: 30px auto 0;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--ivory-55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-trust i {
  width: 3px;
  height: 3px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--copper);
}

/* ---------- scroll reveal ---------- */

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * {
    animation: lift-in 0.7s var(--ease) both;
  }

  .hero-copy > *:nth-child(2) { animation-delay: 0.05s; }
  .hero-copy > *:nth-child(3) { animation-delay: 0.1s; }
  .hero-copy > *:nth-child(4) { animation-delay: 0.16s; }

  .hero-visual {
    animation: lift-in 0.8s 0.14s var(--ease) both;
  }

  .scroll-reveal {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity 760ms var(--ease), transform 760ms var(--ease);
    will-change: opacity, transform;
  }

  .scroll-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .scroll-reveal.is-visible .practice-card,
  .scroll-reveal.is-visible .pillar,
  .scroll-reveal.is-visible .step,
  .scroll-reveal.is-visible .faq-item {
    animation: content-in 560ms var(--ease) both;
  }

  .scroll-reveal.is-visible .practice-card:nth-child(2),
  .scroll-reveal.is-visible .pillar:nth-child(2),
  .scroll-reveal.is-visible .step:nth-child(2),
  .scroll-reveal.is-visible .faq-item:nth-child(2) { animation-delay: 70ms; }
  .scroll-reveal.is-visible .practice-card:nth-child(3),
  .scroll-reveal.is-visible .pillar:nth-child(3),
  .scroll-reveal.is-visible .step:nth-child(3),
  .scroll-reveal.is-visible .faq-item:nth-child(3) { animation-delay: 140ms; }
  .scroll-reveal.is-visible .practice-card:nth-child(4),
  .scroll-reveal.is-visible .faq-item:nth-child(4) { animation-delay: 210ms; }
  .scroll-reveal.is-visible .faq-item:nth-child(5) { animation-delay: 280ms; }
}

@keyframes lift-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes content-in {
  from { opacity: 0; transform: translate3d(0, 14px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

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

/* ============================================================
   STATEMENT / ESCRITÓRIO
   ============================================================ */

.statement {
  padding: 132px 0 124px;
  background: var(--burgundy-soft);
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 10%;
}

.statement-grid h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.06;
}

.statement-right {
  padding-top: 6px;
}

.statement-right > p {
  margin: 0 0 20px;
  color: var(--ivory-70);
  font-size: 15px;
  line-height: 1.85;
}

.statement-photo {
  margin: 30px 0 0;
  position: relative;
}

.statement-photo img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: 50% 32%;
  filter: saturate(0.95) contrast(1.05);
}

.statement-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(18, 13, 15, 0.45) 100%), linear-gradient(100deg, rgba(58, 24, 33, 0.16), transparent 55%);
}

.statement-photo figcaption {
  margin-top: 10px;
  color: var(--copper-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signature-block {
  margin-top: 34px;
}

.signature-line {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--copper-light);
}

.signature-line::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--copper);
}

.signature-line span {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.01em;
}

.signature-line small {
  color: var(--ivory-55);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.signature-credential {
  margin: 10px 0 0 56px;
  color: var(--ivory-55);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   PRACTICE AREAS
   ============================================================ */

.practice {
  padding: 118px 0 130px;
  background: var(--bg-2);
}

.section-heading {
  margin-bottom: 55px;
}

.split-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 46px;
}

.split-heading h2,
.section-heading h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.split-heading > p {
  max-width: 340px;
  margin: 0 0 5px;
  color: var(--ivory-55);
  font-size: 13px;
  line-height: 1.7;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ivory-35);
}

.practice-card {
  min-height: 380px;
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--ivory-35);
  border-bottom: 1px solid var(--ivory-35);
  transition: background 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.practice-card:first-child {
  border-left: 1px solid var(--ivory-35);
}

.practice-card:hover,
.practice-card:focus-within {
  position: relative;
  z-index: 1;
  background: var(--burgundy);
  transform: translateY(-8px);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.32);
}

.practice-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.practice-number {
  color: var(--copper);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.practice-icon {
  color: var(--copper-light);
}

.practice-card h3 {
  margin: auto 0 16px;
  font-size: 27px;
  letter-spacing: -0.01em;
  line-height: 1.06;
  font-weight: 400;
}

.practice-card h3 span {
  display: block;
}

.practice-card p {
  margin: 0;
  color: var(--ivory-55);
  font-size: 12px;
  line-height: 1.7;
  transition: color 220ms var(--ease);
}

.practice-card:hover p,
.practice-card:focus-within p {
  color: var(--ivory-70);
}

.practice-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--ivory-35);
}

.practice-card-foot span {
  color: var(--copper);
  font-size: 8px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.practice-card-foot a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  color: var(--copper-light);
  border: 1px solid var(--ivory-35);
  transition: background 160ms var(--ease), color 160ms var(--ease);
}

.practice-card:hover .practice-card-foot a,
.practice-card-foot a:focus-visible {
  color: var(--bg);
  background: var(--copper-light);
  border-color: var(--copper-light);
}

/* ============================================================
   PRINCIPLES
   ============================================================ */

.principles {
  position: relative;
  padding: 128px 0;
  background: var(--bg);
}

.principles::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 52%, rgba(255, 255, 255, 0.035) 52% 52.12%, transparent 52.12%);
}

.principles-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 9%;
}

.principles-intro h2 {
  margin: 0 0 22px;
  font-size: clamp(42px, 4.6vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1;
}

.principles-intro > p:not(.eyebrow) {
  max-width: 380px;
  color: var(--ivory-70);
  font-size: 14px;
  line-height: 1.8;
}

.principles-list {
  border-top: 1px solid var(--ivory-35);
}

.pillar {
  display: grid;
  grid-template-columns: 36px 1fr 24px;
  gap: 20px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--ivory-35);
  transition: padding-left 200ms var(--ease);
}

.pillar:hover,
.pillar:focus-within {
  padding-left: 10px;
}

.pillar-index {
  align-self: start;
  color: var(--copper-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.pillar h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
}

.pillar p {
  margin: 0;
  max-width: 480px;
  color: var(--ivory-55);
  font-size: 12px;
  line-height: 1.75;
}

.pillar-arrow {
  color: var(--copper-light);
  transition: transform 180ms var(--ease);
}

.pillar:hover .pillar-arrow {
  transform: translateX(5px);
}

/* ============================================================
   METHOD / STEPS
   ============================================================ */

.method {
  padding: 124px 0 90px;
  background: var(--bg-3);
}

.method-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
}

.method-topline .eyebrow {
  margin: 0;
}

.method-topline > span {
  color: var(--ivory-55);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: right;
}

.method-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
  margin-top: 24px;
}

.method-title-row h2 {
  font-size: clamp(38px, 4.3vw, 58px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.round-arrow {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--copper);
  color: var(--copper);
  border-radius: 50%;
  transition: transform 200ms var(--ease), background 200ms var(--ease), color 200ms var(--ease);
}

.round-arrow:hover,
.round-arrow:focus-visible {
  transform: rotate(45deg);
  color: var(--bg);
  background: var(--copper-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  margin-top: 78px;
}

.step {
  padding-bottom: 60px;
}

.step > span {
  color: var(--copper);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.step-rule {
  height: 1px;
  width: 100%;
  margin: 18px 0 24px;
  background: var(--ivory-35);
  position: relative;
}

.step-rule::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  background: var(--copper);
  border-radius: 50%;
}

.step h3 {
  margin: 0 0 13px;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.step p {
  max-width: 280px;
  margin: 0;
  color: var(--ivory-55);
  font-size: 12px;
  line-height: 1.75;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  padding: 118px 0 130px;
  background: var(--bg-2);
}

.faq-list {
  border-top: 1px solid var(--ivory-35);
  max-width: 860px;
}

.faq-item {
  border-bottom: 1px solid var(--ivory-35);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 40px 28px 0;
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 20px;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.3;
  transition: color 160ms var(--ease);
}

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

.faq-item summary:hover,
.faq-item summary:focus-visible {
  color: var(--copper-light);
}

.faq-item summary .faq-num {
  flex: 0 0 auto;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--copper);
  padding-top: 6px;
}

.faq-item summary .faq-icon {
  position: absolute;
  right: 0;
  top: 26px;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--ivory-35);
  color: var(--copper-light);
  transition: transform 220ms var(--ease), background 200ms var(--ease);
}

.faq-item[open] summary .faq-icon {
  transform: rotate(45deg);
  background: var(--copper);
  color: var(--bg);
  border-color: var(--copper);
}

.faq-answer {
  margin: -6px 0 26px 60px;
  max-width: 680px;
  color: var(--ivory-70);
  font-size: 14px;
  line-height: 1.85;
}

@media (prefers-reduced-motion: no-preference) {
  .faq-item[open] .faq-answer {
    animation: content-in 320ms var(--ease) both;
  }
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact {
  position: relative;
  background: var(--burgundy-soft);
  overflow: hidden;
}

.contact-pattern {
  position: absolute;
  right: 0;
  top: 0;
  width: 42%;
  height: 100%;
  opacity: 0.16;
  background-image:
    linear-gradient(var(--copper-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--copper-light) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(135deg, transparent 0%, black 38%);
}

.contact-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 10%;
  padding: 118px 0;
}

.contact-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 4vw, 54px);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 460px;
  color: var(--ivory-70);
  font-size: 14px;
  line-height: 1.8;
}

.contact-card {
  position: relative;
  padding: 36px;
  color: var(--charcoal);
  background: var(--copper-pale);
  box-shadow: 16px 16px 0 rgba(0, 0, 0, 0.22);
}

.contact-card-label {
  margin: 0 0 15px;
  color: #7a5a3f;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin: 0 0 26px;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.contact-primary {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 14px;
  color: var(--ivory);
  background: var(--bg);
  font-size: 11px;
  font-weight: 700;
  transition: transform 160ms var(--ease), background 160ms var(--ease);
}

.contact-primary svg:last-child {
  margin-left: auto;
}

.contact-primary:hover,
.contact-primary:focus-visible {
  background: var(--burgundy);
  transform: translateY(-1px);
}

.contact-card-meta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(33, 27, 29, 0.18);
}

.contact-card-meta p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 9px 0 0;
  color: #5b504b;
  font-size: 9px;
  font-weight: 700;
}

.contact-card-meta p:first-child {
  margin-top: 0;
}

/* ============================================================
   FOOTER + FLOATING CTA
   ============================================================ */

.site-footer {
  padding: 40px 0;
  background: #0c0a0b;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.brand-footer .brand-logo {
  height: 52px;
}

.footer-legal {
  flex: 1 1 320px;
}

.footer-legal p {
  margin: 0;
  color: var(--ivory-55);
  font-size: 10px;
  line-height: 1.6;
}

.footer-disclaimer {
  margin-top: 6px !important;
  max-width: 560px;
  color: var(--ivory-35) !important;
  font-size: 9px !important;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--copper-light);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.whatsapp-float {
  position: fixed;
  z-index: 30;
  right: 26px;
  bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 18px;
  color: #fff;
  background: #1c8853;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  transition: transform 160ms var(--ease), background 160ms var(--ease);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #207b4f;
  transform: translateY(-3px);
}

/* ============================================================
   TOAST
   ============================================================ */

.toast {
  position: fixed;
  z-index: 60;
  left: 24px;
  bottom: 24px;
  max-width: 320px;
  padding: 16px 18px;
  background: var(--ivory);
  color: var(--charcoal);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  border-left: 3px solid var(--copper);
}

.toast strong {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 800;
}

.toast p {
  margin: 0;
  font-size: 11px;
  line-height: 1.6;
  color: #5b504b;
}

.toast.is-visible {
  animation: toast-in 220ms var(--ease) both;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1040px) {
  .desktop-nav { gap: 20px; }
  .hero-inner { gap: 36px; }
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .practice-card:nth-child(3) { border-left: 1px solid var(--ivory-35); }
  .contact-inner { gap: 50px; }
}

@media (max-width: 760px) {
  .wrap, .hero-inner, .hero-trust, .header-inner { width: min(100% - 40px, 1180px); }
  :root { --header-h: 72px; }
  .header-inner { height: var(--header-h-mobile); }
  .brand-logo { height: 46px; }
  .desktop-nav, .header-cta { display: none; }
  .mobile-menu-btn { display: grid; place-items: center; }

  .hero { min-height: auto; padding: calc(var(--header-h-mobile) + 46px) 0 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 42px; }
  .hero-copy h1 { font-size: clamp(42px, 12vw, 60px); }
  .hero-lead { font-size: 14px; }
  .hero-actions { gap: 20px; }
  .hero-visual { min-height: 480px; padding: 0 0 26px 20px; }
  .hero-photo { height: 460px; max-width: 380px; }
  .hero-oab { width: 70px; height: 70px; right: -6px; top: 22px; }
  .hero-vertical-label { display: none; }
  .hero-trust { min-height: auto; gap: 12px; font-size: 7px; letter-spacing: 0.08em; flex-wrap: wrap; padding: 20px 0 32px; }

  .statement { padding: 88px 0; }
  .statement-grid { grid-template-columns: 1fr; gap: 36px; }
  .statement-grid h2, .split-heading h2, .section-heading h2, .method-title-row h2, .contact-copy h2 { font-size: 40px; }
  .statement-right { padding-top: 0; }
  .statement-photo img { height: 220px; }

  .practice { padding: 82px 0 92px; }
  .split-heading { display: block; }
  .split-heading > p { margin-top: 20px; }
  .practice-grid { grid-template-columns: 1fr; }
  .practice-card, .practice-card:nth-child(3) { min-height: 260px; border-left: 1px solid var(--ivory-35); }

  .principles { padding: 84px 0; }
  .principles-grid { grid-template-columns: 1fr; gap: 40px; }
  .pillar { grid-template-columns: 26px 1fr 20px; gap: 13px; padding: 24px 0; }
  .pillar h3 { font-size: 22px; }

  .method { padding: 80px 0 70px; }
  .method-topline { align-items: flex-start; flex-direction: column; gap: 13px; }
  .method-topline > span { text-align: left; font-size: 7px; line-height: 1.5; }
  .method-title-row { margin-top: 20px; align-items: start; }
  .steps-grid { grid-template-columns: 1fr; gap: 0; margin-top: 50px; }
  .step { padding-bottom: 40px; }

  .faq { padding: 80px 0 92px; }
  .faq-item summary { padding: 22px 36px 22px 0; font-size: 17px; gap: 14px; }
  .faq-item summary .faq-num { padding-top: 4px; }
  .faq-item summary .faq-icon { top: 20px; width: 22px; height: 22px; }
  .faq-answer { margin-left: 0; margin-bottom: 22px; font-size: 13px; }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; padding: 78px 0; }
  .contact-card { padding: 28px 22px; box-shadow: 9px 9px 0 rgba(0, 0, 0, 0.22); }

  .footer-inner { align-items: flex-start; flex-direction: column; gap: 20px; }

  .whatsapp-float { width: 50px; height: 50px; padding: 0; justify-content: center; right: 18px; bottom: 18px; }
  .whatsapp-float span { display: none; }

  .toast { left: 16px; right: 16px; bottom: 84px; max-width: none; }
}
