* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1b1a;
  --muted: #5a5652;
  --sand: #f5f1ea;
  --clay: #e3d7c7;
  --night: #12110f;
  --accent: #9a5b3f;
  --accent-dark: #6f3c27;
  --leaf: #2c3b2f;
  --white: #ffffff;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.topbar {
  padding: 1.5rem 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--white);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand strong {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand span {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav a {
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
}

.nav a:hover {
  background: var(--sand);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3.5rem 6vw 4.5rem;
  background: var(--white);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.1;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-visual {
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-visual img {
  flex: 1 1 220px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.section {
  padding: 4rem 6vw;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section.light {
  background: var(--white);
}

.section.dark {
  background: var(--night);
  color: var(--white);
}

.section.clay {
  background: var(--clay);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.split .text {
  flex: 1 1 300px;
}

.split .visual {
  flex: 1 1 300px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(154, 91, 63, 0.15);
  color: var(--accent-dark);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.columns {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.card.dark {
  background: #1f1c18;
  color: var(--white);
}

.card img {
  border-radius: 12px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.2rem;
  align-self: flex-start;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-style: italic;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.benefit-list li {
  list-style: none;
  padding-left: 1.4rem;
  position: relative;
}

.benefit-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.1rem;
}

.sticky-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 1.5rem;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}

.price-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.4rem;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.price-item strong {
  font-size: 1.2rem;
}

.price-tag {
  font-size: 1.6rem;
  color: var(--accent-dark);
  font-weight: 700;
}

.form-wrap {
  background: var(--white);
  border-radius: 18px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.07);
}

.form-wrap label {
  font-weight: 600;
  margin-bottom: 0.3rem;
  display: block;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 1rem;
  background: #fffdfa;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.submit-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  padding: 2.5rem 6vw;
  background: var(--night);
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.sticky-cta {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  background: var(--accent);
  color: var(--white);
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.page-header {
  padding: 3rem 6vw 2rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-content {
  padding: 3rem 6vw 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  background: var(--white);
  padding: 1.8rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: var(--white);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-content {
    max-width: 45%;
  }

  .hero-visual {
    max-width: 50%;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .columns {
    flex-direction: row;
  }

  .columns .card {
    flex: 1 1 0;
  }

  .price-grid {
    flex-direction: row;
  }

  .price-item {
    flex: 1 1 0;
  }

  .form-row {
    flex-direction: row;
  }

  .form-row .field {
    flex: 1 1 0;
  }
}
