* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f1f1f;
  --muted: #5d5d5d;
  --cream: #f6f2ec;
  --sand: #efe7db;
  --clay: #d8c9b8;
  --sage: #d7e0d7;
  --terracotta: #c86f5c;
  --deep: #2f2a25;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: underline;
}

header {
  padding: 24px 6vw 10px;
  background: var(--cream);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.brand-block h1 {
  margin: 0;
  font-size: 28px;
  letter-spacing: 0.5px;
}

.brand-block p {
  margin: 6px 0 0;
  color: var(--muted);
}

nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  font-size: 14px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.ad-label {
  padding: 6px 10px;
  background: var(--deep);
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.3px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 40px 6vw 60px;
  background: var(--cream);
}

.hero-visual {
  position: relative;
  background: #e0d8cf;
  border-radius: 18px;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 420px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 680px;
}

.hero-content h2 {
  margin: 0;
  font-size: 38px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-button {
  border: none;
  padding: 12px 18px;
  background: var(--terracotta);
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
}

.cta-secondary {
  padding: 12px 18px;
  border: 1px solid var(--deep);
  background: transparent;
  color: var(--deep);
  cursor: pointer;
}

.section {
  padding: 56px 6vw;
}

.section.light {
  background: #ffffff;
}

.section.sand {
  background: var(--sand);
}

.section.sage {
  background: var(--sage);
}

.section.deep {
  background: var(--deep);
  color: #ffffff;
}

.section.image-band {
  background-color: #d5cec6;
  background-image: url("https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.image-band .overlay-card {
  background: rgba(47, 42, 37, 0.78);
  padding: 22px;
  border-radius: 14px;
  max-width: 520px;
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.story-block.reverse {
  flex-direction: row-reverse;
}

.story-text {
  flex: 1 1 320px;
}

.story-text h3 {
  margin-top: 0;
}

.story-media {
  flex: 1 1 320px;
  background: #d9d1c8;
  border-radius: 14px;
  overflow: hidden;
}

.story-media img {
  width: 100%;
  height: 260px;
}

.insight-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.insight-card {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.insight-card h4 {
  margin: 0 0 8px;
}

.trust-band {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.trust-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.trust-card {
  flex: 1 1 240px;
  background: rgba(255, 255, 255, 0.12);
  padding: 18px;
  border-radius: 12px;
}

.testimonial {
  background: #ffffff;
  color: var(--deep);
  padding: 18px;
  border-radius: 12px;
}

.benefit-split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.benefit-list {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.benefit-image {
  flex: 1 1 320px;
  background: #d8d0c6;
  border-radius: 14px;
  overflow: hidden;
}

.benefit-image img {
  width: 100%;
  height: 320px;
}

.price-reveal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-card {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid #e2d8cc;
}

.price-card img {
  width: 100%;
  height: 160px;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e3dad0;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #cfc3b6;
  font-size: 15px;
}

.form-aside {
  flex: 1 1 240px;
}

.form-aside img {
  width: 100%;
  height: 280px;
  border-radius: 14px;
  background: #d7cec4;
}

footer {
  padding: 40px 6vw;
  background: var(--deep);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #d3cfc8;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #e2d8cc;
  max-width: 320px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 12px;
  border: none;
  cursor: pointer;
}

.cookie-accept {
  background: var(--deep);
  color: #ffffff;
}

.cookie-reject {
  background: var(--clay);
  color: var(--deep);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 12px 16px;
  background: var(--terracotta);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  z-index: 15;
}

.page-hero {
  padding: 40px 6vw;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-content {
  padding: 40px 6vw 60px;
}

.simple-card {
  background: #ffffff;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid #e2d8cc;
  margin-bottom: 16px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #ffffff;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid #e2d8cc;
  max-width: 480px;
}

.reference-list {
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reference-list a {
  color: #ffffff;
}

.thanks-box {
  padding: 30px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e3dad0;
  max-width: 560px;
}

@media (max-width: 820px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    align-items: flex-start;
  }

  .hero-visual img {
    height: 280px;
  }

  .sticky-cta {
    right: 12px;
  }
}
