* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f1eb;
  --ink: #1f1c1a;
  --muted: #6a5f57;
  --accent: #b3562a;
  --accent-dark: #8f3e1e;
  --soft: #efe4da;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(22, 18, 15, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 6vw 10px;
  gap: 20px;
}

.nav-title {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6vw 60px;
  position: relative;
}

.hero-card {
  background: var(--white);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  max-width: 580px;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
  margin-top: 12px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 12px 18px;
  background: var(--accent);
  color: var(--white);
  border-radius: 999px;
  font-weight: 600;
}

.hero-media {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section-alt {
  background: var(--white);
  border-radius: 40px;
  margin: 0 4vw;
  box-shadow: var(--shadow);
}

.section-title {
  font-size: 1.8rem;
  line-height: 1.3;
}

.section-intro {
  color: var(--muted);
  max-width: 720px;
}

.asym-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.asym-card {
  background: var(--white);
  padding: 24px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.asym-card img {
  border-radius: 18px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split .split-text {
  flex: 1;
}

.split .split-media {
  flex: 1;
  position: relative;
}

.floating-chip {
  position: absolute;
  bottom: -16px;
  right: 18px;
  background: var(--accent);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  box-shadow: var(--shadow);
}

.grid-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: var(--soft);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card strong {
  font-size: 1.2rem;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-spaced {
  margin-top: 20px;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent-dark);
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-link {
  border: none;
  padding: 0;
  color: var(--accent-dark);
  font-weight: 600;
}

.testimonial {
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.form-wrap {
  background: var(--white);
  padding: 26px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d3c4b6;
  background: #fffaf6;
  font-size: 1rem;
}

label {
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-weight: 600;
  z-index: 10;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: var(--white);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  max-width: 280px;
  display: none;
  z-index: 20;
}

.cookie-banner p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  flex: 1;
}

.legal-page {
  padding: 40px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 900px;
}

.legal-page ul {
  padding-left: 18px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--soft);
  border-radius: 20px;
  padding: 20px;
}

.info-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media (min-width: 820px) {
  .hero {
    flex-direction: row;
    align-items: flex-end;
  }

  .hero-card {
    margin-right: -80px;
    z-index: 2;
  }

  .section {
    padding: 80px 8vw;
  }

  .asym-block {
    flex-direction: row;
  }

  .asym-card {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .grid-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 240px;
  }

  .form-wrap {
    max-width: 640px;
  }

  .info-list {
    flex-direction: row;
    justify-content: space-between;
  }

  .info-row {
    flex: 1;
  }
}
