* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1e1b1c;
  --muted: #61565a;
  --cream: #f8f3ef;
  --rose: #f2d9de;
  --sage: #dfe8dc;
  --terracotta: #c9796a;
  --night: #2f2a2d;
  --paper: #fffdfa;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  overflow-x: hidden;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 8px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.78rem;
  color: var(--muted);
  border: 1px solid var(--rose);
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff5f7;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--terracotta);
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, rgba(248, 243, 239, 0.96), rgba(248, 243, 239, 0.72)), url("https://images.unsplash.com/photo-1660549071167-375d55b04906?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 80px 0 90px;
}

.hero-inner {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.hero-copy {
  flex: 1 1 52%;
  padding-right: 10px;
}

.hero-card {
  flex: 1 1 45%;
  background: rgba(255, 255, 255, 0.9);
  padding: 28px;
  border-radius: 26px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(40px);
}

.hero-card .img-frame {
  margin-top: 18px;
}

.eyebrow {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

h1,
h2,
h3 {
  font-weight: 600;
}

h1 {
  font-size: clamp(2.4rem, 3vw, 3.5rem);
  margin: 12px 0 18px;
}

h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  margin-bottom: 14px;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--terracotta);
  color: white;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: var(--night);
}

.btn.link {
  background: transparent;
  color: var(--terracotta);
  padding: 0;
}

.btn:hover {
  opacity: 0.9;
}

.mt-22 {
  margin-top: 22px;
}

.mt-18 {
  margin-top: 18px;
}

.img-150 {
  height: 150px;
}

.img-240 {
  height: 240px;
}

.img-260 {
  height: 260px;
}

.img-280 {
  height: 280px;
}

.img-360 {
  height: 360px;
}

.section {
  padding: 70px 0;
}

.section.asym {
  position: relative;
}

.section-bg {
  background: linear-gradient(120deg, rgba(31, 26, 29, 0.9), rgba(31, 26, 29, 0.55)), url("https://images.unsplash.com/photo-1771214513278-0d76061c2bc7?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.offset {
  display: flex;
  gap: 40px;
  align-items: center;
}

.offset.reverse {
  flex-direction: row-reverse;
}

.offset .panel {
  flex: 1 1 50%;
}

.float-card {
  background: var(--cream);
  padding: 28px;
  border-radius: 24px;
  margin-top: -50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.img-frame {
  background: var(--sage);
  border-radius: 20px;
  overflow: hidden;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--rose);
  font-size: 0.88rem;
}

.grid-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.card .img-frame {
  height: 160px;
  margin-bottom: 14px;
}

.story-strip {
  display: flex;
  align-items: stretch;
  gap: 22px;
  background: var(--night);
  color: white;
  padding: 32px;
  border-radius: 28px;
}

.story-strip p {
  color: #e9dfe3;
}

.story-strip .img-frame {
  flex: 0 0 42%;
  background: #3a3336;
}

.pricing-wrap {
  display: flex;
  gap: 24px;
  align-items: stretch;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid #f0e5e8;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-tag {
  font-size: 1.6rem;
  color: var(--terracotta);
  font-weight: 700;
}

.form-block {
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-wrap: wrap;
}

.form-panel {
  flex: 1 1 340px;
  background: var(--cream);
  padding: 28px;
  border-radius: 24px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d9cfd3;
  font-size: 1rem;
}

.note {
  font-size: 0.92rem;
  color: var(--muted);
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #efe7ea;
  padding: 12px 0;
  z-index: 5;
}

.sticky-cta .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer {
  padding: 40px 0 60px;
  background: #1f1a1d;
  color: #e9e2e5;
}

.footer a {
  color: #e9e2e5;
}

.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 200px;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.disclaimer {
  margin-top: 18px;
  font-size: 0.85rem;
  color: #ccbfc4;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  max-width: 360px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions .btn {
  flex: 1 1 auto;
}

.simple-hero {
  background: var(--cream);
  padding: 70px 0 50px;
}

.simple-hero .hero-inner {
  align-items: center;
}

.split-panel {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.callout {
  background: var(--rose);
  border-radius: 20px;
  padding: 20px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.muted {
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-inner,
  .offset,
  .story-strip,
  .form-block {
    flex-direction: column;
  }

  .hero-card {
    transform: none;
  }

  .nav {
    flex-direction: column;
    gap: 14px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
