:root {
  --ink: #1a1a1a;
  --muted: #5a5a5a;
  --sand: #f6f1ec;
  --chalk: #fcfaf8;
  --rose: #d19aa5;
  --olive: #a8b09a;
  --shadow: rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--chalk);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.top-bar {
  padding: 24px 0 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-left,
.nav-center,
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-center a {
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--rose);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
}

.hero {
  background-color: #efe6de;
  background-image: url("https://images.unsplash.com/photo-1489987707025-afc232f7ea0f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.72);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: min(520px, 90%);
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 0;
}

.hero p {
  margin: 0;
  color: var(--muted);
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
}

.btn:focus,
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px var(--shadow);
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--sand);
}

.offset-blocks {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.offset-text {
  flex: 1 1 360px;
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 24px 40px var(--shadow);
  margin-top: 40px;
}

.offset-media {
  flex: 1 1 360px;
  position: relative;
  margin-top: -20px;
}

.media-box {
  background: #e9e1da;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 320px;
  box-shadow: 0 18px 34px var(--shadow);
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.split-card {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 16px 32px var(--shadow);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 4px solid var(--rose);
  padding-left: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 16px 32px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
}

.form-wrap {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.form-panel,
.form-aside {
  flex: 1 1 320px;
}

.form-panel {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 34px var(--shadow);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.field input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7cfc7;
  font-size: 1rem;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--sand);
  padding: 10px 12px;
  border-radius: 12px;
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #eadfd6;
  padding: 14px 0;
  z-index: 5;
}

.sticky-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer {
  background: #171717;
  color: #f3f3f3;
  padding: 40px 0;
  margin-top: auto;
}

.footer a {
  color: inherit;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 30px var(--shadow);
  max-width: 360px;
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions .btn {
  flex: 1;
  font-size: 0.9rem;
}

.legal-section {
  padding: 56px 0;
}

.legal-content {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 16px 32px var(--shadow);
}

.contact-card {
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 16px 32px var(--shadow);
}

.simple-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thanks-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 16px 32px var(--shadow);
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: 60vh;
  }

  .sticky-cta .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
