* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1e1a16;
  --muted: #6f645b;
  --sand: #f6f1ea;
  --clay: #e9dfd5;
  --accent: #c46b4a;
  --accent-dark: #9c4d32;
  --deep: #2d2722;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fffaf6;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.top-band {
  background: var(--sand);
  padding: 18px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand span {
  font-size: 0.72rem;
  display: block;
  color: var(--muted);
  letter-spacing: 0.2em;
}

.nav-split {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-split a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-split a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 8vw 6vw 4vw;
  gap: 40px;
  align-items: stretch;
  background: linear-gradient(120deg, #fffaf6 30%, #f0e4d9 100%);
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.hero-text p {
  color: var(--muted);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.cta-row {
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.hero-visual {
  flex: 1 1 320px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.hero-visual img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(30, 26, 22, 0.2);
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -10px;
  background: var(--deep);
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.section {
  padding: 6vw 6vw;
}

.section.light {
  background: var(--sand);
}

.section.dark {
  background: var(--deep);
  color: #fdf6ef;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 620px;
}

.offset-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.offset-card {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(30, 26, 22, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offset-card.alt {
  transform: translateY(22px);
  background: var(--clay);
}

.offset-card img {
  border-radius: 12px;
  height: 180px;
  object-fit: cover;
}

.story-slab {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.story-slab .story-text {
  flex: 1 1 300px;
}

.story-slab .story-image {
  flex: 1 1 280px;
  border-radius: 24px;
  overflow: hidden;
}

.pricing-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border: 1px solid #d8cbbf;
  border-radius: 14px;
  background: #fff;
}

.pricing-item .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.quote-band {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.quote {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border-left: 4px solid var(--accent);
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.form-shell form {
  flex: 1 1 320px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(30, 26, 22, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d6c8bb;
  font-size: 1rem;
  font-family: inherit;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(30, 26, 22, 0.2);
  z-index: 20;
}

.footer {
  background: #14110f;
  color: #f4eee7;
  padding: 40px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer a {
  color: #f4eee7;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid #d3c6ba;
  padding: 16px;
  border-radius: 14px;
  max-width: 320px;
  box-shadow: 0 8px 24px rgba(30, 26, 22, 0.15);
  z-index: 40;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.secondary-btn {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.page-hero {
  padding: 6vw 6vw 3vw;
  background: var(--sand);
}

.content-slab {
  padding: 4vw 6vw 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 880px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 720px) {
  .hero {
    padding-top: 12vw;
  }

  .hero-badge {
    position: static;
    margin-top: 12px;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
