:root {
  --bg: #f4f5f2;
  --paper: #fbfbf8;
  --ink: #1f2527;
  --muted: #5b6a6a;
  --accent: #6e8e8a;
  --accent-deep: #4e6b69;
  --border: #e3e6e3;
  --shadow: 0 18px 45px rgba(31, 37, 39, 0.12);
  --radius: 22px;
  --font-display: "Sora", "Source Sans 3", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: linear-gradient(180deg, #fbfbf8 0%, #f1f2ef 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(1200px 700px at 80% -10%, rgba(110, 142, 138, 0.2), transparent 60%),
    radial-gradient(900px 600px at -10% 10%, rgba(79, 98, 105, 0.12), transparent 55%);
  opacity: 0.8;
  z-index: -1;
  pointer-events: none;
}

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

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

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(251, 251, 248, 0.92);
  border-bottom: 1px solid rgba(227, 230, 227, 0.8);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
  transition: transform 0.3s ease;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-radius: 0 0 40px 40px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(17, 24, 25, 0.72), rgba(17, 24, 25, 0.25));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 90px 0 110px;
  color: #f7f8f5;
}

.eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(247, 248, 245, 0.8);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 18px;
}

.hero p {
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 0 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-primary {
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-2px);
}

.btn-outline {
  border-color: rgba(247, 248, 245, 0.65);
  color: #f7f8f5;
}

.btn-outline:hover,
.btn-outline:focus {
  background: rgba(247, 248, 245, 0.12);
}

.section {
  padding: 90px 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 46px;
}

.grid {
  display: grid;
  gap: 26px;
}

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

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

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

.card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(31, 37, 39, 0.08);
}

.card h3 {
  font-family: var(--font-display);
  margin-top: 0;
  margin-bottom: 12px;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card span {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.steps {
  display: grid;
  gap: 18px;
}

.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child {
  border-bottom: none;
}

.step-number {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--accent-deep);
}

.trust-list {
  display: grid;
  gap: 18px;
}

.trust-item {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--muted);
}

.trust-item strong {
  color: var(--ink);
}

.cta-banner {
  background: linear-gradient(135deg, rgba(110, 142, 138, 0.16), rgba(79, 98, 105, 0.24));
  border-radius: var(--radius);
  padding: 48px;
  border: 1px solid rgba(110, 142, 138, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-banner h2 {
  font-family: var(--font-display);
  margin: 0 0 8px;
}

.cta-banner p {
  color: var(--muted);
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
}

.image-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-clean li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.list-clean li:last-child {
  border-bottom: none;
}

.form-wrapper {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

form {
  display: grid;
  gap: 18px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fff;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-message {
  display: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 0.95rem;
}

.form-message.success {
  background: rgba(110, 142, 138, 0.14);
  color: var(--accent-deep);
}

.form-message.error {
  background: rgba(158, 72, 72, 0.12);
  color: #7d2f2f;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 50px 0 60px;
  background: rgba(251, 251, 248, 0.9);
}

.site-footer .section-subtitle {
  margin-bottom: 0;
}

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

.footer-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.footer-links a {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--ink);
}

.footer-meta {
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 0.9s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

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

@media (max-width: 980px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

@media (max-width: 780px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 4%;
    left: 4%;
    background: var(--paper);
    border-radius: 18px;
    flex-direction: column;
    padding: 18px;
    border: 1px solid var(--border);
    display: none;
  }

  .nav-links[data-open="true"] {
    display: flex;
  }

  .hero {
    min-height: 64vh;
    border-radius: 0 0 28px 28px;
  }

  .section {
    padding: 70px 0;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

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