:root {
  --mk-bg: #f7faf8;
  --mk-bg-soft: #eef4f0;
  --mk-surface: #ffffff;
  --mk-ink: #10231d;
  --mk-muted: #5b6b64;
  --mk-line: #dbe5df;
  --mk-emerald: #004b36;
  --mk-emerald-2: #076348;
  --mk-gold: #b8872f;
  --mk-gold-soft: #f4ead8;
  --mk-shadow: 0 18px 50px rgba(21, 55, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--mk-ink);
  background: var(--mk-bg);
  font: 500 16px/1.55 Inter, "Segoe UI", Arial, sans-serif;
}

body.is-nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: 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: 50%;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  top: 12px;
  min-height: 64px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(219, 229, 223, 0.8);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(21, 55, 45, 0.11);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--mk-ink);
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--mk-emerald);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.12);
}

.brand-mark span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
  color: var(--mk-gold-soft);
}

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

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1;
}

.brand small {
  margin-top: 2px;
  color: var(--mk-gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #1f332c;
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--mk-emerald);
  border-bottom-color: var(--mk-gold);
  outline: none;
}

.site-nav .nav-doc {
  min-height: 44px;
  padding: 0 16px;
  color: #fff;
  background: var(--mk-emerald);
  border-radius: 8px;
  border-bottom: 0;
  box-shadow: 0 12px 28px rgba(0, 75, 54, 0.2);
}

.site-nav .nav-doc:hover,
.site-nav .nav-doc:focus-visible {
  color: #fff;
  background: var(--mk-emerald-2);
  border-bottom: 0;
}

.language-select {
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  color: var(--mk-ink);
  background: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.language-select:focus-visible {
  border-color: var(--mk-gold);
  outline: 3px solid rgba(184, 135, 47, 0.18);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--mk-ink);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 118px 24px 56px;
  background: var(--mk-bg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(247, 250, 248, 0.99) 0%, rgba(247, 250, 248, 0.92) 36%, rgba(247, 250, 248, 0.24) 67%, rgba(247, 250, 248, 0.02) 100%);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 74px;
  line-height: 0.96;
  font-weight: 800;
}

.hero-lead {
  max-width: 565px;
  margin: 24px 0 0;
  color: #31443d;
  font-size: 20px;
  line-height: 1.55;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--mk-ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

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

.button.primary {
  color: #fff;
  background: var(--mk-emerald);
  box-shadow: 0 16px 32px rgba(0, 75, 54, 0.22);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--mk-emerald-2);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(184, 135, 47, 0.65);
}

.button.light {
  color: var(--mk-emerald);
  background: #fff;
  border-color: rgba(255, 255, 255, 0.42);
}

.trust-strip {
  max-width: 645px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 44px 0 0;
}

.trust-strip div {
  min-height: 98px;
  padding: 18px;
  border: 1px solid rgba(0, 75, 54, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 42px rgba(21, 55, 45, 0.08);
  backdrop-filter: blur(10px);
}

.trust-strip dt {
  color: var(--mk-emerald);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

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

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-number {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--mk-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 900;
}

.section h2,
.verified-section h2,
.contact-section h2 {
  margin: 0;
  color: var(--mk-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1.05;
}

.section-heading p,
.verified-copy p,
.contact-panel p {
  margin: 16px 0 0;
  color: var(--mk-muted);
  font-size: 18px;
}

.service-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 24px;
  align-items: start;
}

.service-visual {
  position: sticky;
  top: 102px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--mk-shadow);
}

.service-visual img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
}

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

.service-card {
  min-height: 208px;
  padding: 22px;
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  background: var(--mk-surface);
  box-shadow: 0 10px 30px rgba(21, 55, 45, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 135, 47, 0.46);
  box-shadow: 0 18px 40px rgba(21, 55, 45, 0.11);
}

.service-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--mk-emerald);
  border-radius: 8px;
  background: var(--mk-bg-soft);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.service-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

.service-card p {
  margin: 10px 0 0;
  color: var(--mk-muted);
  font-size: 14px;
}

.verified-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding: 84px max(24px, calc((100vw - 1180px) / 2));
  color: #fff;
  background: var(--mk-emerald);
}

.verified-section h2,
.verified-copy p {
  color: #fff;
}

.verified-copy p,
.check-list {
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--mk-gold);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.72);
}

.verified-image {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.verified-image img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.62fr);
  gap: 28px;
  align-items: stretch;
}

.process-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--mk-shadow);
}

.process-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

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

.timeline li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  background: #fff;
}

.timeline span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--mk-emerald);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 900;
}

.timeline h3 {
  margin: 0;
  font-size: 18px;
}

.timeline p {
  margin: 8px 0 0;
  color: var(--mk-muted);
  font-size: 14px;
}

.contact-section {
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.62fr);
  gap: 24px;
  margin: 0 auto 72px;
  padding: 76px 0 0;
}

.contact-panel,
.lead-form {
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--mk-shadow);
}

.contact-panel {
  padding: 34px;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-links a {
  min-height: 58px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  text-decoration: none;
  color: var(--mk-ink);
  font-weight: 800;
  transition: border-color 160ms ease, transform 160ms ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(184, 135, 47, 0.55);
  outline: none;
}

.contact-links svg {
  width: 44px;
  height: 44px;
  padding: 10px;
  color: var(--mk-emerald);
  fill: currentColor;
  border-radius: 8px;
  background: var(--mk-bg-soft);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--mk-muted);
  font-size: 14px;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  color: var(--mk-ink);
  background: #fff;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--mk-emerald);
  outline: 3px solid rgba(0, 75, 54, 0.12);
}

.lead-form .button {
  border: 0;
}

.lead-form .status-line {
  min-height: 22px;
  margin: 0;
  color: var(--mk-emerald);
  font-size: 14px;
  font-weight: 800;
}

.lead-form .status-line.is-error {
  color: #9f1239;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 24px 0 34px;
  color: var(--mk-muted);
  border-top: 1px solid var(--mk-line);
}

.site-footer p {
  margin: 0;
  font-size: 14px;
}

.site-footer a {
  font-weight: 900;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 620ms ease, transform 620ms ease;
}

@media (max-width: 1040px) {
  .site-header {
    width: min(100% - 24px, 920px);
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    right: 12px;
    left: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--mk-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--mk-shadow);
  }

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

  .site-nav a {
    justify-content: center;
  }

  .hero {
    min-height: 690px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .service-layout,
  .verified-section,
  .process-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .service-visual {
    position: static;
  }

  .service-visual img,
  .process-image img {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 66px;
    top: 0;
  }

  .site-header.is-scrolled {
    top: 8px;
  }

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

  .brand small {
    font-size: 11px;
  }

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

  .hero {
    min-height: auto;
    padding: 106px 16px 40px;
  }

  .hero::before {
    background: rgba(247, 250, 248, 0.88);
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-lead,
  .section-heading p,
  .verified-copy p,
  .contact-panel p {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .section,
  .contact-section {
    width: min(100% - 24px, 520px);
    padding: 58px 0;
  }

  .section h2,
  .verified-section h2,
  .contact-section h2 {
    font-size: 34px;
  }

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

  .verified-section {
    padding: 58px 16px;
  }

  .verified-image img {
    min-height: 280px;
  }

  .timeline li {
    grid-template-columns: 40px 1fr;
    padding: 16px;
  }

  .timeline span {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .contact-panel {
    padding: 24px;
  }

  .contact-links a {
    grid-template-columns: 38px 1fr;
    font-size: 14px;
  }

  .contact-links svg {
    width: 38px;
    height: 38px;
    padding: 9px;
  }

  .site-footer {
    width: min(100% - 24px, 520px);
    flex-direction: column;
    align-items: flex-start;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
