.staydaze-presentation-wrapper * {
  box-sizing: border-box;
}

.staydaze-presentation-wrapper *::before,
.staydaze-presentation-wrapper *::after {
  box-sizing: border-box;
}

:root {
  --bg: #f4f1ec;
  --white: #ffffff;
  --dark: #1a1a2e;
  --charcoal: #2d2d3a;
  --amber: #c9933a;
  --amber-light: #e8b96b;
  --amber-pale: #fdf3e3;
  --sage: #5c7a6b;
  --text: #2d2d3a;
  --muted: #8a8a9a;
  --border: #e8e3da;
}

.staydaze-presentation-wrapper {
  width: 100%;
  min-height: 100vh;
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* ── Progress bar ── */
.staydaze-presentation-wrapper .progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
  transition: width .4s ease; z-index: 200;
}

/* ── Deck & Slides ── */
.staydaze-presentation-wrapper .deck { width: 100vw; height: 100vh; position: relative; overflow: hidden; }

/* ── Deck & Slides ── */
.staydaze-presentation-wrapper .deck { width: 100vw; height: 100vh; position: relative; overflow: hidden; }

.staydaze-presentation-wrapper .slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 24px 40px;
  opacity: 0; transform: translateX(60px);
  transition: opacity .5s cubic-bezier(.4,0,.2,1), transform .5s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.staydaze-presentation-wrapper .slide.active { opacity: 1; transform: translateX(0); pointer-events: all; }
.staydaze-presentation-wrapper .slide.exit { opacity: 0; transform: translateX(-60px); pointer-events: none; }

/* ── Card ── */
.staydaze-presentation-wrapper .card {
  background: var(--white); border-radius: 20px;
  width: 100%; max-width: 980px;
  padding: 32px 40px;
  box-shadow: 0 4px 40px rgba(0,0,0,.08);
  position: relative; overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.staydaze-presentation-wrapper .card::after {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, var(--amber-pale) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Typography ── */
.staydaze-presentation-wrapper .tag {
  display: inline-block; width: fit-content; font-size: 9px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--amber); border: 1px solid var(--amber);
  border-radius: 20px; padding: 3px 10px; margin-bottom: 10px;
}
.staydaze-presentation-wrapper h2.heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 42px); font-weight: 600;
  line-height: 1.15; color: var(--dark); margin-bottom: 8px;
}
.staydaze-presentation-wrapper .sub { font-size: 14px; color: var(--muted); font-weight: 400; line-height: 1.6; margin-bottom: 12px; }
.staydaze-presentation-wrapper .insight { font-family: 'Playfair Display', serif; font-size: 17px; font-style: italic; color: var(--amber); margin-top: 20px; line-height: 1.5; }

/* ── Layout Grids ── */
.staydaze-presentation-wrapper .split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: stretch; }
.staydaze-presentation-wrapper .split-wide { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: stretch; }
.staydaze-presentation-wrapper .cols2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.staydaze-presentation-wrapper .cols3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.staydaze-presentation-wrapper .cols4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }

/* ── Mini cards ── */
.staydaze-presentation-wrapper .mini-card { background: var(--bg); border-radius: 14px; padding: 14px; border: 1px solid var(--border); }
.staydaze-presentation-wrapper .mini-card.dark { background: var(--dark); color: #fff; border-color: transparent; }
.staydaze-presentation-wrapper .mini-card.amber-bg { background: var(--amber); color: #fff; border-color: transparent; }
.staydaze-presentation-wrapper .mini-card .stat {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 48px); font-weight: 700;
  color: var(--dark); line-height: 1;
}
.staydaze-presentation-wrapper .mini-card.dark .stat, .staydaze-presentation-wrapper .mini-card.amber-bg .stat { color: #fff; }
.staydaze-presentation-wrapper .mini-card .stat-label { font-size: 11px; color: var(--muted); font-weight: 500; margin-top: 6px; text-transform: uppercase; letter-spacing: .06em; }
.staydaze-presentation-wrapper .mini-card.dark .stat-label { color: rgba(255,255,255,.55); }
.staydaze-presentation-wrapper .mini-card.amber-bg .stat-label { color: rgba(255,255,255,.75); }

/* ── Bullet list ── */
.staydaze-presentation-wrapper .bullet-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin: 0; padding: 0; }
.staydaze-presentation-wrapper .bullet-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.5; margin: 0; padding: 0; }
.staydaze-presentation-wrapper .bullet-list li::before { content: ''; flex-shrink: 0; margin-top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }

/* ── Icon circle ── */
.staydaze-presentation-wrapper .icon-circle {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--amber-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0; margin-bottom: 12px;
}

/* ── Image strip / photo card ── */
.staydaze-presentation-wrapper .photo-card {
  border-radius: 14px; overflow: hidden;
  position: relative; background: #ddd;
}
.staydaze-presentation-wrapper .photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.staydaze-presentation-wrapper .photo-card .photo-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  color: #fff; font-size: 12px; font-weight: 500;
  padding: 20px 12px 10px; letter-spacing: .04em;
}

/* ── Comparison table ── */
.staydaze-presentation-wrapper .comp-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.staydaze-presentation-wrapper .comp-table th { padding: 10px 14px; font-size: 12px; font-weight: 600; text-align: left; border-bottom: 2px solid var(--border); color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.staydaze-presentation-wrapper .comp-table th:last-child { color: var(--amber); }
.staydaze-presentation-wrapper .comp-table td { padding: 12px 14px; font-size: 13px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.staydaze-presentation-wrapper .comp-table tr:last-child td { border-bottom: none; }
.staydaze-presentation-wrapper .comp-table td:first-child { color: var(--muted); }
.staydaze-presentation-wrapper .comp-table td:last-child { color: var(--dark); font-weight: 500; }
.staydaze-presentation-wrapper .check { color: var(--sage); } 
.staydaze-presentation-wrapper .cross { color: #d0655a; }

/* ── Steps ── */
.staydaze-presentation-wrapper .steps { display: flex; flex-direction: column; gap: 14px; }
.staydaze-presentation-wrapper .step { display: flex; align-items: center; gap: 18px; background: var(--bg); border-radius: 12px; padding: 16px 20px; border: 1px solid var(--border); }
.staydaze-presentation-wrapper .step-num { width: 38px; height: 38px; border-radius: 50%; background: var(--dark); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; flex-shrink: 0; }

/* ── Cover ── */
.staydaze-presentation-wrapper .cover-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.staydaze-presentation-wrapper .cover-inner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 74px); font-weight: 700; line-height: 1.05;
  background: linear-gradient(135deg, var(--dark) 40%, var(--amber) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.staydaze-presentation-wrapper .cover-pills { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 4px; }
.staydaze-presentation-wrapper .cover-pill { background: var(--dark); color: #fff; border-radius: 999px; padding: 7px 18px; font-size: 12px; font-weight: 500; }
.staydaze-presentation-wrapper .cover-pill.amber { background: var(--amber); }
.staydaze-presentation-wrapper .cover-pill.sage { background: var(--sage); }
.staydaze-presentation-wrapper .cover-card-mobile { min-height: 520px !important; }

/* ── CTA ── */
.staydaze-presentation-wrapper .cta-card { background: linear-gradient(135deg, var(--dark) 0%, #2a2240 100%); text-align: center; }
.staydaze-presentation-wrapper .cta-card h2 { color: #fff; }
.staydaze-presentation-wrapper .cta-card .sub { color: rgba(255,255,255,.5); }
.staydaze-presentation-wrapper .cta-card::after { background: radial-gradient(circle, rgba(201,147,58,.15) 0%, transparent 70%); }
.staydaze-presentation-wrapper .cta-btn { display: inline-block; margin-top: 28px; background: var(--amber); color: #fff; border-radius: 999px; padding: 13px 36px; font-size: 14px; font-weight: 600; }

/* ── Use case grid ── */
.staydaze-presentation-wrapper .use-case-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.staydaze-presentation-wrapper .use-case-item { background: var(--bg); border-radius: 14px; padding: 20px; border: 1px solid var(--border); display: flex; flex-direction: column; gap: 6px; }
.staydaze-presentation-wrapper .use-case-item .emoji { font-size: 24px; }
.staydaze-presentation-wrapper .use-case-item .label { font-size: 13px; font-weight: 600; color: var(--dark); }

/* ── Contact ── */
.staydaze-presentation-wrapper .contact-row { display: flex; align-items: center; gap: 14px; background: var(--bg); border-radius: 12px; padding: 16px 20px; border: 1px solid var(--border); margin-bottom: 10px; }
.staydaze-presentation-wrapper .contact-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--amber-pale); color: var(--amber); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.staydaze-presentation-wrapper .contact-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.staydaze-presentation-wrapper .contact-val { font-size: 14px; font-weight: 600; color: var(--dark); }

/* ── Nav ── */
.staydaze-presentation-wrapper .nav {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 14px;
  background: var(--dark); border-radius: 999px; padding: 9px 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2); z-index: 100;
}
.staydaze-presentation-wrapper .nav button { background: none; border: none; cursor: pointer; color: rgba(255,255,255,.5); font-size: 18px; transition: color .2s; }
.staydaze-presentation-wrapper .nav button:hover { color: var(--amber-light); }
.staydaze-presentation-wrapper .nav .counter { font-size: 12px; color: rgba(255,255,255,.6); font-weight: 500; min-width: 54px; text-align: center; }
.staydaze-presentation-wrapper .nav .current { color: var(--amber-light); font-weight: 600; }
.staydaze-presentation-wrapper .slide-badge { position: absolute; top: 22px; right: 28px; font-size: 10px; color: var(--muted); font-weight: 500; letter-spacing: .08em; }
.staydaze-presentation-wrapper .kbd-hint { position: fixed; top: 16px; right: 22px; font-size: 11px; color: var(--muted); background: var(--white); border-radius: 8px; padding: 5px 10px; box-shadow: 0 2px 8px rgba(0,0,0,.06); z-index: 100; }
.staydaze-presentation-wrapper .vision-quote { font-family: 'Playfair Display', serif; font-size: clamp(20px,2.5vw,32px); font-weight: 600; line-height: 1.45; color: var(--dark); text-align: center; max-width: 660px; margin: 0 auto; }
.staydaze-presentation-wrapper .vision-quote span { color: var(--amber); }

/* ══════════════════════════════════
   RESPONSIVE — MOBILE (portrait 9:16)
   ══════════════════════════════════ */
@media (max-width: 768px) {
  .staydaze-presentation-wrapper .slide { padding: 16px; }

  .staydaze-presentation-wrapper .card { padding: 24px 20px; border-radius: 16px; overflow-y: auto; max-height: calc(100vh - 100px); }

  /* kill all multi-column grids → single column */
  .staydaze-presentation-wrapper .split, .staydaze-presentation-wrapper .split-wide, .staydaze-presentation-wrapper .cols2, .staydaze-presentation-wrapper .cols3, .staydaze-presentation-wrapper .cols4, .staydaze-presentation-wrapper .use-case-grid {
    grid-template-columns: 1fr !important; gap: 12px !important;
  }

  .staydaze-presentation-wrapper h2.heading { font-size: clamp(20px, 5vw, 28px) !important; }
  .staydaze-presentation-wrapper .cover-inner h1 { font-size: clamp(34px, 10vw, 52px) !important; }
  .staydaze-presentation-wrapper .mini-card .stat { font-size: clamp(26px, 7vw, 38px) !important; }

  /* hide secondary stat cards on mobile to reduce scroll */
  .staydaze-presentation-wrapper .mobile-hide { display: none !important; }

  /* make photo grids 2-col on mobile */
  .staydaze-presentation-wrapper .photo-grid-4 { grid-template-columns: 1fr 1fr !important; }

  /* compact cover pills */
  .staydaze-presentation-wrapper .cover-pills { flex-wrap: wrap; gap: 8px; }
  .staydaze-presentation-wrapper .cover-pill { font-size: 11px; padding: 6px 14px; }

  /* inline comp table font */
  .staydaze-presentation-wrapper .comp-table th, .staydaze-presentation-wrapper .comp-table td { font-size: 11px; padding: 8px 10px; }

  /* steps compact */
  .staydaze-presentation-wrapper .step { padding: 12px 14px; gap: 12px; }
  .staydaze-presentation-wrapper .step-num { width: 32px; height: 32px; font-size: 14px; }

  /* nav stays */
  .staydaze-presentation-wrapper .nav { bottom: 20px; padding: 8px 14px; }
  .staydaze-presentation-wrapper .kbd-hint { display: none; }

  /* tall cards */
  .staydaze-presentation-wrapper .cover-card-mobile { min-height: auto !important; padding: 32px 20px !important; }
  .staydaze-presentation-wrapper .vision-card-mobile { min-height: auto !important; padding: 40px 20px !important; }
  .staydaze-presentation-wrapper .cta-card { padding: 40px 20px !important; }
  .staydaze-presentation-wrapper .insight { font-size: 15px; }
  .staydaze-presentation-wrapper .sub { font-size: 13px; }
}
