* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f3ee;
  --ink: #1f2a2e;
  --muted: #56636b;
  --accent: #1f6f8b;
  --accent-dark: #135066;
  --soft: #e4e0d8;
  --warm: #f0e7dc;
  --shadow: 0 20px 50px rgba(22, 33, 36, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent-dark);
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.topbar {
  padding: 24px 0 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  padding: 48px 0 64px;
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: stretch;
}

.panel {
  flex: 1 1 320px;
  min-width: 280px;
}

.panel.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.panel.hero-visual {
  background: #d7d1c6;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.button {
  border: none;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.button.outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--warm);
}

.section.deep {
  background: #e1e8ea;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  color: var(--muted);
}

.card-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.image-wrap {
  background: #d7d1c6;
}

.card {
  flex: 1 1 240px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 180px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.split-block {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.split-block.reverse {
  flex-direction: row-reverse;
}

.split-block .image-wrap {
  flex: 1 1 320px;
  background: #cfd6d6;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-block .image-wrap img {
  width: 100%;
  height: 100%;
}

.split-block .text-wrap {
  flex: 1 1 320px;
}

.quote {
  padding: 24px;
  background: white;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-shell {
  background: white;
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid label {
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cbd3d6;
  font-family: inherit;
}

.form-grid textarea {
  min-height: 120px;
}

.inline-link {
  font-weight: 600;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  margin: 20px auto 0;
  padding: 16px;
  background: white;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  box-shadow: var(--shadow);
}

.footer {
  padding: 48px 0 72px;
  background: #11181b;
  color: #eef2f3;
}

.footer a {
  color: #c6d7dc;
}

.footer-cols {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 240px;
}

.legal-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: white;
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.hero-list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-item {
  flex: 1 1 160px;
  background: white;
  border-radius: 12px;
  padding: 12px;
  box-shadow: var(--shadow);
}

.muted {
  color: var(--muted);
}

.center {
  text-align: center;
}

.notice {
  background: #f8f1e7;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #eadac5;
}

@media (max-width: 840px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
