* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1b1f;
  --muted: #5b5f68;
  --surface: #ffffff;
  --surface-2: #f6f3ef;
  --surface-3: #eef2f7;
  --accent: #1b3c59;
  --accent-2: #b63b2a;
  --accent-3: #2d7b6f;
  --border: #d8d3cc;
  --shadow: 0 22px 40px rgba(15, 18, 24, 0.12);
}

body {
  font-family: "Manrope", "Inter", system-ui, -apple-system, sans-serif;
  background: var(--surface);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100vh;
}

.site-header {
  padding: 24px 6vw 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--surface);
}

.brand-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.nav-links a:hover {
  border-color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 30px 6vw 48px;
  background: linear-gradient(130deg, #fdf8f3 0%, #eef2f7 100%);
}

.hero-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 18, 26, 0.12), rgba(5, 18, 26, 0.7));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.hero p {
  color: var(--muted);
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button.secondary {
  background: #fff;
  border-color: var(--border);
  color: var(--accent);
}

.button.ghost {
  border-color: var(--accent-2);
  color: var(--accent-2);
  background: transparent;
}

.button:hover {
  transform: translateY(-2px);
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--surface-2);
}

.section.deep {
  background: var(--surface-3);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-3);
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 16px 30px rgba(22, 26, 36, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.cards-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.highlight {
  border-left: 4px solid var(--accent-2);
  padding-left: 14px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.inline-cta {
  font-weight: 600;
  color: var(--accent-2);
  border-bottom: 1px solid transparent;
}

.inline-cta:hover {
  border-bottom-color: var(--accent-2);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.form-wrap label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 1rem;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-2);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 10;
}

.site-footer {
  padding: 32px 6vw 48px;
  background: #111318;
  color: #f4f4f6;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #c5c6cc;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #111318;
  color: #f5f5f7;
  padding: 18px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #f4f4f6;
  color: #111318;
}

.cookie-reject {
  background: transparent;
  color: #f4f4f6;
  border: 1px solid #f4f4f6;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 14px;
  border-left: 2px dashed var(--accent-3);
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
}

.policy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 820px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-media,
  .hero-content {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards-row {
    flex-direction: row;
  }

  .pricing {
    flex-direction: row;
  }

  .form-grid {
    flex-direction: row;
  }

  .form-grid .field {
    flex: 1;
  }

  .card-stack {
    flex-direction: row;
  }
}
