:root {
  --bg: #faf7f2;
  --bg-warm: #f3ede4;
  --bg-deep: #2c2417;
  --fg: #2c2417;
  --fg-light: #6b5d4d;
  --fg-muted: #9a8b78;
  --accent: #c4703e;
  --accent-light: #e8a872;
  --accent-glow: rgba(196, 112, 62, 0.12);
  --green: #5a7a5a;
  --radius: 16px;
  --radius-sm: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  overflow: hidden;
}

.hero-inner {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 28px;
  font-weight: 400;
}

.hero h1 em {
  color: var(--accent);
  font-style: italic;
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--fg-light);
  max-width: 540px;
}

.hero-shape {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 120%;
  background: radial-gradient(ellipse at 60% 40%, var(--accent-glow) 0%, transparent 65%);
  z-index: 1;
  pointer-events: none;
}

/* ═══ PROBLEM ═══ */
.problem {
  padding: 100px 48px;
  background: var(--bg-warm);
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.problem-label,
.how-label,
.diff-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.problem h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  max-width: 700px;
  margin-bottom: 56px;
  font-weight: 400;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.problem-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid rgba(44, 36, 23, 0.06);
}

.problem-number {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}

.problem-card p {
  color: var(--fg-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ═══ HOW ═══ */
.how {
  padding: 100px 48px;
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 48px;
}

.how-step {
  position: relative;
}

.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 4rem;
  color: rgba(196, 112, 62, 0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.how-step h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-weight: 400;
}

.how-step p {
  color: var(--fg-light);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ═══ DIFFERENCE ═══ */
.difference {
  padding: 100px 48px;
  background: var(--bg-deep);
  color: #f3ede4;
}

.difference-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.diff-label {
  color: var(--accent-light);
}

.difference h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 20px;
}

.difference h2 em {
  color: var(--accent-light);
  font-style: italic;
}

.diff-left p {
  color: #b8a995;
  font-size: 0.95rem;
  line-height: 1.7;
}

.diff-item {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.diff-icon {
  color: var(--accent-light);
  font-size: 0.7rem;
  margin-top: 6px;
  flex-shrink: 0;
}

.diff-item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
  color: #f3ede4;
}

.diff-item p {
  color: #b8a995;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ═══ CLOSING ═══ */
.closing {
  padding: 120px 48px;
  text-align: center;
}

.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 400;
}

.closing p {
  color: var(--fg-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.closing-location {
  display: inline-block;
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* ═══ FOOTER ═══ */
.site-footer {
  padding: 40px 48px;
  border-top: 1px solid rgba(44, 36, 23, 0.08);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--fg);
}

.footer-contact {
  color: var(--fg-muted);
  font-size: 0.85rem;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .hero {
    padding: 100px 24px 60px;
    min-height: 75vh;
  }

  .hero-shape {
    top: auto;
    bottom: -20%;
    right: -20%;
    width: 80%;
    height: 60%;
  }

  .problem,
  .how,
  .closing {
    padding: 72px 24px;
  }

  .difference {
    padding: 72px 24px;
  }

  .problem-grid,
  .how-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .difference-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .problem-card {
    padding: 28px 24px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .closing h2 {
    font-size: 1.8rem;
  }
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 12px rgba(196, 112, 62, 0.3);
}

.btn-primary:hover {
  background: #b5622f;
  box-shadow: 0 4px 20px rgba(196, 112, 62, 0.4);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--fg);
  border: 1.5px solid rgba(44, 36, 23, 0.25);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--fg-light);
  border: 1.5px solid rgba(44, 36, 23, 0.15);
}

.btn-ghost:hover {
  color: var(--fg);
  border-color: rgba(44, 36, 23, 0.3);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* ═══ NAV ═══ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44, 36, 23, 0.06);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.01em;
}

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

.nav-link {
  color: var(--fg-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--fg);
}

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: #b5622f;
  transform: translateY(-1px);
  color: #fff !important;
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ═══ HERO ACTIONS ═══ */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ═══ PAGE LAYOUT (inner pages) ═══ */
.page-main {
  padding-top: 68px; /* nav height */
  min-height: 100vh;
}

.page-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 48px 100px;
}

/* ═══ PAGE HEADERS ═══ */
.form-header,
.educators-header {
  margin-bottom: 56px;
}

.form-header h1,
.educators-header h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  font-weight: 400;
  margin: 16px 0 20px;
}

.form-header h1 em,
.educators-header h1 em {
  color: var(--accent);
  font-style: italic;
}

.form-sub,
.educators-sub {
  font-size: 1.05rem;
  color: var(--fg-light);
  line-height: 1.7;
  max-width: 600px;
}

/* ═══ INQUIRY FORM ═══ */
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-section {
  border: 1px solid rgba(44, 36, 23, 0.08);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 24px;
  background: var(--bg);
}

.form-section-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 28px;
  color: var(--fg);
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(44, 36, 23, 0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-group.full {
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.01em;
}

.req {
  color: var(--accent);
}

.optional {
  color: var(--fg-muted);
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid rgba(44, 36, 23, 0.14);
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--fg);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b5d4d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.field-hint {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 2px;
}

.form-error {
  background: rgba(196, 112, 62, 0.08);
  border: 1px solid rgba(196, 112, 62, 0.25);
  color: #a0470e;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.form-privacy {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--fg-muted);
}

/* ═══ SUCCESS CARD ═══ */
.success-card {
  text-align: center;
  background: var(--bg);
  border: 1px solid rgba(90, 122, 90, 0.2);
  border-radius: var(--radius);
  padding: 64px 48px;
  max-width: 560px;
  margin: 40px auto;
}

.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(90, 122, 90, 0.12);
  color: var(--green);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-card h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 16px;
}

.success-card p {
  color: var(--fg-light);
  line-height: 1.7;
}

/* ═══ EDUCATORS PAGE ═══ */
.educators-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 64px;
}

.educator-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 48px;
  background: var(--bg);
  border: 1px solid rgba(44, 36, 23, 0.07);
  border-radius: var(--radius);
  padding: 44px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.educator-card:hover {
  box-shadow: 0 4px 24px rgba(44, 36, 23, 0.06);
  transform: translateY(-2px);
}

.educator-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-warm);
}

.educator-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.educator-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--accent);
  background: var(--accent-glow);
}

.educator-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 6px;
}

.educator-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.educator-bio {
  color: var(--fg-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.educator-section {
  margin-bottom: 20px;
}

.educator-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 10px;
}

.educator-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.educator-list li {
  font-size: 0.9rem;
  color: var(--fg-light);
  padding-left: 14px;
  position: relative;
}

.educator-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.educator-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 100px;
}

.educator-grades {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 16px;
}

.educator-grades strong {
  color: var(--fg);
}

.educators-cta {
  text-align: center;
  padding: 64px 0 0;
  border-top: 1px solid rgba(44, 36, 23, 0.06);
}

.educators-cta p {
  font-size: 1.1rem;
  color: var(--fg-light);
  margin-bottom: 24px;
}

/* ═══ EMPTY STATE ═══ */
.empty-state {
  text-align: center;
  padding: 72px 0;
  color: var(--fg-muted);
}

.empty-state a {
  color: var(--accent);
  text-decoration: underline;
}

/* ═══ ADMIN LOGIN ═══ */
.admin-body {
  background: var(--bg-warm);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-login-wrap {
  width: 100%;
  max-width: 420px;
  padding: 24px;
}

.admin-login-card {
  background: var(--bg);
  border: 1px solid rgba(44, 36, 23, 0.08);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: 0 4px 32px rgba(44, 36, 23, 0.06);
}

.admin-login-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 6px;
}

.admin-login-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 32px;
}

/* ═══ ADMIN DASHBOARD ═══ */
.admin-layout {
  min-height: 100vh;
  background: var(--bg-warm);
}

.admin-header {
  background: var(--bg);
  border-bottom: 1px solid rgba(44, 36, 23, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.admin-header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--fg);
}

.admin-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-left: 6px;
}

.admin-main {
  padding: 32px;
}

.admin-container {
  max-width: 1300px;
  margin: 0 auto;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--bg);
  border: 1px solid rgba(44, 36, 23, 0.07);
  border-radius: var(--radius-sm);
  padding: 24px;
}

.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--fg);
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}

.stat-new .stat-num { color: var(--accent); }
.stat-contacted .stat-num { color: #5b7ab5; }
.stat-enrolled .stat-num { color: var(--green); }

.admin-filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--fg-light);
  background: var(--bg);
  border: 1px solid rgba(44, 36, 23, 0.1);
  transition: all 0.15s;
}

.filter-btn:hover {
  color: var(--fg);
  border-color: rgba(44, 36, 23, 0.2);
}

.filter-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.inquiry-table-wrap {
  background: var(--bg);
  border: 1px solid rgba(44, 36, 23, 0.07);
  border-radius: var(--radius);
  overflow: auto;
}

.inquiry-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.inquiry-table thead tr {
  border-bottom: 2px solid rgba(44, 36, 23, 0.07);
}

.inquiry-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  white-space: nowrap;
}

.inquiry-table td {
  padding: 16px;
  vertical-align: top;
  border-bottom: 1px solid rgba(44, 36, 23, 0.04);
  color: var(--fg-light);
}

.inq-row:last-child td {
  border-bottom: none;
}

.inq-row:hover td {
  background: rgba(44, 36, 23, 0.02);
}

.inq-date { white-space: nowrap; color: var(--fg-muted); }
.inq-name { color: var(--fg); }
.inq-link { color: var(--accent); text-decoration: none; }
.inq-link:hover { text-decoration: underline; }
.inq-profile { max-width: 160px; }
.inq-notes { max-width: 200px; font-size: 0.82rem; color: var(--fg-muted); }

.status-form { margin: 0; }

.status-select {
  padding: 6px 28px 6px 10px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1.5px solid;
  cursor: pointer;
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b5d4d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  -webkit-appearance: none;
  appearance: none;
}

.status-new { background: rgba(196,112,62,0.08); color: #a0470e; border-color: rgba(196,112,62,0.25); }
.status-contacted { background: rgba(91,122,181,0.08); color: #3a5a9b; border-color: rgba(91,122,181,0.25); }
.status-enrolled { background: rgba(90,122,90,0.1); color: #3d6b3d; border-color: rgba(90,122,90,0.25); }
.status-closed { background: rgba(44,36,23,0.06); color: var(--fg-muted); border-color: rgba(44,36,23,0.15); }

/* ═══ RESPONSIVE (new pages) ═══ */
@media (max-width: 768px) {
  .nav-inner { padding: 0 24px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(44,36,23,0.08);
    box-shadow: 0 8px 24px rgba(44,36,23,0.08);
  }

  .nav-links.open { display: flex; }

  .nav-mobile-toggle { display: flex; }

  .hero-actions { flex-direction: column; align-items: flex-start; }

  .page-container { padding: 48px 24px 72px; }

  .form-section { padding: 28px 24px; }

  .form-row { grid-template-columns: 1fr; }

  .educator-card { grid-template-columns: 1fr; gap: 24px; padding: 28px; }

  .admin-stats { grid-template-columns: 1fr 1fr; }

  .admin-main { padding: 20px; }
}

@media (max-width: 480px) {
  .admin-stats { grid-template-columns: 1fr; }

  .educators-header h1 { font-size: 2rem; }
}