/* ============================================================
   Reservation Hatao Andolan — shared stylesheet
   Design tokens extracted from the approved design canvas.
   ============================================================ */

:root {
  --navy: oklch(0.28 0.05 250);
  --navy-dark: oklch(0.24 0.045 250);
  --navy-darker: oklch(0.22 0.04 250);
  --saffron: oklch(0.72 0.15 65);
  --saffron-btn: oklch(0.68 0.13 62);
  --bg: oklch(0.985 0.004 90);
  --card-bg-blue: oklch(0.95 0.008 260);
  --card-bg-blue-2: oklch(0.93 0.015 250);
  --card-bg-saffron: oklch(0.95 0.03 65);
  --text: oklch(0.2 0.02 260);
  --text-muted: oklch(0.4 0.02 260);
  --text-mutedlight: oklch(0.5 0.02 260);
  --border: oklch(0.93 0.005 90);
  --border-strong: oklch(0.92 0.005 90);
  --white: oklch(0.99 0 0);
  --link: oklch(0.5 0.14 60);
  --link-hover: oklch(0.4 0.14 60);
  --max-width: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Work Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
  margin: 0;
}

img {
  max-width: 100%;
}

.hi {
  font-family: 'Noto Sans Devanagari', sans-serif;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
}

.container {
  padding-left: 80px;
  padding-right: 80px;
}

@media (max-width: 900px) {
  .container { padding-left: 24px; padding-right: 24px; }
}

/* ---------- NAV ---------- */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px;
  border-bottom: 1px solid var(--border-strong);
  background: var(--bg);
  position: relative;
  z-index: 40;
}

@media (max-width: 900px) {
  .navbar { padding: 16px 24px; }
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--white);
}

.footer-logo {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.brand-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--border-strong);
  }
  .nav-toggle { display: inline-flex !important; }
}

.navlink {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-muted);
}
.navlink:hover {
  color: var(--text);
}
.navlink.active {
  color: var(--navy);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 700;
  border-radius: 999px;
  padding: 11px 24px;
  border: none;
  cursor: pointer;
  font-family: 'Work Sans', sans-serif;
  transition: filter .15s;
}
.btn:hover { filter: brightness(1.06); }

.btn-primary {
  background: var(--saffron);
  color: var(--navy-darker);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  border: 1.5px solid var(--border-strong);
  color: var(--text);
}

/* ---------- FOOTER ---------- */

.footer {
  background: var(--navy-dark);
  padding: 56px 80px 32px;
}
@media (max-width: 900px) { .footer { padding: 48px 24px 28px; } }

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-blurb {
  font-size: 13px;
  line-height: 1.6;
  color: oklch(0.88 0.03 65);
  margin: 0;
  max-width: 280px;
}

.footer-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: oklch(0.85 0.04 65);
}

.footer-link {
  font-size: 13.5px;
  color: oklch(0.93 0.02 65);
}
.footer-link:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.16);
  padding-top: 22px;
  margin-top: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12.5px;
  color: oklch(0.85 0.03 65);
}

.footer-tagline {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.footer-credit {
  font-size: 11.5px;
  color: oklch(0.6 0.02 65);
}

/* ---------- HERO ---------- */

.hero {
  position: relative;
  height: 640px;
  overflow: hidden;
}
@media (max-width: 900px) {
  .hero { height: auto; padding-bottom: 40px; }
  .hero svg.hero-bg { display: none; }
  .hero { background: var(--navy-dark); }
}

.hero-main {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 96px 80px 0;
}
@media (max-width: 900px) {
  .hero-main { flex-direction: column; height: auto; padding: 88px 24px 0; gap: 28px; }
}
/* Above 1400px the right-side illustration is visible again (see
   .hero-illustration-right below) — push the two illustrations out toward
   the edges (space-between), so extra room on wide screens becomes
   breathing space around the text instead of empty margins outside the
   illustrations. (The matching .hero-headline/.hero-cta-row overrides for
   this breakpoint live further down, right after those selectors' own base
   rules, so they aren't overridden again by rules that come later in the
   file.) */
@media (min-width: 1401px) {
  .hero-main { justify-content: space-between; }
}

.hero-illustration {
  flex-shrink: 0;
  width: 400px;
  max-width: 42%;
}
.hero-illustration svg { display: block; width: 100%; height: auto; }
@media (max-width: 900px) {
  .hero-illustration { max-width: none; width: 240px; margin: 0 auto; }
}

.hero-illustration-right {
  width: 320px;
}
@media (max-width: 1400px) {
  .hero-illustration-right { display: none; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-topchrome {
  position: absolute;
  top: 24px;
  left: 40px;
  right: 40px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .hero-topchrome { position: static; padding: 20px 24px 0; }
}

.hero-toplabel {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
}

.hero-livebadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20,20,40,0.4);
  backdrop-filter: blur(8px);
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
}

.hero-livedot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: oklch(0.72 0.16 145);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

.hero-social-chips {
  display: flex;
  gap: 8px;
}
.hero-social-chips a {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(20,20,40,0.35);
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
}

.hero-headline {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}
@media (max-width: 900px) {
  .hero-headline { align-items: center; text-align: center; }
}
/* With illustrations on both sides (>1400px, see .hero-main above), center
   the text block itself in the space between them instead of hugging its
   left edge; also stop it from growing past a readable width. */
@media (min-width: 1401px) {
  .hero-headline { flex: 0 1 560px; align-items: center; text-align: center; }
}

.hero-headline h1 {
  font-weight: 800;
  font-size: 46px;
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: var(--white);
  max-width: 560px;
}
@media (max-width: 900px) { .hero-headline h1 { font-size: 32px; max-width: none; } }

.hero-headline p {
  font-size: 15.5px;
  line-height: 1.6;
  color: oklch(0.9 0.01 250);
  max-width: 480px;
  margin: 0;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  margin-top: 4px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 900px) { .hero-cta-row { justify-content: center; } }
@media (min-width: 1401px) { .hero-cta-row { justify-content: center; } }

.hero-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(30,35,60,0.55);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 12px 22px 12px 12px;
  max-width: 420px;
  margin-top: 10px;
}
@media (max-width: 900px) {
  .hero-pill { max-width: none; margin: 20px auto 0; }
}

.hero-pill-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--saffron-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-pill-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 180px;
}

.hero-pill-label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--white);
}

.hero-pill-track {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  overflow: hidden;
}
.hero-pill-fill {
  width: 42%;
  height: 100%;
  background: var(--saffron-btn);
}

.hero-pill-sub {
  font-size: 11px;
  color: oklch(0.85 0.02 250);
}

.hero-pill-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- SECTION HEADINGS ---------- */

.section {
  padding: 0 80px 80px;
}
@media (max-width: 900px) { .section { padding: 0 24px 56px; } }

.section-head {
  max-width: 600px;
  margin: 0 auto 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--saffron-btn);
}

.section-head h2 {
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.01em;
}

/* ---------- MYTH/FACT QUOTE ---------- */

.quote-card {
  background: var(--card-bg-blue);
  border-radius: 20px;
  padding: 40px 48px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
@media (max-width: 700px) { .quote-card { padding: 28px 24px; flex-direction: column; } }

.quote-card p {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}
.quote-myth { color: var(--saffron-btn); }
.quote-fact { color: var(--text); }

/* ---------- PILLAR / DEMAND CARDS ---------- */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } }

.pillcard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 30px -18px rgba(30,35,60,0.22);
  transition: transform .2s;
}
.pillcard:hover { transform: translateY(-3px); }

.pillcard-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillcard h3 {
  font-weight: 700;
  font-size: 18px;
}

.pillcard p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* ---------- KEY MEMBERS ---------- */

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  box-shadow: 0 10px 30px -18px rgba(30,35,60,0.22);
  transition: transform .2s;
}
.team-card:hover { transform: translateY(-3px); }

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: white;
}

.team-card h3 {
  font-weight: 700;
  font-size: 16px;
}

.team-role {
  font-size: 13px;
  color: var(--text-muted);
}

/* Top demand cards (full-width navy, bilingual side-by-side) */

.demand-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1220px;
  margin: 0 auto;
}

.demand-row {
  background: var(--navy-dark);
  border-radius: 20px;
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
@media (max-width: 700px) { .demand-row { padding: 22px; flex-direction: column; } }

.demand-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.demand-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  flex: 1;
  min-width: 0;
}
@media (max-width: 700px) { .demand-cols { grid-template-columns: 1fr; gap: 16px; } }

.demand-col-en, .demand-col-hi {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.demand-col-hi {
  padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,0.16);
}
@media (max-width: 700px) {
  .demand-col-hi { padding-left: 0; border-left: none; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.16); }
}

.demand-row h3, .demand-row h4 {
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}
.demand-row h4 { font-size: 16px; }
.demand-row p {
  font-size: 14px;
  line-height: 1.7;
  color: oklch(0.85 0.02 250);
  margin: 0;
}

.demand-link-row {
  text-align: center;
  margin-top: 28px;
}
.demand-link-row a {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
}

/* ---------- SHAREABLE / MEME CARDS ---------- */

.share-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 8px;
}
.share-head h2 { font-weight: 800; font-size: 26px; }
.share-head span { font-size: 13px; color: var(--text-mutedlight); }

.grid-meme {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 900px) { .grid-meme { grid-template-columns: 1fr; } }

.memecard {
  border-radius: 20px;
  padding: 26px;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .2s;
}
.memecard:hover { transform: translateY(-3px); }
.memecard .msg {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 23px;
  line-height: 1.28;
  color: var(--white);
}
.memecard .handle {
  font-size: 12px;
  font-weight: 600;
}

/* ---------- STATS ---------- */

.stats-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.stat-pill {
  background: var(--card-bg-blue);
  border-radius: 999px;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.stat-pill strong {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
}
.stat-pill span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------- CTA BAND ---------- */

.cta-band {
  background: var(--saffron);
  margin: 0 80px 48px;
  border-radius: 28px;
  padding: 56px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 900px) { .cta-band { margin: 0 24px 40px; padding: 40px 28px; } }

.cta-band h2 {
  font-weight: 800;
  font-size: 30px;
  color: var(--navy-darker);
  max-width: 480px;
}
.cta-band p {
  font-size: 15px;
  color: oklch(0.3 0.05 60);
  margin: 8px 0 0;
}

/* ---------- BREADCRUMB / PAGE HEADER ---------- */

.breadcrumb {
  padding: 56px 80px 8px;
  font-size: 13px;
  color: var(--text-mutedlight);
}
@media (max-width: 900px) { .breadcrumb { padding: 32px 24px 8px; } }
.breadcrumb strong { color: oklch(0.3 0.02 260); font-weight: 600; }

.page-header {
  padding: 16px 80px 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 740px;
}
@media (max-width: 900px) { .page-header { padding: 16px 24px 8px; } }
.page-header h1 {
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.01em;
}
@media (max-width: 700px) { .page-header h1 { font-size: 30px; } }
.page-header p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}
.page-header .kicker {
  font-size: 15px;
  color: var(--text-mutedlight);
}

/* The manifesto's demand cards below sit in a centered 1220px column
   (see .demand-list) — this keeps the header's left edge aligned with
   them instead of hugging the viewport's own left padding. */
.manifesto-header {
  max-width: 1220px;
  margin: 0 auto;
}

/* ---------- MANIFESTO DEMAND LIST ---------- */

.demand-list {
  padding: 32px 80px 96px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 1220px;
  margin: 0 auto;
}
@media (max-width: 900px) { .demand-list { padding: 24px 24px 64px; } }

.demandcard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform .2s;
}
@media (max-width: 700px) { .demandcard { padding: 22px; flex-direction: column; } }
.demandcard:hover { transform: translateY(-2px); }

.demandcard-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: oklch(0.42 0.04 260);
}

.demandcard-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  flex: 1;
  min-width: 0;
}
@media (max-width: 700px) { .demandcard-body { grid-template-columns: 1fr; gap: 14px; } }

.demandcard-en, .demandcard-hi {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.demandcard-hi {
  padding-left: 24px;
  border-left: 1px solid oklch(0.9 0.005 90);
}
@media (max-width: 700px) {
  .demandcard-hi { padding-left: 0; border-left: none; padding-top: 12px; border-top: 1px solid var(--border); }
}
.demandcard h3, .demandcard h4 {
  font-weight: 700;
  font-size: 17px;
}
.demandcard h4 { font-size: 15.5px; }
.demandcard p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
}

/* ---------- CONTACT CARDS ---------- */

.contact-grid {
  padding: 32px 80px 96px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}
@media (max-width: 900px) { .contact-grid { padding: 24px 24px 64px; grid-template-columns: 1fr; } }

.contactcard {
  background: var(--navy);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s;
}
.contactcard:hover { transform: translateY(-3px); }
.contactcard-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contactcard h3 {
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
}
.contactcard p {
  font-size: 13px;
  line-height: 1.55;
  color: oklch(0.82 0.015 250);
  margin: 0;
  flex-grow: 1;
}
.contactcard .value {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--white);
}
.contactcard .value.muted { color: oklch(0.75 0.01 250); }

/* ---------- FORM (Join the Mission) ---------- */

.form-shell {
  padding: 24px 80px 96px;
  display: flex;
  justify-content: center;
}
@media (max-width: 900px) { .form-shell { padding: 16px 24px 64px; } }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 20px 50px -30px rgba(30,35,60,0.25);
}
@media (max-width: 600px) { .form-card { padding: 28px 22px; } }

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-row.two-col {
  flex-direction: row;
  gap: 14px;
}
@media (max-width: 560px) { .form-row.two-col { flex-direction: column; } }
.form-row.two-col > div { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
}
.form-label .req { color: var(--saffron-btn); }

.form-input, .form-select {
  width: 100%;
  font-family: 'Work Sans', sans-serif;
  font-size: 14.5px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--border-strong);
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color .15s;
}
.form-input:focus, .form-select:focus {
  border-color: var(--navy);
}
.form-input.error, .form-select.error {
  border-color: oklch(0.55 0.19 25);
}
.field-error {
  font-size: 12.5px;
  color: oklch(0.5 0.19 25);
  min-height: 16px;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px;
}
.consent-row input { margin-top: 3px; }
.consent-row label {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

.form-submit {
  width: 100%;
  padding: 14px;
  font-size: 15px;
}

.form-note {
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-mutedlight);
  margin-top: 16px;
}

.form-success {
  text-align: center;
  padding: 20px 0 4px;
}
.form-success .check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--card-bg-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.form-success h3 { font-size: 20px; margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--text-muted); }

/* ---------- JOIN FORM: role selection cards ---------- */

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}
@media (max-width: 560px) { .role-grid { grid-template-columns: 1fr; } }

.role-radio {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.role-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 18px 16px;
  border: 1.5px solid var(--border-strong);
  border-radius: 16px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.role-radio:checked + .role-card {
  border-color: var(--saffron-btn);
  background: var(--card-bg-saffron);
}
.role-radio:focus-visible + .role-card {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

.role-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.role-title {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--text);
}

.role-blurb {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.4;
}

#lawyerFields {
  border-left: 3px solid var(--card-bg-saffron);
  padding-left: 14px;
  margin-bottom: 4px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0 80px;
  max-width: 560px;
}
@media (max-width: 900px) { .benefits-list { padding: 0 24px; } }
.benefits-list .item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}
.benefits-list .tick {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--card-bg-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- MEETINGS ---------- */

.meeting-card {
  background: var(--navy);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 700px) { .meeting-card { padding: 26px; } }
.meeting-card h3 { color: var(--white); font-size: 22px; }
.meeting-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: oklch(0.85 0.02 250);
}
.meeting-meta span { display: flex; align-items: center; gap: 6px; }
.meeting-card p.desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: oklch(0.9 0.01 250);
  margin: 0;
  max-width: 640px;
}
.meeting-linknote {
  font-size: 12.5px;
  color: oklch(0.78 0.02 250);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}
.schedule-table th, .schedule-table td {
  text-align: left;
  padding: 10px 14px;
  font-size: 13.5px;
  border-bottom: 1px solid var(--border);
}
.schedule-table th {
  color: var(--text-mutedlight);
  font-weight: 600;
}

.empty-state {
  border: 1.5px dashed var(--border-strong);
  border-radius: 18px;
  padding: 40px;
  text-align: center;
  color: var(--text-mutedlight);
  font-size: 14px;
}

/* ---------- ADMIN ---------- */

.admin-body {
  background: oklch(0.97 0.004 90);
  min-height: 100vh;
}
.admin-shell {
  max-width: 1160px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}
.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--navy-dark);
}
.admin-topbar .brand-name { color: var(--white); }
.admin-topbar a, .admin-topbar button {
  font-size: 13.5px;
  font-weight: 600;
  color: oklch(0.9 0.02 65);
  background: none;
  border: none;
  cursor: pointer;
}
.admin-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}
.admin-card h2 {
  font-size: 18px;
  margin-bottom: 16px;
}
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.admin-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
}
.admin-stat .num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--navy);
}
.admin-stat .label {
  font-size: 12.5px;
  color: var(--text-mutedlight);
  margin-top: 4px;
}
.admin-toolbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 18px;
}
.admin-toolbar .form-input { flex: 1; min-width: 220px; margin: 0; }
.admin-toolbar .btn { padding: 10px 20px; font-size: 13.5px; }
.admin-toolbar .clear-link { font-size: 13px; color: var(--text-mutedlight); }

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  font-size: 13.5px;
}
.pagination a {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--border-strong);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}
.pagination a.disabled { opacity: 0.4; pointer-events: none; }
.pagination .page-info { color: var(--text-mutedlight); }

.admin-table-wrap { overflow-x: auto; }
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.admin-table th, .admin-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.admin-table th {
  color: var(--text-mutedlight);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 13px; }
.bar-row .bar-label { width: 140px; flex-shrink: 0; color: var(--text-muted); }
.bar-row .bar-track { flex: 1; height: 10px; background: var(--border); border-radius: 999px; overflow: hidden; }
.bar-row .bar-fill { height: 100%; background: var(--navy); border-radius: 999px; }
.bar-row .bar-count { width: 36px; text-align: right; color: var(--text-mutedlight); flex-shrink: 0; }

.login-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-dark);
  padding: 24px;
}
.login-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  max-width: 380px;
  width: 100%;
}
.login-card h1 { font-size: 22px; margin-bottom: 6px; }
.login-card p.sub { font-size: 13.5px; color: var(--text-mutedlight); margin: 0 0 24px; }
.login-error {
  background: oklch(0.96 0.03 25);
  color: oklch(0.4 0.15 25);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 16px;
}
