* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1f1a;
  background: #f6f3ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 24px 6vw 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.9rem;
  color: #5d5f54;
  max-width: 320px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 28px 6vw 40px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-self: center;
}

.hero-text h1 {
  font-size: 2.5rem;
  line-height: 1.15;
}

.hero-image {
  flex: 1 1 380px;
  min-height: 360px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #cbd5c2;
  position: relative;
  transform: translateY(12px);
}

.hero-badge {
  align-self: flex-start;
  background: #1c1f1a;
  color: #f6f3ef;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.section {
  padding: 42px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #efe9e1;
}

.section-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.section-row.offset {
  justify-content: space-between;
}

.section-row .text-block {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-frame {
  flex: 1 1 320px;
  min-height: 280px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #d7d3c5;
  position: relative;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(28, 31, 26, 0.08);
}

.card .price {
  font-weight: 600;
  font-size: 1.05rem;
}

.card-image {
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  background-color: #cdd9c8;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #2a3d2f;
  color: #f6f3ef;
  border: none;
  font-weight: 600;
}

.cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid #2a3d2f;
  color: #2a3d2f;
  background: transparent;
  font-weight: 600;
}

.inline-cta {
  color: #2a3d2f;
  text-decoration: underline;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 8px 20px rgba(28, 31, 26, 0.08);
}

.form-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 12px 30px rgba(28, 31, 26, 0.08);
}

.form-box form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-box label {
  font-weight: 600;
}

.form-box select,
.form-box input,
.form-box textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9cfc0;
  font-size: 1rem;
  background: #faf9f6;
}

.form-box textarea {
  min-height: 120px;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #1c1f1a;
  color: #f6f3ef;
  padding: 12px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw 40px;
  background: #1f241f;
  color: #f6f3ef;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-text {
  font-size: 0.9rem;
  color: #d7d7d0;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  color: #1c1f1a;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(28, 31, 26, 0.2);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.aside-note {
  background: #ffffff;
  border-left: 4px solid #2a3d2f;
  padding: 16px 18px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(28, 31, 26, 0.08);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(28, 31, 26, 0.08);
}

.legal-page {
  padding: 28px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
