
:root {
  --bg:      #FFF8F5;
  --ink:     #1C1917;
  --muted:   #5f5956;
  --coral:   #D83B4B;
  --pink:    #FFE4E8;
  --cream:   #FFF1EC;
  --border:  #EDE0DA;
  --white:   #FFFFFF;
  --radius:  18px;
  --nav-h:   64px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
.serif { font-family: Fraunces, Georgia, serif; }
h1, h2, h3 {
  font-family: Fraunces, Georgia, serif;
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.topbar {
  position: fixed;
  transition: transform 0.3s ease; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 20px;
  background: rgba(255,248,245,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: Fraunces, serif;
  font-size: 24px; font-weight: 700;
  letter-spacing: -0.03em; color: var(--ink);
  display: flex; align-items: baseline; gap: 4px;
}
.logo em {
  font-family: 'Great Vibes', cursive;
  font-style: normal;
  font-size: 1.7em;
  line-height: 0.75;
  color: var(--coral);
  letter-spacing: 0;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: none; border-radius: 999px;
  padding: 0 22px; height: 46px;
  font-family: Inter, sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 0.01em;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.btn:active { transform: translateY(0); }
.btn-dark  { background: var(--ink); color: var(--white); }
.btn-coral { background: var(--coral); color: var(--white); }
.btn-outline { background: transparent; color: var(--ink); border: 2px solid var(--border); }
.mobile-only { display: block; }
.desktop-only { display: none; }
.hero {
  display: flex; flex-direction: column;
  width: 100%;
}
.hero-visual {
  position: relative;
  width: 100%; height: 60svh; min-height: 400px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 108%; top: -8%;
  object-fit: cover;
  object-position: center bottom;
}
picture.hero-bg { position: absolute; inset: 0; width: 100%; height: 108%; top: -8%; }
picture.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; }
.hero-bg-desktop { display: none; }
.hero-vignette {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,8,6,0.65) 0%, rgba(10,8,6,0.25) 45%, rgba(10,8,6,0.00) 80%);
}
.hero-headline-wrap {
  position: absolute; z-index: 2;
  top: 0; left: 0; right: 0;
  padding: calc(var(--nav-h) + 24px) 20px 40px;
}
.hero-kicker {
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
}
.hero-headline {
  font-family: Fraunces, serif;
  font-size: clamp(52px, 14vw, 88px);
  font-weight: 700; line-height: 0.92;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
  margin-bottom: 0;
}
.hero-headline em {
  font-style: italic; color: #FFB3BC;
}
.hero-action {
  background: var(--white);
  padding: 32px 20px;
  border-bottom: 1px solid var(--border);
}
.hero-sub {
  font-size: 18px; line-height: 1.5; font-weight: 500;
  color: var(--ink); margin-bottom: 24px;
}
.hero-form {
  display: flex; flex-direction: column; gap: 10px;
  width: 100%; max-width: 420px; margin-bottom: 10px;
}
.hero-form input {
  width: 100%; height: 54px;
  border-radius: 999px; border: 1.5px solid var(--border);
  padding: 0 20px; font-size: 16px; background: #F9F7F6;
  -webkit-appearance: none;
}
.hero-form input:focus { outline: 3px solid var(--coral); border-color: transparent; }
.hero-form .btn { width: 100%; height: 54px; font-size: 16px; }
.micro-trust {
  font-size: 12.5px; color: var(--muted); text-align: center;
  margin-bottom: 24px; font-weight: 500;
}
.hero-social-proof {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding-top: 20px; border-top: 1px solid #F0EAE6;
}
.avatar-stack { display: flex; }
.avatar-stack img {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -10px; object-fit: cover;
}
.avatar-stack img:first-child { margin-left: 0; }
.hero-meta { font-size: 13.5px; color: var(--muted); }
.hero-meta strong { color: var(--ink); font-weight: 700; }
.sticky-cta {
  position: fixed; bottom: 20px;
  opacity: 0;
  transition: opacity 0.3s ease; left: 20px; right: 20px; z-index: 100;
  pointer-events: none;
  display: flex; justify-content: center;
}
.sticky-btn {
  width: 100%; max-width: 400px; height: 54px;
  pointer-events: auto;
  box-shadow: 0 8px 30px rgba(244, 71, 90, 0.4);
}
.ticker {
  overflow: hidden;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
}
.marquee {
  display: inline-block; white-space: nowrap;
  font-size: 12px; font-weight: 700; letter-spacing: 0.07em;
  color: var(--muted);
  animation: marquee 28s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.trust {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 20px;
}
.trust-pill {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13px; font-weight: 600;
  white-space: nowrap;
}
.section {
  padding: 48px 20px;
}
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--coral);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(34px, 9vw, 56px);
  margin-bottom: 28px;
}
.tier-grid {
  display: flex; flex-direction: column; gap: 14px;
}
.tier-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1.5px solid var(--border);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tier-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.09);
}
.tier-card img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; object-position: center;
}
.tier-body { padding: 18px 18px 20px; }
.tier-name {
  font-family: Fraunces, serif;
  font-size: 22px; font-weight: 700;
  margin-bottom: 4px;
}
.tier-price {
  font-size: 30px; font-weight: 800;
  margin-bottom: 6px; color: var(--ink);
}
.tier-price sup { font-size: 16px; font-weight: 700; vertical-align: super; }
.tier-price span { font-size: 14px; font-weight: 500; color: var(--muted); }
.tier-desc { font-size: 14px; color: var(--muted); line-height: 1.5; }
.tier-card.popular { border-color: #F4475A; }
.tier-card.popular .tier-body { background: #FFF5F6; }
.tier-card.elite { border-color: var(--ink); }
.tier-card.elite .tier-body { background: var(--ink); }
.tier-card.elite .tier-name,
.tier-card.elite .tier-price { color: var(--white); }
.tier-card.elite .tier-desc { color: rgba(255,255,255,0.74); }
.tier-card.one-night .tier-body { background: #F0FFF6; }
.badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--coral); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
  border-radius: 999px; padding: 5px 12px; z-index: 2;
}
.how-banner {
  width: calc(100% - 40px);
  margin: 0 20px 28px;
  border-radius: var(--radius);
  overflow: hidden;
}
.how-banner img {
  width: 100%; height: 220px;
  object-fit: cover; object-position: center;
}
.steps { display: flex; flex-direction: column; gap: 12px; }
.step {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.step-num {
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  color: var(--coral); margin-bottom: 8px;
}
.step h3 {
  font-family: Fraunces, serif;
  font-size: 20px; margin-bottom: 6px;
}
.step p { font-size: 14px; color: var(--muted); line-height: 1.55; }
.quotes {
  padding: 48px 20px;
  background: var(--pink);
}
.qgrid { display: flex; flex-direction: column; gap: 12px; }
.quote-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  border: 1.5px solid var(--border);
}
.quote-text { font-size: 16px; line-height: 1.6; margin-bottom: 12px; }
.quote-cite { font-size: 13px; font-weight: 600; color: var(--muted); }
.waitlist {
  padding: 56px 20px;
  text-align: center;
  background: linear-gradient(135deg, #FFF0F2 0%, #FFF8F5 100%);
  border-top: 1.5px solid var(--border);
}
.waitlist .section-title { margin-bottom: 10px; }
.waitlist-sub {
  font-size: 16px; color: var(--muted);
  margin-bottom: 28px; line-height: 1.5;
}
.waitlist-form {
  display: flex; flex-direction: column; gap: 10px;
  max-width: 420px; margin: 0 auto 14px;
}
.waitlist-form input {
  width: 100%; height: 52px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  padding: 0 20px; font-size: 15px;
  background: var(--white);
  -webkit-appearance: none;
}
.waitlist-form input:focus { outline: 3px solid var(--coral); border-color: transparent; }
.waitlist-form .btn { width: 100%; height: 52px; font-size: 15px; }
.waitlist-meta { font-size: 13px; color: var(--muted); }
.origin { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.origin-blocks { display: flex; flex-direction: column; gap: 24px; }
.origin-block h3 {
  font-family: Fraunces, serif; font-size: 22px;
  margin-bottom: 8px; color: var(--ink);
}
.origin-block p { font-size: 16px; line-height: 1.65; color: #3f3b39; }
.origin-block em { color: var(--coral); font-style: normal; font-weight: 700; }
.tier-perks {
  list-style: none; padding: 12px 0 0; margin: 0;
  border-top: 1px solid #f0eae6;
}
.tier-perks li {
  font-size: 13px; color: var(--muted); padding: 4px 0;
  padding-left: 18px; position: relative;
}
.tier-perks li::before {
  content: "✓"; position: absolute; left: 0;
  color: var(--coral); font-weight: 700;
}
.tier-card.elite .tier-perks { border-top-color: #333; }
.tier-card.elite .tier-perks li { color: rgba(255,255,255,0.74); }
.tier-card.elite .tier-perks li::before { color: #FFB3BC; }
.faq-section { background: var(--white); border-top: 1px solid var(--border); }
.faq-list { max-width: 720px; }
.faq {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.faq summary {
  font-size: 17px; font-weight: 700;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 22px; font-weight: 300;
  color: var(--muted); transition: transform 0.2s;
}
.faq[open] summary::after { content: "−"; }
.faq p {
  font-size: 15px; line-height: 1.65; color: #4a4543;
  padding-top: 12px; max-width: 640px;
}
.invite-code {
  width: 100%; height: 52px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  padding: 0 20px; font-size: 15px;
  background: var(--white); text-align: center;
  -webkit-appearance: none;
}
.invite-code:focus { outline: 3px solid var(--coral); border-color: transparent; }
footer {
  padding: 32px 20px 48px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.footer-trust { margin-bottom: 20px; }
.backed-by {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
  padding: 8px 16px; border: 1.5px solid var(--border);
  border-radius: 999px;
}
footer .logo { font-size: 24px; margin-bottom: 8px; }
footer p { font-size: 14px; color: var(--muted); }
.footer-links {
  display: flex; gap: 20px; justify-content: center;
  margin-top: 16px;
}
.footer-links a {
  font-size: 13px; color: var(--muted);
  text-decoration: none; font-weight: 500;
}
.footer-links a:hover { color: var(--ink); }
@media (min-width: 768px) {
  .mobile-only { display: none !important; }
  .desktop-only { display: block !important; }
  .hero-bg-mobile { display: none !important; }
  picture.hero-bg-desktop { display: block !important; }
  picture.hero-bg-desktop img { object-position: center center; }
  .hero-bg-desktop { display: block !important; object-position: center center; }
  .hero {
    flex-direction: row-reverse;
    min-height: calc(100svh - var(--nav-h));
  }
  .hero-visual {
    flex: 1; height: auto; min-height: 100%;
    border-radius: 0 0 0 32px;
  }
  .hero-vignette { display: none; }
  .hero-action {
    flex: 1; display: flex; flex-direction: column; justify-content: center;
    padding: 48px; background: var(--bg); border-bottom: none;
  }
  .hero-action .hero-kicker { color: var(--muted); margin-bottom: 14px; }
  .hero-action .hero-headline { color: var(--ink); text-shadow: none; margin-bottom: 16px; }
  .hero-form { flex-direction: row; }
  .hero-form input { flex: 1; width: auto; background: var(--white); border: 1.5px solid var(--border); }
  .hero-form .btn { width: auto; }
  .hero-social-proof { justify-content: flex-start; border-top: none; padding-top: 10px; }
  .micro-trust { text-align: left; margin-bottom: 16px; }
  .section, .quotes, .waitlist { padding: 64px 48px; }
  .trust { padding: 20px 48px; }
  .how-banner { width: calc(100% - 96px); margin: 0 48px 32px; }
  .how-banner img { height: 340px; }
  .tier-grid { flex-direction: row; flex-wrap: wrap; }
  .tier-card { flex: 1 1 calc(33.333% - 10px); }
  .tier-card img { aspect-ratio: 1/1; }
  .steps { flex-direction: row; }
  .step { flex: 1; }
  .qgrid { flex-direction: row; }
  .quote-card { flex: 1; }
  .origin-blocks { flex-direction: row; gap: 40px; }
  .origin-block { flex: 1; }
  .faq-list { max-width: 760px; }
  .waitlist-form { flex-direction: row; flex-wrap: wrap; }
  .waitlist-form input[type="email"] { flex: 2; width: auto; }
  .invite-code { flex: 1; min-width: 180px; }
  .waitlist-form .btn { width: auto; }
}
@media (min-width: 1100px) {
  .tier-card { flex: 1 1 calc(20% - 12px); }
  .tier-card img { aspect-ratio: 1/1; }
}
.waitlist-trust {
  font-size: 13px; color: var(--muted);
  margin-top: 12px;
}
.waitlist-trust strong { color: var(--ink); }
.backed-by a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.modal-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.open {
  opacity: 1; pointer-events: auto;
}
.modal-box {
  background: var(--white);
  border-radius: 24px;
  padding: 36px 28px;
  width: 100%; max-width: 460px;
  position: relative;
  transform: translateY(16px);
  transition: transform 0.25s ease;
}
.modal-overlay.open .modal-box {
  transform: translateY(0);
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none;
  font-size: 18px; cursor: pointer; color: var(--muted);
  line-height: 1; padding: 4px 8px;
}
.modal-close:hover { color: var(--ink); }
.modal-kicker {
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 10px;
}
.modal-title {
  font-family: Fraunces, serif;
  font-size: 36px; line-height: 1.0;
  margin-bottom: 12px;
}
.modal-sub {
  font-size: 15px; color: var(--muted); line-height: 1.5;
  margin-bottom: 24px;
}
.modal-form {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 14px;
}
.modal-form input {
  width: 100%; height: 50px;
  border-radius: 999px; border: 1.5px solid var(--border);
  padding: 0 18px; font-size: 15px; background: #F9F7F6;
  -webkit-appearance: none;
}
.modal-form input:focus { outline: 3px solid var(--coral); border-color: transparent; }
.modal-form .btn { width: 100%; height: 50px; font-size: 15px; }
.modal-meta {
  font-size: 13px; color: var(--muted); text-align: center;
  margin-bottom: 10px;
}
.modal-trust {
  font-size: 12px; color: var(--muted); text-align: center;
}
.modal-trust strong { color: var(--ink); }
.form-success {
  font-size: 18px; font-weight: 600; text-align: center;
  padding: 20px 0; color: var(--ink);
}
