* {
  box-sizing: border-box;
}

:root {
  --ink: #1c1a19;
  --muted: #5d5752;
  --cream: #f6f1ed;
  --sand: #efe7e1;
  --blush: #f2e2dc;
  --shadow: rgba(20, 18, 17, 0.1);
  --accent: #7a3e2f;
  --accent-soft: #b97c6a;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  background: var(--cream);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 12px;
  background: var(--sand);
  border-radius: 999px;
  font-size: 0.85rem;
}

.section {
  padding: 64px 6vw;
}

.section.narrow {
  padding: 64px 12vw;
}

.section.soft {
  background: var(--sand);
}

.section.blush {
  background: var(--blush);
}

.section.dark {
  background: #1d1b19;
  color: #f7f2ee;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.col {
  flex: 1 1 280px;
}

.offset-card {
  background: white;
  padding: 28px;
  box-shadow: 0 24px 60px var(--shadow);
  position: relative;
  top: -24px;
}

.story-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.hero {
  padding: 80px 6vw 40px;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-media {
  flex: 1 1 320px;
}

.media-frame {
  background: var(--sand);
  padding: 12px;
  border-radius: 12px;
}

.media-frame.large {
  padding: 16px;
  border-radius: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 220px;
  background: white;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 40px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .media-frame {
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.testimonial {
  border-left: 3px solid var(--accent-soft);
  padding-left: 16px;
  color: var(--muted);
}

.backdrop {
  position: relative;
  overflow: hidden;
}

.backdrop .backdrop-media {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}

.backdrop .backdrop-media img {
  height: 100%;
}

.backdrop .backdrop-content {
  position: relative;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: white;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 40px var(--shadow);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d8cec7;
  font-size: 0.95rem;
  font-family: inherit;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.sticky-cta .btn {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: white;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 50px var(--shadow);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.footer {
  background: #151312;
  color: #f7f2ee;
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.small {
  font-size: 0.85rem;
  color: #d6c8c0;
}

.split-info {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.legal-block {
  background: white;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 18px 40px var(--shadow);
}

@media (max-width: 820px) {
  .nav-wrap {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
