* {
  box-sizing: border-box;
}

:root {
  --ink: #1a1a1a;
  --muted: #5a5f66;
  --paper: #f7f5f2;
  --accent: #1f6b6d;
  --accent-soft: #e3efee;
  --sand: #f0ebe3;
  --sunset: #f2e4d2;
  --shadow: 0 18px 45px rgba(23, 36, 50, 0.18);
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 24px 6vw 10px;
  position: relative;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.6px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.ad-disclosure {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid #d9d6cf;
  padding: 6px 10px;
  border-radius: 14px;
  background: #ffffff;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 40px 6vw 60px;
  position: relative;
  align-items: center;
}

.hero-text {
  flex: 1 1 340px;
  max-width: 520px;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero-text p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  border: none;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.hero-visual {
  flex: 1 1 320px;
  position: relative;
}

.hero-visual .image-frame {
  background-color: #d9e4e2;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-card {
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 20px;
  position: absolute;
  bottom: -22px;
  left: -24px;
  box-shadow: var(--shadow);
  max-width: 260px;
}

.hero-card strong {
  display: block;
  margin-bottom: 6px;
}

.section {
  padding: 64px 6vw;
  position: relative;
}

.section.light {
  background: var(--paper);
}

.section.accent {
  background: var(--accent-soft);
}

.section.sand {
  background: var(--sand);
}

.section-title {
  font-size: 30px;
  margin: 0 0 12px;
}

.section-subtitle {
  max-width: 560px;
  color: var(--muted);
  margin-bottom: 28px;
}

.split-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.offset-block {
  flex: 1 1 300px;
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.offset-block.shift {
  transform: translateY(26px);
}

.image-panel {
  flex: 1 1 280px;
  border-radius: 26px;
  overflow: hidden;
  background-color: #e8e1d8;
  box-shadow: var(--shadow);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 180px;
}

.card-body {
  padding: 18px 20px 20px;
}

.card-body h3 {
  margin-top: 0;
  font-size: 20px;
}

.price {
  font-weight: 700;
  color: var(--accent);
  margin-top: 10px;
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 720px;
}

.inline-image {
  display: flex;
  gap: 18px;
  align-items: center;
}

.inline-image .image-frame {
  flex: 1 1 200px;
  background-color: #dfe3ea;
  border-radius: 22px;
  overflow: hidden;
}

.inline-image .image-frame img {
  width: 100%;
  height: 220px;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.form-panel {
  flex: 1 1 320px;
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d7d5d0;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.testimonial {
  padding: 18px 22px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.testimonial strong {
  display: block;
  margin-top: 10px;
}

.cta-band {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 24px;
  padding: 22px 26px;
  box-shadow: var(--shadow);
}

.cta-band p {
  margin: 0;
  font-weight: 600;
}

.footer {
  padding: 36px 6vw 50px;
  background: #111313;
  color: #f4f1ec;
  margin-top: auto;
}

.footer a {
  color: #f4f1ec;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 14px;
}

.footer-grid div {
  flex: 1 1 180px;
}

.disclaimer {
  font-size: 12px;
  color: #cfc9c2;
  margin-top: 24px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 16px 18px;
  display: none;
  z-index: 200;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cookie-actions .button {
  padding: 8px 18px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 26px;
  z-index: 150;
}

.sticky-cta .button {
  padding: 10px 18px;
  box-shadow: var(--shadow);
}

.content-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.content-columns .column {
  flex: 1 1 260px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notice {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
}

.page-hero {
  padding: 40px 6vw 20px;
}

.page-hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.simple-section {
  padding: 20px 6vw 60px;
}

.list-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.list-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

.thanks-box {
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  max-width: 680px;
}

@media (max-width: 760px) {
  .hero {
    padding-top: 20px;
  }

  .hero-text h1 {
    font-size: 34px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
