/* Base */
:root {
  --ink: #1c1b1a;
  --muted: #5d5853;
  --accent: #c07a78;
  --accent-dark: #9d5b59;
  --paper: #faf7f4;
  --sand: #f1e8e1;
  --mauve: #efe1e6;
  --sage: #e7ece7;
  --night: #1f1d1c;
  --mist: #f6f1ed;
  --border: #e4d7cf;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 20px 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.nav a {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav a:focus,
.nav a:hover {
  color: var(--ink);
}

.hero {
  padding: 40px 0 60px;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.hero-copy h1 {
  font-size: 2.7rem;
  line-height: 1.1;
  margin: 0;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-media {
  flex: 1 1 360px;
  background: var(--mauve);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  min-height: 320px;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
}

.section {
  padding: 60px 0;
  position: relative;
}

.section-bg {
  position: absolute;
  inset: 0;
  background: #2a2422;
  overflow: hidden;
  z-index: 0;
}

.section-bg img {
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.section-content {
  position: relative;
  z-index: 1;
}

.section.alt {
  background: var(--mist);
}

.section.dark {
  background: var(--night);
  color: #f8f4f2;
}

.section.dark .muted {
  color: #d3c6c2;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 16px;
}

.muted {
  color: var(--muted);
}

.story-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.story-panel .text {
  flex: 1 1 340px;
}

.story-panel .visual {
  flex: 1 1 320px;
  background: var(--sand);
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
}

.story-panel .visual img {
  width: 100%;
  height: 100%;
}

.pull-quote {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 20px 0 0;
}

.insight-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.insight-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.insight-card span {
  font-size: 0.9rem;
  color: var(--muted);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.inline-media {
  background: var(--sand);
  border-radius: 20px;
  overflow: hidden;
  min-height: 220px;
}

.inline-media img {
  width: 100%;
  height: 100%;
}

.trust-card {
  flex: 1 1 280px;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  background: #fff;
}

.trust-card h3 {
  margin: 0 0 8px;
}

.inline-testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-28 {
  margin-top: 28px;
}

.testimonial {
  padding: 16px 18px;
  border-left: 3px solid var(--accent);
  background: #fff;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.urgency-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.urgency-card {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border);
}

.benefit {
  flex: 1 1 240px;
  background: var(--sage);
  border-radius: 16px;
  padding: 16px;
}

.pricing-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--border);
}

.price-card .media {
  background: #ead8d2;
  height: 180px;
}

.price-card .media img {
  width: 100%;
  height: 100%;
}

.price-card .body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-card .price {
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 1.2rem;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
  margin: 6px 0 0;
}

.form-section {
  background: var(--mauve);
  border-radius: 28px;
  padding: 28px;
}

.form-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.form-text {
  flex: 1 1 300px;
}

.form-wrap {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
}

.sticky-cta button {
  box-shadow: var(--shadow);
}

.footer {
  padding: 40px 0 50px;
  background: var(--night);
  color: #f6f0ed;
}

.footer .footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer small {
  color: #d3c6c2;
}

.policy-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  margin: 20px 0;
}

.page-hero {
  padding: 30px 0 20px;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: 2.2rem;
}

.simple-section {
  padding: 40px 0;
}

.image-band {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.image-band .frame {
  flex: 1 1 280px;
  background: var(--sand);
  border-radius: 18px;
  overflow: hidden;
  min-height: 200px;
}

.image-band .frame img {
  width: 100%;
  height: 100%;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  display: none;
  gap: 16px;
  align-items: center;
  box-shadow: var(--shadow);
  z-index: 15;
}

.cookie-banner.active {
  display: flex;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 10px 16px;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.thanks-card {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
