* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d1d1b;
  --mist: #f3f2ef;
  --sand: #e7dfd4;
  --terra: #9c6f4c;
  --river: #3b6c8c;
  --moss: #6d7b5a;
  --accent: #c2613c;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  --radius: 28px;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: #faf9f7;
}

a {
  color: inherit;
  text-decoration: none;
}

.cta-inline {
  color: var(--accent);
  text-decoration: underline;
}

.cta-inline:hover {
  color: #a75131;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.topbar {
  padding: 32px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  padding: 40px 0 120px;
  position: relative;
}

.hero-wrap {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.hero-text {
  flex: 1.1;
  background: var(--mist);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 18px;
}

.hero-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.hero-media {
  flex: 0.9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translateY(30px);
}

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-secondary {
  border-color: var(--ink);
}

.btn-primary:hover {
  background: #a75131;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-accent {
  background: var(--sand);
}

.section-tilt {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 50px;
  transform: translateY(-40px);
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.badge {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--terra);
}

.grid-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 18px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-step {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--river);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.quote {
  font-size: 1.05rem;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 26px;
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
}

.price-card h3 {
  margin-bottom: 8px;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--moss);
  color: #fff;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.form-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d5d1c9;
  font-family: inherit;
  font-size: 0.95rem;
}

.footer {
  padding: 50px 0;
  font-size: 0.9rem;
  border-top: 1px solid #e6e2da;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--river);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
}

.muted {
  color: #5b5a55;
}

.layered {
  position: relative;
}

.layered::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 40px;
  background: rgba(194, 97, 60, 0.2);
  top: -40px;
  right: 10%;
  z-index: -1;
}

.mini-section {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  margin-top: 24px;
}

.page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .hero-wrap,
  .split {
    flex-direction: column;
  }

  .hero-media {
    transform: translateY(0);
  }

  .section-tilt {
    transform: none;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
