/* YogaTravel — base styles: tokens, reset, header, buttons, forms, nav,
 * imagery bands, portrait-card, dated-card, empty-icon helpers.
 * Loaded on every page. See DESIGN.md.
 */

/* YogaTravel — warm, grounded, alive
 *
 * See DESIGN.md at the repo root for the design principles, tokens, and the
 * naming convention. Open /style-guide.html in the browser to see every
 * component rendered (and to experiment with the theme lab).
 *
 * ==========================================================================
 * TABLE OF CONTENTS
 * ==========================================================================
 *  1.  Font import
 *  2.  :root tokens — colors, typography, spacing, shadows
 *  3.  Reset + element defaults
 *  4.  Layout primitives — .container, .container-narrow
 *  5.  Header — .site-header, .nav, .nav-links, .brand
 *  6.  Buttons — .btn, .btn-primary, .btn-ghost, .btn-sky, .btn-admin, .btn-sm
 *  7.  Admin banner — .admin-banner
 *  8.  Sections + heads — .section, .section-head, .eyebrow
 *  9.  Comments — .comments, .comment, .vote-btn, .vote-score
 * 10.  Dashboard — .form, .form-field, .input, .textarea, .photos-block,
 *                  .portrait-block, .upload-status
 * 11.  Locations picker (shared component)
 * 12.  Prose — .prose (used on about/guidelines/privacy/terms)
 * 13.  Lightbox — .lightbox-backdrop
 * 14.  Google sign-in wrapper, auth-gate
 * 15.  HOMEPAGE v2 — .home-hero*, .home-doors, .home-portraits, .home-values,
 *                    .home-quote, .home-volunteer,
 *                    .home-footer, .home-trust
 * 16.  PHOTO HERO (shared) — .dir-hero* — used on /teachers, /retreats,
 *                             /about, /volunteer
 * 17.  PORTRAIT CARDS — .portrait-card, .portrait-card__*
 * 18.  DATED CARDS — .dated-card (retreats + homepage)
 * 19.  IMAGERY BANDS — .band-photo, .band-triptych
 * 20.  TEACHER PROFILE — .prof, .prof__hero, .prof__section, .prof__free,
 *                        .prof__locs, .prof__gallery, .prof__comments
 * 21.  RETREATS — .ret-hero, .ret-list, .ret__hero, .ret__host, .ret__contact
 * 22.  STATIC PROSE PAGES — .static-hero, .static-body
 * 23.  VOLUNTEER PAGE — .roles, .role, .listener-full (hero is shared .dir-hero)
 * 24.  VOLUNTEER APPLICATION FORM — .vol-form-*, .vol-role-chip,
 *                                   .vol-attestation, .vol-status
 * 25.  LISTENER REQUEST — .lr-wrap, .lr-card, .lr-crisis
 * 26.  NAV BELL — .nav-bell, .nav-bell__panel, .nav-bell__item
 * 27.  CARETAKER CARD — .caretaker-portrait, .caretaker-editor
 * 28.  CARETAKERS PUBLIC GRID — .vol-caretakers, .vol-caretaker
 *
 * Rule: no <style> blocks in HTML files. Everything visual lives here.
 * ==========================================================================
 */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght,SOFT@0,9..144,400..600,0..100;1,9..144,400..600,0..100&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --bg: #fbfaf4;               /* warm morning white */
  --bg-alt: #f5efe1;            /* paper — warmer than before */
  --paper: #f5efe1;
  --ink: #2a332e;               /* deep forest ink */
  --ink-soft: #5a6a60;
  --ink-muted: #7a8881;           /* darkened for WCAG AA — was #9aa89f (2.3:1, failing) */
  --line: #e6dfd0;
  --green: #7a9a80;             /* sage — slightly warmer */
  --green-dark: #476049;        /* deep sage */
  --sage: #7a9a80;
  --sage-deep: #476049;
  --sky: #a7c9d8;
  --sky-dark: #6fa0ba;
  --sand: #e8d9b8;
  --terracotta: #c9876c;        /* the warmth accent — use sparingly */
  --terracotta-deep: #a66650;
  --teal: #3d6b73;              /* trust accent — credentials, verified, meta (use like terracotta: sparingly) */
  --teal-deep: #2e555c;
  --cream: #ffffff;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --shadow-sm: 0 1px 2px rgba(43, 53, 48, 0.03), 0 2px 8px rgba(43, 53, 48, 0.04);
  --shadow: 0 4px 18px rgba(43, 53, 48, 0.05), 0 16px 40px rgba(43, 53, 48, 0.07);
  --shadow-lg: 0 8px 30px rgba(43, 53, 48, 0.08), 0 24px 60px rgba(43, 53, 48, 0.10);
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Fraunces variation-setting presets — reference on class, don't hand-write values */
  --type-display-hero: "opsz" 96, "SOFT" 60;   /* big hero headline */
  --type-display-soft: "opsz" 48, "SOFT" 30;   /* section headlines that want a touch more structure */
}

/* Fraunces carries a warmth/softness axis — tune it for headings */
h1, h2, h3, h4, .hd-serif {
  font-variation-settings: "opsz" 72, "SOFT" 50, "WONK" 0;
}

/* ==================================================================
   ACCESSIBILITY — focus rings + skip link
   ================================================================== */

/* Keyboard focus ring. :focus-visible only fires on keyboard focus, never
   on mouse clicks — so focus doesn't flash when you click a button. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Inputs with existing focus-border styles — let their own rule handle it */
.input:focus-visible,
.textarea:focus-visible,
.home-search__select:focus-visible,
.home-search__input:focus-visible,
.dir-searchbar__field:focus-within,
.url-editor:focus-within {
  outline-offset: 3px;
}

/* Skip link: visually hidden until keyboard-focused, then slides down into view */
.skip-link {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -120%);
  padding: 10px 18px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 0 0 8px 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  z-index: 1000;
  transition: transform 0.15s;
}

.skip-link:focus-visible {
  transform: translate(-50%, 0);
  outline: 2px solid var(--sage);
  outline-offset: 2px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--green-dark); text-decoration: none; }
a:hover { color: var(--green); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

img { max-width: 100%; display: block; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 241, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--green), var(--green-dark));
  display: inline-block;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--ink); }

.nav-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  object-fit: cover;
}

/* Mobile nav — hamburger toggle reveals a full-width dropdown menu */
.nav-toggle {
  display: none;   /* hidden on desktop */
  background: transparent;
  border: 0;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--ink);
  line-height: 0;
  transition: background 0.15s;
}
.nav-toggle:hover { background: var(--paper); }
.nav-toggle[aria-expanded="true"] { background: var(--paper); }

/* Swap between hamburger and X icons */
.nav-toggle__icon { display: block; }
.nav-toggle__icon--close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon--open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon--close { display: block; }

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }

  /* Hide main nav links by default; reveal as dropdown when .open */
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 20px 24px 28px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    gap: 4px;
    box-shadow: 0 8px 24px rgba(43, 51, 46, 0.08);
    z-index: 60;
  }

  /* Bigger tap targets inside the dropdown */
  .nav-links.open li { width: 100%; }
  .nav-links.open li a {
    display: block;
    padding: 14px 4px;
    font-size: 1.02rem;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open li:last-child a { border-bottom: 0; }
  .nav-links.open li a.active { color: var(--sage-deep); font-weight: 600; }

  /* On very narrow phones the identity label is already hidden (<560px).
     Tighten nav-user so brand + bell + pill + toggle all fit. */
  .nav-user { gap: 8px; }
}

/* Prevent body scroll while mobile menu is open */
body.nav-open { overflow: hidden; }

/* Hide noisy desktop-only controls on mobile.
   Sign-out moves into the member-hub / teacher dashboard account panel. */
@media (max-width: 720px) {
  .nav-user #logoutBtn { display: none; }
  .nav-user .btn-admin { padding: 6px 10px; font-size: 0.78rem; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.08s ease, background 0.15s, border-color 0.15s, color 0.15s;
  line-height: 1;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--green);
  color: var(--cream);
}
.btn-primary:hover { background: var(--green-dark); color: var(--cream); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink-muted); color: var(--ink); }

.btn-sky {
  background: var(--sky);
  color: var(--cream);
}
.btn-sky:hover { background: var(--sky-dark); color: var(--cream); }

.btn-admin {
  background: var(--green-dark);
  color: var(--cream);
  border-color: var(--green-dark);
}
.btn-admin:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.admin-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  background: linear-gradient(135deg, rgba(74, 125, 96, 0.10), rgba(126, 181, 208, 0.10));
  border: 1px solid rgba(74, 125, 96, 0.25);
  border-left: 4px solid var(--green-dark);
  border-radius: var(--radius);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.admin-banner-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.btn-sm { padding: 8px 16px; font-size: 0.88rem; }

/* ---------- Sections ---------- */

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-alt);
  padding: 80px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-head .eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky-dark);
  font-weight: 600;
  margin-bottom: 14px;
}

/* ---------- Comments ---------- */

.comments { display: flex; flex-direction: column; gap: 14px; }

.comment {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 22px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  transition: border-color 0.15s;
}

.comment.pinned {
  border-left: 3px solid var(--green);
  background: linear-gradient(90deg, rgba(74, 125, 96, 0.04), transparent 30%);
}

.comment.deleted { opacity: 0.7; }
.comment.deleted .comment-body { font-style: italic; color: var(--ink-muted); }

.comment.collapsed {
  grid-template-columns: 1fr;
  padding: 10px 18px;
  background: var(--bg-alt);
  border: 1px dashed var(--line);
  font-size: 0.88rem;
  color: var(--ink-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.comment-collapsed-note { flex: 1; }

.comment-votes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding-top: 4px;
  user-select: none;
}

.vote-btn {
  background: none;
  border: 0;
  padding: 4px 6px;
  cursor: pointer;
  color: var(--ink-muted);
  line-height: 1;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s, transform 0.1s;
  font-size: 0.9rem;
}

.vote-btn:not([disabled]):hover { background: var(--bg-alt); color: var(--ink); }
.vote-btn:not([disabled]):active { transform: scale(0.92); }
.vote-btn[disabled] { cursor: default; opacity: 0.35; }

.vote-btn.up.active { color: var(--green-dark); }
.vote-btn.down.active { color: #8a3c3c; }

.vote-score {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  min-width: 22px;
  text-align: center;
}
.vote-score.pos { color: var(--green-dark); }
.vote-score.neg { color: #8a3c3c; }

.comment-main { min-width: 0; }

.comment-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.comment-head .avatar { width: 28px; height: 28px; }

.comment-name { font-weight: 600; color: var(--ink); font-size: 0.9rem; }
.comment-date { font-size: 0.78rem; color: var(--ink-muted); }
.comment-pin {
  font-size: 0.72rem;
  color: var(--green-dark);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.comment-body {
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.6;
  margin: 0 0 6px;
  white-space: pre-wrap;
  overflow-wrap: break-word;
}

.comment-actions {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}

.comment-action {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 0.8rem;
  color: var(--ink-muted);
  cursor: pointer;
  letter-spacing: 0.02em;
}
.comment-action:hover { color: var(--green-dark); text-decoration: underline; }

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

/* ---------- Forms ---------- */

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-field small {
  display: block;
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-top: 4px;
}

.input, .textarea, .select {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(74, 125, 96, 0.14);
}

.textarea { min-height: 120px; resize: vertical; line-height: 1.55; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.loc-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-alt);
  border-radius: var(--radius);
}

.loc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .loc-row { grid-template-columns: 1fr; } }
.loc-field label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 4px; }
.loc-city-input { margin-top: 8px; }

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.toggle input { width: 18px; height: 18px; accent-color: var(--green); }

/* ---------- CTA banner ---------- */

.cta {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green), var(--sky-dark));
  color: var(--cream);
}

.cta h2 { color: var(--cream); }
.cta p { color: rgba(255, 249, 239, 0.85); }

.cta .btn-ghost {
  color: var(--cream);
  border-color: rgba(255, 249, 239, 0.4);
}
.cta .btn-ghost:hover {
  border-color: var(--cream);
  color: var(--cream);
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 48px 0 40px;
  text-align: center;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.site-footer .brand { justify-content: center; margin-bottom: 14px; font-size: 1.2rem; }
.site-footer-links { display: flex; gap: 24px; justify-content: center; margin-top: 14px; }
.site-footer-links a { color: var(--ink-muted); font-size: 0.88rem; }
.site-footer-links a:hover { color: var(--ink); }

/* ---------- Empty / loading states ---------- */

.empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-muted);
}

.empty-icon { font-size: 2.2rem; margin-bottom: 12px; }

.spinner {
  width: 28px;
  height: 28px;
  border: 3px solid var(--line);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 40px auto;
}

@keyframes spin { to { transform: rotate(360deg); } }

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--cream);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.92rem;
  box-shadow: var(--shadow);
  z-index: 100;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}

.toast.show { opacity: 1; transform: translateX(-50%) translateY(-4px); }
.toast.err { background: #8a3c3c; }

.hidden { display: none !important; }

/* Modal (shared with admin + report flow) */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(31, 42, 36, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
}

.modal {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow);
}

.modal h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.modal .form-field { margin: 14px 0; }

.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

/* ---------- Portrait + photos upload ---------- */

.portrait-block {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  align-items: center;
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
}

@media (max-width: 640px) {
  .portrait-block { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

.portrait-preview { width: 160px; height: 160px; }

.portrait-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-alt) center/cover no-repeat;
  box-shadow: var(--shadow-sm);
  border: 3px solid var(--bg);
}

.portrait-placeholder {
  background: linear-gradient(135deg, var(--bg-alt), var(--line));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.5;
}

.portrait-controls h3 {
  font-family: var(--font-display);
  color: var(--green-dark);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 10px;
}

.upload-status {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--ink-muted);
  min-height: 1em;
}

/* Photos */
.photos-block {
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
}

.photos-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 4px;
}

.photos-head h3 {
  font-family: var(--font-display);
  color: var(--green-dark);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}

.photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}

.photo-card {
  position: relative;
  background: var(--bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.photo-img {
  aspect-ratio: 4 / 3;
  background: var(--bg-alt) center/cover no-repeat;
}

.photo-caption {
  padding: 8px 10px 10px;
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.input-sm {
  padding: 8px 10px;
  font-size: 0.85rem;
  border-radius: 8px;
}

.photo-delete {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 0;
  background: rgba(31, 42, 36, 0.75);
  color: var(--cream);
  cursor: pointer;
  font-size: 0.85rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.15s;
}
.photo-delete:hover { background: #8a3c3c; }

.photo-add {
  aspect-ratio: 4 / 3;
  background: transparent;
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--ink-muted);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  font: inherit;
}
.photo-add:hover {
  border-color: var(--green);
  background: rgba(74, 125, 96, 0.04);
  color: var(--green-dark);
}
.photo-add-icon { font-size: 2rem; font-weight: 300; line-height: 1; }
.photo-add-label { font-size: 0.9rem; }

/* ---------- Prose — long-form text blocks (about/guidelines/etc.) ---------- */
.prose { max-width: 680px; }
.prose p { font-size: 1.02rem; line-height: 1.75; color: var(--ink); margin-bottom: 1.1em; }
.prose h1 { margin-top: 0.2em; }
.prose h2 { margin-top: 1.8em; font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; }
.prose ol, .prose ul { padding-left: 1.2em; color: var(--ink); }
.prose li { margin-bottom: 0.4em; }
.prose a { color: var(--green-dark); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(31, 42, 36, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 120;
  cursor: zoom-out;
  padding: 24px;
}
.lightbox-backdrop img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Google sign-in wrapper ---------- */

.google-signin {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.auth-gate {
  text-align: center;
  padding: 60px 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  max-width: 520px;
  margin: 40px auto;
}

.auth-gate h2 { margin-bottom: 14px; }
.auth-gate p { margin-bottom: 28px; }


.home-door {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  text-align: left;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}

.home-door:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--sage);
}

.home-door__icon {
  font-size: 1.75rem;
  margin-bottom: 16px;
  display: inline-flex;
  width: 56px; height: 56px;
  align-items: center; justify-content: center;
  background: var(--paper);
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--sage-deep);
}

.home-door__icon svg {
  width: 32px;
  height: 32px;
}

/* Hover: icon circle warms toward sage on card hover */
.home-door:hover .home-door__icon {
  background: rgba(122, 154, 128, 0.14);
  border-color: var(--sage);
  color: var(--sage-deep);
}

.home-door h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.55rem;
  margin: 0 0 8px;
  color: var(--ink);
}

.home-door p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 20px;
  flex: 1;
}

.home-door__cta {
  font-weight: 500;
  color: var(--sage-deep);
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.home-door__cta::after { content: "→"; transition: transform 0.15s; }
.home-door:hover .home-door__cta::after { transform: translateX(3px); }

/* ---------- Section headers (new homepage style) ---------- */

.home-section {
  padding: 88px 0;
}

.home-section--paper { background: var(--paper); }

.home-section__head {
  max-width: 1120px;
  margin: 0 auto 48px;
  padding: 0 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.home-section__head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.home-section__head p {
  color: var(--ink-soft);
  margin: 8px 0 0;
  max-width: 48ch;
  font-size: 0.98rem;
}

.home-section__head .link {
  font-weight: 500;
  color: var(--sage-deep);
  white-space: nowrap;
  font-size: 0.95rem;
  align-self: flex-end;
  padding-bottom: 4px;
}

.home-section__head .link::after { content: " →"; }

@media (max-width: 720px) {
  .home-section { padding: 64px 0; }
  .home-section__head { flex-direction: column; align-items: flex-start; gap: 12px; }
}


/* ---------- Portrait cards (teachers on homepage + directory later) ---------- */

.home-portraits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 1024px) { .home-portraits { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px)  { .home-portraits { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 480px)  { .home-portraits { grid-template-columns: 1fr; } }

.portrait-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s;
}

.portrait-card:hover { transform: translateY(-4px); }

.portrait-card__photo {
  aspect-ratio: 4 / 5;
  background: var(--paper) center/cover no-repeat;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}

.portrait-card__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(42, 51, 46, 0.35) 100%);
}

.portrait-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(201, 135, 108, 0.92);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.portrait-card__body {
  padding: 18px 4px 4px;
}

.portrait-card__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--ink);
  margin: 0 0 4px;
  letter-spacing: -0.005em;
}

.portrait-card__location {
  font-size: 0.84rem;
  color: var(--ink-muted);
  margin: 0 0 10px;
}

.portrait-card__bio {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.portrait-card__styles {
  font-size: 0.78rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

.portrait-card__styles span + span::before { content: " · "; }

/* Empty/placeholder portraits for the "no teachers yet" state */
.portrait-card--placeholder .portrait-card__photo {
  background:
    linear-gradient(135deg, rgba(122, 154, 128, 0.18), rgba(232, 217, 184, 0.4)),
    radial-gradient(circle at 50% 40%, rgba(255,255,255,0.6), transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.portrait-card--placeholder .portrait-card__photo::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='%23476049' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round' opacity='0.55'><circle cx='16' cy='12' r='4.5'/><path d='M7 26c0-5 4-8 9-8s9 3 9 8'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.portrait-card--placeholder .portrait-card__photo::after { display: none; }

/* Admin inline-icon badges — the small "shield · Moderator" / "lotus · Listener"
   chips in volunteer queue rows. */
.badge--inline-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.badge__icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
}
.badge__icon svg { width: 16px; height: 16px; }

/* Empty-state icons site-wide — size SVGs dropped into these slots */
.dir-empty__icon svg,
.home-empty__icon svg,
.ret-list__empty-icon svg,
.vol-status-card__icon svg,
.lr-status__icon svg,
.empty-icon svg {
  width: 52px;
  height: 52px;
  color: var(--sage-deep);
}

/* Caretaker portrait empty fallback: center the SVG inside the circle */
.caretaker-portrait--empty svg {
  width: 40%;
  height: 40%;
  color: var(--sage-deep);
  opacity: 0.6;
}

/* Dashboard teacher portrait placeholder */
.portrait-placeholder svg {
  width: 52px;
  height: 52px;
  color: var(--sage-deep);
  opacity: 0.5;
}

/* Teacher profile hero placeholder / retreat-host avatar SVG */
.prof__portrait--placeholder svg,
.ret__host-avatar svg {
  width: 48%;
  height: 48%;
  color: var(--sage-deep);
  opacity: 0.65;
}

/* Retreat photo placeholder */
.ret__photo--placeholder svg {
  width: 80px;
  height: 80px;
  color: var(--sage-deep);
  opacity: 0.55;
}

.dated-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  padding: 28px 28px 24px;
}

.dated-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--sage);
}

.dated-card__date {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--terracotta-deep);
  margin-bottom: 14px;
  font-variation-settings: "opsz" 72, "SOFT" 60;
}

.dated-card__date small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 6px;
  font-weight: 600;
}

.dated-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 14px;
}

.dated-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.dated-card__avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--paper) center/cover no-repeat;
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.dated-card__location {
  margin-left: auto;
  color: var(--ink-muted);
  font-size: 0.82rem;
}

.home-volunteer__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--sage-deep);
  color: var(--cream);
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.96rem;
  text-decoration: none;
  transition: background 0.15s, transform 0.08s;
}
.home-volunteer__cta:hover { background: var(--terracotta-deep); color: var(--cream); }
.home-volunteer__cta:active { transform: translateY(1px); }

/* ---------- Homepage-specific footer tone ---------- */

.home-footer {
  background: var(--ink);
  color: rgba(251, 250, 244, 0.72);
  padding: 64px 0 40px;
  margin-top: 40px;
}

.home-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}

.home-footer__brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.home-footer__brand-mark {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--sage), var(--sage-deep));
  display: inline-block;
}

.home-footer__tag {
  font-size: 0.88rem;
  color: rgba(251, 250, 244, 0.55);
  max-width: 42ch;
}

.home-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  font-size: 0.9rem;
}

.home-footer__nav a {
  color: rgba(251, 250, 244, 0.72);
}

.home-footer__nav a:hover { color: var(--cream); }

.home-footer__bar {
  max-width: 1120px;
  margin: 40px auto 0;
  padding: 20px 24px 0;
  border-top: 1px solid rgba(251, 250, 244, 0.14);
  font-size: 0.8rem;
  color: rgba(251, 250, 244, 0.4);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}


/* ==================================================================
   PHOTO HERO — .dir-hero* — shared photo-led hero with text overlay.
   Used on /teachers, /retreats, /about, /volunteer. Lives in base.css
   so every page that uses it picks up the rules without needing a
   page-specific stylesheet link. The "dir-" prefix is legacy (it was
   born in the directory) — rename if you do a broader naming pass.
   ================================================================== */

.dir-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 96px;
  overflow: hidden;
  isolation: isolate;
  color: var(--cream);
}

.dir-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: saturate(1.08);
}

.dir-hero::after {
  /* Dark vertical gradient for text legibility. Deeper at the bottom so
     the headline sits over readable tone. */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg,
    rgba(42, 51, 46, 0.30) 0%,
    rgba(42, 51, 46, 0.55) 55%,
    rgba(42, 51, 46, 0.72) 100%);
}

.dir-hero__inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.dir-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 96, "SOFT" 60;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  line-height: 1.05;
  color: var(--cream);
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.18);
}

.dir-hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--sand);
}

.dir-hero p {
  color: rgba(251, 250, 244, 0.92);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 52ch;
  margin: 0 auto 24px;
  line-height: 1.55;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.16);
}

.dir-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--cream);
  color: var(--sage-deep);
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.98rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, transform 0.08s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.dir-hero__cta:hover { background: var(--terracotta-deep); color: var(--cream); }
.dir-hero__cta:active { transform: translateY(1px); }

/* ==================================================================
   IMAGERY BANDS — warm yoga photography placed between sections.
   Purpose: pace, pause, inspire. Not decoration.
   ================================================================== */

/* Full-width single-image band with soft paper-toned fades top & bottom. */
.band-photo {
  position: relative;
  width: 100%;
  height: clamp(220px, 32vw, 340px);
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  overflow: hidden;
  isolation: isolate;
}

.band-photo::before,
.band-photo::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 40%;
  pointer-events: none;
  z-index: 1;
}

.band-photo::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(251, 250, 244, 0.65) 0%, rgba(251, 250, 244, 0) 100%);
}

.band-photo::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(251, 250, 244, 0.65) 0%, rgba(251, 250, 244, 0) 100%);
}

/* An optional sage-toned variant — use between a paper section and a cream section. */
.band-photo--sage::before,
.band-photo--sage::after {
  background: linear-gradient(to bottom, rgba(245, 239, 225, 0.65) 0%, rgba(245, 239, 225, 0) 100%);
}
.band-photo--sage::after { background: linear-gradient(to top, rgba(245, 239, 225, 0.65) 0%, rgba(245, 239, 225, 0) 100%); }

/* Triptych — three images side by side. Reuses the spirit of the older
   .imagery-band class but with warmer fades and no harsh saturation shift. */
.band-triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  background: var(--line);
}

@media (max-width: 780px) {
  .band-triptych { grid-template-columns: 1fr; gap: 0; }
  .band-triptych .band-triptych__frame:nth-child(n+2) { display: none; }
  /* On phone, show just one focused image — two more on scroll is overkill. */
}

.band-triptych__frame {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  position: relative;
  filter: saturate(0.95) brightness(0.98);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.band-triptych__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(251, 250, 244, 0.08) 0%, rgba(43, 51, 46, 0.18) 100%);
}

.band-triptych__frame:hover {
  filter: saturate(1.05) brightness(1.02);
  transform: scale(1.005);
}


/* ==================================================================
   NAV IDENTITY PILL — avatar + username/first-name in the top-right.
   Links to the user's public page (/t/<username>) if they have one,
   else to /dashboard. Replaces the bare avatar image.
   ================================================================== */

.nav-identity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 3px 14px 3px 3px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid transparent;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
  max-width: 180px;
}

.nav-identity:hover {
  border-color: var(--sage);
  color: var(--ink);
}

.nav-identity__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
  flex-shrink: 0;
  background: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--sage-deep);
}

.nav-identity__avatar--fallback {
  background: linear-gradient(135deg, rgba(122, 154, 128, 0.2), rgba(232, 217, 184, 0.45));
}

.nav-identity__label {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
}

/* Tight mobile: hide the label, keep the avatar circle tappable */
@media (max-width: 560px) {
  .nav-identity {
    padding: 2px;
    max-width: none;
  }
  .nav-identity__label { display: none; }
}

/* ==================================================================
   NAV NOTIFICATION BELL
   ================================================================== */

.nav-bell-wrap { position: relative; display: inline-block; }

.nav-bell {
  background: transparent;
  border: 0;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--ink);
  line-height: 0;
  position: relative;
  transition: background 0.15s, color 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-bell:hover { background: var(--paper); color: var(--sage-deep); }
.nav-bell[aria-expanded="true"] { background: var(--paper); }

.nav-bell__count {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.68rem;
  line-height: 1;
  padding: 3px 6px;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid var(--bg);
  min-width: 18px;
  text-align: center;
}

.nav-bell__panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 360px;
  max-width: calc(100vw - 32px);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 100;
  max-height: 480px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.nav-bell__head {
  padding: 14px 18px 10px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink);
  position: sticky;
  top: 0;
  background: var(--cream);
  z-index: 1;
}

.nav-bell__mark-all {
  background: transparent;
  border: 0;
  color: var(--sage-deep);
  font-size: 0.82rem;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 4px 8px;
}
.nav-bell__mark-all:hover { color: var(--terracotta-deep); text-decoration: underline; }

.nav-bell__item {
  display: block;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: background 0.12s;
  position: relative;
}

.nav-bell__item:hover { background: var(--paper); }
.nav-bell__item:last-child { border-bottom: 0; }

.nav-bell__item.unread {
  background: rgba(122, 154, 128, 0.06);
}
.nav-bell__item.unread::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 22px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage-deep);
}
.nav-bell__item.unread { padding-left: 22px; }

.nav-bell__title {
  font-weight: 500;
  font-size: 0.94rem;
  margin-bottom: 4px;
  line-height: 1.35;
}

.nav-bell__body {
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.5;
  margin-bottom: 4px;
}

.nav-bell__time {
  color: var(--ink-muted);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}

.nav-bell__empty {
  padding: 40px 24px;
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

@media (max-width: 480px) {
  .nav-bell__panel { width: calc(100vw - 16px); right: -8px; }
}
