* {
  box-sizing: border-box;
}

:root {
  --ink: #1e2328;
  --muted: #5b636a;
  --paper: #f7f4ef;
  --accent: #2f6f6d;
  --accent-2: #c97b4a;
  --line: #e4ddd4;
  --surface: #ffffff;
  --shadow: 0 14px 40px rgba(30, 35, 40, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 7vw 10px;
}

.brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 50px 7vw 40px;
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 28px;
}

.hero-media {
  border-radius: 24px;
  overflow: hidden;
  background: #e2e2e2;
  height: 380px;
}

.section {
  padding: 50px 7vw;
}

.section.alt {
  background: var(--surface);
}

.section-title {
  font-size: 1.8rem;
  margin: 0 0 14px;
}

.muted {
  color: var(--muted);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.image-frame {
  border-radius: 20px;
  overflow: hidden;
  background: #ddd5cb;
  min-height: 280px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-media {
  border-radius: 16px;
  overflow: hidden;
  background: #d9d1c7;
  height: 170px;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cta-row.spaced {
  margin-top: 18px;
}

.button {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button.secondary {
  background: var(--accent-2);
}

.button.light {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  padding: 16px;
  border-left: 3px solid var(--accent);
  background: #f2ebe4;
}

.quote {
  background: #f7efe6;
  border-radius: 16px;
  padding: 18px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--surface);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--line);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-row label {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.form-status {
  font-weight: 600;
  color: var(--accent);
  min-height: 22px;
}

.footer {
  margin-top: auto;
  padding: 40px 7vw 50px;
  background: #1c2125;
  color: #f7f4ef;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f7f4ef;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d9d5cf;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
  z-index: 50;
}

.cookie-banner.hidden {
  display: none;
}

.legal {
  max-width: 900px;
}

.notice {
  background: #efe7dc;
  border-radius: 16px;
  padding: 16px;
}

@media (max-width: 780px) {
  .hero-card {
    padding: 20px;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
  }
}
