@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap");

:root {
  --bg: #f6f4f1;
  --ink: #1f2328;
  --accent: #1b5e5a;
  --accent-soft: #dfeeed;
  --muted: #5a646d;
  --panel: #ffffff;
  --line: #e3e0da;
  --warm: #f0e6da;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 6vw;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.nav-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff7ea;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 60px 6vw;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.panel.center {
  justify-content: center;
}

.tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}

.hero {
  background: var(--warm);
}

.hero-title {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
}

.btn.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.img-frame {
  background: #d9d2c7;
  border-radius: 20px;
  overflow: hidden;
}

.img-frame.tall img {
  height: 100%;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.card img {
  border-radius: 12px;
  background: #d0d7de;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.muted {
  color: var(--muted);
}

.quote {
  font-style: italic;
  padding: 18px;
  border-left: 4px solid var(--accent);
  background: #ffffff;
}

.form-panel {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: inherit;
}

.form-note {
  font-size: 14px;
  color: var(--muted);
}

.grid-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.grid-row .card {
  flex: 1 1 220px;
}

.footer {
  padding: 40px 6vw 60px;
  background: #111517;
  color: #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f0f0f0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.disclaimer {
  font-size: 13px;
  color: #cbd0d6;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  background: #111517;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  display: none;
  width: min(92vw, 540px);
  z-index: 30;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-panel {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.banner-strip {
  background: #1b5e5a;
  color: #fff;
  padding: 18px 6vw;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.banner-strip a {
  color: #fff;
}

.section-soft {
  background: var(--accent-soft);
}

.section-dark {
  background: #1c2127;
  color: #f5f5f5;
}

.section-dark .muted {
  color: #cbd0d6;
}

.section-dark a {
  color: #fff;
}

.bg-service {
  background-image: url("https://images.unsplash.com/photo-1472289065668-ce650ac443d2?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #e6e0d9;
  position: relative;
}

.bg-service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
}

.bg-service .panel {
  position: relative;
}

.two-col-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.two-col-list .item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 10px;
}

@media (max-width: 900px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand {
    order: -1;
  }
}
