:root {
  --ink: #1f2824;
  --muted: #627069;
  --deep: #1f4a3b;
  --teal: #4f8a70;
  --gold: #b59a68;
  --mist: #edf4ef;
  --paper: #fbfbf7;
  --line: #dbe4dd;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(31, 74, 59, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.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(20px, 5vw, 72px);
  background: rgba(251, 250, 247, 0.92);
  border-bottom: 1px solid rgba(217, 223, 220, 0.82);
  backdrop-filter: blur(16px);
}

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

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  color: var(--deep);
  font-size: 18px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  color: #2b3933;
  font-size: 15px;
}

nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

nav a:hover,
nav a:focus-visible {
  border-color: var(--gold);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 112px clamp(20px, 5vw, 72px) 48px;
  overflow: hidden;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.96) 0%, rgba(251, 250, 247, 0.82) 42%, rgba(251, 250, 247, 0.18) 78%),
    linear-gradient(180deg, rgba(31, 74, 59, 0.08), rgba(31, 74, 59, 0.12));
}

.hero-content {
  position: relative;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 690px;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 600;
}

h2 {
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
}

h3 {
  color: var(--ink);
  font-size: 21px;
}

.lead {
  max-width: 640px;
  margin: 24px 0 0;
  color: #31443b;
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--deep);
  border-radius: 6px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

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

.button.primary:hover,
.button.primary:focus-visible {
  background: #173829;
}

.button.ghost {
  color: var(--deep);
  background: rgba(255, 255, 255, 0.68);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin: 44px 0 0;
  padding: 0;
  background: rgba(217, 223, 220, 0.9);
  box-shadow: var(--shadow);
}

.trust-strip div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.88);
}

.trust-strip dt {
  color: var(--deep);
  font-weight: 800;
}

.trust-strip dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  background: var(--white);
}

.intro p:last-child {
  margin: 0;
  color: #3e4c45;
  font-size: 20px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
  background: var(--mist);
}

.about-copy {
  max-width: 780px;
}

.about-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: #3e4c45;
  font-size: 18px;
}

.about-panel {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(31, 74, 59, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-photo {
  width: 128px;
  height: 150px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  object-fit: cover;
  object-position: 58% 24%;
  box-shadow: 0 14px 32px rgba(31, 74, 59, 0.12);
}

.about-name {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-panel h3 {
  margin-bottom: 20px;
  color: var(--deep);
}

.about-panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-panel li {
  padding-left: 18px;
  border-left: 3px solid var(--gold);
  color: var(--muted);
}

.service-grid,
.rate-grid,
.specialty-grid,
.client-grid,
.accepted-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card,
.rate-card,
.specialty-card,
.client-card,
.accepted-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.specialties {
  background: var(--white);
}

.clients {
  background: var(--mist);
}

.accepted-documents {
  background: var(--paper);
}

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

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

.service-card,
.specialty-card,
.client-card,
.accepted-card {
  display: grid;
  align-content: start;
  gap: 18px;
}

.service-card p,
.rate-card p,
.specialty-card p,
.client-card p,
.accepted-card p {
  margin: 0;
  color: var(--muted);
}

.card-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.card-list li {
  position: relative;
  padding-left: 18px;
  color: #3e4c45;
  font-size: 15px;
}

.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.card-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(184, 148, 95, 0.55);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 800;
}

.method {
  background: var(--mist);
}

.steps {
  display: grid;
  gap: 16px;
  max-width: 980px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 72px minmax(0, 260px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid rgba(95, 104, 107, 0.22);
}

.steps li::before {
  content: counter(steps, decimal-leading-zero);
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.steps strong {
  color: var(--deep);
  font-size: 20px;
}

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

.method-note {
  max-width: 860px;
  margin: 24px 0 0;
  padding: 18px 22px;
  border-left: 3px solid var(--gold);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
}

.rates {
  background: var(--white);
}

.rate-card {
  display: grid;
  align-content: start;
  gap: 16px;
}

.rate-card.featured {
  color: var(--white);
  background: var(--deep);
  border-color: var(--deep);
}

.rate-card.featured h3,
.rate-card.featured p {
  color: var(--white);
}

.price {
  color: var(--deep);
  font-size: 22px;
  font-weight: 800;
}

.rates-note {
  max-width: 820px;
  margin: 22px 0 0;
  color: var(--muted);
}

.trial-offer {
  max-width: 820px;
  margin-top: 24px;
  padding: 24px 28px;
  border: 1px solid rgba(31, 74, 59, 0.16);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  background: var(--mist);
}

.trial-label {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trial-offer h3 {
  color: var(--deep);
}

.trial-offer p {
  margin: 12px 0 0;
  color: var(--muted);
}

.trial-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--ink);
}

.trial-definition {
  padding-top: 14px;
  border-top: 1px solid rgba(31, 74, 59, 0.14);
  font-size: 0.95rem;
}

.data-protection {
  background: #1d2b24;
  color: var(--white);
}

.data-protection .section-heading {
  max-width: 900px;
}

.data-protection h2,
.data-protection h3 {
  color: var(--white);
}

.data-protection .section-heading p:not(.eyebrow),
.data-card p,
.data-note li {
  color: rgba(255, 255, 255, 0.78);
}

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

.data-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.data-card p {
  margin: 16px 0 0;
}

.data-note {
  max-width: 900px;
  margin-top: 26px;
  padding: 28px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.06);
}

.data-note .card-list {
  margin-top: 16px;
}

.data-note .card-list li {
  color: rgba(255, 255, 255, 0.78);
}

.reassurance {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: clamp(30px, 6vw, 90px);
  background: #1d2b24;
  color: var(--white);
}

.reassurance h2 {
  color: var(--white);
}

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

.reassurance ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reassurance li {
  padding-left: 22px;
  border-left: 3px solid var(--gold);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 84px);
  background: var(--paper);
}

.contact-copy p {
  max-width: 600px;
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: var(--deep);
  font-weight: 800;
}

.contact-form,
.contact-card {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

label {
  display: grid;
  gap: 8px;
  color: #33433b;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid #cbd4d1;
  border-radius: 6px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(79, 138, 112, 0.18);
  border-color: var(--teal);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: #101914;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.legal-page {
  padding-top: 86px;
  background: var(--paper);
}

.legal-hero {
  padding: clamp(72px, 9vw, 116px) clamp(20px, 5vw, 72px) clamp(32px, 5vw, 56px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  color: var(--deep);
}

.legal-hero p:last-child {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.legal-content {
  display: grid;
  gap: 18px;
  max-width: 980px;
  padding: clamp(42px, 6vw, 72px) clamp(20px, 5vw, 72px);
}

.legal-content article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.legal-content h2 {
  margin-bottom: 16px;
  font-size: clamp(24px, 3vw, 34px);
}

.legal-content p {
  margin: 8px 0;
  color: var(--muted);
}

.legal-content a {
  color: var(--deep);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    flex-direction: column;
    align-items: flex-start;
  }

  section[id] {
    scroll-margin-top: 142px;
  }

  nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    overflow: visible;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .hero-overlay {
    background: rgba(251, 250, 247, 0.88);
  }

  .trust-strip,
  .intro,
  .about,
  .accepted-grid,
  .specialty-grid,
  .client-grid,
  .service-grid,
  .rate-grid,
  .data-grid,
  .reassurance,
  .contact {
    grid-template-columns: 1fr;
  }

  .steps li {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .steps span {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 14px;
    padding: 14px 18px 16px;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 12px;
    font-size: 13px;
  }

  nav a {
    min-height: 34px;
    padding: 7px 6px;
    border: 1px solid rgba(31, 74, 59, 0.12);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.56);
    text-align: center;
    line-height: 1.2;
  }

  nav a:hover,
  nav a:focus-visible {
    border-color: var(--gold);
  }

  section[id] {
    scroll-margin-top: 178px;
  }

  .hero {
    padding: 48px 20px 42px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 40px);
    line-height: 1.06;
  }

  h2 {
    font-size: clamp(27px, 8vw, 34px);
    line-height: 1.12;
  }

  .eyebrow {
    font-size: 12px;
    letter-spacing: 0.09em;
  }

  .lead {
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-strip div {
    padding: 15px;
  }
}
