/* ============================================================
   Erik Johnston Counseling — v10 Design System
   Sized to match children's site scale and fullness.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');
@import url('/assets/css/audience-switch.css');

/* ── THEME VARIABLES ── */
:root {
  --bg:           #FFFBF2;
  --bg2:          #F5F0E8;
  --surface:      #FFFFFF;
  --ink:          #1a1a1a;
  --ink2:         rgba(26,26,26,0.58);
  --ink3:         rgba(26,26,26,0.3);
  --teal:         #26AEBC;
  --teal-soft:    rgba(38,174,188,0.13);
  --teal-mid:     rgba(38,174,188,0.3);
  --teal-ring:    rgba(38,174,188,0.22);
  --gold:         #b08000;
  --gold-ring:    rgba(246,192,51,0.3);
  --glyph:        #26AEBC;
  --glyph-fill:   rgba(38,174,188,0.18);
  --border:       rgba(38,174,188,0.18);
  --nav-bg:       #26AEBC;
  --nav-text:     #ffffff;
  --nav-link:     rgba(255,255,255,0.82);
  --btn-bg:       #26AEBC;
  --btn-text:     #ffffff;
  --btn-border:   #26AEBC;
  --pill-bg:      rgba(38,174,188,0.09);
  --pill-border:  rgba(38,174,188,0.28);
  --tile-bg:      #ffffff;
  --toggle-bg:    #1a2e2e;
  --toggle-text:  #FFFBF2;
  --toggle-bdr:   rgba(255,255,255,0.2);
  --shadow:       0 2px 24px rgba(38,174,188,0.08);
  --T:            0.45s cubic-bezier(0.4,0,0.2,1);
  --pad:          clamp(24px, 5vw, 56px);
}

body.dark {
  --bg:           #111a14;
  --bg2:          #0d1510;
  --surface:      #162018;
  --ink:          #f0ede6;
  --ink2:         rgba(240,237,230,0.52);
  --ink3:         rgba(240,237,230,0.25);
  --teal-soft:    rgba(38,174,188,0.1);
  --teal-mid:     rgba(38,174,188,0.22);
  --teal-ring:    rgba(38,174,188,0.18);
  --gold:         rgba(246,192,51,0.75);
  --gold-ring:    rgba(246,192,51,0.22);
  --glyph:        rgba(38,174,188,0.88);
  --glyph-fill:   rgba(38,174,188,0.18);
  --border:       rgba(38,174,188,0.15);
  --nav-bg:       #0a1410;
  --nav-text:     #26AEBC;
  --nav-link:     rgba(240,237,230,0.42);
  --btn-bg:       transparent;
  --btn-text:     #26AEBC;
  --btn-border:   #26AEBC;
  --pill-bg:      rgba(38,174,188,0.08);
  --pill-border:  rgba(38,174,188,0.2);
  --tile-bg:      #111a14;
  --toggle-bg:    #FFFBF2;
  --toggle-text:  #1a1a1a;
  --toggle-bdr:   rgba(26,26,26,0.18);
  --shadow:       0 2px 24px rgba(0,0,0,0.4);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* BASE: 18px to match children's site */
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.75;
  transition: background var(--T), color var(--T);
  min-height: 100vh;
}

/* ── FIXED HEADER STACK ──
   audience-switch 0–52 | main-nav 52–100 | services 100–134
*/
#site-chrome {
  /* structural only — children are independently fixed */
  display: contents;
}

/* Legacy banner IDs kept as no-ops if any page still references them */
#couplesBanner,
#childrenBanner { display: none !important; }

/* Reserve space: 52 + 48 + 34 = 134 */
#wrapper {
  padding-top: 134px;
}

#services-nav {
  position: fixed;
  top: 100px; left: 0; right: 0;
  z-index: 1000;
  height: 34px;
  box-sizing: border-box;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  padding: 0 var(--pad);
}
#services-nav::-webkit-scrollbar { display: none; }
#services-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink2);
  text-decoration: none;
  padding: 0 1.1rem;
  height: 34px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
}
#services-nav a:hover { color: var(--teal); }
#services-nav a.active { color: var(--teal); border-bottom-color: var(--teal); }

/* mini symbols in secondary services nav */
#services-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
#services-nav .svc-nav-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
  opacity: 0.85;
}
#services-nav a:hover .svc-nav-icon,
#services-nav a.active .svc-nav-icon {
  opacity: 1;
  color: var(--teal);
}

/* Dreams & Sand dropdown in services nav */
#services-nav details.svc-nav-drop {
  position: relative;
  height: 34px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
#services-nav details.svc-nav-drop > summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink2);
  padding: 0 1.1rem;
  height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  box-sizing: border-box;
}
#services-nav details.svc-nav-drop > summary::-webkit-details-marker { display: none; }
#services-nav details.svc-nav-drop > summary::marker { content: ""; }
#services-nav details.svc-nav-drop > summary:hover,
#services-nav details.svc-nav-drop[open] > summary,
#services-nav details.svc-nav-drop.active > summary {
  color: var(--teal);
}
#services-nav details.svc-nav-drop.active > summary {
  border-bottom-color: var(--teal);
}
#services-nav details.svc-nav-drop > summary:hover .svc-nav-icon,
#services-nav details.svc-nav-drop[open] > summary .svc-nav-icon,
#services-nav details.svc-nav-drop.active > summary .svc-nav-icon {
  opacity: 1;
  color: var(--teal);
}
#services-nav details.svc-nav-drop > summary .svc-nav-caret {
  font-size: 0.55rem;
  opacity: 0.7;
  margin-left: 0.1rem;
  transform: translateY(1px);
}
#services-nav .svc-nav-drop-panel {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  z-index: 1200;
  min-width: 11.5rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
  padding: 0.35rem 0;
  display: flex;
  flex-direction: column;
}
#services-nav .svc-nav-drop-panel a {
  height: auto;
  min-height: 2.25rem;
  padding: 0.55rem 1.1rem;
  border-bottom: none;
  letter-spacing: 0.08em;
  width: 100%;
  box-sizing: border-box;
}
#services-nav .svc-nav-drop-panel a:hover {
  background: var(--teal-soft);
  color: var(--teal);
}
#services-nav .svc-nav-drop-panel a.active {
  color: var(--teal);
  border-bottom: none;
  background: var(--teal-soft);
}
/* When dropdown is open, don't clip the panel */
#services-nav:has(details.svc-nav-drop[open]) {
  overflow: visible;
}


/* ── NAV ── */
nav#main-nav {
  position: fixed;
  top: 52px; left: 0; right: 0;
  z-index: 1001;
  height: 48px;
  box-sizing: border-box;
  background: var(--nav-bg);
  display: flex;
  align-items: center;
  padding: 0 var(--pad);
  transition: background var(--T);
  box-shadow: var(--shadow);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--nav-text);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--T);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav-links a {
  color: var(--nav-link);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  padding: 0 18px;
  height: 48px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  border-right: 1px solid rgba(255,255,255,0.12);
}
body.dark .nav-links a { border-right-color: rgba(38,174,188,0.12); }
.nav-links a:first-child { border-left: 1px solid rgba(255,255,255,0.12); }
body.dark .nav-links a:first-child { border-left-color: rgba(38,174,188,0.12); }
.nav-links a:hover, .nav-links a.active { color: var(--nav-text); }

#dayToggle {
  margin-left: 16px;
  background: var(--toggle-bg);
  color: var(--toggle-text);
  border: 1px solid var(--toggle-bdr);
  font-family: 'Jost', sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: background var(--T), color var(--T), border-color var(--T);
  white-space: nowrap;
  flex-shrink: 0;
}
#dayToggle:hover { opacity: 0.85; }

/* ── PAGE HEADER ── */
.page-header {
  margin-top: 0;
  padding: clamp(20px,3vw,36px) var(--pad) clamp(32px,4vw,52px);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background var(--T), border-color var(--T);
}
.page-header .eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  transition: color var(--T);
}
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.15;
  position: relative;
  z-index: 2;
  transition: color var(--T);
}
.page-header h1 em { color: var(--teal); font-style: italic; }
.page-header .lede {
  font-size: 1.18rem;
  color: var(--ink2);
  line-height: 1.8;
  max-width: 58ch;
  margin-top: 18px;
  position: relative;
  z-index: 2;
  transition: color var(--T);
}

/* ── MAIN CONTENT ── */
.page-body {
  max-width: 72ch;
  margin: 0 auto;
  padding: clamp(32px,5vw,56px) var(--pad) clamp(48px,7vw,80px);
}

.page-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 300;
  color: var(--ink);
  margin: 48px 0 16px;
  line-height: 1.2;
  transition: color var(--T);
}
.page-body h2:first-child { margin-top: 0; }
.page-body h2 em { color: var(--teal); font-style: italic; }

.page-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--ink);
  margin: 32px 0 12px;
  transition: color var(--T);
}

.page-body p {
  font-size: 1.12rem;
  color: var(--ink2);
  line-height: 1.9;
  margin-bottom: 22px;
  transition: color var(--T);
}

.page-body a:not(.ej-btn) { color: var(--teal); text-underline-offset: 3px; }

.page-body ul, .page-body ol {
  margin: 0 0 20px 24px;
}
.page-body li {
  font-size: 1.12rem;
  color: var(--ink2);
  line-height: 1.85;
  margin-bottom: 8px;
  transition: color var(--T);
}

/* ── DIVIDER ── */
.ej-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 var(--pad);
  margin: 8px 0;
}
.ej-divider .line { flex: 1; height: 1px; background: var(--border); transition: background var(--T); }
.ej-divider .c  { width: 9px; height: 9px; border-radius: 50%; border: 1px solid var(--teal-mid); transition: border-color var(--T); }
.ej-divider .c2 { width: 5px; height: 5px; border-radius: 50%; border: 1px solid var(--gold-ring); transition: border-color var(--T); }

/* ── JUNG PILL ── */
.jung-pill {
  background: var(--pill-bg);
  border: 1px solid var(--pill-border);
  border-radius: 90px;
  padding: clamp(22px,3vw,36px) clamp(28px,5vw,56px);
  text-align: center;
  margin: 0 var(--pad);
  position: relative;
  overflow: hidden;
  transition: background var(--T), border-color var(--T);
}
.jung-pill blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.7;
  margin-bottom: 10px;
  transition: color var(--T);
}
.jung-pill cite {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  transition: color var(--T);
}

/* ── CTA BUTTON ── */
.ej-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--btn-bg);
  color: var(--btn-text);
  border: 1.5px solid var(--btn-border);
  font-family: 'Jost', sans-serif;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--T), color var(--T), border-color var(--T);
}
.ej-btn:hover { opacity: 0.82; }
.ej-btn.ghost {
  background: transparent;
  color: var(--teal);
}

/* ── SERVICE TILES ── */
#services-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: border-color var(--T);
}
.svc-tile {
  padding: clamp(24px,3vw,36px) 20px clamp(20px,2.5vw,30px);
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  background: var(--tile-bg);
  transition: background var(--T), border-color var(--T);
  text-decoration: none;
  display: block;
}
.svc-tile:last-child { border-right: none; }
.svc-tile:hover { background: var(--teal-soft); }
.svc-tile.active { background: var(--teal-soft); }

.svc-glyph {
  width: 92px; height: 92px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-glyph svg { width: 100%; height: 100%; overflow: visible; }

.svc-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
  text-align: center;
  transition: color var(--T);
}
.svc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ink);
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color var(--T);
}
.svc-desc {
  font-size: 1rem;
  color: var(--ink2);
  text-align: center;
  line-height: 1.65;
  transition: color var(--T);
}
.svc-readmore {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  transition: color var(--T);
}

/* ── SITE KEY — light cream in light mode; deep green in dark ── */
#site-key {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: clamp(32px,4vw,52px) var(--pad);
  transition: background var(--T), border-color var(--T);
}
body.dark #site-key {
  background: #111a14;
  border-top-color: rgba(38,174,188,0.15);
}
.site-key-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}
.site-key-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.site-key-col.children h4 { color: #c49200; }
.site-key-col.couples h4 { color: #6a7f60; }
body.dark .site-key-col.children h4 { color: #F6C033; }
body.dark .site-key-col.couples h4 { color: #8a9f7e; }
.site-key-col ul { list-style: none; columns: 1; column-gap: 20px; }
.site-key-col ul li { margin-bottom: 8px; break-inside: avoid; }
.site-key-col ul li a {
  font-size: 1rem;
  color: var(--ink2);
  text-decoration: none;
}
.site-key-col ul li a:hover { color: var(--teal); text-decoration: underline; }
.site-key-col.children ul li a { color: #a67c00; }
.site-key-col.couples ul li a { color: #5f7356; }
body.dark .site-key-col ul li a { color: #26AEBC; }
body.dark .site-key-col.children ul li a { color: #F6C033; }
body.dark .site-key-col.couples ul li a { color: #8a9f7e; }

/* ── FOOTER — soft end-of-page (not stark black) ── */
footer#main-footer {
  background: #2c3632;
  border-top: 2px solid rgba(38,174,188,0.25);
  padding: clamp(20px,3vw,32px) var(--pad) clamp(24px,3.5vw,36px);
  color: rgba(255,251,242,0.88);
}
body.dark footer#main-footer {
  background: #0d1510;
  border-top-color: rgba(38,174,188,0.2);
}
.footer-crisis { margin-bottom: 16px; }
.footer-crisis p {
  font-size: 0.86rem;
  font-weight: 600;
  color: #e05a4e;
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.footer-info {
  font-size: 0.96rem;
  color: rgba(255,251,242,0.78);
  line-height: 2;
}
.footer-info a { color: #7ed4de; text-decoration: none; }
.footer-info a:hover { color: #a8e8ef; text-decoration: underline; }
.footer-dots {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-top: 16px;
}

/* ── AMBIENT CIRCLES ── */
.ambient { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

/* ── RATES TABLE ── */
.rates-table { width: 100%; border-collapse: collapse; margin: 28px 0; }
.rates-table td {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  color: var(--ink2);
  transition: color var(--T), border-color var(--T);
}
.rates-table td:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--ink);
  font-weight: 400;
  width: 60%;
}
.rates-table td:last-child {
  text-align: right;
  font-weight: 500;
  color: var(--teal);
  font-size: 1.35rem;
}

/* ── CONTACT GRID ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 32px;
}
.contact-info-block {
  background: var(--teal-soft);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px;
  transition: background var(--T), border-color var(--T);
}
.contact-info-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 18px;
  transition: color var(--T);
}
.contact-info-block p {
  font-size: 1.05rem;
  color: var(--ink2);
  line-height: 1.85;
  margin-bottom: 14px;
  transition: color var(--T);
}
.contact-info-block a { color: var(--teal); text-decoration: none; }
.contact-info-block a:hover { text-decoration: underline; }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  transition: border-color var(--T);
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
  transition: color var(--T);
}
.faq-a {
  font-size: 1.08rem;
  color: var(--ink2);
  line-height: 1.9;
  transition: color var(--T);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links a { font-size: 0.78rem; padding: 0 10px; }
  .nav-logo { font-size: 1rem; }
  #services-strip { grid-template-columns: repeat(2,1fr); }
  .svc-tile:nth-child(2) { border-right: none; }
  .svc-tile:nth-child(1),
  .svc-tile:nth-child(2) { border-bottom: 1px solid var(--border); }
  .contact-grid { grid-template-columns: 1fr; }
  .site-key-grid { grid-template-columns: 1fr; gap: 28px; }
  .site-key-col ul { columns: 1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  #dayToggle { margin-left: auto; }
  .page-header, .page-body { padding-left: 20px; padding-right: 20px; }
  .ej-divider { padding: 0 20px; }
  .jung-pill { margin: 0 16px; padding: 20px 22px; }
  #wrapper { padding-top: 132px; }
  nav#main-nav { top: 48px; height: 48px; }
  #services-nav { top: 96px; }
  #dayToggle { font-size: 0.62rem; padding: 6px 10px; }
  .nav-logo { font-size: 0.9rem; max-width: 180px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  #hero { grid-template-columns: 1fr !important; gap: 28px !important; padding-top: 16px !important; }
  #hero img { width: 200px !important; height: 200px !important; margin: 0 auto; }
  #services-strip { grid-template-columns: 1fr !important; }
  .svc-tile { border-right: none !important; border-bottom: 1px solid var(--border); }
  .svc-tile:last-child { border-bottom: none; }
}

/* Floating info pill — same method as couples.
   Light mode uses cream pill + teal text (never teal-on-teal).
   Dark mode uses deep surface + bright teal labels. */
#info-tab-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0;
  z-index: 900;
  background: #FFFBF2;
  border: 1px solid rgba(38, 174, 188, 0.35);
  border-radius: 999px;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.14);
}
#info-tab-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  text-decoration: none;
  border-right: 1px solid rgba(38, 174, 188, 0.22);
  transition: background 0.2s;
  min-width: 90px;
}
#info-tab-bar a:last-child { border-right: none; }
#info-tab-bar a:hover { background: rgba(38, 174, 188, 0.1); }
#info-tab-bar .tab-label {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a7f8a;
  line-height: 1.2;
}
#info-tab-bar .tab-sub {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(26, 26, 26, 0.62);
  line-height: 1.2;
  white-space: nowrap;
}
body.dark #info-tab-bar {
  background: #12201c;
  border-color: rgba(196, 162, 106, 0.28);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}
body.dark #info-tab-bar a {
  border-right-color: rgba(255, 255, 255, 0.08);
}
body.dark #info-tab-bar a:hover {
  background: rgba(38, 174, 188, 0.12);
}
body.dark #info-tab-bar .tab-label {
  color: #5fd0de;
}
body.dark #info-tab-bar .tab-sub {
  color: rgba(240, 232, 216, 0.62);
}
@media (max-width: 768px) {
  #info-tab-bar { bottom: 16px; width: calc(100% - 32px); }
  #info-tab-bar a { padding: 10px 12px; min-width: 0; flex: 1; }
  #info-tab-bar .tab-sub { display: none; }
  #info-tab-bar .tab-label { font-size: 0.65rem; }
}

