/* Base */
:root {
  --ink: #1b1b1f;
  --muted: #5b5f6a;
  --sand: #f4f1ec;
  --ocean: #0d3b4a;
  --sky: #e8f3f7;
  --accent: #c46b2b;
  --accent-soft: #f7e4d2;
  --midnight: #0b1f2a;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
}
img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
a {
  color: inherit;
  text-decoration: none;
}

.header {
  padding: 24px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}
.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
}
.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--accent-soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  background: var(--ocean);
  color: #fff;
  padding: 50px 6vw 70px;
}
.split {
  display: flex;
  gap: 32px;
  align-items: center;
}
.split.reverse {
  flex-direction: row-reverse;
}
.panel {
  flex: 1 1 0;
}
.hero-image {
  border-radius: 22px;
  overflow: hidden;
  background-color: #113744;
  min-height: 320px;
  background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section {
  padding: 60px 6vw;
}
.section.alt {
  background: var(--sand);
}
.section.soft {
  background: var(--sky);
}
.section-title {
  font-size: 2rem;
  margin: 0 0 16px;
}
.lead {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.card .price {
  font-weight: 700;
  color: var(--accent);
}
.card-image {
  border-radius: 14px;
  overflow: hidden;
  background-color: #d6d1c8;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.btn.outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
}

.form-wrap {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form label {
  font-weight: 600;
}
.form input,
.form select,
.form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6d6d6;
  font-size: 1rem;
}
.form small {
  color: var(--muted);
}

.footer {
  padding: 40px 6vw 60px;
  background: #111a1f;
  color: #e6e6e6;
}
.footer a {
  color: #e6e6e6;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.footer-col {
  flex: 1 1 200px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: none;
  z-index: 50;
}
.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  left: 20px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.notice {
  background: var(--accent-soft);
  padding: 16px 20px;
  border-radius: 14px;
  color: #5a3b20;
}

.img-frame {
  border-radius: 20px;
  overflow: hidden;
  background-color: #d9d2c8;
}

.bg-journey-panel {
  border-radius: 22px;
  background-color: #c9dbe2;
  min-height: 320px;
  background-image: url("https://images.unsplash.com/photo-1526779259212-939e64788e3c?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.color-block {
  border-radius: 22px;
  background: var(--midnight);
  color: #f5f5f5;
  padding: 24px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }
  .sticky-cta {
    position: static;
    margin: 20px 6vw 0;
    display: inline-block;
  }
  .cookie-banner {
    left: 20px;
    right: 20px;
    max-width: none;
  }
}
