/*
 * AidersPlus Marketing Site Stylesheet
 * Design system v2 — aligned with final mockups
 *


 */

/* =====================================================================
   CSS VARIABLES
   ===================================================================== */
:root {
  --navy:       #1F2933;
  --navy-deep:  #17212B;
  --green:      #155C45;
  --green-dark: #104735;
  --green-soft: #E7F1ED;
  --sage:       #C8DDD1;
  --gold:       #C8A45D;
  --cream:      #F8F5EF;
  --white:      #FFFFFF;
  --text:       #4F5659;
  --muted:      #7C817F;
  --line:       #E3DED7;
  --soft:       #F1EEE8;
  --shadow:     0 24px 64px rgba(31,41,51,.13);
}

/* =====================================================================
   BASE RESET & TYPOGRAPHY
   ===================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--cream);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
}

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

button, input, select, textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
}

.divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* =====================================================================
   FLASH MESSAGES
   ===================================================================== */
.flash-messages {
  position: fixed;
  top: 120px;
  right: 1.5rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 420px;
  width: calc(100vw - 3rem);
}

.flash {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px 13px 18px;
  border-radius: 8px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
  opacity: 1;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.flash.is-hiding {
  opacity: 0;
  transform: translateX(12px);
}

.flash-text { flex: 1; }

.flash-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  line-height: 1;
  font-size: 18px;
  flex-shrink: 0;
  opacity: 0.55;
  transition: opacity 0.15s;
  margin-top: 1px;
}

.flash-close:hover { opacity: 1; }

.flash-notice {
  background: #E6F2EE;
  color: #155C45;
  border: 1px solid #A8D4C4;
}

.flash-notice .flash-close { color: #155C45; }

.flash-alert {
  background: #FEF0EE;
  color: #C0392B;
  border: 1px solid #F5C6C0;
}

.flash-alert .flash-close { color: #C0392B; }

/* =====================================================================
   SERVICE BAR
   ===================================================================== */
.service-bar {
  background: var(--navy);
  color: #DCE6E1;
  font-size: 13px;
}

.service-bar .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.service-bar strong { color: #F0D89F; }

/* =====================================================================
   NAVIGATION
   ===================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(31,41,51,.15);
}

.wordmark {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -.045em;
  white-space: nowrap;
}

.wordmark-aiders { color: var(--navy); }
.wordmark-plus   { color: var(--gold); }

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

.nav-link {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #5D6462;
  transition: color .15s;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  color: var(--navy);
  font-size: 22px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn {
  min-height: 48px;
  border-radius: 10px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: .18s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover { background: var(--green-dark); color: #fff; }

.btn-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--navy);
}

.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn-dark {
  background: var(--navy);
  color: #fff;
}

.btn-dark:hover { background: #101922; color: #fff; }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold:hover { background: #b8904d; }

/* Nav button size override */
.nav .btn { min-height: 42px; padding: 0 16px; font-size: 13px; }

/* Legacy button classes (used by other existing pages) */
.btn-ghost {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: background .15s, color .15s, border-color .15s;
  font-size: 13px;
  padding: 10px 20px;
  background: transparent;
  color: var(--sage);
  border: 1px solid #3A4954;
}

.btn-ghost:hover { border-color: var(--sage); color: #fff; }

.btn-submit {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: background .15s, color .15s;
  font-size: 13px;
  padding: 11px 20px;
  width: 100%;
  background: var(--green);
  color: #fff;
  margin-top: 4px;
}

.btn-submit:hover { background: var(--navy); }

/* =====================================================================
   SHARED SECTION STYLES (legacy — used by /faq, /terms, /privacy etc.)
   ===================================================================== */
.section { padding: 4.5rem 0; }
.bg-white  { background: #fff; }
.bg-cream  { background: var(--cream); }
.bg-sage   { background: var(--sage); }

.sec-eyebrow {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sec-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.sec-sub {
  font-size: 15px;
  color: #5F5E5A;
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 2.25rem;
}

/* Legacy form fields (used by home.html.erb waitlist) */
.form-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
}

.form-card-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.form-card-sub {
  font-size: 13px;
  color: #888780;
  margin-bottom: 1.125rem;
}

.form-field {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--navy);
  margin-bottom: 8px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-field:focus { border-color: var(--green); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer {
  background: var(--navy);
  color: #fff;
  padding: 62px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .92fr .92fr 1.08fr;
  gap: 42px;
  padding-bottom: 43px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 21px;
}

.footer-icon {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  object-fit: cover;
}

.footer-wordmark {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.05em;
}

.footer-wordmark .aiders { color: #fff; }
.footer-wordmark .plus   { color: var(--gold); }

.footer-brand-copy {
  font-size: 14px;
  line-height: 1.72;
  color: #AEB8B4;
  max-width: 355px;
}

.footer-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #D4E2DB;
  margin-bottom: 18px;
}

.footer-link,
.footer-text {
  display: block;
  font-size: 14px;
  color: #AEB8B4;
  margin-bottom: 11px;
  line-height: 1.35;
}

.footer-link:hover { color: #fff; }
.footer-link.gold  { color: #D7B466; }

.footer-bottom {
  border-top: 1px solid #33414A;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #98A5A0;
  font-size: 12px;
}

.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { color: #98A5A0; }
.footer-legal a:hover { color: #fff; }

.footer-legal-groups {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-legal-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 16px;
}

.footer-legal-group-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: #D4E2DB;
  margin-right: 4px;
}

.footer-legal-group a {
  color: #98A5A0;
  font-size: 12px;
}

.footer-legal-group a:hover { color: #fff; }

/* =====================================================================
   LEGAL PLACEHOLDER PAGES (/cookies, /rental-agreement, etc.)
   ===================================================================== */
.legal-page {
  background: var(--cream);
  padding: 72px 0 96px;
  min-height: 60vh;
}

.legal-page-inner {
  max-width: 680px;
}

.legal-eyebrow {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.legal-page-inner h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -.03em;
  margin-bottom: 14px;
}

.legal-version {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
}

.legal-pending {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 32px;
  font-size: 15px;
  line-height: 1.72;
  color: var(--text);
}

.legal-pending p { margin-bottom: 10px; }
.legal-pending p:last-child { margin-bottom: 0; }
.legal-pending a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }

/* =====================================================================
   ADMIN LAYOUT
   ===================================================================== */
.admin-body {
  background: #F4F6F9;
  min-height: 100vh;
  display: flex;
}

.admin-sidebar {
  width: 240px;
  background: #fff;
  border-right: 1px solid #E2DDD6;
  min-height: 100vh;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.admin-sidebar-header {
  padding: 1.5rem 1.25rem 1rem;
  border-bottom: 1px solid #E2DDD6;
}

.admin-sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-sidebar-logo-img {
  width: 34px;
  height: 34px;
  display: block;
  border-radius: 6px;
  flex-shrink: 0;
}

.admin-sidebar-wordmark {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1F2933;
}

.admin-sidebar-wordmark .plus { color: #C8A45D; }

.admin-sidebar-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #888780;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.admin-nav {
  padding: 1rem 0.75rem;
  flex: 1;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #5F5E5A;
  margin-bottom: 2px;
  transition: background .15s, color .15s;
}

.admin-nav-item:hover,
.admin-nav-item.active {
  background: #E6F2EE;
  color: #155C45;
}

.admin-nav-item i { font-size: 16px; }

.admin-nav-divider {
  border: none;
  border-top: 1px solid #E2DDD6;
  margin: 8px 12px;
}

.admin-nav-logout {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #C0392B;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  transition: background .15s;
}

.admin-nav-logout:hover { background: #FEF0EE; }

.admin-main {
  flex: 1;
  padding: 2rem;
  overflow-y: auto;
}

.admin-page-header { margin-bottom: 1.75rem; }

.admin-page-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1F2933;
}

.admin-page-sub {
  font-size: 14px;
  color: #888780;
  margin-top: 4px;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.admin-stat-card {
  background: #fff;
  border: 1px solid #E2DDD6;
  border-radius: 12px;
  padding: 1.5rem;
}

.admin-stat-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #888780;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.admin-stat-number {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #155C45;
}

.admin-card {
  background: #fff;
  border: 1px solid #E2DDD6;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.admin-card-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #E2DDD6;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-card-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1F2933;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.admin-table th {
  background: #F8F5EF;
  padding: 10px 16px;
  text-align: left;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #5F5E5A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #E2DDD6;
}

.admin-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #F0EDE8;
  color: #2B2B2B;
  vertical-align: middle;
}

.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #FAFAF8; }

.admin-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 99px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-host     { background: #E6F2EE; color: #155C45; }
.badge-supplier { background: #E6F2EE; color: #155C45; }
.badge-planner  { background: #FEF8ED; color: #C8A45D; }
.badge-default  { background: #F0EDE8; color: #5F5E5A; }

.admin-link {
  color: #155C45;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.admin-link:hover { color: #1F2933; }

.admin-detail-card {
  background: #fff;
  border: 1px solid #E2DDD6;
  border-radius: 12px;
  padding: 2rem;
  max-width: 680px;
}

.admin-detail-section { margin-bottom: 2rem; }

.admin-detail-section-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #C8A45D;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  padding-bottom: 6px;
  border-bottom: 1px solid #E2DDD6;
}

.admin-detail-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #F8F5EF;
}

.admin-detail-row:last-child { border-bottom: none; }

.admin-detail-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #888780;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-top: 1px;
}

.admin-detail-value {
  font-size: 14px;
  color: #2B2B2B;
  line-height: 1.5;
}

.admin-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #155C45;
  margin-bottom: 1.5rem;
}

.admin-back-link:hover { color: #1F2933; }

.admin-login-page {
  min-height: 100vh;
  background: #F4F6F9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.admin-login-card {
  background: #fff;
  border: 1px solid #E2DDD6;
  border-radius: 16px;
  padding: 2.5rem;
  width: 100%;
  max-width: 400px;
}

.admin-login-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1.75rem;
}

.admin-login-logo-img {
  width: 44px;
  height: 44px;
  display: block;
  border-radius: 8px;
  flex-shrink: 0;
}

.admin-login-wordmark {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1F2933;
}

.admin-login-wordmark .plus { color: #C8A45D; }

.admin-login-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1F2933;
  text-align: center;
  margin-bottom: 4px;
}

.admin-login-sub {
  font-size: 13px;
  color: #888780;
  text-align: center;
  margin-bottom: 1.75rem;
}

.admin-login-label {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #5F5E5A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

.admin-login-input {
  width: 100%;
  background: #F8F5EF;
  border: 1px solid #E2DDD6;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: 'Inter', Arial, sans-serif;
  color: #2B2B2B;
  outline: none;
  margin-bottom: 14px;
  transition: border-color .15s;
}

.admin-login-input:focus { border-color: #155C45; background: #fff; }

.admin-login-btn {
  width: 100%;
  padding: 12px;
  background: #155C45;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s;
}

.admin-login-btn:hover { background: #1F2933; }

.admin-flash-alert {
  background: #FEF0EE;
  color: #C0392B;
  border: 1px solid #F5C6C0;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 1rem;
}

.admin-flash-notice {
  background: #E6F2EE;
  color: #155C45;
  border: 1px solid #A8D4C4;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 1rem;
}

.admin-application-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.admin-btn-approve,
.admin-btn-decline {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
}

.admin-btn-approve { background: #155C45; color: #fff; }
.admin-btn-approve:hover { background: #104735; }

.admin-btn-decline { background: #FEF0EE; color: #C0392B; border: 1px solid #F5C6C0; }
.admin-btn-decline:hover { background: #FBDDDA; }

.admin-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 99px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.admin-status-pending  { background: #FEF8ED; color: #C8A45D; }
.admin-status-approved { background: #E6F2EE; color: #155C45; }
.admin-status-declined { background: #FEF0EE; color: #C0392B; }

/* =====================================================================
   RESPONSIVE — nav, footer, mobile menu
   ===================================================================== */
@media (max-width: 1060px) {
  .nav-links { display: none; }
  .menu-btn  { display: flex; }

  .nav-links.open {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px; /* nav-inner height — absolute is relative to sticky .nav */
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 18px 1.5rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    box-shadow: 0 16px 30px rgba(31,41,51,.08);
    z-index: 99;
  }

  .nav-links.open .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid #F0EDE8;
  }

  .footer-grid { grid-template-columns: 1.25fr 1fr 1fr 1fr; }
}

@media (max-width: 760px) {
  .container { width: calc(100% - 2rem); }

  .service-bar .container { padding: 8px 0; line-height: 1.4; }

  .nav-inner { height: 68px; }

  .nav-links.open { top: 68px; } /* nav-inner height at 760px breakpoint */

  .brand-icon { width: 40px; height: 40px; }
  .wordmark   { font-size: 18px; }

  .nav-actions .btn-secondary { display: none; }

  .footer-grid    { grid-template-columns: 1fr; }
  .footer-bottom  { flex-direction: column; align-items: flex-start; }

  .admin-stats-grid { grid-template-columns: 1fr; }
  .admin-sidebar    { display: none; }
  .admin-main       { padding: 1.25rem; }
}

@media (max-width: 480px) {
  .nav-actions .btn-primary { display: none; }
}
