/* ==========================================================
   PEEK ACTIVITY PAGES — extends explore.css's exact tokens.
   Same --paper / --ink / --olive / --line variables, same
   Instrument Serif + Inter pairing, same radius/shadow language.
   ========================================================== */

.peek-hero{
  padding:64px clamp(24px,6vw,96px) 20px;
  max-width:820px;margin:0 auto;
}
.peek-back{
  display:inline-flex;align-items:center;gap:8px;margin-bottom:28px;
  color:var(--muted);font-size:13px;text-decoration:none;
}
.peek-back svg{width:13px;height:13px;}
.peek-back:hover{color:var(--ink);}

.peek-hero h1{
  font-family:"Instrument Serif",serif;font-weight:400;
  font-size:clamp(38px,5vw,58px);line-height:1;letter-spacing:-.02em;
  margin:0 0 16px;
}
.peek-hero .hero-copy{max-width:520px;margin:0 0 22px;font-size:15.5px;}
.peek-meta{display:flex;gap:12px;color:#767970;font-size:12px;}
.peek-meta span+span::before{content:"•";margin-right:12px;color:rgba(88,101,72,.45);}

.peek-body{
  max-width:720px;margin:0 auto;padding:20px clamp(24px,6vw,96px) 100px;
}

.peek-card{
  background:rgba(255,255,255,.76);border:1px solid var(--line);border-radius:28px;
  padding:36px 34px;margin-bottom:22px;
  box-shadow:0 18px 38px rgba(62,56,44,.055);
}
.peek-card h3{
  font-family:"Instrument Serif",serif;font-weight:400;font-size:24px;
  margin:0 0 8px;line-height:1.2;
}
.peek-card .peek-hint{color:var(--muted);font-size:13.5px;margin:0 0 24px;line-height:1.55;}

.peek-input,.peek-textarea{
  width:100%;border:none;border-bottom:1px solid var(--line);background:transparent;
  font-family:"Inter",sans-serif;font-size:15.5px;color:var(--ink);
  padding:8px 2px;outline:none;transition:border-color .2s;resize:none;
}
.peek-input::placeholder,.peek-textarea::placeholder{color:#a8a99f;}
.peek-input:focus,.peek-textarea:focus{border-color:var(--olive);}
.peek-field{margin-bottom:18px;}
.peek-field:last-child{margin-bottom:0;}
.peek-field label{display:block;font-size:11px;letter-spacing:.08em;text-transform:uppercase;
  color:var(--muted);margin-bottom:6px;}

/* checkable chips — reuses .filter-chip visual language */
.peek-chips{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:4px;}
.peek-chip{
  min-height:40px;padding:0 18px;border-radius:999px;border:1px solid rgba(88,101,72,.24);
  background:rgba(255,255,255,.6);color:#5f6457;font-size:13.5px;cursor:pointer;
  transition:background .18s,color .18s,border-color .18s;
}
.peek-chip.on{background:var(--olive);color:#fff;border-color:var(--olive);}

/* sliders — life audit wheel */
.wheel-row{display:grid;grid-template-columns:110px 1fr 30px;align-items:center;gap:16px;padding:12px 0;}
.wheel-row+.wheel-row{border-top:1px solid var(--line);}
.wheel-row label{font-size:14px;}
.wheel-row input[type=range]{-webkit-appearance:none;width:100%;height:2px;background:var(--line);border-radius:2px;}
.wheel-row input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;width:18px;height:18px;border-radius:50%;
  background:#fff;border:2px solid var(--olive);cursor:pointer;margin-top:-8px;}
.wheel-row input[type=range]::-moz-range-thumb{width:18px;height:18px;border-radius:50%;background:#fff;border:2px solid var(--olive);cursor:pointer;}
.wheel-val{font-family:"Instrument Serif",serif;font-size:20px;color:var(--olive);text-align:right;}

.peek-wheelviz{display:flex;justify-content:center;margin-bottom:30px;}
.peek-wheelviz svg{width:220px;height:220px;}

/* joy menu — an actual three-column menu, widened so each column has real room */
.peek-body-wide{max-width:1000px;}
.menu-card{padding:44px 46px;}
.joy-cols{display:grid;grid-template-columns:1fr 1fr 1fr;gap:0;}
.joy-col{padding:0 30px;}
.joy-col:first-child{padding-left:0;}
.joy-col:last-child{padding-right:0;}
.joy-col+.joy-col{border-left:1px solid var(--line);}
.joy-col-head{display:flex;align-items:center;gap:12px;margin-bottom:24px;}
.joy-col-head svg{width:26px;height:26px;flex:0 0 auto;stroke:var(--olive);stroke-width:1.4;fill:none;stroke-linecap:round;stroke-linejoin:round;}
.joy-col-head h4{font-size:16px;font-weight:400;font-family:"Instrument Serif",serif;color:var(--ink);margin:0;}
.joy-col .joy-sub{font-size:11px;color:#a8a99f;margin:2px 0 0;}
.menu-line{border-bottom:1px dotted var(--line);padding-bottom:10px;}
.menu-line .peek-input{border-bottom:none;padding:4px 0;}
.menu-motto{text-align:center;margin:36px 0 0;padding-top:26px;border-top:1px solid var(--line);
  font-family:"Instrument Serif",serif;font-style:italic;font-size:17px;color:var(--olive-dark);}
@media (max-width:820px){
  .joy-cols{grid-template-columns:1fr;}
  .joy-col{padding:22px 0;border-left:none!important;border-top:1px solid var(--line);}
  .joy-col:first-child{border-top:none;padding-top:0;}
}

/* completion */
.peek-summary{
  background:#eef1e8;border-radius:28px;padding:32px 34px;margin-bottom:22px;
  animation:peekIn .5s ease;
}
.peek-summary p{margin:0;font-size:15.5px;line-height:1.68;color:#3a4030;}
.peek-summary p+p{margin-top:10px;color:var(--olive-dark);font-style:italic;}
@keyframes peekIn{from{opacity:0;transform:translateY(10px);}to{opacity:1;transform:translateY(0);}}

.peek-finish{display:flex;justify-content:center;margin:8px 0 40px;}
.peek-finish-btn{
  min-width:200px;min-height:52px;padding:0 30px;border-radius:999px;background:var(--olive);
  color:#fff;border:none;font-size:14px;cursor:pointer;transition:background .2s;
}
.peek-finish-btn:hover{background:var(--olive-dark);}

.peek-cta{
  border-radius:30px;overflow:hidden;
  background:#eae2d5;
  animation:peekIn .5s ease;
  display:flex;flex-direction:row-reverse;align-items:stretch;
  min-height:280px;
}
.peek-cta-image{width:42%;height:auto;object-fit:cover;display:block;flex:0 0 auto;}
.peek-cta-content{padding:36px 34px;text-align:center;display:flex;flex-direction:column;
  align-items:center;justify-content:center;flex:1 1 auto;}
@media (max-width:640px){
  .peek-cta{flex-direction:column;min-height:0;}
  .peek-cta-image{width:100%;height:200px;}
}
.peek-cta p.cta-line{
  max-width:460px;margin:0 auto 26px;font-size:16px;line-height:1.65;color:#3a3d33;
}
.peek-cta-actions{display:flex;flex-direction:column;align-items:center;gap:14px;}
.peek-cta-btn{
  min-height:52px;padding:0 34px;border-radius:999px;background:var(--olive);color:#fff;
  font-size:14.5px;text-decoration:none;display:inline-flex;align-items:center;gap:10px;
  transition:background .2s,transform .2s;
}
.peek-cta-btn:hover{background:var(--olive-dark);transform:translateY(-1px);}
.peek-save-standalone{text-align:center;margin-top:18px;}
.peek-save{
  background:none;border:none;color:var(--muted);font-size:13px;cursor:pointer;
  display:inline-flex;align-items:center;gap:7px;text-decoration:underline;text-underline-offset:3px;
}
.peek-save:hover{color:var(--ink);}
.peek-save svg{width:13px;height:13px;}

.peek-hidden{display:none !important;}

@media (max-width:640px){
  .peek-hero{padding:44px 20px 16px;}
  .peek-body{padding:16px 20px 70px;}
  .peek-card{padding:26px 22px;border-radius:22px;}
  .wheel-row{grid-template-columns:88px 1fr 26px;gap:10px;}
}

/* ---- masthead illustration, reusing the card art at a bigger scale ---- */
.peek-art{
  position:relative;display:flex;justify-content:center;margin:6px auto 30px;
  width:220px;height:190px;position:relative;
  background:linear-gradient(145deg, rgba(255,255,255,.72), rgba(255,255,255,.25)), #ece6da;
  border-radius:26px;align-items:center;
}
.peek-art.art-joy{background-color:#f7ebe3;}
.peek-art.art-filters{background-color:#eeeaf5;}
.peek-art.art-week{background-color:#edf0e8;}
.peek-art.art-waiting{background-color:#e9eff3;}
.peek-art.art-one{background-color:#f4eedf;}
.peek-art .joy-orbit,.peek-art .lens-stack,.peek-art .week-sheet,
.peek-art .waiting-room,.peek-art .focus-card{transform:scale(1.25);}

/* ---- recap: the person's own answers, organized — not interpreted ---- */
.peek-recap{
  background:#f3f0e7;border-radius:24px;padding:28px 30px;margin-bottom:22px;
  animation:peekIn .5s ease;
}
.peek-recap-label{font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:var(--olive);margin:0 0 16px;}
.peek-recap-row{display:grid;grid-template-columns:150px 1fr;gap:14px;padding:10px 0;border-top:1px solid rgba(55,58,48,.08);}
.peek-recap-row:first-of-type{border-top:none;}
.peek-recap-row b{font-size:12.5px;color:var(--muted);font-weight:500;}
.peek-recap-row span{font-size:14.5px;color:var(--ink);line-height:1.5;}
@media (max-width:640px){ .peek-recap-row{grid-template-columns:1fr;gap:3px;} }

/* ---- weekly reflection: bordered question cards with an icon each ---- */
.qcard-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-bottom:22px;}
.qcard{background:rgba(255,255,255,.76);border:1px solid var(--line);border-radius:22px;
  padding:26px 26px 22px;box-shadow:0 16px 34px -28px rgba(62,56,44,.14);}
.qcard-icon{width:38px;height:38px;border-radius:11px;background:#eef1e8;
  display:flex;align-items:center;justify-content:center;margin-bottom:16px;}
.qcard-icon svg{width:19px;height:19px;stroke:var(--olive);stroke-width:1.5;fill:none;stroke-linecap:round;stroke-linejoin:round;}
.qcard label{display:block;font-family:"Instrument Serif",serif;font-size:17px;color:var(--ink);margin-bottom:12px;line-height:1.35;}
.qcard .peek-textarea{border:none;background:rgba(0,0,0,.02);border-radius:10px;padding:12px 14px;min-height:100px;line-height:1.55;}
@media (max-width:640px){ .qcard-grid{grid-template-columns:1fr;} }

/* ---- life filters: an icon on each chip ---- */
.peek-chips-icon .peek-chip{display:inline-flex;align-items:center;gap:7px;}
.peek-chips-icon .peek-chip svg{width:15px;height:15px;flex:0 0 auto;
  stroke:currentColor;stroke-width:1.7;fill:none;stroke-linecap:round;stroke-linejoin:round;}

/* ---- waiting room: typography carries this page, not illustration ---- */
.wait-pullquote{margin:20px auto 0;padding:44px 30px;border-radius:26px;
  background:linear-gradient(160deg,#e9eff3 0%,#e3ecf1 100%);text-align:center;}
.wait-pullquote p{margin:0;font-family:"Instrument Serif",serif;font-style:italic;
  font-size:clamp(26px,3.4vw,36px);line-height:1.28;color:#3d4a52;}

/* ---- closing line: a rotating mix of a real question and a small nudge ---- */
.peek-nudge{margin-bottom:22px;padding:20px 24px;border-radius:18px;
  background:#eef1e8;text-align:center;animation:peekIn .5s ease;}
.peek-nudge p{margin:0 0 4px;font-family:Inter,sans-serif;font-style:normal;
  font-size:16px;line-height:1.6;color:#2c2c26;}
.peek-nudge .peek-static-line{font-family:"Instrument Serif",serif;font-style:italic;
  font-size:17px;color:var(--olive-dark);line-height:1.5;}

/* ---- loading pill, shown briefly while feedback is being generated ---- */
.peek-loadpill{display:inline-flex;align-items:center;gap:8px;font-family:Inter,sans-serif;
  font-size:14px;font-style:normal;color:#8a8a80;}
.peek-loaddots{display:inline-flex;gap:3px;}
.peek-loaddots span{width:5px;height:5px;border-radius:50%;background:#586548;opacity:.3;
  animation:peekDot 1.2s infinite ease-in-out;}
.peek-loaddots span:nth-child(2){animation-delay:.15s;}
.peek-loaddots span:nth-child(3){animation-delay:.3s;}
@keyframes peekDot{0%,60%,100%{opacity:.3;transform:scale(.85);}30%{opacity:1;transform:scale(1);}}

/* ---- structured feedback layout ---- */
.peek-fbrow{margin-top:10px;font-family:Inter,sans-serif;font-size:15px;font-style:normal;color:var(--ink-body,#2c2c26);}
.peek-fbrow strong{color:#1c1d18;}
.peek-fbsteps-label{margin-top:16px;font-family:Inter,sans-serif;font-size:12px;font-style:normal;
  letter-spacing:.04em;text-transform:uppercase;color:#8a8a80;}
.peek-fbsteps{margin:8px 0 0;padding-left:20px;font-family:Inter,sans-serif;font-size:15px;font-style:normal;text-align:left;}
.peek-fbsteps li{margin-bottom:8px;line-height:1.5;}

/* ---- small visual on the CTA card, echoing the journal itself ---- */
/* peek-cta-visual removed — replaced with a real photo, see .peek-cta-image above */
