* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f7f5f2;
  --ink: #1f2a2e;
  --muted: #5b6b73;
  --accent: #2f6f6d;
  --accent-dark: #245554;
  --soft: #e9e4dd;
  --card: #ffffff;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  padding: 18px 0 12px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 240px;
}

.hero {
  padding: 48px 0 36px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.split--reverse {
  flex-direction: row-reverse;
}

.split__text,
.split__media {
  flex: 1 1 340px;
}

.split__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-title {
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
  line-height: 1.1;
  margin: 0;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  padding: 48px 0;
}

.section--soft {
  background: var(--soft);
}

.bg-image-1 {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.bg-image-1 .container {
  position: relative;
  z-index: 1;
}

.bg-image-1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 245, 242, 0.86);
  z-index: 0;
  pointer-events: none;
}

.section--card {
  background: var(--card);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(31, 42, 46, 0.08);
}

.section-title {
  font-size: 1.9rem;
  margin: 0 0 12px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--muted);
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 28px rgba(31, 42, 46, 0.08);
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.image-frame {
  background: #d7d2cb;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.form-block {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 14px 32px rgba(31, 42, 46, 0.08);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

select,
input,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d7d2cb;
  border-radius: 10px;
  font-size: 0.95rem;
  background: #fff;
}

.form-status {
  font-size: 0.9rem;
  color: var(--accent-dark);
  min-height: 20px;
}

.footer {
  padding: 42px 0 70px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
}

.sticky-cta a {
  box-shadow: 0 12px 22px rgba(31, 42, 46, 0.18);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 32px rgba(31, 42, 46, 0.14);
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.pill {
  display: inline-block;
  padding: 6px 12px;
  background: #eef2f1;
  border-radius: 999px;
  font-size: 0.8rem;
}

.note {
  background: #eef2f1;
  border-radius: 14px;
  padding: 16px;
}

.hero-bg {
  background: linear-gradient(120deg, rgba(47, 111, 109, 0.08), rgba(255, 255, 255, 0.6));
  border-radius: 28px;
  padding: 32px;
}

.legal-hero {
  padding: 32px 0 12px;
}

.legal-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
}

.hidden {
  display: none;
}

@media (max-width: 720px) {
  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }

  .hero {
    padding-top: 28px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
