@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700&display=swap");

:root {
  --ink: #1f2328;
  --muted: #5b636a;
  --sand: #f2efe9;
  --stone: #e4dfd5;
  --clay: #d4c7b3;
  --accent: #3b5b45;
  --accent-strong: #2a4333;
  --light: #ffffff;
  --shadow: 0 20px 40px rgba(31, 35, 40, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background-color: var(--sand);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 24px 6vw 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.top-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ad-disclosure {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--stone);
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--light);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

.hero {
  padding: 60px 6vw 70px;
  background-color: #b8b1a7;
  background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: var(--light);
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 29, 32, 0.45);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 620px;
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  margin: 0;
}

.hero p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  background: var(--accent);
  color: var(--light);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-strong);
}

.btn.outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--light);
}

.btn.outline:hover {
  background: rgba(255, 255, 255, 0.2);
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.alt {
  background: var(--light);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .media {
  flex: 1 1 320px;
}

.media-frame {
  border-radius: 24px;
  overflow: hidden;
  background-color: var(--clay);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  background: var(--light);
  border-radius: 20px;
  padding: 22px;
  flex: 1 1 220px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  background-color: var(--stone);
  object-fit: cover;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding-left: 18px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service {
  flex: 1 1 260px;
  background: var(--light);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service .price {
  font-weight: 700;
  color: var(--accent-strong);
  font-size: 1.1rem;
}

.service .select-btn {
  margin-top: auto;
  align-self: flex-start;
}

.form-wrap {
  background: var(--light);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-family: inherit;
  font-size: 1rem;
}

.notice {
  background: var(--stone);
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--muted);
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  margin-top: auto;
  background: var(--accent-strong);
  color: var(--light);
  padding: 14px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.sticky-cta .btn {
  background: var(--light);
  color: var(--accent-strong);
}

.site-footer {
  padding: 50px 6vw;
  background: var(--ink);
  color: #f3f2ef;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.legal {
  font-size: 0.85rem;
  color: #c5c1b6;
  line-height: 1.5;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 360px;
  background: var(--light);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .btn {
  flex: 1;
}

.page-title {
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  margin: 0;
}

.simple-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.simple-card {
  flex: 1 1 260px;
  background: var(--light);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.contact-block {
  background: var(--light);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.policy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .hero {
    padding-top: 70px;
  }

  .split.reverse {
    flex-direction: column;
  }
}
