* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4f1;
  --ink: #1d1a17;
  --muted: #5a534d;
  --accent: #7a4dd6;
  --accent-dark: #5b33b0;
  --soft: #efe7df;
  --soft-2: #e8ebf0;
  --highlight: #f6d9b2;
  --card: #ffffff;
  --line: #ddd2c7;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6%;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 14px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 14px;
  padding: 6px 8px;
  border-radius: 12px;
}

.nav a:hover {
  background: var(--soft);
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px dashed var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff7ef;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 6% 80px;
  min-height: 70vh;
  color: #ffffff;
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(18, 14, 10, 0.78), rgba(18, 14, 10, 0.25));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero h1 {
  font-size: 42px;
  margin: 0;
}

.hero p {
  font-size: 18px;
  margin: 0;
  color: #f6f1ea;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  border: 1px solid #ffffff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.section {
  padding: 70px 6%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.soft {
  background: var(--soft);
}

.section.soft-2 {
  background: var(--soft-2);
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--muted);
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .visual {
  flex: 1 1 320px;
}

.visual {
  min-height: 260px;
}

.img-frame {
  background: #d7cfc5;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
}

.frame-ice {
  background: #d6dee7;
}

.frame-mint {
  background: #dbe0d8;
}

.frame-lilac {
  background: #d9d4db;
}

.frame-sand {
  background: #e6d9c8;
}

.frame-sea {
  background: #dbe6e4;
}

.frame-stone {
  background: #e5e0d7;
}

.pull-quote {
  display: flex;
  gap: 16px;
  padding: 22px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.pull-quote p {
  margin: 0;
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.story-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--line);
}

.card-media {
  height: 160px;
}

.story-card h3 {
  margin: 0;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid rgba(122, 77, 214, 0.4);
}

.inline-cta:hover {
  color: var(--accent-dark);
  border-bottom-color: var(--accent-dark);
}

.testimonial-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.pricing-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}

.cta-band {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--highlight);
  padding: 26px;
  border-radius: 20px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: inherit;
}

.footer {
  background: #12100e;
  color: #f2eee9;
  padding: 40px 6% 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f2eee9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.legal {
  font-size: 13px;
  color: #cfc6bf;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  background: #ffffff;
  padding: 10px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(20, 15, 10, 0.2);
}

.sticky-cta button {
  background: var(--accent);
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
}

.sticky-cta button:hover {
  background: var(--accent-dark);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 60;
  box-shadow: 0 10px 28px rgba(14, 10, 6, 0.2);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 80px 6% 40px;
  background: var(--soft-2);
}

.page-hero h1 {
  margin: 0 0 10px;
  font-size: 34px;
}

.info-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.info-card {
  flex: 1 1 240px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}

.plain-text {
  max-width: 880px;
}
