* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #151517;
  --ink-soft: #3b3d44;
  --paper: #f7f4ef;
  --mist: #efe8dd;
  --accent: #ce6d5b;
  --accent-dark: #9c4b3d;
  --blue: #2e4a6a;
  --leaf: #7b8a5c;
  --shadow: rgba(16, 20, 24, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw 12px;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 1px solid var(--accent);
  transition: all 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-outline:hover {
  background: var(--accent-dark);
  color: #fff;
}

.btn-soft {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}

.section {
  padding: 80px 6vw;
  position: relative;
}

.section--tint {
  background: var(--mist);
}

.section--dark {
  background: var(--blue);
  color: #fff;
}

.section--lift {
  margin-top: -40px;
  padding-top: 100px;
}

.section-inner {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: stretch;
}

.split > * {
  flex: 1 1 280px;
}

.intro-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--accent-dark);
  font-weight: 700;
}

.intro-eyebrow--light {
  color: #fff;
}

.hero {
  padding-top: 40px;
}

.hero-card {
  background: #fff;
  padding: 36px;
  box-shadow: 0 20px 45px var(--shadow);
  border-radius: 24px;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin: 16px 0 18px;
}

.section-actions {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
}

.asym-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 40px var(--shadow);
  transform: translateY(18px);
}

.card-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 12px 24px var(--shadow);
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 14px;
  height: 140px;
  object-fit: cover;
}

.badge {
  background: var(--paper);
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 6px;
}

.price-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 18px 36px var(--shadow);
  border: 1px solid #f1e9dc;
}

.price-card h3 {
  margin-bottom: 10px;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.price-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.form-panel {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9d0c5;
  font-family: inherit;
  font-size: 0.95rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 12px 25px var(--shadow);
  z-index: 30;
}

.footer {
  padding: 40px 6vw;
  background: #111316;
  color: #eee;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.footer-note {
  font-size: 0.85rem;
  color: #b9b9b9;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 16px 30px var(--shadow);
  max-width: 320px;
  display: none;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.media-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.media-stack img {
  border-radius: 18px;
  box-shadow: 0 14px 26px var(--shadow);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlight-box {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 16px 34px var(--shadow);
}

.split-offset {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split-offset .shift {
  transform: translateY(-18px);
}

.legal h1 {
  margin-bottom: 16px;
}

.legal p {
  margin-bottom: 14px;
}

@media (max-width: 860px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
