:root {
  --bg: #0c0b0c;
  --skin: #e8c2b0;
  --red: #d4574a;
  --dim: #8a7e78;
  --line: rgba(232, 194, 176, 0.16);
  --serif: "Italiana", serif;
  --sans: "Outfit", system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--skin); font-family: var(--sans); height: 100%; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(1080px, calc(100% - 36px)); margin: 0 auto; }
.nav { display: flex; justify-content: space-between; padding: 20px 0; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--red); }
h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(44px, 8vw, 84px); line-height: 0.9; }
.hero { min-height: 100dvh; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 32px; align-items: center; }
.lede { font-size: 18px; line-height: 1.5; color: #f0d5c6; max-width: 36ch; margin: 16px 0 24px; }
.btn {
  display: inline-flex; background: var(--red); color: #140c0c; text-decoration: none;
  border: 0; padding: 14px 18px; font: 650 14px var(--sans); cursor: pointer;
}
.btn.ghost { background: transparent; color: var(--skin); border: 1px solid var(--line); }
.hero img { height: 86dvh; width: 100%; object-fit: cover; object-position: center top; }
.chat {
  height: 100dvh; display: grid; grid-template-rows: auto 1fr auto;
}
.chat-head { display: flex; gap: 12px; align-items: center; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.chat-head img { width: 44px; height: 44px; object-fit: cover; border-radius: 50%; }
.msgs { overflow: auto; padding: 18px 16px; display: flex; flex-direction: column; gap: 10px; }
.bubble {
  max-width: 78%; padding: 10px 12px; font-size: 15px; line-height: 1.45; white-space: pre-wrap;
}
.bubble.vera { background: #1a1414; align-self: flex-start; }
.bubble.me { background: #3a1f1c; align-self: flex-end; }
.composer { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--line); }
.composer input {
  flex: 1; background: #140f0f; border: 1px solid var(--line); color: var(--skin);
  padding: 14px; font: 16px var(--sans);
}
.kicker { color: var(--red); letter-spacing: 0.22em; font-size: 11px; text-transform: uppercase; }
.cta-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.gate { position: fixed; inset: 0; background: #0c0b0cf6; display: grid; place-items: center; text-align: center; z-index: 40; padding: 24px; }
.gate h2 { font-family: var(--serif); font-size: 42px; margin: 8px 0 16px; }
.paywall {
  position: fixed; inset: auto 0 0 0; background: #140c0cf2; padding: 16px;
  border-top: 1px solid var(--line); display: none;
}
.paywall.on { display: block; }
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-bottom: 40px; }
  .hero img { height: 70dvh; }
}
