* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1b16;
  --accent: #8c2f39;
  --soft: #f6f1ee;
  --sand: #efe7e1;
  --peach: #f3d2c9;
  --teal: #1b4d4f;
  --white: #ffffff;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 6vw 18px;
}

.nav-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--soft);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 20px 6vw 50px;
  align-items: stretch;
}

.hero-left,
.hero-right {
  flex: 1 1 320px;
}

.hero-left h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-left p {
  max-width: 520px;
  margin-bottom: 20px;
}

.pill {
  display: inline-flex;
  padding: 6px 14px;
  background: var(--peach);
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.hero-image {
  height: 100%;
  min-height: 360px;
  background: url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=900&q=80")
    center/cover no-repeat;
  border-radius: 28px;
  position: relative;
}

.hero-image .overlay-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section {
  padding: 60px 6vw;
}

.section.alt {
  background: var(--soft);
}

.section.dark {
  background: var(--teal);
  color: var(--white);
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.split > div {
  flex: 1 1 280px;
}

.image-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--sand);
  padding: 18px;
  border-radius: 18px;
}

.image-card img {
  border-radius: 14px;
}

.offset {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offset-block {
  background: var(--white);
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transform: translateX(16px);
}

.offset-block:nth-child(2) {
  transform: translateX(-12px);
}

.story-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 660px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.trust-band {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-pill {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.testimonial {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.testimonial img {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  object-fit: cover;
}

.pricing-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 240px;
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-card h4 {
  font-size: 1.1rem;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.form-shell form {
  flex: 1 1 320px;
  background: var(--white);
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.form-shell .form-aside {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d7c7c0;
  margin-bottom: 12px;
  font-size: 1rem;
}

.footer {
  padding: 40px 6vw;
  background: var(--ink);
  color: var(--white);
}

.footer a {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--white);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  max-width: 320px;
  z-index: 30;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-hero {
  padding: 50px 6vw 30px;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-hero p {
  max-width: 640px;
}

.list-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list-item {
  background: var(--soft);
  padding: 16px;
  border-radius: 12px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.policy {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 720px) {
  .nav-links {
    justify-content: flex-start;
  }

  .offset-block {
    transform: none;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
    text-align: center;
  }
}
