:root {
  --ink: #1e1b1f;
  --muted: #5c5661;
  --accent: #6c4f6f;
  --accent-soft: #f1e6ee;
  --sand: #f7f2ee;
  --sage: #dfe8e1;
  --stone: #e7e1da;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  padding: 24px 0;
  border-bottom: 1px solid var(--stone);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  position: relative;
  padding: 80px 0 100px;
}

.hero-grid {
  display: flex;
  align-items: stretch;
  gap: 30px;
}

.hero-text {
  flex: 1.1;
  background: var(--accent-soft);
  padding: 40px;
  border-radius: 18px;
  margin-top: 40px;
}

.hero-visual {
  flex: 0.9;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background-color: var(--stone);
}

.hero-visual.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: var(--ink);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.split {
  display: flex;
  gap: 30px;
  align-items: center;
}

.offset-card {
  background: var(--sand);
  padding: 30px;
  border-radius: 20px;
}

.image-frame {
  background: var(--sage);
  border-radius: 20px;
  overflow: hidden;
}

.section {
  padding: 70px 0;
}

.section.tight {
  padding: 40px 0;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.accent-band {
  background: var(--sand);
  padding: 50px 0;
}

.asym-row {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.asym-left {
  flex: 1.1;
}

.asym-right {
  flex: 0.9;
  margin-top: 60px;
}

.form-shell {
  background: var(--accent-soft);
  padding: 28px;
  border-radius: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--stone);
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 20;
}

.sticky-cta a {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.footer {
  border-top: 1px solid var(--stone);
  padding: 30px 0 50px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 16px;
  padding: 16px;
  display: none;
  z-index: 30;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.bg-soft {
  background: var(--accent-soft);
}

.bg-visual {
  background-color: var(--stone);
  background-image: url("https://images.unsplash.com/photo-1495567720989-cebdbdd97913?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.mini-hero {
  display: flex;
  gap: 24px;
  align-items: center;
}

.mini-hero .image-frame {
  flex: 0.9;
}

.mini-hero .offset-card {
  flex: 1.1;
}

.note {
  font-size: 0.92rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .asym-row,
  .mini-hero {
    flex-direction: column;
  }

  .hero-text,
  .asym-right {
    margin-top: 0;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
  }
}
