/* =================================================================
   Dr. Jiten Patel, personal site
   Design system: clean, light, editorial. One blue accent.
   Serif headings (Newsreader), sans body (Inter). Mobile-first.
   ================================================================= */

/* ---------- Tokens ---------- */
:root {
  --bg: #ffffff;
  --bg-alt: #f8fafc;

  --text: #0f172a;
  --text-2: #475569;
  --text-faint: #94a3b8;

  --border: #e2e8f0;

  --blue: #2563eb;
  --blue-hover: #1d4ed8;
  --blue-tint: #eff6ff;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px -16px rgba(15, 23, 42, 0.22);
  --shadow-lg: 0 18px 40px -20px rgba(15, 23, 42, 0.18);

  --radius: 12px;
  --radius-btn: 10px;

  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--blue); color: #fff; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.center { text-align: center; }

@media (min-width: 768px) {
  .wrap { padding: 0 32px; }
  .section { padding: 112px 0; }
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
}
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}
.section-title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-top: 12px; }
.lead { color: var(--text-2); font-size: 1.0625rem; max-width: 60ch; }
.muted { color: var(--text-2); }

.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head .lead { margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px;
  padding: 11px 22px;
  border-radius: var(--radius-btn);
  font-family: var(--sans);
  font-weight: 600; font-size: 0.95rem;
  border: 1px solid transparent;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--blue-hover); }
.btn-secondary { background: #fff; color: var(--text); border-color: var(--border); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); }
.btn-sm { min-height: 40px; padding: 9px 18px; font-size: 0.9rem; }

.text-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 0.95rem; color: var(--blue);
  transition: gap 0.2s var(--ease);
}
.text-link svg { width: 16px; height: 16px; }
.text-link:hover { gap: 9px; color: var(--blue-hover); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 64px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; }
.brand .mono-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--blue); color: #fff;
  display: grid; place-items: center;
  font-family: var(--sans); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.02em;
}
.brand .brand-name { font-family: var(--serif); font-weight: 600; font-size: 1.1rem; letter-spacing: -0.01em; }

.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 0.92rem; font-weight: 500; color: var(--text-2);
  padding: 8px 12px; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--bg-alt); }
.nav-links a.active { color: var(--blue); }
.nav-menu .btn { margin-left: 8px; }

.menu-btn { display: none; width: 44px; height: 44px; border-radius: 9px; place-items: center; border: 1px solid var(--border); background: #fff; }
.menu-btn svg { width: 22px; height: 22px; color: var(--text); }

@media (max-width: 860px) {
  .menu-btn { display: grid; }
  .nav-menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 6px;
    background: #fff; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 12px 20px 18px;
    display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-links a { padding: 12px 14px; font-size: 1rem; }
  .nav-menu .btn { margin-left: 0; margin-top: 6px; width: 100%; }
}

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); background: var(--bg-alt); }
.footer-cta { padding: 80px 0 64px; max-width: 620px; }
.footer-cta .eyebrow { margin-bottom: 16px; }
.footer-headline { font-size: clamp(2rem, 4.5vw, 3rem); }
.footer-cta p { color: var(--text-2); margin-top: 16px; font-size: 1.0625rem; max-width: 48ch; }
.footer-contact { display: flex; flex-wrap: wrap; gap: 8px 28px; margin-top: 24px; font-size: 0.95rem; color: var(--text-2); }
.footer-contact a { color: var(--blue); font-weight: 500; }
.footer-contact a:hover { color: var(--blue-hover); }
.footer-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 32px; }

.socials { display: flex; gap: 10px; flex-wrap: wrap; }
.social {
  width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center;
  background: #fff; border: 1px solid var(--border); color: var(--text-2);
  transition: color 0.2s, border-color 0.2s, transform 0.2s var(--ease);
}
.social:hover { color: var(--blue); border-color: var(--blue); transform: translateY(-2px); }
.social svg { width: 19px; height: 19px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  color: var(--text-faint); font-size: 0.85rem;
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.06s; }
.reveal.d2 { transition-delay: 0.12s; }
.reveal.d3 { transition-delay: 0.18s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =================================================================
   HERO (home)
   ================================================================= */
.hero { padding: 56px 0 64px; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.hero h1 { font-size: clamp(2.75rem, 6vw, 4.5rem); margin-top: 20px; font-weight: 500; }
.hero h1 .accent { color: var(--blue); }
.hero h1 .line { display: block; }
.hero-intro { margin-top: 24px; font-size: 1.125rem; color: var(--text-2); max-width: 46ch; }
.hero-cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center;
  margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border);
  font-size: 0.9rem; color: var(--text-2);
}
.hero-stats .sep { color: var(--border); }
.hero-stats strong { color: var(--text); font-weight: 600; }

.hero-photo { position: relative; max-width: 420px; }
.photo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--bg-alt);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-frame .placeholder {
  width: 100%; height: 100%; display: grid; place-items: center; text-align: center;
  color: var(--text-faint); font-size: 0.9rem; gap: 8px; padding: 24px;
}
.photo-frame .placeholder svg { width: 48px; height: 48px; opacity: 0.5; margin: 0 auto 10px; }

@media (min-width: 900px) {
  .hero { padding: 88px 0 96px; }
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 64px; }
  .hero-photo { margin-left: auto; }
}

/* =================================================================
   FEATURED VENTURE band
   ================================================================= */
.venture-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.venture-copy h2 { font-size: clamp(2rem, 4vw, 2.75rem); margin: 12px 0 20px; }
.venture-copy p { color: var(--text-2); margin-bottom: 24px; }
.venture-bullets { display: grid; gap: 12px; margin-bottom: 28px; }
.venture-bullets li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-2); font-size: 1rem; }
.venture-bullets svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.venture-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.phone-frame {
  width: 100%; max-width: 260px; margin: 0 auto;
  padding: 10px;
  background: #0f172a;
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
}
.phone-frame img { width: 100%; height: auto; border-radius: 28px; }

@media (min-width: 900px) {
  .venture-grid { grid-template-columns: 1.05fr 0.95fr; gap: 64px; }
}

/* ---------- Stat strip ---------- */
.stat-strip {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--border); border-radius: var(--radius);
  background: #fff; overflow: hidden;
}
.stat-strip .stat { padding: 28px 20px; text-align: center; border-bottom: 1px solid var(--border); }
.stat-strip .stat:nth-child(odd) { border-right: 1px solid var(--border); }
.stat-strip .stat:nth-child(n+3) { border-bottom: none; }
.stat-strip .stat .n { font-family: var(--serif); font-size: 1.9rem; font-weight: 500; color: var(--text); }
.stat-strip .stat .l { font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-faint); margin-top: 6px; }

@media (min-width: 720px) {
  .stat-strip { grid-template-columns: repeat(4, 1fr); }
  .stat-strip .stat { border-bottom: none; border-right: 1px solid var(--border); }
  .stat-strip .stat:last-child { border-right: none; }
  .stat-strip .stat:nth-child(odd) { border-right: 1px solid var(--border); }
}

/* =================================================================
   SELECTED PROJECTS (home grid)
   ================================================================= */
.proj-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.proj-card {
  display: block;
  padding: 24px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.proj-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #cbd5e1; }
.proj-card .ic {
  width: 44px; height: 44px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--blue-tint); color: var(--blue); margin-bottom: 16px;
}
.proj-card .ic svg { width: 22px; height: 22px; }
.proj-card h3 { font-size: 1.25rem; margin-bottom: 6px; }
.proj-card p { color: var(--text-2); font-size: 0.95rem; }
.grid-foot { margin-top: 32px; }

@media (min-width: 640px) { .proj-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .proj-grid { grid-template-columns: repeat(3, 1fr); } }

/* =================================================================
   JOURNEY timeline (home: horizontal on desktop, vertical on mobile)
   ================================================================= */
.timeline { position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 5px; top: 8px; bottom: 8px; width: 2px;
  background: var(--border);
}
.tl-item { position: relative; padding-left: 30px; padding-bottom: 32px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: 0; top: 5px;
  width: 12px; height: 12px; border-radius: 50%;
  background: #fff; border: 2px solid var(--blue);
}
.tl-item .yr { font-size: 0.85rem; font-weight: 600; color: var(--blue); margin-bottom: 6px; }
.tl-item h3 { font-size: 1.2rem; margin-bottom: 6px; }
.tl-item p { color: var(--text-2); font-size: 0.95rem; }

@media (min-width: 900px) {
  .timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
  .timeline::before { left: 6px; right: 6px; top: 5px; bottom: auto; width: auto; height: 2px; }
  .tl-item { padding-left: 0; padding-top: 28px; padding-bottom: 0; }
  .tl-item::before { left: 0; top: 0; }
}

/* =================================================================
   ABOUT page
   ================================================================= */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
.quote-card {
  background: #fff; border: 1px solid var(--border); border-left: 3px solid var(--blue);
  border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm);
}
.quote-card .label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 16px; }
.quote-card blockquote { font-family: var(--serif); font-size: 1.25rem; line-height: 1.55; color: var(--text); }
.quote-card .by { color: var(--text-2); margin-top: 16px; font-size: 0.95rem; }

.value-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.value-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.value-card .ic { width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center; background: var(--blue-tint); color: var(--blue); margin-bottom: 16px; }
.value-card .ic svg { width: 21px; height: 21px; }
.value-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.value-card p { color: var(--text-2); font-size: 0.95rem; }

.story-timeline { max-width: 760px; }

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1.1fr 0.9fr; gap: 48px; }
  .value-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =================================================================
   WORK page
   ================================================================= */
.work-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.work-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.work-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #cbd5e1; }
.work-card .top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.work-card .ic { width: 46px; height: 46px; border-radius: 10px; display: grid; place-items: center; background: var(--blue-tint); color: var(--blue); flex-shrink: 0; }
.work-card .ic svg { width: 24px; height: 24px; }
.work-card .head { flex: 1; }
.work-card h3 { font-size: 1.3rem; }
.work-card .status {
  display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 3px 10px; border-radius: 100px; margin-top: 4px;
  background: var(--bg-alt); border: 1px solid var(--border); color: var(--text-2);
}
.work-card .status.live { color: #047857; border-color: #a7f3d0; background: #ecfdf5; }
.work-card .status.beta { color: var(--blue); border-color: #bfdbfe; background: var(--blue-tint); }
.work-card p { color: var(--text-2); font-size: 0.95rem; margin-bottom: 20px; flex: 1; }
.work-card .tags { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 18px; }
.work-card .tags span { font-size: 0.78rem; color: var(--text-2); background: var(--bg-alt); border: 1px solid var(--border); padding: 4px 10px; border-radius: 7px; }
.work-card .links { display: flex; gap: 18px; flex-wrap: wrap; }

@media (min-width: 760px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-card.wide { grid-column: 1 / -1; }
  .work-card.wide .top { align-items: center; }
}

/* =================================================================
   MEDMATCH page
   ================================================================= */
.mm-hero { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.mm-hero h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); margin-top: 18px; }
.mm-hero h1 .accent { color: var(--blue); }

.status-list { display: grid; gap: 10px; }
.status-chip {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 10px;
  background: #fff; border: 1px solid var(--border); font-size: 0.95rem; color: var(--text);
}
.status-chip .dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dot.green { background: #10b981; }
.dot.blue { background: var(--blue); }
.dot.slate { background: #64748b; }

.mm-feat-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.mm-feat { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.mm-feat .ic { width: 44px; height: 44px; border-radius: 10px; display: grid; place-items: center; background: var(--blue-tint); color: var(--blue); margin-bottom: 16px; }
.mm-feat .ic svg { width: 22px; height: 22px; }
.mm-feat h3 { font-size: 1.15rem; margin-bottom: 8px; }
.mm-feat p { color: var(--text-2); font-size: 0.94rem; }

.tech-panel { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.tech-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.tech-tags span { font-size: 0.88rem; color: var(--text-2); background: var(--bg-alt); border: 1px solid var(--border); padding: 8px 14px; border-radius: 9px; }

@media (min-width: 760px) { .mm-feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .mm-hero { grid-template-columns: 1fr 1fr; gap: 64px; } }

/* =================================================================
   MUSIC page
   ================================================================= */
.music-hero { max-width: 720px; margin: 0 auto; text-align: center; }
.music-hero h1 { font-size: clamp(2.5rem, 6vw, 4rem); margin-top: 16px; }
.music-hero h1 .accent { color: var(--blue); }
.music-hero .lead { margin: 18px auto 0; text-align: left; }

.track-list { max-width: 600px; margin: 0 auto; display: grid; gap: 12px; }
.track {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.track .tnum { color: var(--text-faint); font-size: 0.9rem; width: 22px; }
.track .tpic { width: 46px; height: 46px; border-radius: 10px; display: grid; place-items: center; background: var(--blue-tint); color: var(--blue); flex-shrink: 0; }
.track .tpic svg { width: 22px; height: 22px; }
.track .tinfo { flex: 1; }
.track .tinfo .tt { font-weight: 600; }
.track .tinfo .ta { font-size: 0.85rem; color: var(--text-2); }

.platform-grid { display: grid; grid-template-columns: 1fr; gap: 14px; max-width: 720px; margin: 0 auto; }
.platform {
  display: flex; align-items: center; gap: 14px;
  padding: 20px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease);
}
.platform:hover { transform: translateY(-3px); border-color: var(--blue); }
.platform .pic { width: 44px; height: 44px; border-radius: 10px; display: grid; place-items: center; background: var(--bg-alt); border: 1px solid var(--border); flex-shrink: 0; }
.platform .pic svg { width: 22px; height: 22px; }
.platform .ptxt .pl { font-weight: 600; }
.platform .ptxt .ps { font-size: 0.85rem; color: var(--text-2); }

@media (min-width: 560px) { .platform-grid { grid-template-columns: repeat(2, 1fr); } }

/* =================================================================
   CONTACT page
   ================================================================= */
.contact-hero { max-width: 680px; margin: 0 auto; text-align: center; }
.contact-hero h1 { font-size: clamp(2.5rem, 6vw, 4rem); margin-top: 16px; }
.contact-hero h1 .accent { color: var(--blue); }
.contact-hero .lead { margin: 18px auto 0; }

.contact-card {
  max-width: 560px; margin: 40px auto 0; text-align: center;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow-sm);
}
.contact-card .label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); }
.contact-email {
  display: inline-flex; align-items: center; gap: 12px; margin: 20px 0 6px;
  font-size: clamp(0.95rem, 3vw, 1.2rem); font-weight: 600;
  padding: 14px 22px; border-radius: var(--radius-btn);
  background: var(--blue-tint); border: 1px solid #bfdbfe; color: var(--blue);
  transition: border-color 0.2s, background 0.2s;
}
.contact-email:hover { border-color: var(--blue); }
.contact-email svg { width: 20px; height: 20px; }
.copy-hint { font-size: 0.82rem; color: var(--text-faint); }
.contact-divider { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); }
.contact-divider .label { margin-bottom: 16px; }
.contact-meta { text-align: center; margin-top: 28px; color: var(--text-faint); font-size: 0.9rem; }
