﻿:root {
  --ink: #172018;
  --olive: #899a45;
  --olive-deep: #526330;
  --paper: #f6f4ec;
  --line: rgba(23, 32, 24, 0.14);
  --muted: #4e594a;
  --muted-2: #687064;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(137, 154, 69, 0.14), transparent 32%),
    radial-gradient(circle at bottom right, rgba(82, 99, 48, 0.12), transparent 28%),
    linear-gradient(135deg, #f9f6ee 0%, #f3efe6 100%);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

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

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

.page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 1rem;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(100%, 960px);
  min-height: calc(100vh - 4rem);
  padding: 2.2rem clamp(1.5rem, 6vw, 5.5rem) 1.8rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(23, 32, 24, 0.06);
  border-radius: 32px;
  box-shadow: 0 24px 70px rgba(23, 32, 24, 0.08);
  backdrop-filter: blur(6px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand img {
  display: block;
  width: min(190px, 52vw);
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(82, 99, 48, 0.12));
}

main {
  max-width: 680px;
  margin: 0 auto;
  padding: 4rem 0;
  text-align: center;
}

.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 auto 1.5rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(82, 99, 48, 0.14);
  border-radius: 999px;
  background: rgba(137, 154, 69, 0.08);
  color: var(--olive-deep);
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.status::before {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--olive);
  box-shadow: 0 0 0 6px rgba(137, 154, 69, 0.18);
  content: "";
}

h1 {
  max-width: 660px;
  margin: 0 auto;
  font-size: clamp(2.8rem, 5.3vw, 5.8rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.96;
  text-wrap: balance;
}

h1 span {
  display: inline-block;
  color: var(--olive-deep);
}

.intro {
  max-width: 560px;
  margin: 1.6rem auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.82rem 1.4rem;
  border-radius: 999px;
  color: var(--paper);
  background: var(--olive);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(82, 99, 48, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(82, 99, 48, 0.22);
  background: var(--olive-deep);
}

.button--outline {
  color: var(--olive-deep);
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(82, 99, 48, 0.25);
  box-shadow: none;
}

.button--outline:hover {
  color: var(--ink);
  background: rgba(236, 235, 220, 0.9);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--muted-2);
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding-top: 0.4rem;
}

.footer span {
  opacity: 0.9;
}

.footer a {
  color: inherit;
  transition: opacity 160ms ease;
}

.footer a:hover {
  opacity: 0.7;
}

@media (max-width: 820px) {
  .page {
    display: block;
  }

  .content {
    min-height: 68vh;
    padding-top: 1.7rem;
  }

  main {
    padding: 3.5rem 0;
  }
}

@media (max-width: 460px) {
  .content {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

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

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 375px) {
  .site-header {
    gap: 0.35rem;
    padding: 0.62rem 0.7rem;
  }

  .brand img {
    width: 114px;
  }

  .header-cta {
    padding: 0.52rem 0.66rem;
    font-size: 0.72rem;
  }

  .hero-banner {
    min-height: 284px;
    padding: 1.1rem 0.8rem;
  }

  .hero-banner__content h1 {
    font-size: clamp(1.72rem, 8.4vw, 2.3rem);
    line-height: 1.08;
  }

  .hero-banner__cta {
    max-width: 228px;
    font-size: 0.86rem;
    padding: 0.62rem 0.9rem;
  }

  main {
    padding: 0 0.85rem 1.8rem;
  }

  .section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .service-card__cta {
    font-size: 0.74rem;
  }
}

@media (max-width: 420px) {
  .process-visual {
    min-height: 470px;
  }

  .process-heading {
    max-width: 200px;
  }

  .process-step__content {
    width: 122px;
    max-width: 122px;
  }

  .process-step__content strong {
    font-size: 0.69rem;
    max-width: 84px;
  }

  .service-grid {
    gap: 0.65rem;
  }

  .service-card {
    padding: 0.85rem 0.7rem;
  }

  .service-card h3 {
    font-size: 0.9rem;
  }

  .service-card ul li {
    font-size: 0.72rem;
  }
}

@media (max-width: 320px) {
  .brand img {
    width: 102px;
  }

  .header-cta {
    padding: 0.48rem 0.56rem;
    font-size: 0.69rem;
  }

  .hero-banner {
    min-height: 260px;
  }

  .hero-banner__content h1 {
    font-size: clamp(1.52rem, 8.6vw, 2rem);
  }

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

  .service-grid {
    gap: 0.55rem;
  }

  .service-card {
    padding: 0.78rem 0.64rem;
  }

  .service-card h3 {
    font-size: 0.84rem;
  }

  .service-card > p,
  .service-card ul li {
    font-size: 0.68rem;
  }
}
