/* ============================================================
   BOOKING PAGE — custom Cal.com replacement
   ============================================================ */

.book-page{background:var(--bg-alt);min-height:100vh;font-family:'Space Grotesk',sans-serif;color:var(--text)}

/* ============================================================
   SETUP RIBBON + MODAL (Google Calendar wiring helper)
   ============================================================ */
.setup-ribbon{
  position:fixed;top:14px;left:50%;transform:translateX(-50%);
  z-index:80;display:inline-flex;align-items:center;gap:10px;
  padding:8px 16px;border-radius:var(--radius-pill);
  background:linear-gradient(135deg,#0f1823,#1a2435);color:#fff;
  border:1px solid rgba(253,191,59,.35);
  font-family:'Outfit';font-size:.74rem;font-weight:700;
  letter-spacing:.2px;cursor:pointer;
  box-shadow:0 8px 24px rgba(15,24,35,.30);
  animation:srFloat 4s ease-in-out infinite;
}
@keyframes srFloat{0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(-3px)}}
.setup-ribbon[hidden]{display:none}
.setup-ribbon:hover{background:#fdbf3b;color:#0f1823;border-color:#f59e0b}
.sr-dot{width:8px;height:8px;border-radius:50%;background:#fdbf3b;animation:srBlink 1.5s ease-in-out infinite}
@keyframes srBlink{0%,100%{opacity:1}50%{opacity:.4}}
.setup-ribbon strong{font-weight:800;letter-spacing:.4px}
.sr-arrow{font-size:.95rem;line-height:1}

.setup-modal{
  position:fixed;inset:0;z-index:200;
  display:flex;align-items:center;justify-content:center;
  padding:1.5rem;
}
.setup-modal[hidden]{display:none}
.sm-backdrop{position:absolute;inset:0;background:rgba(15,24,35,.55);backdrop-filter:blur(6px);cursor:pointer;animation:smFadeIn .25s ease-out}
@keyframes smFadeIn{from{opacity:0}to{opacity:1}}
.sm-card{
  position:relative;
  background:var(--white);border-radius:22px;
  padding:2rem 2.2rem;max-width:560px;width:100%;
  max-height:88vh;overflow-y:auto;
  box-shadow:0 40px 100px rgba(15,24,35,.30);
  border:1px solid rgba(0,0,0,.05);
  animation:smPop .35s cubic-bezier(.16,1.3,.4,1);
}
@keyframes smPop{from{opacity:0;transform:translateY(20px) scale(.95)}to{opacity:1;transform:none}}
.sm-close{
  position:absolute;top:14px;right:14px;
  width:32px;height:32px;border-radius:50%;border:none;
  background:var(--bg);color:var(--text);cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:all .3s;
}
.sm-close:hover{background:var(--text);color:#fff;transform:rotate(90deg)}
.sm-eyebrow{
  font-family:'Outfit';font-size:.62rem;font-weight:800;
  letter-spacing:2px;text-transform:uppercase;
  color:var(--accent);display:inline-block;margin-bottom:.7rem;
  background:var(--accent-glow);padding:5px 11px;border-radius:6px;
}
.sm-card h2{font-family:'Outfit';font-size:1.6rem;font-weight:800;letter-spacing:-1px;color:var(--text);margin-bottom:.7rem;line-height:1.2}
.sm-card > p{color:var(--text-light);font-size:.92rem;line-height:1.65;margin-bottom:1.6rem}
.sm-steps{list-style:none;display:flex;flex-direction:column;gap:1rem;counter-reset:smstep;margin-bottom:1.4rem;padding-left:0}
.sm-steps li{position:relative;padding:14px 16px 14px 50px;background:var(--bg);border-radius:12px;font-size:.88rem;color:var(--text-light);line-height:1.6;counter-increment:smstep}
.sm-steps li::before{
  content:counter(smstep);
  position:absolute;top:14px;left:14px;
  width:26px;height:26px;border-radius:50%;
  background:var(--text);color:#fff;
  font-family:'Outfit';font-weight:800;font-size:.78rem;
  display:flex;align-items:center;justify-content:center;
}
.sm-steps strong{font-family:'Outfit';font-weight:700;color:var(--text);letter-spacing:-.2px}
.sm-steps a{color:var(--accent);text-decoration:none;font-weight:700}
.sm-steps a:hover{text-decoration:underline}
.sm-steps code{background:rgba(15,24,35,.06);padding:1px 6px;border-radius:4px;font-size:.82rem;color:var(--text)}
.sm-steps em{font-style:italic;color:var(--text)}
.sm-steps ul{list-style:none;padding:6px 0 0 4px;font-size:.82rem;display:flex;flex-direction:column;gap:2px}
.sm-steps ul li{padding:2px 0;background:none;border-radius:0}
.sm-steps ul li::before{display:none}

.sm-input{display:flex;flex-direction:column;gap:6px;margin-bottom:1rem}
.sm-input span{font-family:'Outfit';font-size:.78rem;font-weight:700;color:var(--text);letter-spacing:-.1px}
.sm-input input{padding:13px 16px;border:1.5px solid rgba(0,0,0,.1);border-radius:12px;font-family:'Space Grotesk';font-size:.85rem;outline:none;color:var(--text);transition:all .3s;background:var(--white)}
.sm-input input:focus{border-color:var(--accent);box-shadow:0 0 0 4px var(--accent-glow)}
.sm-input input.is-error{border-color:#dc2626;background:rgba(220,38,38,.04)}

.sm-actions{display:flex;gap:10px;justify-content:flex-end;flex-wrap:wrap;margin-bottom:1.4rem}
.sm-foot{font-size:.72rem;color:var(--text-muted);line-height:1.5;font-style:italic;border-top:1px dashed rgba(0,0,0,.08);padding-top:1rem}
.sm-foot strong{color:var(--text);font-weight:700;font-style:normal}
.sm-foot code{background:rgba(15,24,35,.05);padding:1px 5px;border-radius:3px;font-size:.7rem}

/* Logo fade-out as the user scrolls into the booking flow */
.book-page .navbar{transition:opacity .5s cubic-bezier(.16,1,.3,1), transform .5s cubic-bezier(.16,1,.3,1), padding .35s;}
.book-page .navbar .logo{transition:opacity .45s cubic-bezier(.16,1,.3,1), transform .45s cubic-bezier(.16,1,.3,1)}
.book-page .navbar.faded{opacity:0;transform:translateY(-12px);pointer-events:none}
.book-page .navbar.faded .logo{opacity:0;transform:scale(.92)}

.book-shell{padding:7rem 0 4rem;min-height:calc(100vh - 60px)}
.book-grid{display:grid;grid-template-columns:380px 1fr;gap:0;background:var(--white);border-radius:24px;overflow:hidden;box-shadow:0 30px 80px rgba(15,24,35,.10),0 4px 20px rgba(0,0,0,.04);border:1px solid rgba(0,0,0,.05);min-height:640px}

/* =================================================
   LEFT PANE — host & meeting info
   ================================================= */
.book-info{padding:2.5rem 2rem;background:linear-gradient(180deg,#0f1823 0%,#1a2435 100%);color:#fff;position:relative;overflow:hidden;display:flex;flex-direction:column;gap:1.4rem}
.book-info::before{content:'';position:absolute;top:-100px;right:-100px;width:300px;height:300px;border-radius:50%;background:radial-gradient(circle,rgba(253,191,59,.10),transparent 65%);pointer-events:none}
.book-info::after{content:'';position:absolute;bottom:-150px;left:-100px;width:280px;height:280px;border-radius:50%;background:radial-gradient(circle,rgba(139,174,224,.08),transparent 70%);pointer-events:none}
.book-info > *{position:relative;z-index:1}

.book-back{color:rgba(255,255,255,.55);text-decoration:none;font-size:.78rem;font-weight:600;transition:all .3s;letter-spacing:.2px;display:inline-flex;align-items:center;width:fit-content}
.book-back:hover{color:#fff;transform:translateX(-3px)}

/* Host */
.bi-host{display:flex;align-items:center;gap:14px;padding-bottom:1.4rem;border-bottom:1px solid rgba(255,255,255,.08)}
.bih-avatar{width:54px;height:54px;border-radius:50%;background:linear-gradient(135deg,var(--accent),var(--accent-light));display:flex;align-items:center;justify-content:center;flex-shrink:0;position:relative;overflow:hidden;box-shadow:0 4px 14px rgba(0,0,0,.25)}
.bih-avatar img{width:100%;height:100%;object-fit:cover}
.bih-fallback{position:absolute;font-family:'Outfit';font-weight:900;font-size:1.2rem;color:#0f1823;display:none}
.bih-avatar.no-img .bih-fallback{display:block}
.bih-meta{display:flex;flex-direction:column;line-height:1.3;min-width:0}
.bih-eyebrow{font-size:.62rem;color:rgba(255,255,255,.45);text-transform:uppercase;letter-spacing:2px;font-weight:700;display:block;margin-bottom:2px}
.bih-meta strong{font-family:'Outfit';font-weight:800;font-size:1rem;color:#fff;letter-spacing:-.3px}
.bih-cred{font-size:.74rem;color:rgba(255,255,255,.55);font-weight:500;margin-top:1px}

/* Title */
.bi-title{font-family:'Outfit';font-size:2rem;font-weight:900;letter-spacing:-1.5px;line-height:1;margin-bottom:.6rem}
.bi-tagline{font-size:.88rem;color:rgba(255,255,255,.65);line-height:1.6}

/* Features */
.bi-features{list-style:none;display:flex;flex-direction:column;gap:10px;padding:.8rem 0;border-top:1px solid rgba(255,255,255,.08);border-bottom:1px solid rgba(255,255,255,.08)}
.bi-features li{display:flex;align-items:center;gap:10px;font-size:.82rem;color:rgba(255,255,255,.75);line-height:1.4}
.bi-features li svg{color:var(--accent-light);flex-shrink:0}
.bi-features li strong{font-weight:700;color:#fff}
.bi-features li span{color:rgba(255,255,255,.5);font-size:.78rem}

/* Live summary */
.bi-summary{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:14px;padding:1rem 1.1rem}
.bi-summary h6{font-family:'Outfit';font-size:.62rem;text-transform:uppercase;letter-spacing:2px;color:rgba(255,255,255,.5);font-weight:700;margin-bottom:.7rem}
.bis-row{display:flex;justify-content:space-between;align-items:center;padding:6px 0;font-size:.82rem;color:rgba(255,255,255,.7);gap:1rem}
.bis-row strong{color:#fff;font-family:'Outfit';font-weight:700;letter-spacing:-.2px;text-align:right;font-size:.85rem}

.bi-trust{margin-top:auto;padding-top:1rem;font-size:.78rem;color:rgba(255,255,255,.55)}
.bi-trust a{color:var(--accent-light);text-decoration:none;font-weight:700}

/* =================================================
   RIGHT PANE — steps
   ================================================= */
.book-steps{padding:2.5rem 2.5rem 2rem;display:flex;flex-direction:column;min-width:0}

/* Progress bar */
.bs-progress{display:flex;align-items:center;gap:0;margin-bottom:2.2rem;width:100%}
.bsp-item{display:flex;align-items:center;gap:8px;font-family:'Outfit';font-size:.78rem;font-weight:700;color:var(--text-muted);transition:color .3s;flex-shrink:0;letter-spacing:-.1px}
.bsp-item span{width:24px;height:24px;border-radius:50%;background:var(--bg);border:1.5px solid rgba(0,0,0,.08);display:flex;align-items:center;justify-content:center;font-size:.72rem;font-weight:800;color:var(--text-muted);transition:all .35s cubic-bezier(.16,1,.3,1)}
.bsp-item.active{color:var(--text)}
.bsp-item.active span{background:var(--text);border-color:var(--text);color:#fff;box-shadow:0 6px 14px rgba(15,24,35,.18)}
.bsp-item.done span{background:#22c55e;border-color:#22c55e;color:#fff}
.bsp-item.done span::before{content:'✓';font-size:.78rem}
.bsp-item.done span{font-size:0}
.bsp-line{flex:1;height:1.5px;background:rgba(0,0,0,.08);margin:0 12px;border-radius:1px;transition:background .3s}
.bsp-line.done{background:#22c55e}

/* Step container */
.bs-step{display:none;flex-direction:column;flex:1}
.bs-step.is-active{display:flex;animation:bsIn .5s cubic-bezier(.16,1,.3,1)}
@keyframes bsIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}

.bs-head{margin-bottom:1.6rem}
.bs-head h2{font-family:'Outfit';font-size:1.6rem;font-weight:800;letter-spacing:-1px;margin-bottom:.4rem;color:var(--text)}
.bs-head p{font-size:.92rem;color:var(--text-light);line-height:1.6}
.bs-head p strong{color:var(--text);font-weight:600}

/* Nav buttons */
.bs-nav{margin-top:auto;padding-top:1.4rem;display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap}
.bs-btn{padding:13px 26px;border-radius:var(--radius-pill);font-family:'Space Grotesk';font-size:.85rem;font-weight:700;border:none;cursor:pointer;text-decoration:none;display:inline-flex;align-items:center;gap:8px;transition:all .3s cubic-bezier(.16,1,.3,1);letter-spacing:-.2px}
.bs-btn.primary{background:var(--text);color:#fff;box-shadow:0 8px 22px rgba(15,24,35,.18)}
.bs-btn.primary:hover{transform:translateY(-2px);box-shadow:0 14px 30px rgba(15,24,35,.25)}
.bs-btn.primary:disabled{opacity:.5;cursor:not-allowed;transform:none;box-shadow:none}
.bs-btn.ghost{background:transparent;color:var(--text-light);border:1.5px solid rgba(0,0,0,.1)}
.bs-btn.ghost:hover{color:var(--text);border-color:var(--text)}

/* =================================================
   STEP 1 — LOCATION CARDS
   ================================================= */
.loc-options{display:flex;flex-direction:column;gap:12px}
.loc-card{display:flex;align-items:center;gap:18px;padding:1.2rem 1.4rem;background:var(--white);border:1.5px solid rgba(0,0,0,.06);border-radius:16px;cursor:pointer;text-align:left;width:100%;transition:all .35s cubic-bezier(.16,1,.3,1);font-family:'Space Grotesk',sans-serif;color:var(--text);position:relative;overflow:hidden}
.loc-card::before{content:'';position:absolute;left:0;top:0;height:100%;width:4px;background:var(--accent);transform:scaleY(0);transform-origin:top;transition:transform .35s cubic-bezier(.16,1,.3,1)}
.loc-card:hover{border-color:rgba(139,174,224,.4);transform:translateY(-2px);box-shadow:0 14px 32px rgba(15,24,35,.06)}
.loc-card:hover::before{transform:scaleY(1)}
.loc-card.selected{border-color:var(--accent);background:linear-gradient(135deg,rgba(139,174,224,.06),transparent);box-shadow:0 14px 32px rgba(139,174,224,.15)}
.loc-card.selected::before{transform:scaleY(1)}
.loc-icon{font-size:1.8rem;width:48px;height:48px;border-radius:12px;background:var(--bg);display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:all .3s}
.loc-card:hover .loc-icon,.loc-card.selected .loc-icon{background:var(--accent-glow);transform:scale(1.08)}
.loc-body{flex:1;display:flex;flex-direction:column;line-height:1.4;min-width:0}
.loc-body strong{font-family:'Outfit';font-weight:800;font-size:1rem;color:var(--text);letter-spacing:-.4px;margin-bottom:2px}
.loc-body span{font-size:.82rem;color:var(--text-light);font-weight:500}
.loc-body small{font-size:.7rem;color:var(--text-muted);margin-top:4px;font-style:italic}
.loc-pick{font-family:'Outfit';font-size:.75rem;font-weight:700;color:var(--accent);letter-spacing:-.2px;white-space:nowrap;opacity:.8;transition:all .3s}
.loc-card:hover .loc-pick{opacity:1;transform:translateX(4px)}
.loc-card.selected .loc-pick{color:#16a34a}
.loc-card.selected .loc-pick::before{content:'✓ ';font-weight:900}

/* =================================================
   STEP 2 — CALENDAR
   ================================================= */
.cal-wrap{max-width:480px;margin:0 auto;width:100%}
.cal-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.2rem;gap:1rem}
.cal-head strong{font-family:'Outfit';font-size:1.15rem;font-weight:800;letter-spacing:-.4px;color:var(--text);text-align:center;flex:1}
.cal-nav{width:36px;height:36px;border-radius:50%;border:1.5px solid rgba(0,0,0,.08);background:var(--white);color:var(--text);font-size:1.2rem;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .3s;line-height:0;padding-bottom:3px}
.cal-nav:hover{background:var(--text);color:#fff;border-color:var(--text);transform:scale(1.08)}
.cal-nav:disabled{opacity:.35;cursor:not-allowed;transform:none;background:var(--white);color:var(--text)}

.cal-dow{display:grid;grid-template-columns:repeat(7,1fr);gap:6px;margin-bottom:8px;text-align:center}
.cal-dow span{font-size:.65rem;font-weight:700;color:var(--text-muted);text-transform:uppercase;letter-spacing:1.5px;padding:6px 0}

.cal-grid{display:grid;grid-template-columns:repeat(7,1fr);gap:6px}
.cal-day{aspect-ratio:1;border:none;background:var(--bg);border-radius:10px;font-family:'Outfit';font-weight:700;font-size:.92rem;color:var(--text);cursor:pointer;transition:all .25s cubic-bezier(.16,1,.3,1);position:relative;letter-spacing:-.2px}
.cal-day:hover:not(.is-off):not(.is-empty):not(.is-past){background:var(--accent-glow);color:var(--accent);transform:scale(1.06)}
.cal-day.is-today::after{content:'';position:absolute;bottom:6px;left:50%;transform:translateX(-50%);width:4px;height:4px;border-radius:50%;background:var(--accent)}
.cal-day.is-empty{visibility:hidden}
.cal-day.is-past,.cal-day.is-off{background:transparent;color:rgba(0,0,0,.18);cursor:not-allowed}
.cal-day.is-off{text-decoration:line-through;text-decoration-color:rgba(0,0,0,.15)}
.cal-day.is-full{background:rgba(220,38,38,.04);color:rgba(220,38,38,.4);cursor:not-allowed;text-decoration:line-through;text-decoration-thickness:1.5px}
.cal-day.is-picked{background:var(--text)!important;color:#fff!important;box-shadow:0 6px 16px rgba(15,24,35,.25);transform:scale(1.04)}

.cal-legend{display:flex;justify-content:center;gap:1.2rem;margin-top:1.4rem;font-size:.7rem;color:var(--text-muted);flex-wrap:wrap}

/* Sunday / special-request escape hatch — sits below the legend */
.cal-special{
  display:flex;align-items:center;gap:14px;
  margin-top:1.4rem;padding:14px 16px 14px 14px;
  background:linear-gradient(135deg,rgba(37,211,102,.06),rgba(37,211,102,.02));
  border:1.5px solid rgba(37,211,102,.20);
  border-radius:14px;
  text-decoration:none;color:var(--text);
  transition:all .35s cubic-bezier(.16,1,.3,1);
  position:relative;overflow:hidden;
}
.cal-special::before{
  content:'';position:absolute;top:0;bottom:0;left:-60%;width:50%;
  background:linear-gradient(110deg,transparent,rgba(37,211,102,.18),transparent);
  transform:skewX(-15deg);
  animation:csShimmer 6s ease-in-out infinite;
  pointer-events:none;
}
@keyframes csShimmer{
  0%{left:-60%}
  60%,100%{left:120%}
}
.cal-special:hover{
  border-color:rgba(37,211,102,.55);
  background:linear-gradient(135deg,rgba(37,211,102,.10),rgba(37,211,102,.04));
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(37,211,102,.15);
}
.cs-wa{
  width:36px;height:36px;border-radius:50%;
  background:#25d366;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
  box-shadow:0 4px 12px rgba(37,211,102,.35);
  animation:csPulse 2.4s ease-in-out infinite;
}
@keyframes csPulse{
  0%,100%{box-shadow:0 4px 12px rgba(37,211,102,.35), 0 0 0 0 rgba(37,211,102,.45)}
  50%{box-shadow:0 4px 12px rgba(37,211,102,.35), 0 0 0 8px rgba(37,211,102,0)}
}
.cs-text{flex:1;display:flex;flex-direction:column;line-height:1.35;min-width:0}
.cs-text strong{font-family:'Outfit';font-size:.88rem;font-weight:800;color:var(--text);letter-spacing:-.3px}
.cs-text span{font-size:.75rem;color:var(--text-light);font-weight:500;margin-top:1px}
.cs-arrow{
  font-family:'Outfit';font-weight:800;font-size:1rem;color:#16a34a;
  flex-shrink:0;transition:transform .3s;
}
.cal-special:hover .cs-arrow{transform:translateX(4px)}

@media(max-width:640px){
  .cal-special{padding:12px 14px;gap:10px}
  .cs-text strong{font-size:.82rem}
  .cs-text span{font-size:.7rem}
}
.cal-legend span{display:inline-flex;align-items:center;gap:6px}
.cl-dot{width:10px;height:10px;border-radius:3px;display:inline-block}
.cl-dot.avail{background:var(--bg);border:1.5px solid rgba(0,0,0,.1)}
.cl-dot.picked{background:var(--text)}
.cl-dot.full{background:rgba(220,38,38,.2)}
.cl-dot.off{background:transparent;border:1.5px solid rgba(0,0,0,.08)}

/* =================================================
   STEP 3 — TIME SLOTS
   ================================================= */
.time-slots{display:grid;grid-template-columns:repeat(auto-fill,minmax(120px,1fr));gap:10px;max-width:540px;margin:0 auto;width:100%;min-height:200px}
.time-slot{padding:14px 16px;border:1.5px solid rgba(0,0,0,.08);background:var(--white);border-radius:12px;font-family:'Outfit';font-weight:700;font-size:.92rem;color:var(--text);cursor:pointer;transition:all .25s cubic-bezier(.16,1,.3,1);text-align:center;letter-spacing:-.2px}
.time-slot:hover{border-color:var(--accent);background:var(--accent-glow);color:var(--accent);transform:translateY(-2px);box-shadow:0 8px 18px rgba(139,174,224,.18)}
.time-slot.is-picked{background:var(--text);color:#fff;border-color:var(--text);box-shadow:0 8px 18px rgba(15,24,35,.25)}
.time-slot.is-taken{background:var(--bg);color:rgba(0,0,0,.25);cursor:not-allowed;text-decoration:line-through;border-color:transparent}
.time-slot.is-taken:hover{transform:none;box-shadow:none;background:var(--bg);color:rgba(0,0,0,.25)}

.time-empty{grid-column:1/-1;text-align:center;padding:3rem 1rem;color:var(--text-muted);font-size:.9rem}

/* =================================================
   STEP 4 — FORM
   ================================================= */
.book-form{display:flex;flex-direction:column;gap:14px;max-width:540px;width:100%;margin:0 auto}
.bf-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.book-form label{display:flex;flex-direction:column;gap:5px}
.book-form label span{font-family:'Outfit';font-size:.75rem;font-weight:700;color:var(--text);letter-spacing:-.1px}
.book-form label span em{font-style:normal;color:var(--text-muted);font-weight:500;font-size:.72rem}
.book-form input,.book-form select,.book-form textarea{padding:12px 16px;border:1.5px solid rgba(0,0,0,.08);border-radius:12px;font-family:'Space Grotesk';font-size:.88rem;background:var(--white);color:var(--text);transition:all .3s;outline:none;width:100%}
.book-form input:focus,.book-form select:focus,.book-form textarea:focus{border-color:var(--accent);box-shadow:0 0 0 4px var(--accent-glow)}
.book-form textarea{resize:vertical;font-family:'Space Grotesk'}

.bf-confirm{background:var(--bg);border-radius:12px;padding:1rem 1.2rem;border:1px dashed rgba(0,0,0,.1);margin-top:6px}
.bfc-row{display:flex;align-items:center;gap:10px;padding:5px 0;font-size:.85rem;color:var(--text-light)}
.bfc-row strong{color:var(--text);font-family:'Outfit';font-weight:700;letter-spacing:-.2px}

.bf-disclaimer{font-size:.7rem;color:var(--text-muted);font-style:italic;text-align:center;line-height:1.5;margin-top:4px}

/* =================================================
   STEP 5 — CONFIRMATION
   ================================================= */
.bs-confirm{align-items:center;text-align:center;justify-content:center;padding:2rem 0}
.bsc-check{margin-bottom:1.4rem;animation:checkPop .8s cubic-bezier(.16,1.5,.3,1)}
@keyframes checkPop{from{transform:scale(0) rotate(-30deg);opacity:0}to{transform:scale(1) rotate(0);opacity:1}}
.bs-confirm h2{font-family:'Outfit';font-size:2rem;font-weight:900;letter-spacing:-1.5px;margin-bottom:.7rem}
.bs-confirm > p{color:var(--text-light);max-width:420px;line-height:1.6;font-size:.95rem;margin-bottom:1.8rem}

.bsc-summary{background:var(--bg);border-radius:14px;padding:1.2rem 1.6rem;display:flex;flex-direction:column;gap:8px;margin-bottom:1.8rem;border:1px dashed rgba(0,0,0,.08);min-width:280px}
.bsc-row{display:flex;align-items:center;gap:12px;font-size:.92rem;color:var(--text-light)}
.bsc-row strong{color:var(--text);font-family:'Outfit';font-weight:800;letter-spacing:-.3px}

.bsc-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:center}
.bsc-note{margin-top:1.6rem;font-size:.78rem;color:var(--text-muted);max-width:380px;line-height:1.5;font-style:italic}

/* Compact footer */
.book-footer{padding:1.5rem 0;background:transparent}
.book-footer .footer-bottom{padding-top:0;border-top:none}
.book-footer p{color:var(--text-muted);font-size:.7rem}

/* =================================================
   RESPONSIVE
   ================================================= */
/* =================================================
   MOBILE — tablet (≤1024)
   ================================================= */
@media(max-width:1024px){
  .book-grid{grid-template-columns:1fr;min-height:0}
  .book-info{padding:1.6rem 1.6rem}
  .book-info::before,.book-info::after{display:none}
  .book-steps{padding:1.8rem 1.6rem}
  .bi-host{padding-bottom:1rem}
  .bi-features{display:none}
  .bi-summary{display:none}
}

/* =================================================
   MOBILE — phone (≤768)
   The brief: visitor must see the 3 location cards
   without scrolling. So the dark info pane collapses
   into a thin horizontal strip and everything else
   is hidden.
   ================================================= */
@media(max-width:768px){
  .book-shell{padding:5.5rem 0 1.5rem}
  .book-grid{border-radius:18px}

  /* Collapse info pane to a single compact strip */
  .book-info{
    padding:14px 16px;
    flex-direction:row;align-items:center;gap:0;
    background:linear-gradient(135deg,#0f1823 0%,#1a2435 100%);
    border-bottom:1px solid rgba(255,255,255,.08);
  }
  .book-back,.bi-title,.bi-tagline,.bi-features,.bi-summary,.bi-trust{display:none!important}

  /* Just the host strip, horizontal */
  .bi-host{
    width:100%;padding:0;border-bottom:none;
    display:flex;align-items:center;gap:12px;
  }
  .bih-avatar{width:42px;height:42px;box-shadow:0 4px 10px rgba(0,0,0,.25);border:2px solid rgba(253,191,59,.35)}
  .bih-meta{flex:1;min-width:0}
  .bih-eyebrow{font-size:.55rem;letter-spacing:1.8px;margin-bottom:1px}
  .bih-meta strong{font-size:.92rem}
  .bih-cred{font-size:.7rem;color:rgba(255,255,255,.5)}

  /* Steps content — bigger padding on left/right, more room */
  .book-steps{padding:1.6rem 1.2rem 1.5rem}
  .bs-head{margin-bottom:1.3rem}
  .bs-head h2{font-size:1.35rem;letter-spacing:-.6px}
  .bs-head p{font-size:.85rem}

  /* Progress bar: compact, no scroll */
  .bs-progress{margin-bottom:1.4rem;gap:4px;padding:0}
  .bsp-item span{width:22px;height:22px;font-size:.66rem}
  .bsp-item{font-size:0;gap:0}        /* hide the labels on phone, keep only numbers */
  .bsp-item.active{font-size:.7rem;gap:6px}  /* show only the active step's label */
  .bsp-line{flex:1;min-width:8px;margin:0 4px}

  /* Location cards — bigger touch targets, focused */
  .loc-options{gap:10px}
  .loc-card{padding:14px 14px;gap:12px;border-radius:14px}
  .loc-icon{font-size:1.5rem;width:44px;height:44px;border-radius:11px}
  .loc-body strong{font-size:.95rem;letter-spacing:-.3px}
  .loc-body span{font-size:.76rem}
  .loc-body small{font-size:.68rem;margin-top:3px}
  .loc-pick{display:none}

  /* Calendar — adjust day cell sizes */
  .cal-grid{gap:4px}
  .cal-dow{gap:4px;margin-bottom:4px}
  .cal-day{font-size:.85rem;border-radius:8px}
  .cal-head strong{font-size:1rem}
  .cal-legend{font-size:.65rem;gap:.8rem;margin-top:1rem}

  /* Sunday-special card on mobile — tighter */
  .cal-special{padding:11px 12px;gap:10px;margin-top:1rem}
  .cs-wa{width:32px;height:32px}
  .cs-text strong{font-size:.8rem}
  .cs-text span{font-size:.68rem}

  /* Time slots — 2 cols on phone (touch friendly) */
  .time-slots{grid-template-columns:repeat(2,1fr);gap:8px;max-width:none}
  .time-slot{padding:13px 10px;font-size:.88rem;border-radius:10px}

  /* Form */
  .bf-row{grid-template-columns:1fr;gap:12px}
  .book-form{gap:12px;max-width:none}
  .book-form input,.book-form select,.book-form textarea{padding:13px 14px;font-size:.9rem;font-size:16px}
  /* font-size 16px on inputs prevents iOS auto-zoom on focus */
  .bf-confirm{padding:.85rem 1rem}
  .bfc-row{font-size:.82rem}

  /* Step nav buttons — full-width primary */
  .bs-nav{flex-direction:column-reverse;gap:8px;padding-top:1.2rem}
  .bs-nav .bs-btn{width:100%;justify-content:center;padding:13px 22px}

  /* Confirmation step */
  .bs-confirm h2{font-size:1.6rem}
  .bsc-summary{min-width:0;width:100%;padding:1rem 1.2rem}
  .bsc-actions{flex-direction:column;width:100%}
  .bsc-actions .bs-btn{width:100%}
}

@media(max-width:420px){
  .bih-cred{display:none}             /* save more horizontal room */
  .book-steps{padding:1.4rem 1rem 1.4rem}
  .bs-head h2{font-size:1.25rem}
  .cal-day{font-size:.78rem}
  .time-slot{font-size:.84rem}
}
