:root {
  --bg: #0b0807;
  --bg2: #140e0c;
  --blood: #9a1f24;
  --blood2: #c43a32;
  --gold: #c9ae7c;
  --paper: #efe6d6;
  --mute: #9a8d82;
  --line: rgba(239, 230, 214, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--paper); font-family: var(--sans); }
body { min-height: 100dvh; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; letter-spacing: 0.22em; font-size: 11px; text-transform: uppercase;
  color: var(--gold);
}
.nav b { font-weight: 600; }
.hero {
  min-height: 100dvh; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px;
  align-items: end; padding: 0 0 56px;
}
.hero-copy h1 {
  font-family: var(--serif); font-weight: 500; font-size: clamp(40px, 6vw, 78px);
  line-height: 0.92; letter-spacing: -0.03em; margin: 16px 0 22px;
}
.kicker { color: var(--blood2); font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; }
.lede { font-size: 18px; line-height: 1.55; color: #d9cebf; max-width: 38ch; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blood); color: var(--paper); text-decoration: none;
  border: 0; cursor: pointer; font-family: var(--sans); font-weight: 650;
  letter-spacing: 0.04em; padding: 16px 22px; font-size: 14px;
}
.btn:hover { background: var(--blood2); }
.btn.ghost { background: transparent; border: 1px solid var(--line); }
.price { font-size: 13px; color: var(--gold); letter-spacing: 0.08em; }
.hero-img { position: relative; min-height: 78dvh; }
.hero-img img { width: 100%; height: 78dvh; object-fit: cover; filter: saturate(0.85) contrast(1.08); }
.hero-img figcaption {
  position: absolute; left: 14px; bottom: 14px; font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: #efe6d6cc;
}
.section { padding: 88px 0; border-top: 1px solid var(--line); }
.section h2 {
  font-family: var(--serif); font-size: clamp(32px, 4vw, 52px); font-weight: 500;
  line-height: 1.05; margin-bottom: 20px;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.dirty { font-size: 18px; line-height: 1.65; color: #d7ccbd; }
.dirty p + p { margin-top: 16px; }
.nights { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; margin-top: 28px; }
.nights div {
  border: 1px solid var(--line); padding: 16px 10px 14px; min-height: 140px;
}
.nights b { display: block; color: var(--gold); font-size: 11px; letter-spacing: 0.16em; margin-bottom: 8px; }
.nights span { font-size: 13px; line-height: 1.4; color: #d5cbbd; }
.quote {
  font-family: var(--serif); font-size: clamp(28px, 3.4vw, 44px); line-height: 1.15;
  max-width: 18ch;
}
.fine { font-size: 12px; color: var(--mute); line-height: 1.55; margin-top: 18px; }
.stack { display: grid; gap: 10px; }
.card {
  background: var(--bg2); border: 1px solid var(--line); padding: 22px;
}
.card h3 { font-family: var(--serif); font-size: 28px; font-weight: 500; margin-bottom: 8px; }
.buybar {
  position: sticky; bottom: 0; background: #0b0807f2; border-top: 1px solid var(--line);
  padding: 12px 0; backdrop-filter: blur(12px);
}
.buybar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
form { display: grid; gap: 10px; }
label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
input, select, textarea {
  width: 100%; background: transparent; color: var(--paper); border: 1px solid var(--line);
  padding: 14px 12px; font: 16px var(--sans);
}
.gate {
  position: fixed; inset: 0; background: #070505f5; z-index: 50;
  display: grid; place-items: center; text-align: center; padding: 24px;
}
.gate h2 { font-family: var(--serif); font-size: 44px; margin: 8px 0 18px; }
.hidden { display: none !important; }
@media (max-width: 860px) {
  .hero, .grid-2, .nights { grid-template-columns: 1fr; }
  .hero-img, .hero-img img { min-height: 62dvh; height: 62dvh; }
  .nights { grid-template-columns: 1fr 1fr; }
}
