* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2426;
  background: #f6f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.top-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 6vw 12px;
  background: #f6f5f2;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #4a4f52;
  background: #ece7de;
  padding: 6px 12px;
  border-radius: 999px;
  align-self: flex-start;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px 6vw 40px;
  background: #f2efe8;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  line-height: 1.15;
}

.hero p {
  font-size: 1.1rem;
  max-width: 560px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  cursor: pointer;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  background: #1f2426;
  color: #fff;
}

.btn.secondary {
  background: #ffffff;
  color: #1f2426;
  border: 1px solid #1f2426;
}

.hero-media {
  background: #d8d0c2;
  border-radius: 24px;
  overflow: hidden;
}

.section {
  padding: 50px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #ffffff;
}

.section.deep {
  background: #ede7de;
}

.section h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
}

.section p {
  max-width: 720px;
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-media {
  flex: 1 1 280px;
  background: #d7d3c9;
  border-radius: 20px;
  overflow: hidden;
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 24px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2ddd3;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e4dfd6;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-media {
  background: #d9d4c9;
  border-radius: 14px;
  overflow: hidden;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f0ece4;
  font-size: 0.85rem;
}

.testimonial {
  background: #ffffff;
  border-left: 4px solid #1f2426;
  padding: 16px 18px;
  border-radius: 12px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px dashed #c9c2b7;
  padding-bottom: 8px;
}

.price-line span {
  font-weight: 600;
}

.form-wrap {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e2ddd3;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc8bc;
  font-size: 0.95rem;
  background: #fff;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
}

.sticky-cta button {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.footer {
  background: #1f2426;
  color: #f5f4f1;
  padding: 36px 6vw 50px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #d8d2c6;
  max-width: 780px;
}

.image-frame {
  background: #d8d0c2;
  border-radius: 18px;
  overflow: hidden;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid #d9d2c8;
  border-radius: 16px;
  padding: 16px;
  max-width: 360px;
  z-index: 60;
  display: none;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.simple-hero {
  padding: 40px 6vw 24px;
  background: #f0ece4;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.simple-hero h1 {
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.content-block {
  padding: 32px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-box {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e1dbd1;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e2ddd3;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
}

.reference-list a {
  text-decoration: underline;
}
