/* ═══════════════════════════════════════════════════════════
   sera ♡ — site.css
   Public site layer. Loads AFTER styles.css and consumes its
   tokens. Rule: never write a hex — dark mode is then free.
   ═══════════════════════════════════════════════════════════ */

:root {
  --nav-h: 60px;
  --sp-1: 6px;
  --sp-2: 12px;
  --sp-3: 20px;
  --sp-4: 32px;
  --sp-5: 48px;
  --scrim: rgba(40, 20, 38, 0.55);
}
body.dark { --scrim: rgba(0, 0, 0, 0.62); }

body { padding-top: var(--nav-h); }

/* The site view has no player under it until something plays. */
.app { padding-bottom: var(--sp-5); }
body.has-player .app { padding-bottom: calc(var(--player-h) + 40px); }

#siteView { position: relative; z-index: 1; }

/* ── 1. Top nav ───────────────────────────────────────────── */
/* fixed, NOT sticky: body{overflow-x:hidden} creates a scroll
   container that breaks sticky descendants in several engines. */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 30;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0 14px;
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  text-decoration: none;
  color: var(--plum);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  flex: none;
}
.nav-brand-ic { display: inline-grid; place-items: center; color: var(--pink-500); }
.nav-brand-ic .ic { width: 22px; height: 22px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  margin-left: auto;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-links::-webkit-scrollbar { display: none; }

.nav-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: none;
  padding: 7px 13px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--plum-soft);
  background: none;
  border: 1.5px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.nav-chip .ic { width: 17px; height: 17px; }
.nav-chip:hover { color: var(--pink-500); background: var(--surface-hover); }
.nav-chip.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink-400), var(--lavender-deep));
  border-color: transparent;
}
.nav-chip-audio { border-color: var(--glass-border); }
.nav-chip-audio .ic-lock { width: 13px; height: 13px; opacity: 0.75; }
body.audio-unlocked .nav-chip-audio .ic-lock { display: none; }

.theme-toggle { flex: none; }

/* ── 2. Sections ──────────────────────────────────────────── */
.site-section {
  scroll-margin-top: calc(var(--nav-h) + 12px);
  padding-top: var(--sp-4);
}
.site-section:first-child { padding-top: var(--sp-3); }

.sec-head { margin: 0 4px var(--sp-2); }
.sec-kicker {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pink-500);
  margin-bottom: 2px;
}
.sec-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.3rem, 4.5vw, 1.7rem);
  color: var(--plum);
}
.sec-sub { color: var(--plum-soft); font-weight: 500; font-size: 0.92rem; margin-top: 4px; }

/* ── 3. Image slots (empty until she sends files) ─────────── */
.img-slot {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--cover-grad);
  border: 1.5px dashed var(--glass-border);
}
.img-slot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-slot img[hidden] { display: none; }
.img-slot-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--plum-soft);
  opacity: 0.75;
  text-align: center;
  padding: var(--sp-2);
  line-height: 1.5;
}
.img-slot.has-img { border-style: solid; border-color: transparent; }

/* ── 4. Hero ──────────────────────────────────────────────── */
.hero-banner { aspect-ratio: 16 / 7; margin-bottom: var(--sp-3); }
.hero-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 9vw, 3.2rem);
  line-height: 1.05;
  color: var(--plum);
  text-align: center;
}
.hero-tag {
  font-family: var(--font-head);
  font-size: clamp(1rem, 4vw, 1.35rem);
  color: var(--pink-500);
  text-align: center;
  margin-top: 2px;
}
.hero-meta {
  text-align: center;
  color: var(--plum-soft);
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: var(--sp-2);
}
.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-1) var(--sp-3);
  margin-top: var(--sp-2);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--plum-soft);
}
.hero-stats b { font-family: var(--font-head); color: var(--pink-500); }
.hero-cta { margin-top: var(--sp-3); display: grid; gap: var(--sp-2); }

/* ── 5. About ─────────────────────────────────────────────── */
.about-card { padding: var(--sp-3); }
.about-top { display: flex; gap: var(--sp-3); align-items: center; }
.about-avatar { width: 92px; height: 92px; border-radius: 50%; flex: none; }
.about-avatar .img-slot-label { font-size: 0.6rem; }
.about-intro { flex: 1; min-width: 0; color: var(--plum); font-weight: 500; line-height: 1.6; }

.chip-rows { margin-top: var(--sp-3); display: grid; gap: var(--sp-2); }
.chip-row-label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--plum-soft);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.chip-static {
  display: inline-block;
  cursor: default;
  padding: 6px 13px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--plum);
  background: var(--glass-bg);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--r-pill);
}
.chip-static:hover { transform: none; }
.chip-limit { color: var(--danger); border-color: var(--danger); background: none; }

.about-closing {
  margin-top: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--glass-border);
  color: var(--plum-soft);
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── 6. Services / pricelist ──────────────────────────────── */
.service-list { display: flex; flex-direction: column; gap: var(--sp-2); }

.service-card {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.service-card.is-open { border-color: var(--pink-400); box-shadow: var(--shadow-lift); }

.service-head {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  width: 100%;
  padding: var(--sp-2) var(--sp-3) var(--sp-2) var(--sp-2);
  text-align: left;
  background: none;
  border: 0;
}
.service-thumb { width: 74px; height: 74px; flex: none; border-radius: var(--r-md); }
.service-thumb .img-slot-label { font-size: 0.55rem; }
.service-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--pink-500);
  flex: none;
}
.service-main { flex: 1; min-width: 0; display: block; }
.service-num { display: block; }
.service-tagline, .service-from { display: block; }
.service-name {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--plum);
}
.service-tagline { color: var(--plum-soft); font-size: 0.82rem; font-weight: 500; margin-top: 2px; }
.service-from { font-family: var(--font-head); font-weight: 700; font-size: 0.92rem; color: var(--pink-500); margin-top: 4px; }
.service-chev { flex: none; color: var(--plum-soft); transition: transform 0.24s var(--ease-bounce); }
.service-card.is-open .service-chev { transform: rotate(180deg); }

.badge-closed {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--danger);
  border: 1.5px solid var(--danger);
}
.badge-closed::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.service-panel { padding: 0 var(--sp-3) var(--sp-3); }
.service-panel[hidden] { display: none; }

.notice {
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  margin-bottom: var(--sp-2);
  border-radius: var(--r-md);
  border: 1.5px solid var(--danger);
  color: var(--danger);
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1.5;
}
.notice .ic { flex: none; width: 18px; height: 18px; }

.group-label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--plum-soft);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: var(--sp-2) 2px 6px;
}

.tier-list { display: flex; flex-direction: column; gap: 6px; }
.tier-row {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 10px 14px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
}
.tier-label { flex: 1; min-width: 0; font-weight: 600; color: var(--plum); font-size: 0.92rem; }
.tier-price { font-family: var(--font-head); font-weight: 700; color: var(--plum); font-size: 0.95rem; white-space: nowrap; }
.tier-row .btn-pill {
  flex: none;
  background: linear-gradient(135deg, var(--pink-400), var(--lavender-deep));
  color: var(--white);
  font-size: 0.8rem;
  padding: 7px 15px;
}

.sub-block { margin-top: var(--sp-3); }
.sub-title {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 8px;
}
.addon-list { display: flex; flex-direction: column; gap: 5px; }
.addon-row {
  display: flex;
  gap: var(--sp-2);
  align-items: baseline;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--plum-soft);
}
.addon-row span:first-child { flex: 1; min-width: 0; }
.addon-price { font-family: var(--font-head); font-weight: 700; color: var(--pink-500); white-space: nowrap; }

.bundle-card {
  margin-top: var(--sp-3);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-md);
  border: 1.5px solid var(--pink-400);
  background: var(--glass-bg);
}
.bundle-head { display: flex; align-items: center; gap: var(--sp-2); flex-wrap: wrap; }
.bundle-head .tier-label { flex: 1 1 auto; }
/* when the row wraps on narrow screens the button should look deliberate */
.bundle-head .btn-pill { margin-left: auto; }
.bundle-head .btn-pill {
  flex: none;
  background: linear-gradient(135deg, var(--pink-400), var(--lavender-deep));
  color: var(--white);
  font-size: 0.8rem;
  padding: 7px 15px;
}
.bundle-tag {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink-500), var(--pink-400));
  padding: 3px 9px;
  border-radius: var(--r-pill);
}

.perk-list, .note-list { margin-top: 8px; display: flex; flex-direction: column; gap: 5px; }
.perk-list li, .note-list li {
  list-style: none;
  position: relative;
  padding-left: 18px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--plum-soft);
  line-height: 1.5;
}
.perk-list li::before { content: '♡'; position: absolute; left: 0; color: var(--pink-500); }
.note-list li::before { content: '·'; position: absolute; left: 6px; color: var(--pink-500); font-weight: 700; }

.longterm-card { margin-top: var(--sp-3); padding: var(--sp-3); }
.longterm-min {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--pink-500);
  font-size: 0.95rem;
  margin-top: 4px;
}
.price-note {
  margin-top: var(--sp-2);
  text-align: center;
  color: var(--plum-soft);
  font-size: 0.82rem;
  font-weight: 500;
}

/* ── 7. Proof ─────────────────────────────────────────────── */
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-2); }
.stat-tile { padding: var(--sp-3) var(--sp-2); text-align: center; }
.stat-value {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.6rem, 7vw, 2.4rem);
  color: var(--pink-500);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.stat-label { color: var(--plum-soft); font-weight: 600; font-size: 0.82rem; margin-top: 4px; }

.review-strip {
  display: flex;
  gap: var(--sp-2);
  overflow-x: auto;
  padding: 4px 4px var(--sp-2);
  scroll-snap-type: x proximity;
}
.review-card {
  flex: 0 0 auto;
  width: 150px;
  scroll-snap-align: start;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
}
.review-card img { width: 100%; display: block; }

/* ── 8. Numbered steps (cara order) ───────────────────────── */
.step-list { display: flex; flex-direction: column; gap: 8px; }
.step-item {
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
  padding: 12px 16px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
}
.step-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--pink-500);
  width: 22px;
  flex: none;
  text-align: center;
  line-height: 1.6;
}
.step-text { flex: 1; min-width: 0; font-weight: 500; color: var(--plum); line-height: 1.6; font-size: 0.92rem; }

.rule-item .step-num { color: var(--danger); }

.closing-line {
  margin-top: var(--sp-2);
  text-align: center;
  color: var(--plum-soft);
  font-weight: 500;
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ── 9. FAQ accordion ─────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  width: 100%;
  padding: 14px 16px;
  text-align: left;
  background: none;
  border: 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--plum);
}
.faq-q span { flex: 1; min-width: 0; }
.faq-q .ic { flex: none; color: var(--pink-500); transition: transform 0.24s var(--ease-bounce); }
.faq-q[aria-expanded="true"] .ic { transform: rotate(180deg); }
.faq-a {
  padding: 0 16px 16px;
  color: var(--plum-soft);
  font-weight: 500;
  line-height: 1.65;
  font-size: 0.9rem;
}
.faq-a[hidden] { display: none; }

/* ── 10. Footer ───────────────────────────────────────────── */
.site-footer {
  margin-top: var(--sp-5);
  padding: var(--sp-4) var(--sp-3) var(--sp-3);
  border-top: 1px solid var(--glass-border);
  text-align: center;
}
.foot-name { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--plum); }
.foot-tag { color: var(--pink-500); font-family: var(--font-head); margin-top: 2px; }
.foot-hours { color: var(--plum-soft); font-weight: 600; font-size: 0.86rem; margin-top: var(--sp-2); }
.foot-links { display: flex; justify-content: center; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-3); }
.foot-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 15px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--plum);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.86rem;
  transition: transform 0.18s var(--ease-bounce), color 0.2s;
}
.foot-links a:hover { transform: translateY(-2px); color: var(--pink-500); }
.foot-adult {
  margin-top: var(--sp-3);
  color: var(--plum-soft);
  font-size: 0.76rem;
  font-weight: 600;
  opacity: 0.85;
}
.foot-credit { margin-top: var(--sp-2); color: var(--plum-soft); font-size: 0.76rem; opacity: 0.7; }
.foot-credit a { color: inherit; }

/* ── 11. Telegram FAB ─────────────────────────────────────── */
.fab {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 35;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--pink-400), var(--lavender-deep));
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 6px 18px rgba(232, 114, 162, 0.4);
  transition: transform 0.18s var(--ease-bounce);
}
.fab:hover { transform: scale(1.06); }
.fab .ic { width: 19px; height: 19px; color: var(--white); }
body.has-player .fab,
body.modal-open .fab,
body.view-audio .fab { display: none; }

/* ── 12. Modal + age gate ─────────────────────────────────── */
.modal, .age-gate {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: var(--sp-3);
}
.modal { z-index: 60; }
.age-gate { z-index: 70; }

.modal-backdrop { position: absolute; inset: 0; background: var(--scrim); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.age-gate { background: var(--scrim); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }

.modal-card {
  position: relative;
  width: min(520px, 100%);
  max-height: min(86vh, 720px);
  display: flex;
  flex-direction: column;
  overscroll-behavior: contain;
  animation: popIn 0.24s var(--ease-bounce);
}
.age-gate .lock-card { position: relative; animation: popIn 0.28s var(--ease-bounce); }

body.modal-open { overflow: hidden; }
html { scrollbar-gutter: stable; }

.modal-head {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-3) var(--sp-2);
  border-bottom: 1px solid var(--glass-border);
}
.modal-title { flex: 1; min-width: 0; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--plum); }
.modal-steps { display: flex; gap: 5px; flex: none; }
.modal-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--glass-border); border: 1.5px solid var(--plum-soft); opacity: 0.5; }
.modal-dot.is-active { background: var(--pink-500); border-color: var(--pink-500); opacity: 1; }
.modal-dot.is-done { background: var(--pink-300); border-color: var(--pink-400); opacity: 1; }

.modal-body { overflow-y: auto; padding: var(--sp-3); flex: 1; }
.modal-foot { display: flex; gap: var(--sp-2); padding: var(--sp-2) var(--sp-3) var(--sp-3); border-top: 1px solid var(--glass-border); }
.modal-foot .btn-primary { flex: 1; }

.order-summary {
  padding: 12px 16px;
  border-radius: var(--r-md);
  background: var(--cover-grad);
  margin-bottom: var(--sp-3);
}
.order-summary-name { font-family: var(--font-head); font-weight: 700; color: var(--plum); }
.order-summary-price { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--pink-500); margin-top: 2px; }

.agree-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: var(--sp-3);
  padding: 12px 14px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--glass-border);
  background: var(--glass-bg);
  cursor: pointer;
  font-weight: 600;
  color: var(--plum);
  font-size: 0.9rem;
  line-height: 1.5;
}
.agree-row input { width: 20px; height: 20px; flex: none; accent-color: var(--pink-500); cursor: pointer; }

.qris-wrap { text-align: center; }
.qris-img {
  width: min(260px, 100%);
  border-radius: var(--r-md);
  border: 1px solid var(--glass-border);
  background: var(--white);
  padding: var(--sp-2);
}
.qris-note { margin-top: var(--sp-2); color: var(--plum-soft); font-weight: 500; font-size: 0.88rem; line-height: 1.6; }

.order-msg {
  width: 100%;
  min-height: 96px;
  resize: vertical;
  padding: 12px 14px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--glass-border);
  background: var(--glass-bg-strong);
  color: var(--plum);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  line-height: 1.6;
}
.copy-row { display: flex; gap: var(--sp-2); margin-top: var(--sp-2); }
.copy-row .btn-ghost { flex: 1; justify-content: center; }
.tg-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  text-align: center;
}

.age-notice { margin-top: var(--sp-2); color: var(--plum-soft); font-weight: 500; font-size: 0.9rem; line-height: 1.6; }
.age-gate .agree-row { text-align: left; }
.age-no { width: 100%; margin-top: var(--sp-2); justify-content: center; }
.age-bye { color: var(--plum-soft); font-weight: 500; line-height: 1.7; margin-top: var(--sp-2); }

/* ── 13. Audio view ───────────────────────────────────────── */
/* The code gate is inline here, not the full-screen overlay it
   used to be — the visitor must be able to walk away from it. */
#audioView .lock-screen {
  position: relative;
  inset: auto;
  z-index: auto;
  min-height: 55vh;
  padding: var(--sp-3) 0;
}
.back-to-site { display: inline-flex; align-items: center; gap: 6px; margin-top: var(--sp-3); }
.back-to-site .ic { width: 16px; height: 16px; }

/* ── 14. Mobile ───────────────────────────────────────────── */
@media (max-width: 768px) {
  /* A blurred bar over a scrolling page repaints every frame —
     the single most expensive GPU cost on mobile. */
  /* no blur on mobile (repaints every scroll frame) — so the bar must be
     fully opaque, or the page scrolls visibly through it. */
  .site-nav { -webkit-backdrop-filter: none; backdrop-filter: none; background: var(--pink-100); }
  .service-card,
  .step-item,
  .faq-item,
  .tier-row { -webkit-backdrop-filter: none; backdrop-filter: none; background: var(--glass-bg-strong); }
}

@media (max-width: 620px) {
  .nav-brand-name { display: none; }
  .nav-chip span { display: none; }
  .nav-chip { padding: 8px 11px; }
  .nav-chip .ic { width: 19px; height: 19px; }
  .nav-chip-audio .ic-lock { width: 12px; height: 12px; }
}

@media (max-width: 480px) {
  :root { --nav-h: 54px; }
  .about-top { flex-direction: column; text-align: center; gap: var(--sp-2); }
  .about-avatar { width: 84px; height: 84px; }
  .service-thumb { width: 60px; height: 60px; }
  .service-head { padding: 10px 14px 10px 10px; }
  .service-panel { padding: 0 14px 14px; }
  .stat-row { gap: 6px; }
  .stat-tile { padding: var(--sp-2) 6px; }
  /* icon-only so it stops covering card content on small screens */
  .fab { padding: 14px; border-radius: 50%; }
  .fab span { display: none; }
  .fab .ic { width: 22px; height: 22px; }
  .modal-body, .modal-head { padding-left: 16px; padding-right: 16px; }
  .review-card { width: 132px; }
}
