/* ---------- tokens ---------- */
:root {
  --bg: #26222b;
  --bg-raised: #342d3a;
  --ink: #f2eef6;
  --ink-dim: #a79fb3;
  --ink-faint: #6f6879;
  --line: rgba(255, 255, 255, 0.09);
  --line-bright: rgba(255, 255, 255, 0.2);

  --spice-1: #ff3d6e;
  --spice-2: #ff8a3d;
  --spice-3: #c23bff;
  --deep-blue: #2c3fa8;

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 9px;
  --container: 1650px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html { color-scheme: dark; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Quicksand', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0;
}

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- age gate ---------- */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 12, 18, 0.86);
  backdrop-filter: blur(20px);
  transition: opacity 0.4s var(--ease);
}
html.age-verified .age-gate { display: none; }
.age-gate--hide { opacity: 0; pointer-events: none; }
.age-gate-card {
  max-width: 460px;
  width: 100%;
  background: var(--bg-raised);
  border: 1px solid var(--line-bright);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 40px);
  text-align: center;
}
.age-gate-badge {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--spice-1);
  margin-bottom: 14px;
  font-weight: 700;
}
.age-gate-card h2 { font-size: 1.4rem; margin-bottom: 14px; }
.age-gate-card p { color: var(--ink-dim); font-size: 0.92rem; line-height: 1.6; }
.age-gate-actions { display: flex; flex-direction: column; gap: 12px; margin: 26px 0 18px; }
.age-gate-actions .btn { width: 100%; justify-content: center; }
.age-gate-legal { font-size: 0.78rem; }
.age-gate-legal a { text-decoration: underline; color: var(--ink-dim); }

/* ---------- telegram bots strip ---------- */
.telegram-strip {
  padding-bottom: 36px;
}
.telegram-strip-head {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 24px;
}
.telegram-circles { display: flex; gap: 30px; flex-wrap: wrap; }
.telegram-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.telegram-circle-media {
  display: block;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #26A5E4;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.telegram-circle-media img, .telegram-circle-media video {
  width: 100%; height: 100%; object-fit: cover;
}
.telegram-circle-label {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}
.telegram-circle:hover .telegram-circle-media {
  border-color: var(--spice-1);
  transform: scale(1.06);
}

/* ---------- landing aurora background ---------- */
.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.aurora-bg span {
  position: absolute;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.38;
  mix-blend-mode: screen;
}
.aurora-bg span:nth-child(1) {
  top: -15%;
  left: -10%;
  background: var(--deep-blue);
  animation: auroraDrift1 26s ease-in-out infinite;
}
.aurora-bg span:nth-child(2) {
  top: 20%;
  right: -15%;
  background: var(--spice-1);
  animation: auroraDrift2 32s ease-in-out infinite;
}
.aurora-bg span:nth-child(3) {
  bottom: -20%;
  left: 20%;
  background: var(--spice-3);
  animation: auroraDrift3 30s ease-in-out infinite;
}
@keyframes auroraDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8vw, 10vh) scale(1.15); }
}
@keyframes auroraDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-10vw, 8vh) scale(1.1); }
}
@keyframes auroraDrift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(6vw, -12vh) scale(1.2); }
}
@media (prefers-reduced-motion: reduce) {
  .aurora-bg span { animation: none; }
}

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(38, 34, 43, 0.6);
  border-bottom: 1px solid var(--line);
  transition: transform 0.35s var(--ease);
  will-change: transform;
}
.nav--hidden { transform: translateY(-100%); }

/* ---------- floating hamburger menu ---------- */
.menu-fab {
  display: none; /* shown on mobile only */
  position: fixed;
  top: 16px; right: 16px;
  z-index: 60;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(38, 34, 43, 0.72);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line-bright);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 10px 26px -10px rgba(0,0,0,0.7);
}
.menu-fab span {
  display: block;
  width: 20px; height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.menu-open .menu-fab span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-fab span:nth-child(2) { opacity: 0; }
.menu-open .menu-fab span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(20, 16, 24, 0.82);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.menu-open .menu-overlay { opacity: 1; pointer-events: auto; }
.menu-panel {
  position: absolute;
  top: 76px; right: 16px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  border-radius: 18px;
  background: var(--bg-raised);
  border: 1px solid var(--line-bright);
  box-shadow: 0 30px 60px -24px rgba(0,0,0,0.7);
  transform: translateY(-8px) scale(0.98);
  transition: transform 0.3s var(--ease);
}
.menu-open .menu-panel { transform: translateY(0) scale(1); }
.menu-panel a {
  padding: 13px 14px;
  border-radius: 10px;
  color: var(--ink);
  font-weight: 600;
  transition: background 0.2s var(--ease);
}
.menu-panel a:hover { background: rgba(255,255,255,0.06); }
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}
.brand span {
  background: var(--spice-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 0.92rem;
  color: var(--ink-dim);
  transition: color 0.25s var(--ease);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--spice-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { transform: scaleX(1); }

/* ---------- hero carousel ---------- */
.hero-carousel {
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(56px, 7vw, 96px);
}
.carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-raised);
  touch-action: pan-y;
}
.carousel-track {
  display: flex;
  will-change: transform;
}
.carousel-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: clamp(360px, 46vw, 560px);
  overflow: hidden;
}
.carousel-slide img, .carousel-slide video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(38,34,43,0.9) 8%, rgba(38,34,43,0.45) 50%, rgba(38,34,43,0.1) 100%);
}
.slide-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
  padding: clamp(36px, 8vw, 56px) clamp(28px, 5vw, 64px) clamp(36px, 8vw, 56px) clamp(64px, 10vw, 100px);
}
.slide-content h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  line-height: 1.3;
}
.slide-content h2 em {
  font-style: normal;
  background: var(--spice-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.slide-content p {
  margin-top: 20px;
  max-width: 44ch;
  color: var(--ink-dim);
  font-size: 1.02rem;
}
.slide-content .hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 600;
  border: 1px solid var(--line-bright);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn-solid {
  background: var(--spice-1);
  color: #140a10;
  border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid:hover { box-shadow: 0 12px 32px -8px rgba(255, 61, 110, 0.55); }
.btn-ghost:hover { border-color: var(--ink); }

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(38, 34, 43, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.carousel-arrow:hover { background: rgba(38, 34, 43, 0.8); border-color: var(--line-bright); }
.carousel-arrow.prev { left: 18px; }
.carousel-arrow.next { right: 18px; }

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition: width 0.3s var(--ease), background 0.3s var(--ease);
  /* visible dot stays small; hit area is enlarged via a transparent halo */
  position: relative;
}
.carousel-dot::before {
  content: '';
  position: absolute;
  inset: -14px;
}
.carousel-dot.active { width: 24px; background: var(--spice-2); }

@media (max-width: 640px) {
  .carousel-arrow { display: none; }
}

/* ---------- section heading ---------- */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.section-head p { color: var(--ink-dim); margin: 10px 0 0; max-width: 50ch; }
.count-pill {
  font-size: 0.82rem;
  color: var(--ink-dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  white-space: nowrap;
}

/* ---------- account grid ---------- */
.accounts { padding-top: 20px; padding-bottom: clamp(70px, 8vw, 120px); position: relative; }
.category-row + .category-row { margin-top: 64px; }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
}
@media (max-width: 640px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--bg-raised);
  overflow: hidden;
  display: block;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  will-change: transform;
}
.card:hover {
  border-color: var(--line-bright);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -24px rgba(0,0,0,0.6);
}

/* rainbow gradient border, Newcomers cards, hover only */
.card--newcomer {
  --border-width: 2px;
}
.card--newcomer::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  padding: var(--border-width);
  background: linear-gradient(
    60deg,
    hsl(224, 85%, 66%),
    hsl(269, 85%, 66%),
    hsl(314, 85%, 66%),
    hsl(359, 85%, 66%),
    hsl(44, 85%, 66%),
    hsl(89, 85%, 66%),
    hsl(134, 85%, 66%),
    hsl(179, 85%, 66%)
  );
  background-size: 300% 300%;
  background-position: 0 50%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  animation: moveGradient 4s alternate infinite;
}
.card--newcomer:hover::after { opacity: 1; }

@keyframes moveGradient {
  50% { background-position: 100% 50%; }
}

.card-media { position: absolute; inset: 0; }
.card-media img, .card-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.card:hover .card-media img, .card:hover .card-media video { transform: scale(1.06); }
.card-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(38,34,43,0) 38%, rgba(20,17,23,0.94) 100%);
}
.card-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 20px;
}
.card h3 {
  font-size: 1.18rem;
  color: #fff;
}
.card-desc {
  margin: 8px 0 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---------- profile page (single rounded card on a neutral page bg) ---------- */
.profile-page {
  background: var(--bg);
  min-height: 100vh;
}
.profile-inner {
  padding: clamp(20px, 4vw, 48px) 16px;
}
.profile-card {
  max-width: 420px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  background: var(--accent-bg);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6);
}
.profile-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.profile-photo img, .profile-photo video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.photo-tint {
  position: absolute;
  inset: 0;
  /* Regular linear wash in sexy pink/purple — keeps the photo's real
     colors instead of the old color-blend duotone. */
  background: linear-gradient(155deg, rgba(255, 61, 110, 0.28) 0%, rgba(194, 59, 255, 0.16) 45%, rgba(0, 0, 0, 0) 78%);
}
.photo-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 32%, var(--accent-bg) 96%);
}
.profile-info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  text-align: center;
  padding: 0 20px 28px;
}
.profile-info h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.profile-info .description {
  max-width: 48ch;
  margin: 16px auto 0;
  color: rgba(255,255,255,0.88);
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}
.content-tile-wrap {
  padding: 20px 20px 0;
}
/* Content button matches .chat-btn, with the platform label lowercased */
.content-btn .link-label { text-transform: lowercase; }

.link-list {
  position: relative;
  padding: 14px 20px 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.profile-rights {
  text-align: center;
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 10px 20px 28px;
}
.chat-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 14px;
  background: #fff;
  color: #14121a;
  font-weight: 700;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.chat-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -16px rgba(0, 0, 0, 0.5);
}
.chat-btn--facebook {
  background: #0866ff;
  color: #fff;
}
.chat-btn .link-icon {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.chat-btn .link-icon svg { width: 22px; height: 22px; }

/* ---------- contact ---------- */
.contact-section {
  padding: clamp(60px, 10vw, 120px) 0;
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
.contact-grid h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
.contact-grid .lead { margin-top: 20px; color: var(--ink-dim); max-width: 42ch; }

/* Honeypot: off-screen (not display:none, so bots still fill it) */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.form-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(16px);
  padding: clamp(24px, 3vw, 40px);
}
.field { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 0.82rem; color: var(--ink-dim); }
.field input, .field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.96rem;
  resize: vertical;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--spice-2);
  background: rgba(255,255,255,0.06);
}
.field-error {
  min-height: 1em;
  font-size: 0.8rem;
  color: #e0708a;
}
.field.invalid input, .field.invalid textarea {
  border-color: #e0708a;
}
.form-card .btn { padding-left: 24px; padding-right: 24px; margin-top: 6px; }

.field-checkbox { margin-bottom: 18px; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--ink-dim);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--spice-1);
}
.checkbox-label a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.checkbox-label a:hover { color: var(--spice-1); }
.field-checkbox.invalid .checkbox-label { color: #e0708a; }

/* ---------- legal pages ---------- */
.legal-section { padding: clamp(60px, 10vw, 120px) 0; }
.legal-wrap { max-width: 720px; }
.legal-updated {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--ink-faint);
  margin-bottom: 14px;
}
.legal-wrap h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
.legal-wrap .lead { margin-top: 18px; color: var(--ink-dim); max-width: 60ch; }
.legal-wrap h2 {
  font-size: 1.15rem;
  margin-top: 40px;
  margin-bottom: 12px;
}
.legal-wrap p { color: var(--ink-dim); max-width: 68ch; }
.legal-wrap a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.legal-wrap a:hover { color: var(--spice-1); }

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
  color: var(--ink-faint);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer a:hover { color: var(--ink-dim); }

/* ---------- reveal ---------- */
[data-reveal] { opacity: 0; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}

/* ---------- mobile tuning ---------- */
@media (max-width: 640px) {
  /* Smaller type across the whole site (rem-based sizes scale down) */
  html { font-size: 14px; }

  /* Compact header */
  .nav .wrap { height: 54px; }
  .brand { font-size: 1.1rem; }

  /* Hero: centered text, smaller, symmetric padding */
  .slide-content {
    text-align: center;
    align-items: center;
    max-width: none;
    padding: 32px 22px;
  }
  .slide-content h2 { font-size: clamp(1.4rem, 6vw, 1.9rem); }
  .slide-content p { margin-left: auto; margin-right: auto; }
  .slide-content .hero-actions { justify-content: center; }

  /* Hide bio/description text on mobile */
  .description { display: none; }

  /* No header bar on mobile — replaced by the floating hamburger menu */
  .nav { display: none; }
  .menu-fab { display: flex; }
  .profile-inner { padding-top: 10px; }
}
