@font-face {
  font-family: "InterCustom";
  src: local("Inter"), local("Inter-Regular");
  font-weight: 400;
}

:root {
  color-scheme: light;
  --ink: #1b1a18;
  --muted: #5e5a55;
  --sand: #f5f1ea;
  --stone: #e2dcd2;
  --accent: #6b3f2a;
  --accent-soft: #e9d6c7;
  --sage: #d9e0d2;
  --night: #0f0f10;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "InterCustom", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fbfaf7;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 6vw 16px;
}

.nav-split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  padding: 40px 6vw 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin: 0;
}

.hero p {
  max-width: 580px;
  font-size: 1.05rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}

.btn.primary {
  background: var(--ink);
  color: #fff;
}

.btn.ghost {
  background: transparent;
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

section {
  padding: 56px 6vw;
}

.section-sand {
  background: var(--sand);
}

.section-stone {
  background: #f0ece4;
}

.section-night {
  background: var(--night);
  color: #fff;
}

.section-sage {
  background: var(--sage);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(19, 16, 10, 0.12);
}

.panel {
  background: var(--sand);
  border-radius: 28px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel.dark {
  background: var(--night);
  color: #fff;
}

.tag {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--muted);
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 30px rgba(15, 14, 10, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card img {
  border-radius: 16px;
  height: 180px;
  object-fit: cover;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-step span {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(28, 24, 19, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
  box-shadow: 0 16px 30px rgba(28, 24, 19, 0.2);
}

.banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 16px 40px rgba(16, 14, 10, 0.2);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 30;
}

.banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  padding: 48px 6vw;
  background: var(--night);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #fff;
  opacity: 0.8;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.muted {
  color: var(--muted);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 8px 14px;
  background: var(--sage);
  border-radius: 999px;
  font-size: 0.85rem;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .two-col {
    flex-direction: row;
  }

  .banner {
    left: auto;
    width: 420px;
  }
}
