:root {
  --berry: #9b1248;
  --berry-2: #c2185b;
  --pink: #ff2d7b;
  --coral: #ff6b35;
  --gold: #ffd23f;
  --teal: #00c2b8;
  --ink: #1a1020;
  --cream: #fff4ea;
  --white: #ffffff;
  --muted: #6b4a55;
  --line: #f3c7d4;
  --max: 1140px;
  --header-h: 66px;
  --radius: 18px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(var(--max), calc(100% - 28px)); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--berry);
  color: white;
  box-shadow: 0 4px 18px rgba(155,18,72,.28);
}
.header-inner {
  display: flex; align-items: center; gap: 10px;
  min-height: var(--header-h); padding: 8px 0;
}
.brand { text-decoration: none; flex: 1; min-width: 0; }
.brand-kicker {
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
}
.brand-name { font-size: 16px; font-weight: 800; line-height: 1.1; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; border: 0; cursor: pointer; font-family: inherit;
  font-weight: 800; border-radius: 999px; padding: 12px 18px; line-height: 1;
}
.btn-call { background: var(--gold); color: var(--ink); min-height: 44px; font-size: 14px; }
.btn-pink { background: var(--pink); color: white; }
.btn-dark { background: var(--ink); color: white; }
.btn-ghost { background: transparent; color: white; border: 2px solid rgba(255,255,255,.55); }
.btn-lg { min-height: 52px; width: 100%; font-size: 16px; }

.menu-toggle {
  width: 44px; height: 44px; border-radius: 12px;
  border: 0; background: #7a0e38; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
}
.menu-toggle span { width: 18px; height: 2px; background: white; display: block; }
.nav-desk { display: none; }
.nav-panel { display: none; background: #7a0e38; }
.nav-panel.open { display: block; }
.nav-panel a {
  display: block; color: white; text-decoration: none;
  padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,.08); font-weight: 700;
}

.hero {
  position: relative; color: white; min-height: min(90vh, 740px);
  display: flex; align-items: flex-end; overflow: hidden; background: #4a0624;
}
.hero-bg, .hero-bg picture, .hero-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.hero-bg img { object-fit: cover; object-position: center 22%; }
.hero-shade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(74,6,36,.2) 0%, rgba(74,6,36,.55) 48%, rgba(74,6,36,.92) 100%);
}
.hero-copy { position: relative; z-index: 1; padding: 24px 0 32px; }
.hero h1 {
  font-size: clamp(1.85rem, 8vw, 3rem); line-height: 1.05; margin: 0 0 10px;
  text-shadow: 0 6px 24px rgba(0,0,0,.35);
}
.hero .lede { margin: 0 0 16px; color: #ffe7f0; }
.hero-ctas { display: grid; gap: 10px; }

.ticker {
  background: var(--teal); color: var(--ink); font-weight: 800;
  text-align: center; padding: 10px 12px; font-size: 14px; letter-spacing: .02em;
}

.stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-top: -22px; position: relative; z-index: 2;
}
.stat {
  background: white; border-radius: var(--radius); padding: 14px;
  box-shadow: 0 10px 24px rgba(155,18,72,.12);
}
.stat b { display: block; color: var(--berry); font-size: 1.15rem; }

.section { padding: 32px 0; }
.section h2 { margin: 0 0 8px; font-size: 1.5rem; }
.muted { color: var(--muted); }

.beds { display: grid; gap: 16px; }
.bed {
  background: white; border-radius: 22px; overflow: hidden;
  box-shadow: 0 12px 30px rgba(155,18,72,.1);
}
.bed img { width: 100%; height: 200px; object-fit: cover; }
.bed-body { padding: 16px; }
.bed h3 { margin: 0 0 8px; }

.steps { display: grid; gap: 10px; padding: 0; margin: 16px 0 0; counter-reset: s; }
.steps li {
  list-style: none; background: white; border-radius: 16px;
  padding: 16px 16px 16px 64px; position: relative;
}
.steps li::before {
  counter-increment: s; content: counter(s);
  position: absolute; left: 14px; top: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--coral));
  color: white; display: grid; place-items: center; font-weight: 800;
}

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.chip {
  background: #ffe0ea; color: var(--berry); border-radius: 999px;
  padding: 8px 12px; font-weight: 700; font-size: 14px;
}

.blast {
  background: linear-gradient(135deg, var(--berry), var(--pink) 55%, var(--coral));
  color: white; border-radius: 24px; padding: 28px 20px; text-align: center;
}
.blast p { color: #ffe7f0; }

.faq details {
  background: white; border-radius: 14px; padding: 12px 14px; margin-bottom: 8px;
}
.faq summary { font-weight: 800; cursor: pointer; }

.site-footer {
  background: #4a0624; color: #f7c8d8; padding: 28px 0 96px; font-size: 14px;
}
.site-footer a { color: var(--gold); }
.site-footer h3 { color: white; margin: 0 0 8px; }
.foot-grid { display: grid; gap: 18px; }

.sticky-call {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(74,6,36,.94);
}

@media (min-width: 880px) {
  .menu-toggle { display: none; }
  .nav-panel { display: none !important; }
  .nav-desk { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
  .nav-desk a { color: #ffe7f0; text-decoration: none; font-size: 13px; font-weight: 700; padding: 8px 4px; }
  .header-inner { display: grid; grid-template-columns: 230px 1fr auto; gap: 16px; }
  .hero { min-height: min(76vh, 660px); align-items: center; }
  .hero-shade {
    background: linear-gradient(90deg, rgba(74,6,36,.88) 0%, rgba(74,6,36,.45) 48%, rgba(74,6,36,.12) 100%);
  }
  .hero-bg img { object-position: 72% center; }
  .hero-copy { max-width: 620px; padding: 70px 0; }
  .hero-ctas { grid-template-columns: auto auto; width: max-content; }
  .btn-lg { width: auto; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .beds { grid-template-columns: 1fr; }
  .bed { display: grid; grid-template-columns: 280px 1fr; align-items: stretch; }
  .bed img { height: 100%; min-height: 200px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .sticky-call { display: none; }
  .site-footer { padding-bottom: 36px; }
}
