:root {
  --ink: #111b2b;
  --ink-2: #182742;
  --muted: #667084;
  --copper: #b87846;
  --copper-dark: #8d5631;
  --copper-soft: #f5dfcc;
  --teal: #0f7b78;
  --teal-soft: #dff2ef;
  --ivory: #fbf7ef;
  --paper: #fffdf8;
  --white: #ffffff;
  --line: rgba(17, 27, 43, 0.14);
  --shadow: 0 24px 72px rgba(17, 27, 43, 0.18);
  --soft-shadow: 0 16px 44px rgba(17, 27, 43, 0.1);
  --radius: 8px;
  --container: min(1160px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(245, 223, 204, 0.34), rgba(255, 253, 248, 0) 520px),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 60;
  transform: translateY(-130%);
  border-radius: var(--radius);
  background: var(--copper);
  color: var(--white);
  padding: 10px 14px;
  font-weight: 900;
  transition: transform 160ms ease;
}

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

:focus-visible {
  outline: 3px solid rgba(184, 120, 70, 0.56);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  inset: 18px 24px auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(17, 27, 43, 0.48);
  color: var(--white);
  padding: 12px 14px;
  backdrop-filter: blur(18px);
  transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.94);
  color: var(--ink);
  box-shadow: 0 14px 36px rgba(17, 27, 43, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, var(--copper), var(--teal));
}

.brand-mark svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  margin-top: 4px;
  color: currentColor;
  opacity: 0.72;
  font-size: 0.78rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: currentColor;
  font-size: 0.93rem;
  font-weight: 800;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 13px;
  opacity: 0.86;
  transition: background 160ms ease, opacity 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  opacity: 1;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible {
  background: var(--copper-soft);
}

.nav-cta {
  background: var(--copper) !important;
  color: var(--white);
  opacity: 1 !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  place-items: center;
  padding: 0;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(820px, 100vh);
  overflow: hidden;
  display: grid;
  align-items: center;
  color: var(--white);
  background: var(--ink);
  padding: 128px 0 70px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 27, 43, 0.96) 0%, rgba(17, 27, 43, 0.84) 36%, rgba(17, 27, 43, 0.28) 68%, rgba(17, 27, 43, 0.1) 100%),
    linear-gradient(180deg, rgba(17, 27, 43, 0.12), rgba(17, 27, 43, 0.58));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.48fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: end;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
summary {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  max-width: 800px;
  font-size: clamp(3rem, 6vw, 5.7rem);
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 670px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 23px;
  font-weight: 950;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--copper);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(184, 120, 70, 0.28);
}

.button.primary:hover {
  background: var(--copper-dark);
}

.button.secondary,
.button.light {
  background: var(--white);
  color: var(--ink);
}

.case-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  padding: clamp(24px, 4vw, 34px);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.case-card span,
.label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.86);
  padding: 0 12px;
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.case-card h2 {
  margin-top: 16px;
  font-size: 2rem;
}

.case-card ol {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.trust-strip {
  background: var(--ink);
  color: var(--white);
  padding: 22px 0;
}

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

.trust-grid span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 16px;
  color: rgba(255, 255, 255, 0.72);
}

.trust-grid strong {
  display: block;
  color: var(--white);
}

.section-pad {
  padding: clamp(76px, 9vw, 122px) 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 40px;
}

.section-heading h2,
.intro-grid h2,
.document-grid h2,
.urgent-grid h2,
.faq h2,
.contact h2 {
  font-size: clamp(2.1rem, 4.6vw, 4rem);
}

.split,
.intro-grid,
.document-grid,
.urgent-grid,
.faq-grid,
.contact-grid,
.footer-grid,
.footer-bottom {
  display: grid;
  gap: 32px;
  align-items: center;
}

.split {
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.56fr);
  max-width: none;
}

.split > p,
.intro-text p,
.document-grid p,
.faq p,
.contact p {
  color: var(--muted);
  font-size: 1.05rem;
}

.intro {
  background: var(--paper);
}

.intro-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.74fr);
}

.intro-text {
  border-left: 5px solid var(--copper);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--soft-shadow);
}

.advice {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--ivory), var(--paper));
}

.advice::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 27, 43, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 27, 43, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, transparent, black 18%, black 82%, transparent);
}

.advice .container {
  position: relative;
}

.advice-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.advice-card,
.price-card,
.document-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(17, 27, 43, 0.08);
}

.advice-card {
  min-height: 300px;
  padding: 28px;
}

.card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--copper-soft);
  color: var(--copper-dark);
  font-weight: 950;
}

.advice-card h3,
.price-card h3,
.document-card h3 {
  margin-top: 22px;
  font-size: 1.45rem;
}

.advice-card p,
.price-card p {
  color: var(--muted);
}

.process {
  background: var(--ink);
  color: var(--white);
}

.process .eyebrow {
  color: #e3ac73;
}

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

.process-board article {
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 26px;
}

.process-board span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--copper);
  color: var(--white);
  font-weight: 950;
}

.process-board h3 {
  margin-top: 32px;
  font-size: 1.4rem;
}

.process-board p {
  color: rgba(255, 255, 255, 0.72);
}

.document-zone {
  background: var(--paper);
}

.document-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.68fr);
}

.document-card {
  padding: clamp(26px, 4vw, 38px);
}

.document-card ul,
.price-card ul {
  display: grid;
  gap: 11px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.document-card li,
.price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-weight: 800;
}

.document-card li::before,
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--copper);
  transform: translateY(-50%);
}

.urgent-band {
  background:
    linear-gradient(135deg, var(--copper), #5e3b2d 52%, var(--ink));
  color: var(--white);
  padding: 46px 0;
}

.urgent-band .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

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

.pricing {
  background: var(--ivory);
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 30px;
}

.price-card .button {
  width: fit-content;
  margin-top: auto;
}

.price-card .label {
  background: var(--copper-soft);
  color: var(--copper-dark);
}

.price-card.featured {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-18px);
}

.price-card.featured p,
.price-card.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.price-card.featured .label {
  background: var(--copper);
  color: var(--white);
}

.faq {
  background: var(--paper);
}

.faq-grid {
  grid-template-columns: minmax(260px, 0.54fr) minmax(0, 1fr);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
}

.faq-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  font-weight: 950;
  cursor: pointer;
}

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

.faq-list summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--copper-soft);
  color: var(--copper-dark);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(184, 120, 70, 0.35), transparent 36%),
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: auto, 40px 40px, 40px 40px;
}

.contact .container {
  position: relative;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.84fr);
}

.contact p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-lines {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 850;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: clamp(24px, 4vw, 34px);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(17, 27, 43, 0.15);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 4px rgba(184, 120, 70, 0.13);
}

.full-field,
.contact-form .button,
.form-note {
  grid-column: 1 / -1;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--copper-dark);
  font-weight: 950;
}

.form-honeypot {
  display: none !important;
}

.form-privacy-note {
  grid-column: 1 / -1;
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.45;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 20px 72px;
  background:
    linear-gradient(135deg, rgba(184, 120, 70, 0.14), rgba(15, 123, 120, 0.08)),
    var(--paper);
}

.thank-you-card {
  width: min(720px, 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(30px, 5vw, 54px);
  box-shadow: var(--soft-shadow);
}

.thank-you-logo {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  margin-bottom: 24px;
}

.thank-you-card h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.02;
}

.thank-you-card p:not(.eyebrow) {
  max-width: 590px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.site-footer {
  background: #0c1422;
  color: rgba(255, 255, 255, 0.76);
  padding: 54px 0 24px;
}

.footer-grid {
  grid-template-columns: 1.15fr repeat(3, minmax(160px, 0.5fr));
  align-items: start;
}

.footer-grid p {
  max-width: 360px;
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1rem;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin: 8px 0;
}

.footer-bottom {
  grid-template-columns: 1fr auto auto;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--copper);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(184, 120, 70, 0.32);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1060px) {
  .nav-toggle {
    display: inline-grid;
  }

  .site-nav {
    position: fixed;
    inset: 82px 16px auto;
    display: grid;
    gap: 6px;
    max-height: calc(100vh - 102px);
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--ink);
    padding: 14px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    width: 100%;
    justify-content: space-between;
    border-radius: 7px;
  }

  .hero-grid,
  .intro-grid,
  .document-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .case-card {
    max-width: 640px;
  }

  .advice-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-board,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 28px, 1160px);
  }

  .site-header {
    inset: 12px 12px auto;
  }

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

  .hero {
    min-height: auto;
    padding: 110px 0 44px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(17, 27, 43, 0.96), rgba(17, 27, 43, 0.84)),
      rgba(17, 27, 43, 0.72);
  }

  .hero-image {
    opacity: 0.35;
    object-position: 68% center;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.65rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .split,
  .advice-grid,
  .pricing-grid,
  .process-board,
  .trust-grid,
  .urgent-grid,
  .footer-grid,
  .footer-bottom,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .advice-card,
  .price-card,
  .process-board article {
    min-height: auto;
  }
}

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