:root {
  /* Editable color system */
  --bg-primary: #eaf2f4;
  --bg-secondary: #f6f9f9;
  --bg-green-soft: #d9e6df;
  --bg-cool-deep: #dce7e9;
  --text-primary: #252b2e;
  --text-secondary: #526168;
  --border: #c1cfd2;
  --border-strong: #8e9fa4;
  --accent-green: #557464;
  --accent-green-dark: #385347;
  --accent-green-soft: #b8c9bf;
  --accent-max: #3f709f;
  --accent-max-dark: #31597f;
  --cta-dark: #252b2e;
  --on-dark: #f9fcfc;

  /* Component aliases keep the existing layout system stable. */
  --bg: var(--bg-primary);
  --paper: var(--bg-secondary);
  --ink: var(--text-primary);
  --ink-soft: var(--text-secondary);
  --line: var(--border);
  --line-dark: var(--border-strong);
  --accent: var(--accent-green);
  --accent-deep: var(--accent-green-dark);
  --accent-soft: var(--accent-green-soft);
  --clay: var(--accent-green-soft);
  --clay-light: var(--bg-green-soft);
  --white: var(--on-dark);
  --sans: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --shell: min(100% - 64px, 1376px);
  --section-space: clamp(88px, 7.4vw, 112px);
  --header-height: 96px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + env(safe-area-inset-top, 0px) + 20px);
  overflow-x: clip;
}

html.scroll-restore { scroll-behavior: auto; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open {
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

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

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

.arrow-icon {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: currentColor;
  vertical-align: -.18em;
}

.arrow-icon::before,
.arrow-icon::after {
  position: absolute;
  display: block;
  content: "";
}

.arrow-icon--external::before,
.arrow-icon--down-right::before {
  top: 7px;
  left: 2px;
  width: 12px;
  height: 1px;
  background: currentColor;
  transform-origin: center;
}

.arrow-icon--external::before { transform: rotate(-45deg); }
.arrow-icon--down-right::before { transform: rotate(45deg); }

.arrow-icon--external::after {
  top: 2px;
  right: 2px;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
}

.arrow-icon--down-right::after {
  right: 2px;
  bottom: 2px;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.arrow-icon--down::before,
.arrow-icon--up::before {
  top: 2px;
  left: 7px;
  width: 1px;
  height: 12px;
  background: currentColor;
}

.arrow-icon--down::after {
  bottom: 2px;
  left: 4px;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

.arrow-icon--up::after {
  top: 2px;
  left: 4px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  transform: rotate(45deg);
}

button, input, textarea, select { font: inherit; }

button { color: inherit; }

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

ul, ol { margin: 0; padding: 0; }

address { font-style: normal; }

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--cta-dark);
  transform: translateY(-150%);
}

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

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

.section { padding-block: var(--section-space); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--accent-deep);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

h2 {
  max-width: 12ch;
  margin-top: 22px;
  font-size: clamp(42px, 4.7vw, 68px);
  font-weight: 450;
  letter-spacing: -.055em;
  line-height: 1.01;
}

h2 em {
  color: var(--accent);
  font-family: var(--serif);
  font-weight: 400;
}

.section-lead {
  max-width: 45ch;
  margin-top: 36px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.6;
}

.button {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: color .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}

.button span { transition: transform .35s var(--ease); }
.button:hover span { transform: translate(3px, -3px); }
.button:hover { transform: translateY(-2px); }

.button-primary { color: var(--white); background: var(--accent); }
.button-primary:hover { background: var(--accent-deep); }

.button-dark { color: var(--white); background: var(--cta-dark); }
.button-dark:hover { color: var(--ink); background: var(--white); border-color: var(--ink); }

.button-max { color: var(--white); background: var(--accent-max); }
.button-max:hover { background: var(--accent-max-dark); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 15px;
  font-weight: 650;
}

.text-link span { transition: transform .3s var(--ease); }
.text-link:hover span { transform: translate(2px, 2px); }

.scroll-progress {
  position: fixed;
  z-index: 220;
  inset: 0 0 auto;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 200;
  top: 0;
  padding-top: env(safe-area-inset-top, 0px);
  border-bottom: 1px solid transparent;
  background: rgba(234, 242, 244, .88);
  backdrop-filter: blur(14px) saturate(115%);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
  transition: background-color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(37, 43, 46, .14);
  background: rgba(234, 242, 244, .97);
  box-shadow: 0 8px 24px rgba(37, 43, 46, .055);
}

.header-inner {
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 52px;
}

.brand { display: flex; align-items: center; gap: 14px; }

.brand-mark {
  display: grid;
  width: 50px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: 17px;
}

.brand-copy { font-size: 12px; font-weight: 700; letter-spacing: .09em; line-height: 1.35; text-transform: uppercase; }

.site-nav { display: flex; justify-content: center; gap: clamp(28px, 3vw, 52px); }
.site-nav a { font-size: 15px; font-weight: 650; }

.site-nav a { position: relative; }
.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-contact {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 14px;
  padding-inline: 18px;
  border: 1px solid rgba(63,112,159,.62);
  color: var(--accent-max-dark);
  font-size: 14px;
  font-weight: 700;
  transition: color .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.header-contact:hover { color: var(--white); background: var(--accent-max); border-color: var(--accent-max); }
.header-contact span { margin-left: 5px; }
.menu-toggle { display: none; }

.menu-open .site-header {
  position: fixed;
  right: 0;
  left: 0;
  border-bottom-color: rgba(37, 43, 46, .16);
  background: var(--bg-primary);
  box-shadow: none;
}

/* Hero */
.hero { position: relative; min-height: 724px; overflow: clip; }

.hero::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 0 52%, rgba(37,43,46,.18) 52% 52.1%, transparent 52.1%);
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  height: 724px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 104px 1fr 1fr 104px 104px;
  column-gap: 20px;
}

.hero-kicker {
  z-index: 4;
  grid-column: 1 / 5;
  grid-row: 1;
  align-self: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hero-kicker span { color: var(--accent); margin-inline: 8px; }
.hero-title { display: contents; }

.hero-name {
  z-index: 3;
  align-self: end;
  color: var(--bg);
  font-size: clamp(76px, 8.55vw, 124px);
  font-weight: 450;
  letter-spacing: -.075em;
  line-height: .82;
  white-space: nowrap;
  mix-blend-mode: difference;
}

.hero-name-first { grid-column: 1 / 13; grid-row: 2; }
.hero-name-last { z-index: 3; grid-column: 1 / 13; grid-row: 3; align-self: start; text-align: right; }

.hero-portrait {
  position: relative;
  z-index: 2;
  grid-column: 5 / 11;
  grid-row: 1 / 6;
  height: calc(100% - 26px);
  min-height: 0;
  align-self: end;
  overflow: hidden;
  background: #d2dde0;
}

.hero-portrait::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(21,28,30,.2));
  content: "";
  pointer-events: none;
}

.hero-portrait picture, .hero-portrait img { width: 100%; height: 100%; }

.hero-portrait img {
  object-fit: cover;
  object-position: 58% 14%;
  filter: saturate(.78) contrast(1.03) sepia(.035);
  transform: scale(1.015);
  will-change: transform;
}

.hero-portrait figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  color: var(--white);
  font-size: 11.5px;
  font-weight: 650;
  letter-spacing: .06em;
  line-height: 1.35;
  text-align: right;
  text-transform: uppercase;
}

.hero-portrait figcaption span { display: block; margin-bottom: 5px; font-family: var(--serif); font-size: 18px; font-weight: 400; }

.hero-role {
  z-index: 4;
  grid-column: 1 / 5;
  grid-row: 4;
  align-self: end;
  padding-top: 14px;
  border-top: 1px solid var(--ink);
}

.hero-role > span { display: block; color: var(--accent); font-family: var(--serif); font-size: 31px; line-height: 1.08; }
.hero-role p { max-width: 31ch; margin-top: 8px; color: var(--ink-soft); font-size: 16px; line-height: 1.5; }

.hero-meta {
  z-index: 4;
  grid-column: 11 / 13;
  grid-row: 1 / 3;
  align-self: center;
}

.hero-meta div {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: baseline;
  gap: 16px;
  padding-block: 16px;
  border-top: 1px solid var(--line-dark);
}

.hero-meta div:last-child { border-bottom: 1px solid var(--line-dark); }
.hero-meta strong { font-family: var(--serif); font-size: 38px; font-weight: 400; line-height: 1; }
.hero-meta span { color: var(--ink-soft); font-size: 13px; font-weight: 700; letter-spacing: .085em; line-height: 1.35; text-transform: uppercase; }

.hero-actions {
  z-index: 4;
  display: flex;
  grid-column: 1 / 5;
  grid-row: 5;
  align-items: center;
  gap: 18px;
}

.hero-actions .button { gap: 18px; padding-inline: 20px; white-space: nowrap; }

/* Proof */
.proof { background: var(--paper); }
.proof-line { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); }

.proof-line p {
  display: grid;
  min-height: 80px;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 24px 14px 0;
  border-right: 1px solid var(--line);
  font-size: 17px;
  font-weight: 650;
}

.proof-line p:not(:first-child) { padding-left: 24px; }
.proof-line p:last-child { border-right: 0; }
.proof-line span { display: block; color: var(--accent); font-family: var(--serif); font-size: 18px; }

/* Services */
.help { background: var(--paper); }
.section-grid { display: grid; grid-template-columns: 4fr 7fr; gap: 9%; }
.section-intro { position: sticky; top: 120px; align-self: start; }

.service-index { border-top: 1px solid var(--ink); }

.service-row {
  position: relative;
  display: grid;
  min-height: 118px;
  grid-template-columns: 44px minmax(220px, 1fr) minmax(180px, .65fr) 88px;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  transition: color .35s var(--ease), padding .35s var(--ease);
}

.service-row::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--accent);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .45s var(--ease);
}

.service-row > * { position: relative; z-index: 1; }
.service-number { color: var(--accent); font-family: var(--serif); font-size: 15px; }
.service-row h3 { font-size: clamp(21px, 2vw, 29px); font-weight: 500; letter-spacing: -.035em; line-height: 1.08; }
.service-row p { color: var(--ink-soft); font-size: 15px; line-height: 1.5; }
.service-row a { justify-self: end; font-size: 14px; font-weight: 700; }
.service-row a span { display: inline-block; margin-left: 6px; transition: transform .3s var(--ease); }
.service-row:hover { color: var(--white); padding-inline: 18px; }
.service-row:hover::before { transform: scaleY(1); transform-origin: top; }
.service-row:hover .service-number, .service-row:hover p { color: var(--white); }
.service-row:hover a span { transform: translate(3px, 3px); }

/* Bankruptcy */
.bankruptcy { position: relative; background: var(--clay-light); }
.bankruptcy::after {
  position: absolute;
  top: 0;
  right: 9%;
  width: 1px;
  height: 100%;
  background: rgba(37,43,46,.15);
  content: "";
}

.bankruptcy { padding-block: clamp(82px, 6.2vw, 96px); }
.bankruptcy-grid { display: grid; grid-template-columns: 54px repeat(10, minmax(0, 1fr)); column-gap: 22px; row-gap: 32px; }
.vertical-note { grid-column: 1; grid-row: 1 / 4; color: var(--accent-deep); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }
.bankruptcy-heading { grid-column: 2 / 7; }
.bankruptcy-heading h2 { max-width: 10.8ch; }
.bankruptcy-copy { grid-column: 7 / 12; align-self: end; padding-left: 24px; }
.bankruptcy-copy > p { color: var(--ink-soft); font-size: 19px; line-height: 1.6; }

.situation-list { margin-top: 24px; list-style: none; border-top: 1px solid rgba(37,43,46,.3); }
.situation-list li { position: relative; padding: 16px 0 16px 32px; border-bottom: 1px solid rgba(37,43,46,.22); font-size: 16px; font-weight: 650; line-height: 1.45; }
.situation-list li::before {
  position: absolute;
  top: 20px;
  left: 3px;
  width: 10px;
  height: 8px;
  border-bottom: 1px solid var(--accent-deep);
  border-left: 1px solid var(--accent-deep);
  content: "";
}

.bankruptcy-price { grid-column: 2 / 7; padding-top: 22px; border-top: 1px solid var(--ink); }
.bankruptcy-price > span { display: block; color: var(--accent-deep); font-size: 14px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.bankruptcy-price strong { display: block; margin-top: 10px; font-family: var(--serif); font-size: clamp(52px, 5.8vw, 82px); font-weight: 400; letter-spacing: -.055em; line-height: 1; }
.bankruptcy-price small { display: block; max-width: 44ch; margin-top: 12px; color: var(--ink-soft); font-size: 14px; line-height: 1.45; }
.bankruptcy-action { grid-column: 7 / 12; align-self: center; padding-left: 24px; }
.bankruptcy-action .button { width: 100%; }
.bankruptcy-action p { margin-top: 14px; color: var(--ink-soft); font-size: 14px; line-height: 1.45; }

/* Prices */
.prices-head { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 52px; }
.prices-head h2 { max-width: 11ch; }
.prices-head > p { max-width: 44ch; padding-bottom: 6px; color: var(--ink-soft); font-size: 17px; line-height: 1.55; }
.price-list { border-top: 1px solid var(--ink); list-style: none; }

.price-list li {
  display: grid;
  min-height: 78px;
  grid-template-columns: 9% 1fr auto;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.price-list li > span { color: var(--accent); font-family: var(--serif); font-size: 15px; }
.price-list h3 { font-size: clamp(18px, 1.8vw, 25px); font-weight: 500; letter-spacing: -.025em; }
.price-list strong { min-width: 190px; font-family: var(--serif); font-size: clamp(20px, 2vw, 29px); font-weight: 400; text-align: right; }
.price-list .price-main { position: relative; color: var(--white); border: 0; }
.price-main::before { position: absolute; z-index: -1; inset: 0 calc(50% - 50vw); background: var(--accent); content: ""; }
.price-list .price-main > span { color: var(--white); }

/* About */
.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 52px 20px; }
.about-title-block { grid-column: 1 / 6; }
.about-title-block h2 { max-width: 10.8ch; font-size: clamp(42px, 4.3vw, 64px); }

.about-statement { grid-column: 7 / 13; align-self: end; padding: 28px 24px 0 34px; border-top: 1px solid var(--ink); border-left: 1px solid var(--line); }
.about-statement p { font-family: var(--serif); font-size: clamp(26px, 2.45vw, 35px); letter-spacing: -.025em; line-height: 1.32; }
.about-statement > span { display: block; margin-top: 24px; color: var(--ink-soft); font-family: var(--sans); font-size: 14px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.about-facts { display: grid; grid-column: 1 / 13; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); }
.about-facts article { min-height: 132px; padding: 18px 25px 18px 0; border-right: 1px solid var(--line); }
.about-facts article:not(:first-child) { padding-left: 25px; }
.about-facts article:last-child { border: 0; }
.about-facts span { color: var(--accent); font-family: var(--serif); font-size: 15px; }
.about-facts h3 { margin-top: 24px; font-size: 24px; font-weight: 550; letter-spacing: -.03em; }
.about-facts p { margin-top: 3px; color: var(--ink-soft); font-size: 16px; line-height: 1.4; }

.education { display: grid; grid-column: 2 / 12; grid-template-columns: 2fr 5fr; gap: 50px; padding-block: 34px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); }
.education-year { color: var(--accent); font-family: var(--serif); font-size: clamp(27px, 3vw, 44px); }
.education h3 { max-width: 25ch; margin-top: 24px; font-size: clamp(24px, 3vw, 40px); font-weight: 500; letter-spacing: -.04em; line-height: 1.1; }
.education div > p:last-child { margin-top: 20px; color: var(--ink-soft); font-size: 16px; }

/* Practice */
.practice { color: var(--ink); background: var(--bg-cool-deep); }
.practice { padding-block: clamp(84px, 6.4vw, 104px); }
.practice-head { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 7%; margin-bottom: 36px; }
.practice-head h2 { max-width: 16ch; font-size: clamp(40px, 3.8vw, 56px); }
.practice-accent { color: var(--accent); font-family: var(--serif); font-weight: 400; }
.practice-head > p { max-width: 48ch; padding: 0 12px 4px 0; color: var(--ink-soft); font-size: 18px; line-height: 1.58; }
.case-list { border-top: 1px solid var(--ink); }

.case-row {
  position: relative;
  display: grid;
  min-height: 106px;
  grid-template-columns: 86px 1.1fr 1fr 190px;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
}

.case-row::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}

.case-row:hover::after { transform: scaleX(1); transform-origin: left; }
.case-index { color: var(--accent); font-family: var(--serif); font-size: 15px; }
.case-row strong { font-size: clamp(21px, 2.2vw, 31px); font-weight: 520; letter-spacing: -.035em; }
.case-meta { display: flex; flex-direction: column; gap: 3px; color: var(--ink-soft); }
.case-meta b { font-size: 15px; font-weight: 650; }
.case-meta small { font-size: 14px; line-height: 1.35; }
.case-row i { display: inline-flex; align-items: center; justify-self: end; font-size: 14px; font-style: normal; font-weight: 700; transition: transform .3s var(--ease); }
.case-row i span { display: inline-block; margin-left: 8px; }
.case-row:hover i { transform: translate(3px, -3px); }
.source-note { display: flex; align-items: center; gap: 10px; margin-top: 22px; color: var(--ink-soft); font-size: 14px; }
.source-note > span { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(85,116,100,.16); }
.source-note a { border-bottom: 1px solid currentColor; }

/* Process */
.process-grid { display: grid; grid-template-columns: 4fr 7fr; gap: 9%; }
.process-head { position: sticky; top: 120px; align-self: start; }
.process-head p:last-child { max-width: 43ch; margin-top: 28px; color: var(--ink-soft); font-size: 17px; line-height: 1.55; }
.steps { border-top: 1px solid var(--ink); list-style: none; }

.steps li { display: grid; min-height: 126px; grid-template-columns: 82px 1fr; align-items: center; gap: 20px; border-bottom: 1px solid var(--line); }
.steps li > span { align-self: start; padding-top: 27px; color: var(--accent); font-family: var(--serif); font-size: 15px; }
.steps h3 { font-size: clamp(22px, 2.4vw, 34px); font-weight: 500; letter-spacing: -.035em; }
.steps p { max-width: 49ch; margin-top: 7px; color: var(--ink-soft); font-size: 16px; line-height: 1.5; }

/* Reviews */
.reviews { background: var(--paper); }
.reviews-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.review-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.review { display: flex; min-height: 276px; grid-column: span 4; flex-direction: column; justify-content: space-between; padding: 30px; border-top: 1px solid var(--ink); background: var(--bg); }
.review-featured { grid-column: span 6; color: var(--white); background: var(--accent); border-color: var(--accent); }
.review:nth-child(2) { grid-column: span 6; }
.review:nth-child(3), .review:nth-child(4) { grid-column: span 6; min-height: 238px; }
.review blockquote { max-width: 29ch; font-family: var(--serif); font-size: clamp(21px, 2.2vw, 31px); letter-spacing: -.025em; line-height: 1.25; }
.review-featured blockquote { max-width: 28ch; }
.review figcaption { display: flex; align-items: end; justify-content: space-between; gap: 18px; padding-top: 28px; border-top: 1px solid currentColor; }
.review figcaption strong { font-size: 15px; }
.review figcaption span { color: var(--ink-soft); font-size: 14px; font-weight: 650; letter-spacing: .035em; text-align: right; text-transform: uppercase; }
.review-featured figcaption span { color: rgba(255,255,255,.72); }
.reviews-source { margin-top: 20px; color: var(--ink-soft); font-size: 14px; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 4fr 7fr; gap: 9%; }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-right: 8px;
  cursor: pointer;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 520;
  letter-spacing: -.025em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; width: 20px; height: 20px; flex: 0 0 auto; }
.faq-list summary span::before, .faq-list summary span::after { position: absolute; top: 9px; left: 2px; width: 16px; height: 1px; background: var(--accent); content: ""; transition: transform .3s var(--ease); }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 60ch; padding: 0 55px 30px 0; color: var(--ink-soft); font-size: 16px; line-height: 1.55; }

/* Legal information */
.legal-info {
  padding-block: clamp(76px, 6.5vw, 96px);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

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

.legal-head { grid-column: 1 / 4; }
.legal-heading { max-width: 8ch; font-size: clamp(30px, 3vw, 42px); line-height: 1.08; }
.legal-code { margin-top: 46px; color: var(--accent); font-family: var(--serif); font-size: 20px; }
.legal-content { grid-column: 5 / 13; border-top: 1px solid var(--ink); }

.legal-notice {
  max-width: 47ch;
  padding-block: 28px 34px;
  font-family: var(--serif);
  font-size: clamp(21px, 1.7vw, 25px);
  letter-spacing: -.018em;
  line-height: 1.38;
}

.legal-explanation {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-explanation span {
  color: var(--accent-deep);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .09em;
  line-height: 1.45;
  text-transform: uppercase;
}

.legal-explanation p { max-width: 62ch; color: var(--ink-soft); font-size: 17px; line-height: 1.65; }

/* Contact */
.contact-section { position: relative; padding-block: var(--section-space); color: var(--ink); background: var(--clay-light); overflow: hidden; }
.contact-section::before { position: absolute; right: -10vw; bottom: -20vw; width: 48vw; aspect-ratio: 1; border: 1px solid rgba(37,43,46,.12); border-radius: 50%; content: ""; }
.contact-grid { position: relative; display: grid; grid-template-columns: repeat(12, 1fr); gap: 52px 20px; }
.contact-code { grid-column: 1 / 3; color: var(--accent); font-family: var(--serif); font-size: 20px; }
.contact-main { grid-column: 3 / 9; }
.contact-main h2 { max-width: 10ch; }
.contact-main > p:not(.eyebrow) { max-width: 48ch; margin-top: 28px; color: var(--ink-soft); font-size: 18px; line-height: 1.55; }
.contact-primary { display: flex; align-items: center; gap: 32px; margin-top: 42px; }
.phone-link { padding-bottom: 4px; border-bottom: 1px solid var(--ink); font-family: var(--serif); font-size: clamp(20px, 2vw, 28px); }
.contact-channels { grid-column: 9 / 13; border-top: 1px solid var(--ink); }
.contact-label { padding-block: 16px; color: var(--ink-soft); font-size: 14px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.contact-channels a { display: flex; min-height: 58px; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(37,43,46,.18); }
.contact-channels a span { font-size: 16px; font-weight: 650; }
.contact-channels a i { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-style: normal; transition: transform .3s var(--ease); }
.contact-channels a:hover i { transform: translate(3px, -3px); }
.contact-channel-whatsapp > span, .contact-channel-whatsapp i { color: var(--accent-deep); }
.contact-address { display: grid; grid-column: 3 / 13; grid-template-columns: 2fr 5fr 2fr; align-items: center; gap: 30px; padding-top: 30px; border-top: 1px solid var(--ink); }
.contact-address span { color: var(--ink-soft); font-size: 14px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.contact-address strong { font-size: clamp(17px, 1.6vw, 22px); font-weight: 520; }
.contact-address a { display: inline-flex; min-height: 44px; align-items: center; gap: 8px; justify-self: end; font-size: 14px; font-weight: 700; }

/* Footer */
.site-footer { padding-block: 28px; color: rgba(255,255,255,.72); background: var(--cta-dark); }
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; gap: 40px; align-items: center; font-size: 12px; font-weight: 650; letter-spacing: .05em; text-transform: uppercase; }
.footer-inner a { display: inline-flex; align-items: center; gap: 6px; color: var(--white); }

/* Motion language */
.reveal-ready [data-reveal] { transition-duration: .9s; transition-timing-function: var(--ease); }
.reveal-ready [data-reveal="text"] { opacity: 0; transform: translateX(-20px); }
.reveal-ready [data-reveal="name"] { clip-path: inset(0 100% 0 0); transition: clip-path 1.15s var(--ease); }
.reveal-ready [data-reveal="name"].is-visible { clip-path: inset(0); }
.reveal-ready [data-reveal="line"] { clip-path: inset(0 100% 0 0); transition: clip-path 1s var(--ease); }
.reveal-ready [data-reveal="actions"] { opacity: 0; transform: translateY(14px); }
.reveal-ready [data-reveal="rule"] { clip-path: inset(0 100% 0 0); transition: clip-path 1.2s var(--ease); }
.reveal-ready [data-reveal="row"] { opacity: 0; transform: translateX(24px); }
.reveal-ready [data-reveal="price"] { clip-path: inset(0 0 100% 0); transition: clip-path 1s var(--ease); }
.reveal-ready [data-reveal="price-row"] { opacity: 0; transform: scaleX(.98); transform-origin: left; }
.reveal-ready [data-reveal="quote"] { opacity: 0; transform: translateY(22px) rotate(.4deg); }
.reveal-ready [data-reveal="case"] { clip-path: inset(0 100% 0 0); transition: clip-path .95s var(--ease); }
.reveal-ready [data-reveal="step"] { opacity: 0; transform: translateX(-18px); }
.reveal-ready [data-reveal="review"] { opacity: 0; transform: translateY(18px); }
.reveal-ready [data-reveal].is-visible { opacity: 1; transform: none; clip-path: inset(0); }

@media (max-width: 1180px) {
  :root { --shell: min(100% - 48px, 1120px); }
  .header-inner { gap: 26px; }
  .site-nav { gap: 26px; }
  .hero { min-height: 652px; }
  .hero-grid { height: 652px; grid-template-rows: 92px 1fr 1fr 94px 92px; }
  .hero-portrait { grid-column: 5 / 11; }
  .hero-name { font-size: clamp(72px, 9.2vw, 108px); }
  .hero-role { grid-column: 1 / 5; }
  .hero-actions { grid-column: 1 / 5; gap: 20px; }
  .hero-actions .button { white-space: normal; }
  .proof-line p { font-size: 16px; }
  .proof-line span { font-size: 17px; }
  .service-row { grid-template-columns: 38px minmax(200px,1fr) minmax(150px,.7fr); }
  .service-row a { display: none; }
  .bankruptcy-grid { grid-template-columns: 40px repeat(10,minmax(0,1fr)); }
  .case-row { grid-template-columns: 74px 1.1fr .9fr 160px; gap: 20px; }
  .case-row i { font-size: 13px; }
}

@media (max-width: 900px) {
  :root { --section-space: 92px; }
  .brand { grid-column: 1; grid-row: 1; }
  .header-contact { grid-column: 2; grid-row: 1; min-height: 44px; justify-self: end; font-size: 0; }
  .header-contact::before { content: "MAX"; font-size: 14px; }
  .header-contact span { font-size: 14px; }
  .hero-kicker { font-size: 12.5px; letter-spacing: .1em; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .site-nav {
    position: fixed;
    z-index: 190;
    top: calc(var(--header-height) + env(safe-area-inset-top, 0px));
    right: 0;
    bottom: auto;
    left: 0;
    display: flex;
    height: calc(100vh - var(--header-height) - env(safe-area-inset-top, 0px));
    height: calc(100dvh - var(--header-height) - env(safe-area-inset-top, 0px));
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: clamp(34px, 7vh, 64px) max(32px, env(safe-area-inset-right, 0px)) calc(36px + env(safe-area-inset-bottom, 0px)) max(32px, env(safe-area-inset-left, 0px));
    color: var(--white);
    background: var(--cta-dark);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; visibility: visible; transform: none; }
  .site-nav a { display: flex; min-height: 66px; align-items: center; padding-block: 14px; border-bottom: 1px solid rgba(255,255,255,.18); font-family: var(--serif); font-size: clamp(25px, 4vw, 31px); font-weight: 400; }
  .site-nav a::after { display: none; }
  .menu-toggle { display: flex; min-width: 76px; min-height: 44px; grid-column: 3; grid-row: 1; align-items: center; justify-content: flex-end; gap: 11px; justify-self: end; border: 0; background: transparent; cursor: pointer; font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
  .menu-toggle i, .menu-toggle i::after { display: block; width: 20px; height: 1px; background: currentColor; content: ""; transition: transform .3s var(--ease); }
  .menu-toggle i::after { transform: translateY(6px); }
  .menu-toggle[aria-expanded="true"] i { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i::after { transform: rotate(-90deg); }
  .hero { min-height: 612px; }
  .hero-grid { height: 612px; grid-template-rows: 86px 1fr 1fr 100px 82px; }
  .hero-name { font-size: clamp(66px, 9.5vw, 86px); }
  .hero-portrait { grid-column: 5 / 11; }
  .hero-meta { grid-column: 11 / 13; }
  .hero-meta div { grid-template-columns: 1fr; gap: 4px; }
  .hero-role { grid-column: 1 / 5; }
  .hero-actions { grid-column: 1 / 6; }
  .proof-line { grid-template-columns: repeat(2,1fr); }
  .proof-line p:nth-child(2) { border-right: 0; }
  .proof-line p:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-grid, .process-grid, .faq-grid { grid-template-columns: 1fr; gap: 54px; }
  .legal-grid { grid-template-columns: 1fr; gap: 38px; }
  .legal-head, .legal-content { grid-column: 1; }
  .legal-heading { max-width: 12ch; }
  .legal-code { margin-top: 26px; }
  .section-intro, .process-head { position: static; }
  .section-intro h2, .process-head h2 { max-width: 13ch; }
  .bankruptcy-heading { grid-column: 2 / 12; }
  .bankruptcy-copy { grid-column: 2 / 12; padding-left: 0; }
  .bankruptcy-price { grid-column: 2 / 7; }
  .bankruptcy-action { grid-column: 7 / 12; padding-left: 0; }
  .practice-head { grid-template-columns: 1fr; gap: 36px; }
  .case-row { grid-template-columns: 64px 1fr minmax(150px,.7fr) 48px; }
  .case-row i { font-size: 0; }
  .case-row i span { margin: 0; font-size: 21px; }
  .about-title-block { grid-column: 1 / 8; }
  .about-statement { grid-column: 7 / 13; }
  .education { grid-column: 1 / 13; }
  .contact-code { grid-column: 1 / 2; }
  .contact-main { grid-column: 2 / 9; }
  .contact-channels { grid-column: 9 / 13; }
  .contact-address { grid-column: 2 / 13; }
}

@media (max-width: 767px) {
  :root { --shell: min(100% - 36px, 680px); --section-space: 74px; --header-height: 76px; }
  body { font-size: 17px; }
  h2 { font-size: clamp(38px, 11vw, 52px); }
  .header-contact { display: none; }
  .brand-mark { width: 42px; font-size: 15px; }
  .brand { min-height: 44px; }
  .brand-copy { font-size: 10.5px; line-height: 1.35; }
  .hero { min-height: auto; }
  .hero::before { display: none; }
  .hero-grid {
    display: grid;
    height: auto;
    min-height: 0;
    grid-template-columns: repeat(6,minmax(0,1fr));
    grid-template-rows: auto auto auto minmax(350px, 88vw) auto auto auto;
    column-gap: 10px;
    padding-block: 26px 28px;
  }
  .hero-kicker { grid-column: 1 / 7; grid-row: 1; margin-bottom: 30px; font-size: 12.5px; line-height: 1.45; }
  .hero-name { font-size: clamp(50px, 16vw, 68px); line-height: .85; white-space: normal; }
  .hero-name-first { z-index: 3; grid-column: 1 / 7; grid-row: 2; align-self: end; }
  .hero-name-last { z-index: 3; grid-column: 1 / 7; grid-row: 5; align-self: start; padding-top: 12px; text-align: right; }
  .hero-portrait { grid-column: 1 / 7; grid-row: 4; width: calc(100% + 36px); height: 100%; margin-left: -18px; }
  .hero-portrait img { object-position: 57% 8%; }
  .hero-portrait figcaption { right: 17px; bottom: 13px; }
  .hero-role { grid-column: 1 / 7; grid-row: 6; margin-top: 28px; }
  .hero-role > span { font-size: 28px; }
  .hero-role p { max-width: 42ch; font-size: 16px; line-height: 1.5; }
  .hero-meta {
    z-index: 1;
    display: grid;
    width: 100%;
    grid-column: 1 / 7;
    grid-row: 3;
    grid-template-columns: repeat(2,1fr);
    align-self: stretch;
    margin-block: 22px 20px;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    background: transparent;
  }
  .hero-meta div { grid-template-columns: 48px 1fr; gap: 10px; padding: 14px 12px 14px 0; border: 0; }
  .hero-meta div:first-child { padding-right: 14px; }
  .hero-meta div:last-child { padding-left: 14px; border: 0; border-left: 1px solid var(--line-dark); }
  .hero-meta strong { font-size: 30px; }
  .hero-meta span { font-size: 10.5px; }
  .hero-actions { grid-column: 1 / 7; grid-row: 7; flex-wrap: wrap; margin-top: 26px; }
  .hero-actions .button { flex: 1 1 100%; }
  .hero-actions .text-link { min-height: 44px; align-items: center; }
  .proof-line p { min-height: 88px; grid-template-columns: 28px 1fr; gap: 8px; padding: 14px 12px 14px 0; font-size: 14px; line-height: 1.35; }
  .proof-line p:not(:first-child) { padding-left: 14px; }
  .proof-line p:nth-child(odd) { padding-left: 0; }
  .proof-line span { font-size: 14px; }
  .section-grid, .process-grid, .faq-grid { gap: 42px; }
  .section-lead { margin-top: 25px; }
  .service-row { min-height: 124px; grid-template-columns: 32px 1fr; gap: 12px; padding-block: 18px; }
  .service-row p { grid-column: 2; }
  .service-row:hover { padding-inline: 12px; }
  .bankruptcy::after, .vertical-note { display: none; }
  .bankruptcy { padding-block: 76px; }
  .bankruptcy-grid { grid-template-columns: repeat(6,1fr); gap: 36px 10px; }
  .bankruptcy-heading, .bankruptcy-copy, .bankruptcy-price, .bankruptcy-action { grid-column: 1 / 7; }
  .bankruptcy-copy, .bankruptcy-action { padding-left: 0; }
  .bankruptcy-copy > p { font-size: 17px; line-height: 1.6; }
  .situation-list li { font-size: 15px; line-height: 1.45; }
  .bankruptcy-price strong { font-size: clamp(44px, 14vw, 64px); }
  .bankruptcy-action p, .bankruptcy-price small { font-size: 14px; }
  .prices-head, .reviews-head { align-items: start; flex-direction: column; margin-bottom: 38px; }
  .prices-head { display: flex; gap: 25px; }
  .price-list li { min-height: 94px; grid-template-columns: 32px 1fr; gap: 8px 12px; padding-block: 16px; }
  .price-list strong { grid-column: 2; min-width: 0; text-align: left; }
  .about-grid { gap: 38px 10px; }
  .about-title-block, .about-statement, .about-facts, .education { grid-column: 1 / 13; }
  .about-title-block h2 { font-size: clamp(38px, 11vw, 52px); }
  .about-statement { padding: 24px 0 0 20px; }
  .about-statement p { font-size: clamp(24px, 7vw, 30px); }
  .about-facts { grid-template-columns: repeat(2,1fr); }
  .about-facts article { min-height: 126px; padding: 16px 12px 16px 0; }
  .about-facts article:not(:first-child) { padding-left: 12px; }
  .about-facts article:nth-child(2) { border-right: 0; }
  .about-facts article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .about-facts h3 { margin-top: 20px; font-size: 21px; }
  .about-facts p { font-size: 15px; }
  .education { grid-template-columns: 1fr; gap: 24px; padding-block: 30px; }
  .practice { padding-block: 76px; }
  .practice-head { margin-bottom: 34px; gap: 24px; }
  .practice-head h2 { font-size: clamp(38px, 10.5vw, 50px); }
  .practice-head > p { padding-right: 0; font-size: 16px; }
  .case-row { min-height: 156px; grid-template-columns: 1fr auto; gap: 8px 16px; padding-block: 20px; }
  .case-index { grid-column: 1 / 3; }
  .case-row strong { grid-column: 1 / 3; font-size: 24px; }
  .case-meta { grid-column: 1; }
  .case-meta b { font-size: 14px; }
  .case-meta small { font-size: 13px; }
  .case-row i { grid-column: 2; justify-self: end; font-size: 14px; line-height: 1.35; text-align: right; }
  .case-row i span { margin-left: 5px; font-size: 16px; }
  .steps li { min-height: 126px; grid-template-columns: 50px 1fr; }
  .review-grid { grid-template-columns: 1fr; gap: 12px; }
  .review, .review-featured, .review:nth-child(2), .review:nth-child(3), .review:nth-child(4) { min-height: 250px; grid-column: 1; padding: 25px; }
  .review figcaption { align-items: start; flex-direction: column; }
  .review figcaption span { text-align: left; }
  .faq-list summary { min-height: 82px; gap: 16px; font-size: 19px; }
  .legal-info { padding-block: 64px; }
  .legal-grid { gap: 28px; }
  .legal-notice { padding-block: 22px 26px; font-size: 21px; line-height: 1.48; }
  .legal-explanation { grid-template-columns: 1fr; gap: 12px; padding-top: 24px; }
  .legal-explanation p { font-size: 16px; line-height: 1.65; }
  .contact-grid { gap: 52px 10px; }
  .contact-code { grid-column: 1 / 13; }
  .contact-main { grid-column: 1 / 13; }
  .contact-primary { align-items: stretch; flex-direction: column; gap: 22px; }
  .contact-primary .button { width: 100%; }
  .phone-link { width: fit-content; }
  .phone-link, .source-note a, .footer-inner a { display: inline-flex; min-height: 44px; align-items: center; }
  .contact-channels { grid-column: 1 / 13; }
  .contact-address { grid-column: 1 / 13; grid-template-columns: 1fr; gap: 18px; }
  .contact-address a { justify-self: start; }
  .footer-inner { grid-template-columns: 1fr auto; gap: 14px; }
  .footer-inner p:nth-child(2) { display: none; }
  .site-footer { padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 390px) {
  :root { --shell: min(100% - 28px, 680px); }
  .hero-grid { grid-template-rows: auto auto auto minmax(340px,96vw) auto auto auto; }
  .hero-portrait { width: calc(100% + 28px); margin-left: -14px; }
  .hero-name { font-size: 14.8vw; }
  .hero-actions { gap: 20px; }
  .proof-line p { font-size: 14px; }
  .bankruptcy-price strong { font-size: 13vw; }
  .review blockquote { font-size: 21px; }
}

@media (hover: none) {
  .button:active,
  .header-contact:active,
  .menu-toggle:active,
  .contact-channels a:active,
  .contact-address a:active,
  .text-link:active { opacity: .72; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-portrait img { transform: none !important; }
  .scroll-progress { display: none; }
}
