* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1b1b;
  --muted: #5a5f66;
  --accent: #d36b2c;
  --accent-dark: #b55823;
  --stone: #f6f2ee;
  --sage: #e4efe6;
  --sky: #e7f2ff;
  --sand: #fff7ee;
  --line: #e1dbd3;
  --shadow: 0 18px 40px rgba(15, 15, 15, 0.12);
  --max: 1140px;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fffdfb;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  overflow: hidden;
}

.shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 0 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
  font-size: 14px;
}

.nav-list a {
  color: var(--muted);
}

.nav-list a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  padding: 48px 0 72px;
}

.hero-frame {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-copy {
  max-width: 520px;
}

.hero-title {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero-sub {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.2s ease;
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.ghost {
  border-color: var(--ink);
}

.button.ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-visual {
  background: var(--sky);
  border-radius: 26px;
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-visual svg {
  width: 100%;
  height: auto;
}

.float-tag {
  position: absolute;
  bottom: 16px;
  right: 20px;
  background: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.offset-section {
  padding: 64px 0;
}

.offset-section.alt {
  background: var(--stone);
}

.offset-section.sage {
  background: var(--sage);
}

.offset-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.offset-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.offset-card.small {
  max-width: 420px;
  margin-left: auto;
}

.offset-card.wide {
  max-width: 620px;
}

.section-title {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 12px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border-left: 4px solid var(--accent);
}

.timeline-step strong {
  font-size: 18px;
}

.image-slab {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 14px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  display: flex;
  justify-content: space-between;
  padding: 14px 18px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.services {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
}

.service-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.tagline {
  color: var(--muted);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: inherit;
  background: #fff;
}

.helper {
  font-size: 13px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.footer {
  padding: 40px 0 60px;
  background: #141414;
  color: #f6f6f6;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer a {
  color: #f6f6f6;
  opacity: 0.8;
}

.footer a:hover {
  opacity: 1;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1c1b1a;
  color: #f6f1ec;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 10px 16px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #f3e7da;
  color: #1c1b1a;
}

.page-hero {
  padding: 48px 0 36px;
}

.page-hero p {
  color: var(--muted);
  max-width: 620px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.note {
  background: var(--sand);
  padding: 18px;
  border-radius: 16px;
}

.legal {
  padding: 48px 0 72px;
}

.legal h2 {
  margin: 26px 0 12px;
}

.legal p {
  color: var(--muted);
  margin-bottom: 14px;
}

@media (min-width: 768px) {
  .hero-frame {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .nav-list {
    flex-direction: row;
    gap: 18px;
    text-align: left;
  }

  .offset-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .offset-card {
    flex: 1 1 45%;
  }

  .split-row {
    flex-direction: row;
    align-items: center;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .services {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 45%;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .contact-grid {
    flex-direction: row;
  }
}
