* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #19222b;
  --muted: #596676;
  --line: #d9e0e7;
  --paper: #f7f8f8;
  --white: #ffffff;
  --accent: #c23a2b;
  --accent-dark: #8f2118;
  --steel: #23566f;
  --deep: #111820;
  --shadow: 0 20px 60px rgba(17, 24, 32, 0.16);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(17, 24, 32, 0.88), rgba(17, 24, 32, 0.1));
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(17, 24, 32, 0.96);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-name,
.brand-subtitle {
  display: block;
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.05;
}

.brand-subtitle {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 24, 32, 0.94) 0%, rgba(17, 24, 32, 0.74) 38%, rgba(17, 24, 32, 0.12) 74%),
    linear-gradient(180deg, rgba(17, 24, 32, 0.24) 0%, rgba(17, 24, 32, 0.86) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 150px clamp(18px, 6vw, 84px) 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(3rem, 8vw, 6.8rem);
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
}

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

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--accent-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.hero-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 680px;
  margin: 44px 0 0;
}

.hero-details div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(17, 24, 32, 0.5);
}

.hero-details dt {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-details dd {
  margin: 0;
  font-weight: 700;
}

.notice {
  padding: 18px clamp(18px, 5vw, 72px);
  background: var(--accent);
  color: var(--white);
}

.notice p {
  max-width: 1120px;
  margin: 0 auto;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(62px, 9vw, 100px) 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 6vw, 74px);
}

.section-heading h2,
.contact h2 {
  color: var(--deep);
  font-size: clamp(2rem, 4vw, 3.65rem);
}

.intro-copy p,
.process-copy p,
.contact p,
.faq-list p {
  margin: 0;
  color: var(--muted);
}

.intro-copy p + p,
.process-copy p + p {
  margin-top: 18px;
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 0;
}

.proof article {
  padding: 24px;
  border-top: 4px solid var(--accent);
  background: var(--white);
  box-shadow: 0 1px 0 var(--line);
}

.proof-number {
  display: block;
  color: var(--steel);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.service-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card h3 {
  margin: 0 0 16px;
  color: var(--deep);
  font-size: 1.2rem;
}

.service-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.service-card li + li {
  margin-top: 10px;
}

.process {
  width: 100%;
  padding-right: max(18px, calc((100vw - 1120px) / 2));
  padding-left: max(18px, calc((100vw - 1120px) / 2));
  background: var(--deep);
}

.process .section-heading h2,
.process .eyebrow {
  color: var(--white);
}

.process .eyebrow {
  opacity: 0.72;
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  margin-top: 32px;
}

.process-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.fee-panel {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.fee-panel div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  background: var(--white);
}

.fee-panel div + div {
  border-top: 1px solid var(--line);
}

.fee-panel span {
  color: var(--muted);
}

.fee-panel strong {
  color: var(--accent-dark);
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--deep);
  font-weight: 800;
}

.faq-list p {
  padding: 0 20px 20px;
}

.contact {
  padding-top: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-panel p {
  max-width: 560px;
  margin-top: 18px;
}

address {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 24px;
  border-left: 4px solid var(--accent);
  color: var(--muted);
  font-style: normal;
  background: var(--paper);
}

address strong {
  color: var(--deep);
}

address a {
  color: var(--steel);
  font-weight: 800;
  text-decoration: none;
}

address a:hover,
address a:focus-visible {
  text-decoration: underline;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--deep);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 18px 20px;
    background: rgba(17, 24, 32, 0.98);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .intro,
  .process-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

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

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

  .brand-subtitle {
    font-size: 0.68rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(17, 24, 32, 0.45) 0%, rgba(17, 24, 32, 0.94) 58%),
      linear-gradient(90deg, rgba(17, 24, 32, 0.76), rgba(17, 24, 32, 0.14));
  }

  .hero-image {
    object-position: 60% center;
  }

  .hero-content {
    padding: 96px 18px 20px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-details,
  .proof,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero-details {
    margin-top: 20px;
  }

  .hero-details div {
    padding: 14px 16px;
  }

  .section {
    width: min(100% - 32px, 1120px);
  }

  .process {
    width: 100%;
  }

  .fee-panel div {
    align-items: start;
  }

  .site-footer {
    flex-direction: column;
  }
}
