/* ============================================================
   Kona Poké — Boba pages (/boba pillar + per-location boba pages)
   Loads styles.css + boba.css. Reuses the global .hero, .scrim-*,
   .hero-content, .btn-hero, .btn-ghost, .btn-solid, .btn-outline,
   .wrap, .eyebrow and color vars from styles.css.
   ============================================================ */

.boba-page { background: var(--cream); color: var(--ink); }

/* ---- hero (reuses global .hero + .scrim-v/.scrim-h + .hero-content) ---- */
.boba-hero .hero-inner h1 {
  font-family: 'Jost', sans-serif; font-weight: 300; font-size: clamp(36px, 6vw, 80px);
  line-height: 1.02; letter-spacing: -0.01em; color: #fff; margin: 0;
  text-shadow: 0 4px 30px rgba(0,0,0,0.35);
}
.boba-hero .hero-inner h1 .em { font-weight: 600; }
.boba-hero .hero-eyebrow {
  display: inline-block; font-family: 'Jost', sans-serif; font-weight: 600; font-size: 13px;
  letter-spacing: 0.22em; text-transform: uppercase; color: #fff; margin-bottom: 14px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.4);
}
.boba-hero .hero-sub {
  margin-top: 16px; max-width: 640px; font-size: clamp(16px, 1.7vw, 20px); line-height: 1.5;
  color: rgba(255,255,255,0.92); text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}
.boba-hero .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; align-items: center; }

/* ---- generic section shell ---- */
.boba-section { padding: clamp(46px, 7vw, 84px) 0; }
.boba-section.bg-white { background: #fff; }
.boba-eyebrow {
  display: inline-block; font-family: 'Jost', sans-serif; font-weight: 600; font-size: 13px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.boba-h2 { font-family: 'Jost', sans-serif; font-weight: 400; font-size: clamp(26px, 3.6vw, 40px); line-height: 1.15; color: var(--ink); }
.boba-h2 .em { font-weight: 600; color: var(--accent); }
.boba-lead { margin-top: 14px; max-width: 760px; font-size: clamp(17px, 1.6vw, 20px); line-height: 1.7; color: #45605c; }
.boba-prose { max-width: 760px; }
.boba-prose p { font-size: clamp(16px, 1.5vw, 18px); line-height: 1.75; color: #3a524f; }
.boba-prose p + p { margin-top: 18px; }
.boba-prose a { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.boba-prose a:hover { color: var(--accent-light); }

/* ---- containers ---- */
.boba-wrap { max-width: 1080px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 64px); }
.boba-narrow { max-width: 760px; }

/* ---- drink categories + grid ---- */
.drink-cat { margin-top: clamp(28px, 4vw, 46px); }
.drink-cat-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; }
.drink-cat-head h3 { font-family: 'Jost', sans-serif; font-weight: 600; font-size: clamp(20px, 2.4vw, 27px); color: var(--ink); }
.drink-cat-head .count { font-size: 13px; color: #8a9a93; }
.drink-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 200px)); gap: 18px; justify-content: center; }
.drink-card {
  background: #fff; border: 1px solid rgba(0,131,144,0.14); border-radius: 18px; overflow: hidden;
  display: flex; flex-direction: column; transition: transform .15s ease, box-shadow .2s ease;
}
.drink-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -26px rgba(0,72,71,0.5); }
.drink-card img { width: 100%; height: auto; aspect-ratio: 1/1; object-fit: cover; display: block; background: #f3efe6; }
.drink-card-body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.drink-card h4 { font-family: 'Jost', sans-serif; font-weight: 600; font-size: 17.5px; line-height: 1.25; color: var(--ink); }
.drink-card p { font-size: 14px; line-height: 1.55; color: #5a6f6a; }

/* ---- "make it your way" steps ---- */
.boba-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; margin-top: 28px; }
.boba-step { background: var(--cream); border: 1px solid rgba(0,131,144,0.12); border-radius: 16px; padding: 22px 24px; }
.boba-step .num { font-family: 'Jost', sans-serif; font-weight: 700; color: var(--accent); font-size: 13px; letter-spacing: 0.1em; }
.boba-step h4 { font-family: 'Jost', sans-serif; font-weight: 600; font-size: 18px; margin: 8px 0 6px; color: var(--ink); }
.boba-step p { font-size: 14.5px; line-height: 1.55; color: #5a6f6a; }

/* ---- in-content CTA row ---- */
.boba-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; align-items: center; }

/* ---- FAQ (native details) ---- */
.boba-faq { max-width: 820px; margin-top: 22px; }
.boba-faq details { border-bottom: 1px solid rgba(0,131,144,0.16); padding: 16px 2px; }
.boba-faq summary { cursor: pointer; font-family: 'Jost', sans-serif; font-weight: 600; font-size: 17px; color: var(--ink); list-style: none; display: flex; justify-content: space-between; gap: 14px; }
.boba-faq summary::-webkit-details-marker { display: none; }
.boba-faq summary::after { content: '+'; color: var(--accent); font-weight: 400; font-size: 22px; line-height: 1; }
.boba-faq details[open] summary::after { content: '\2013'; }
.boba-faq .faq-a { margin-top: 10px; font-size: 15.5px; line-height: 1.65; color: #45605c; }
.boba-faq .faq-a a { color: var(--accent); font-weight: 600; text-decoration: none; }
.boba-faq .faq-a a:hover { text-decoration: underline; }

/* ---- visit / find boba near you ---- */
.boba-visit { padding: clamp(48px, 7vw, 80px) 0; background: #fff; text-align: center; }
.boba-visit h2 { font-family: 'Jost', sans-serif; font-weight: 400; font-size: clamp(26px, 4vw, 42px); color: var(--ink); }
.boba-visit h2 .em { font-weight: 600; color: var(--accent); }
.boba-visit-lead { margin: 14px auto 0; max-width: 620px; color: #45605c; font-size: clamp(16px, 1.5vw, 19px); }
.boba-visit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; max-width: 920px; margin: 30px auto 0; text-align: left; }
.boba-visit-card { display: flex; flex-direction: column; gap: 4px; background: var(--cream); border: 1px solid rgba(0,131,144,0.14); border-radius: 16px; padding: 20px 22px; text-decoration: none; transition: transform .12s ease, box-shadow .15s ease; }
.boba-visit-card:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -22px rgba(0,72,71,0.5); }
.boba-visit-card .city { font-family: 'Jost', sans-serif; font-weight: 600; font-size: 19px; color: var(--accent); }
.boba-visit-card .addr { font-size: 13.5px; color: #62786f; }
.boba-visit-cater { margin-top: 26px; font-size: 16px; color: #45605c; }
.boba-visit-cater a { color: var(--accent); font-weight: 600; text-decoration: none; }
.boba-visit-cater a:hover { text-decoration: underline; }

/* ---- inline floated photo (per-location featured drink) ---- */
.boba-inline-photo {
  float: right; width: 42%; max-width: 340px; height: auto; border-radius: 16px;
  margin: 4px 0 16px 28px; box-shadow: 0 22px 50px -28px rgba(0,20,20,0.5);
}
@media (max-width: 600px) { .boba-inline-photo { float: none; width: 100%; max-width: 100%; margin: 22px 0; } }

/* ---- per-location boba pages: store map + areas ---- */
.boba-localinfo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 40px); align-items: start; margin-top: 26px; }
@media (max-width: 760px) { .boba-localinfo-grid { grid-template-columns: 1fr; } }
.boba-map { width: 100%; aspect-ratio: 4/3; border: 0; border-radius: 18px; display: block; box-shadow: 0 18px 40px -26px rgba(0,72,71,0.5); background: #e8f1f0; }
.boba-localinfo p { font-size: clamp(16px, 1.5vw, 18px); line-height: 1.7; color: #3a524f; }
