*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4f0;
  --bg-ink: #181514;
  --accent: #a34a4f;
  --accent-soft: #edd7d2;
  --ink-soft: #4b4341;
  --light: #ffffff;
  --muted: #918784;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--bg-ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--light);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--accent);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 15px;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--light);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-cta:hover,
.btn:hover {
  background: #8c3f43;
  transform: translateY(-1px);
}

.ghost-btn {
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
}

.section {
  display: flex;
  flex-direction: column;
  padding: 48px 24px;
  gap: 32px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel.light {
  background: var(--light);
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
}

.highlight {
  background: var(--accent-soft);
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-flex;
  width: fit-content;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--light);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #efe7e3;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.divider {
  width: 100%;
  height: 1px;
  background: #e2d6d2;
}

.split-image {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  background: var(--light);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-soft);
  border: 1px solid #efe7e3;
}

.quote {
  font-style: italic;
  color: var(--ink-soft);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: sticky;
  top: 12px;
  align-self: flex-start;
  background: var(--light);
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #efe7e3;
  font-size: 14px;
}

.form-card {
  background: var(--light);
  padding: 24px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #efe7e3;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9cac6;
  font-family: inherit;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  padding: 32px 24px;
  background: #171212;
  color: #f5f1ee;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.footer small {
  color: #c8c0bd;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--light);
  border-radius: 18px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e1d4cf;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-overlay {
  background: linear-gradient(120deg, rgba(247, 244, 240, 0.9), rgba(247, 244, 240, 0.7));
  border-radius: 24px;
  padding: 24px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
}

.legal {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 900px) {
  .top-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 28px 60px;
  }

  .section {
    padding: 70px 60px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .panel {
    flex: 1;
  }

  .split-image {
    flex: 1;
  }
}
