* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f1d1b;
  --muted: #6a645f;
  --paper: #f6f2ee;
  --sand: #ebe4dd;
  --clay: #c97b5a;
  --moss: #49635b;
  --night: #1d2a2f;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--night);
  color: #f8f5f2;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
}

.nav a {
  color: #f8f5f2;
  opacity: 0.8;
}

.nav a:hover {
  opacity: 1;
}

.nav-callout {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.main {
  flex: 1;
  padding: 40px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.section.alt {
  background: var(--sand);
  padding: 32px;
  border-radius: 28px;
}

.section.dark {
  background: var(--night);
  color: #f8f5f2;
  padding: 36px;
  border-radius: 28px;
}

.section.vertical {
  flex-direction: column;
  align-items: flex-start;
}

.section .text {
  flex: 1 1 320px;
}

.section .visual {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--moss);
  font-weight: 600;
}

.title {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
  margin: 12px 0 18px;
}

.subtitle {
  font-size: 18px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.btn.primary {
  background: var(--clay);
  color: #fff;
}

.btn.secondary {
  border-color: var(--clay);
  color: var(--clay);
  background: #fff;
}

.btn.light {
  background: #fff;
  color: var(--night);
}

.btn:hover {
  transform: translateY(-2px);
}

.card-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.card img {
  border-radius: 14px;
  height: 140px;
  object-fit: cover;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.list-item span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clay);
  margin-top: 8px;
  flex: 0 0 10px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  padding: 16px 20px;
  border-left: 3px solid var(--clay);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
}

.pricing-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 220px;
  border-radius: 20px;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 26px;
  font-weight: 700;
  color: var(--clay);
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row input,
.form-row select,
.form-row textarea {
  flex: 1 1 200px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d2c9c0;
  font-size: 15px;
  font-family: inherit;
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-link {
  color: var(--clay);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--moss);
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer a {
  color: inherit;
  text-decoration: underline;
}

.badge-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.badge {
  background: rgba(255, 255, 255, 0.35);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
}

.stat-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat {
  flex: 1 1 150px;
  background: #fff;
  padding: 16px;
  border-radius: 18px;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 22px;
  color: var(--clay);
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.image-stack img {
  height: 180px;
  object-fit: cover;
}

.two-col {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1 1 260px;
}

.hero-visual {
  background: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?auto=format&fit=crop&w=1100&q=80")
    center/cover no-repeat;
  border-radius: 26px;
  min-height: 320px;
}

.texture-panel {
  background: url("https://images.unsplash.com/photo-1501045661006-fcebe0257c3f?auto=format&fit=crop&w=900&q=80")
    center/cover no-repeat;
  border-radius: 24px;
  min-height: 220px;
}

.accent-panel {
  background: url("https://images.unsplash.com/photo-1523413651479-597eb2da0ad6?auto=format&fit=crop&w=900&q=80")
    center/cover no-repeat;
  border-radius: 24px;
  min-height: 220px;
}

.soft-panel {
  background: url("https://images.unsplash.com/photo-1502005097973-6a7082348e28?auto=format&fit=crop&w=900&q=80")
    center/cover no-repeat;
  border-radius: 24px;
  min-height: 220px;
}

.notice {
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sticky-cta {
    right: 12px;
    bottom: 90px;
  }
}

@media (max-width: 640px) {
  .main {
    padding: 28px 6vw 90px;
  }

  .sidebar {
    gap: 16px;
  }

  .nav {
    gap: 10px;
    font-size: 13px;
  }
}
