:root {
  --ink: #172026;
  --muted: #5b6872;
  --line: #d9e2e3;
  --paper: #f7f8f5;
  --white: #ffffff;
  --teal: #006d77;
  --teal-dark: #044b52;
  --gold: #d99f2b;
  --clay: #9b4f35;
  --shadow: 0 22px 60px rgba(10, 32, 39, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(247, 248, 245, 0.92);
  border-bottom: 1px solid rgba(23, 32, 38, 0.09);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--teal);
  border-radius: 8px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 2vw, 24px);
  flex-wrap: wrap;
  font-size: 0.95rem;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--teal-dark);
}

.nav-cta {
  padding: 9px 14px;
  color: var(--white);
  background: var(--teal);
  border-radius: 7px;
}

main {
  min-height: calc(100vh - 160px);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100vh - 72px));
  isolation: isolate;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 21, 25, 0.78), rgba(7, 21, 25, 0.46) 47%, rgba(7, 21, 25, 0.12)),
    linear-gradient(0deg, rgba(7, 21, 25, 0.42), rgba(7, 21, 25, 0.02) 42%);
}

.hero-overlay {
  align-self: center;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 72px 0 96px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 13ch;
  font-size: clamp(2.55rem, 6vw, 5.8rem);
}

.hero p:not(.eyebrow),
.page-hero p {
  max-width: 62ch;
  font-size: 1.12rem;
}

.hero-actions,
.band {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 7px;
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

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

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

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(52px, 8vw, 96px) 0;
}

.split,
.two-column,
.payment-layout,
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-grid article,
.list-panel,
.side-panel,
.instruction-panel,
.form-card,
.process {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(23, 32, 38, 0.07);
}

.service-grid p,
.list-panel p,
.side-panel p,
.instruction-panel p,
.process p,
.section p {
  color: var(--muted);
}

.band {
  justify-content: space-between;
  padding: clamp(36px, 5vw, 56px);
  color: var(--white);
  background: var(--teal-dark);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.band p {
  color: rgba(255, 255, 255, 0.78);
}

.band a,
.direct-contact a,
.contact-box a {
  font-weight: 850;
}

.band a {
  color: var(--white);
}

.contact-line {
  margin-top: 16px;
}

.direct-contact {
  color: var(--teal-dark);
  font-weight: 750;
}

.contact-box {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-box p {
  margin: 7px 0;
}

.credibility-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(36px, 6vw, 76px);
  padding: clamp(28px, 5vw, 46px);
  background: #e8f1ef;
  border: 1px solid #c7dcda;
  border-radius: 8px;
}

.credibility-callout p {
  max-width: 70ch;
  color: var(--muted);
}

.testimonial-section {
  padding-top: 18px;
}

.recommendation-card {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(24px, 5vw, 60px);
  padding: clamp(26px, 5vw, 54px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.recommendation-meta {
  position: sticky;
  top: 104px;
  align-self: start;
}

.recommendation-meta p:not(.eyebrow) {
  color: var(--muted);
}

blockquote {
  margin: 0;
  padding-left: clamp(18px, 3vw, 32px);
  border-left: 4px solid var(--gold);
}

blockquote p {
  margin: 0 0 18px;
  color: #344047;
  font-size: 1.04rem;
}

.page {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.page-hero {
  padding: clamp(58px, 8vw, 104px) 0 34px;
}

.page-hero.compact h1 {
  max-width: 15ch;
}

.page-hero h1 {
  max-width: 18ch;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-card {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfcfb;
  border: 1px solid #c8d2d4;
  border-radius: 7px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(217, 159, 43, 0.32);
  border-color: var(--gold);
}

.honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
}

.form-status {
  min-height: 26px;
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.form-status.success {
  color: var(--teal-dark);
}

.form-status.error {
  color: var(--clay);
}

.instruction-panel dl {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.instruction-panel dl div {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.fine-print {
  font-size: 0.92rem;
}

.inline-action {
  display: inline-flex;
  margin: 0 0 6px;
  color: var(--teal-dark);
  font-weight: 900;
}

.process ol,
.list-panel ul {
  margin: 18px 0 0;
  padding-left: 1.2rem;
}

.process li,
.list-panel li {
  margin: 10px 0;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.78);
  background: #11191d;
}

footer a {
  color: var(--white);
}

@media (max-width: 820px) {
  .site-header,
  .split,
  .two-column,
  .payment-layout,
  .form-layout,
  .recommendation-card {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
    display: grid;
    justify-items: start;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    align-self: end;
    padding-bottom: 54px;
  }

  .service-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .band {
    align-items: flex-start;
  }

  .credibility-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .recommendation-meta {
    position: static;
  }
}

@media (max-width: 520px) {
  .brand {
    min-width: 0;
  }

  nav {
    gap: 10px 14px;
    font-size: 0.9rem;
  }

  h1 {
    font-size: 2.55rem;
  }

  .page-hero h1 {
    font-size: 2.35rem;
  }
}
