* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f4ef;
  --ink: #1b1b1d;
  --muted: #5e5e63;
  --accent: #c36f45;
  --accent-dark: #9e5636;
  --card: #ffffff;
  --line: #e3ded7;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 6%;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  background: #fdfbf8;
}

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 220px;
  text-align: right;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 56px 6% 40px;
}

.hero-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background-color: #d8d0c6;
  min-height: 280px;
  box-shadow: var(--shadow);
}

.hero-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 32px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(15, 14, 14, 0.72) 100%);
  color: #fff;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  margin-bottom: 12px;
}

.hero-content p {
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid #ffffff;
  color: #fff;
}

.btn-light {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn-light:hover {
  background: #f3eee7;
  transform: translateY(-2px);
}

.section {
  padding: 56px 6%;
}

.section-alt {
  background: #fdfbf8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-title {
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  margin-bottom: 18px;
}

.section-lead {
  max-width: 660px;
  color: var(--muted);
  margin-bottom: 24px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.media-card {
  border-radius: 18px;
  overflow: hidden;
  background-color: #dad2c8;
  box-shadow: var(--shadow);
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #f0e8df;
  color: var(--muted);
  font-size: 0.9rem;
}

.stacked-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: var(--card);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
  background-color: #ded6cc;
}

.card a,
.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  margin-bottom: 18px;
  color: var(--muted);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service {
  flex: 1 1 240px;
  background: var(--card);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-shell {
  background: var(--card);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-steps span {
  padding: 6px 12px;
  background: #f3eee7;
  border-radius: 999px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: inherit;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  margin: 24px 6% 0;
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.footer {
  margin-top: auto;
  padding: 40px 6%;
  background: #1b1b1d;
  color: #f7f4ef;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f7f4ef;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.legal {
  font-size: 0.88rem;
  color: #c9c2ba;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .btn {
  padding: 10px 18px;
}

.page-header {
  padding: 48px 6% 24px;
}

.page-content {
  padding: 24px 6% 60px;
}

.page-content h2 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.page-content p {
  margin-bottom: 12px;
  color: var(--muted);
}

.reference-list a {
  color: #f7f4ef;
  text-decoration: underline;
}

@media (max-width: 720px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-label {
    text-align: left;
  }

  .hero-content {
    position: static;
    color: var(--ink);
    background: #ffffff;
  }

  .hero-media {
    box-shadow: none;
  }
}
