* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #141414;
  --muted: #5b5b5b;
  --sand: #f7f4ef;
  --stone: #e8e2d9;
  --accent: #ff5a2f;
  --accent-dark: #c33b1b;
  --mint: #e7f5f1;
  --night: #0e0f14;
  --soft: #fbfaf7;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-wrap {
  overflow: hidden;
}

.floating-nav {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(15, 15, 15, 0.08);
  z-index: 5;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a {
  padding: 6px 12px;
  border-radius: 999px;
}

.nav-links a:hover {
  background: var(--sand);
  color: var(--ink);
}

.hero {
  padding: 160px 20px 120px;
  background: var(--night);
  color: #fff;
  position: relative;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.hero h1 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  padding: 14px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-light {
  background: #fff;
  color: var(--ink);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-media {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.hero-media img {
  width: min(320px, 80vw);
  border-radius: 28px;
}

.section {
  padding: 96px 20px;
  position: relative;
}

.bg-sand {
  background: var(--sand);
}

.bg-mint {
  background: var(--mint);
}

.bg-stone {
  background: var(--stone);
}

.bg-night {
  background: var(--night);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .copy,
.split .visual {
  flex: 1;
}

.tag {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--muted);
}

.story-card {
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(19, 19, 19, 0.08);
}

.story-card p {
  color: var(--muted);
}

.offset-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.offset-item {
  flex: 1 1 240px;
  background: var(--sand);
  border-radius: 20px;
  padding: 22px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offset-item:nth-child(even) {
  margin-top: 26px;
}

.highlight {
  font-size: 20px;
  font-weight: 600;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  background: var(--mint);
  padding: 20px;
  border-radius: 20px;
}

.trust-strip span {
  font-size: 14px;
  color: var(--muted);
}

.testimonial {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 18px 30px rgba(20, 20, 20, 0.07);
}

.testimonial + .testimonial {
  margin-top: 18px;
}

.testimonial strong {
  display: block;
  margin-bottom: 8px;
}

.pricing-block {
  background: var(--night);
  color: #fff;
  padding: 36px;
  border-radius: 28px;
}

.pricing-block .tag {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 12px;
}

.price-row span {
  color: rgba(255, 255, 255, 0.75);
}

.service-select {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.service-card {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 28px rgba(18, 18, 18, 0.08);
}

.service-card.selected {
  border: 2px solid var(--accent);
}

.service-card button {
  align-self: flex-start;
}

.form-wrap {
  background: var(--stone);
  border-radius: 26px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d2ccc3;
  font-size: 15px;
  font-family: inherit;
}

.footer {
  padding: 50px 20px;
  background: #111;
  color: #fff;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(255, 90, 47, 0.35);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 20px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 30px rgba(20, 20, 20, 0.12);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 10px 16px;
}

.simple-hero {
  padding: 140px 20px 80px;
  background: var(--sand);
}

.simple-hero h1 {
  font-size: clamp(30px, 4vw, 46px);
}

.content-block {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.space-top {
  margin-top: 24px;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-card {
  flex: 1 1 240px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(16, 16, 16, 0.06);
}

.policy-section {
  padding: 70px 20px;
  background: #fff;
}

@media (min-width: 860px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-copy {
    flex: 1.1;
  }

  .hero-media {
    flex: 1;
    justify-content: flex-end;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cookie-banner {
    max-width: 620px;
    left: auto;
    right: 20px;
  }

  .floating-nav {
    left: 40px;
    right: 40px;
  }
}
