:root {
  color-scheme: light;
  --bg: #f5f3ef;
  --ink: #1b1f23;
  --muted: #5b646b;
  --accent: #1f6b5a;
  --accent-2: #d38f5a;
  --panel: #ffffff;
  --soft: #ece7df;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-bottom: 120px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 7vw 0;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.ad-label {
  font-size: 12px;
  color: var(--accent);
  max-width: 220px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:focus,
.nav-links a:hover {
  border-bottom-color: var(--ink);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 7vw;
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: var(--panel);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 36px;
}

.hero-main h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 0;
}

.hero-main p {
  color: var(--muted);
  margin: 0;
}

.hero-media {
  height: 320px;
  background: #c9c2b8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-size: 14px;
  cursor: pointer;
  background: transparent;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 7vw;
}

.section-title {
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.split > * {
  flex: 1 1 280px;
}

.offset {
  transform: translateY(-18px);
}

.card {
  background: var(--panel);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-media {
  height: 180px;
  border-radius: 18px;
  overflow: hidden;
  background: #cfc8bf;
}

.price {
  font-size: 22px;
  color: var(--accent);
  margin: 0;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.panel {
  background: var(--panel);
  border-radius: 30px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.panel.soft {
  background: var(--soft);
}

.bg-story {
  background-color: #d9d2c8;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #151515;
}

.bg-story .panel-inner {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 24px;
}

.bg-trust {
  background-color: #d8c9bd;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #111;
}

.bg-trust ul {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  padding: 18px;
}

.bg-cta {
  background-color: #e7dccf;
  background-image: url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #111;
}

.bg-cta p,
.bg-cta h3 {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 12px 16px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.steps div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.steps span {
  font-weight: 600;
  color: var(--accent);
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.cta-strip .btn {
  border-color: var(--accent-2);
  color: var(--accent-2);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d1ccc4;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
}

.form-status {
  font-size: 14px;
  color: var(--accent);
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 14px;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 7vw 40px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: var(--panel);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 7vw 80px;
  background: var(--panel);
}

.legal h1 {
  margin: 0;
}

.legal p {
  margin: 0;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.services-grid .card {
  flex-direction: row;
  gap: 24px;
  align-items: center;
}

.services-grid .card-media {
  width: 180px;
  height: 140px;
}

.thanks {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 0 7vw;
}

.thanks h1 {
  margin: 0;
}

@media (max-width: 900px) {
  .services-grid .card {
    flex-direction: column;
    align-items: stretch;
  }

  .nav {
    flex-direction: column;
  }
}
