:root {
  color-scheme: light;
  --ink: #26182d;
  --ink-soft: #5f5363;
  --plum-950: #24122e;
  --plum-900: #321d3f;
  --plum-800: #492958;
  --plum-700: #643970;
  --amber: #d89226;
  --amber-deep: #b66f0d;
  --amber-soft: #fff1d5;
  --paper: #fbfaf8;
  --surface: #ffffff;
  --surface-muted: #f2eef3;
  --line: #ded5df;
  --line-strong: #b9a9bc;
  --shadow: 0 24px 80px rgba(40, 20, 48, 0.13);
  --shell: min(1180px, calc(100% - 48px));
  --radius: 6px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f4edf5;
  --ink-soft: #c9bccd;
  --paper: #170f1b;
  --surface: #211727;
  --surface-muted: #2b1e31;
  --line: #44334a;
  --line-strong: #66516d;
  --amber-soft: #3b2a18;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

svg {
  display: block;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--amber);
  color: #1c111f;
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(222, 213, 223, 0.72);
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand strong {
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--plum-900);
  color: var(--amber);
}

.brand-mark svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.7;
}

.desktop-nav {
  display: flex;
  gap: 34px;
}

.desktop-nav a,
.footer-meta a {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.desktop-nav a:hover,
.footer-meta a:hover,
.text-link:hover {
  color: var(--amber-deep);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.theme-toggle {
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.theme-toggle:hover {
  border-color: var(--amber);
  color: var(--amber-deep);
}

.theme-toggle svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.moon-icon,
html[data-theme="dark"] .sun-icon {
  display: none;
}

html[data-theme="dark"] .moon-icon {
  display: block;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--plum-900);
  border-radius: 3px;
  background: var(--plum-900);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  border-color: var(--plum-700);
  background: var(--plum-700);
  transform: translateY(-1px);
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.82rem;
}

.section-shell,
.hero-grid {
  width: var(--shell);
  margin-inline: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 100px;
  background:
    linear-gradient(90deg, transparent 0 74%, color-mix(in srgb, var(--amber) 7%, transparent) 74% 74.1%, transparent 74.1%),
    linear-gradient(color-mix(in srgb, var(--plum-700) 6%, transparent) 1px, transparent 1px);
  background-size: auto, 100% 88px;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 31%;
  height: 10px;
  background: var(--amber);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, 0.72fr);
  gap: 84px;
  align-items: center;
}

.hero-copy {
  max-width: 730px;
}

.eyebrow,
.kicker,
.review-label,
.review-scope {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--plum-700);
}

html[data-theme="dark"] .eyebrow {
  color: #e4b55f;
}

.eyebrow span {
  width: 27px;
  height: 3px;
  background: var(--amber);
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 6.1vw, 5.65rem);
  line-height: 0.99;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.15rem, 4vw, 3.55rem);
  line-height: 1.05;
}

h3 {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-lede {
  max-width: 670px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: 1.16rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.text-link,
.card-link {
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.text-link span,
.card-link span {
  margin-left: 6px;
  color: var(--amber-deep);
}

.assurance-row {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 650;
}

.assurance-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.assurance-row svg {
  width: 18px;
  fill: none;
  stroke: var(--amber-deep);
  stroke-width: 2;
}

.review-card {
  position: relative;
  padding: 34px 36px 30px;
  border: 1px solid var(--line-strong);
  border-top: 5px solid var(--amber);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.review-card-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 26px;
}

.review-label {
  color: var(--amber-deep);
}

.review-scope {
  color: var(--ink-soft);
}

.review-card h2 {
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 1.08;
}

.review-card > p {
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.price-row {
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.price {
  color: var(--plum-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.2rem;
  line-height: 1;
}

html[data-theme="dark"] .price {
  color: #e5b962;
}

.price-note {
  padding-bottom: 4px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.divider {
  height: 1px;
  margin: 28px 0;
  background: var(--line);
}

.path-list {
  position: relative;
  display: grid;
  gap: 21px;
  margin-bottom: 28px;
}

.path-list::before {
  position: absolute;
  top: 13px;
  bottom: 13px;
  left: 15px;
  width: 1px;
  background: var(--line-strong);
  content: "";
}

.path-item {
  position: relative;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
}

.path-number {
  z-index: 1;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--amber-deep);
  font-size: 0.66rem;
  font-weight: 850;
}

.path-item strong,
.path-item small {
  display: block;
}

.path-item strong {
  margin-bottom: 2px;
  font-size: 0.88rem;
}

.path-item small {
  color: var(--ink-soft);
  font-size: 0.77rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
}

.law-band {
  background: var(--plum-950);
  color: #fff;
}

.law-band-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, 1fr);
  min-height: 150px;
  align-items: stretch;
}

.law-band-grid > * {
  display: flex;
  min-width: 0;
  justify-content: center;
  flex-direction: column;
  margin: 0;
  padding: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.law-band-grid > p {
  padding-left: 0;
  border-left: 0;
  color: #d8cfdc;
  font-size: 1rem;
  line-height: 1.35;
}

.law-band-grid > p strong {
  color: #fff;
  font-weight: 750;
}

.law-stat span {
  margin-bottom: 6px;
  color: #efb84e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.law-stat small {
  color: #d1c5d5;
  font-size: 0.74rem;
  line-height: 1.35;
}

.section {
  padding: 112px 0;
}

.two-column,
.fit-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.kicker {
  margin-bottom: 18px;
  color: var(--amber-deep);
}

.body-copy p,
.fit-copy p,
.approach-copy > p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

.body-copy p:last-child,
.fit-copy p:last-child {
  margin-bottom: 0;
}

.deliverables {
  border-block: 1px solid var(--line);
  background: var(--surface-muted);
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}

.section-heading-row > p {
  max-width: 310px;
  margin-bottom: 4px;
  color: var(--ink-soft);
  text-align: right;
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.deliverable {
  min-height: 255px;
  padding: 30px 32px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: var(--surface);
}

.deliverable.featured {
  position: relative;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 52px 1fr auto;
  min-height: 190px;
  align-items: start;
  gap: 18px;
  background: var(--plum-900);
  color: #fff;
}

.deliverable.featured h3,
.deliverable.featured p {
  color: #fff;
}

.deliverable h3 {
  margin: 36px 0 12px;
}

.deliverable.featured h3 {
  margin: 0 0 10px;
}

.deliverable p {
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.7;
}

.card-index {
  color: var(--amber-deep);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.featured .card-index {
  color: #efb84e;
}

.status-chip {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #f5d79e;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 110px;
  align-items: start;
}

.approach-copy {
  position: sticky;
  top: 120px;
}

.approach-copy h2 {
  margin-bottom: 26px;
}

.privacy-note {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 15px;
  margin-top: 34px;
  padding: 21px;
  border-left: 4px solid var(--amber);
  background: var(--amber-soft);
}

.privacy-note svg {
  width: 30px;
  fill: none;
  stroke: var(--amber-deep);
  stroke-width: 1.6;
}

.privacy-note strong,
.privacy-note span {
  display: block;
}

.privacy-note strong {
  font-size: 0.93rem;
}

.privacy-note span {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.81rem;
  line-height: 1.5;
}

.steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.steps li > span {
  color: var(--amber-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  line-height: 1;
}

.steps h3 {
  margin: 0 0 7px;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.fit {
  background: var(--plum-900);
  color: #fff;
}

.fit .kicker {
  color: #efb84e;
}

.fit h2 {
  color: #fff;
}

.fit-copy p {
  color: #d7cadb;
}

.faq-heading {
  margin-bottom: 42px;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 4px;
  cursor: pointer;
  font-size: 1.03rem;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--amber-deep);
  font-family: Georgia, serif;
  font-size: 1.7rem;
  font-weight: 400;
  transition: transform 160ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 800px;
  margin: -4px 0 26px;
  padding-left: 4px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.closing {
  padding: 78px 0;
  background: var(--amber);
  color: #241428;
}

.closing .kicker {
  color: #5b3510;
}

.closing h2 {
  color: #241428;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.closing p {
  margin: 16px 0 0;
  color: #503a55;
}

.closing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.closing-action {
  display: flex;
  align-items: center;
  gap: 30px;
}

.closing-action > div {
  min-width: 120px;
}

.closing-action span,
.closing-action small {
  display: block;
}

.closing-action span {
  font-family: Georgia, serif;
  font-size: 2.25rem;
  line-height: 1;
}

.closing-action small {
  margin-top: 6px;
  color: #5c455e;
  font-size: 0.7rem;
  font-weight: 750;
  text-transform: uppercase;
}

.button-light {
  border-color: #241428;
  background: #241428;
}

.site-footer {
  padding: 58px 0 32px;
  background: #1b1020;
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px 70px;
}

.footer-brand {
  color: #fff;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
}

.footer-meta span,
.footer-meta a,
.legal,
.copyright {
  color: #c4b7c8;
  font-size: 0.77rem;
}

.legal {
  max-width: 650px;
  margin: 0;
  line-height: 1.65;
}

.copyright {
  margin: 0;
  text-align: right;
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .review-card {
    max-width: 580px;
  }

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

  .law-band-grid > p {
    grid-column: 1 / -1;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .two-column,
  .fit-grid,
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .approach-copy {
    position: static;
  }

  .closing-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: min(100% - 32px, 1180px);
  }

  .site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  .brand {
    gap: 8px;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .button-small {
    display: none;
  }

  .hero {
    padding: 62px 0 74px;
    background-size: auto, 100% 72px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.3rem);
  }

  .hero-lede {
    font-size: 1.03rem;
  }

  .hero-actions,
  .assurance-row,
  .closing-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .assurance-row {
    gap: 10px;
  }

  .review-card {
    padding: 27px 24px 24px;
  }

  .review-card-top,
  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading-row > p {
    text-align: left;
  }

  .law-band-grid {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .law-band-grid > * {
    padding: 24px 20px;
  }

  .law-band-grid > p {
    padding-inline: 20px;
  }

  .law-band-grid > *:nth-child(even) {
    border-left: 0;
  }

  .section {
    padding: 82px 0;
  }

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

  .deliverable.featured {
    grid-template-columns: 42px 1fr;
  }

  .status-chip {
    display: none;
  }

  .steps li {
    grid-template-columns: 34px 1fr;
    gap: 18px;
  }

  .closing-action {
    gap: 20px;
  }

  .closing-action .button {
    width: 100%;
  }

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

  .footer-meta {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .copyright {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
