* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f252a;
  --muted: #5c6770;
  --paper: #f6f2ed;
  --sand: #efe7de;
  --stone: #d8d2c9;
  --accent: #0f5b6b;
  --accent-soft: #d7eef2;
  --accent-dark: #0a3b45;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fbfaf8;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

button,
select,
input,
textarea {
  font-family: inherit;
  font-size: 1rem;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 6vw 18px 6vw;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 220px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.nav a {
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-direction: row;
  gap: 40px;
  padding: 24px 6vw 48px 6vw;
  align-items: stretch;
}

.hero-content {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: flex-start;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.1;
}

.hero-card {
  background: var(--accent-soft);
  padding: 18px;
  border-radius: 16px;
  align-self: flex-start;
  max-width: 360px;
}

.hero-media {
  flex: 1;
  background: var(--sand);
  border-radius: 24px;
  overflow: hidden;
  transform: translateY(20px);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section {
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section.bg-vision {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section.bg-vision .note,
.section.bg-vision a {
  color: #f1f3f4;
}

.section.bg-vision::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 27, 30, 0.55);
  z-index: 0;
}

.section.bg-vision > * {
  position: relative;
  z-index: 1;
}

.section.offset-left {
  padding-left: 12vw;
}

.section.offset-right {
  padding-right: 12vw;
}

.section-title {
  font-size: 2rem;
}

.section-rows {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  min-width: 260px;
}

.media {
  flex: 1;
  min-width: 240px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--stone);
  display: flex;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1;
  min-width: 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(31, 37, 42, 0.08);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  background: var(--sand);
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  border: none;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

.form-block {
  background: var(--paper);
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field input,
.field select,
.field textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8c8c8;
  background: #ffffff;
}

.quote {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 16px;
  border-radius: 12px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer {
  padding: 32px 6vw 48px 6vw;
  background: #111416;
  color: #e6e8ea;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #e6e8ea;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent-dark);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 340px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 25;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.hidden {
  display: none;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.highlight {
  background: var(--accent-soft);
  padding: 16px;
  border-radius: 16px;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.table-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: #ffffff;
  border-radius: 14px;
  padding: 14px;
  align-items: center;
  justify-content: space-between;
}

.table-row strong {
  min-width: 180px;
}

.two-column {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.two-column > div {
  flex: 1;
  min-width: 260px;
}

.anchor {
  scroll-margin-top: 120px;
}

.spacer {
  height: 10px;
}
