/* ============================================================
   Luxe Aesthetics — Member Program
   Shared Design System
   ============================================================ */

/* Google Fonts are imported per-page via <link> for reliability */

/* ── Design Tokens ── */
:root {
  --bg:          #0c0c11;
  --surface:     #14141d;
  --surface-2:   #1c1c28;
  --surface-3:   #242432;
  --gold:        #c9a96e;
  --gold-light:  #e4cfa0;
  --gold-dark:   #9e7a42;
  --gold-glow:   rgba(201,169,110,0.15);
  --text:        #f0ece4;
  --muted:       rgba(240,236,228,0.55);
  --muted-2:     rgba(240,236,228,0.35);
  --border:      rgba(201,169,110,0.18);
  --border-dim:  rgba(240,236,228,0.08);
  --success:     #4ade80;
  --error:       #f87171;
  --radius-sm:   8px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --shadow:      0 8px 40px rgba(0,0,0,0.45);
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.3);
  --transition:  0.2s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── Typography ── */
.font-serif { font-family: 'Cormorant Garamond', Georgia, serif; }
h1, .h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
h2, .h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.3;
}
h3, .h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.35;
}
.label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.gold { color: var(--gold); }
.muted { color: var(--muted); }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: rgba(12,12,17,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.nav-logo span { color: var(--text); font-weight: 300; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav-link {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.nav-link:hover { color: var(--text); }
.nav-link.active { color: var(--gold); }
.btn-nav-logout {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-nav-logout:hover { border-color: var(--gold); color: var(--gold); }

/* ── Page Wrapper ── */
.page-wrap {
  padding-top: 64px;
  min-height: 100vh;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-sm {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Cards / Surfaces ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.card-sm {
  background: var(--surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
.card-inner {
  background: var(--surface-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 1.25rem;
}

/* ── Forms ── */
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.45rem;
}
.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
}
.form-control::placeholder { color: var(--muted-2); }
.form-control:read-only {
  opacity: 0.6;
  cursor: default;
}
textarea.form-control {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--transition);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.btn:disabled { opacity: 0.55; cursor: not-allowed; pointer-events: none; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #1a1000;
  box-shadow: 0 4px 20px rgba(201,169,110,0.25);
}
.btn-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(201,169,110,0.35);
}
.btn-primary:active:not(:disabled) { transform: translateY(0); }
.btn-secondary {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border-dim);
}
.btn-secondary:hover:not(:disabled) { border-color: var(--border); background: var(--surface-3); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border);
}
.btn-outline:hover:not(:disabled) { background: var(--gold-glow); border-color: var(--gold); }
.btn-danger {
  background: rgba(248,113,113,0.15);
  color: var(--error);
  border: 1px solid rgba(248,113,113,0.25);
}
.btn-danger:hover:not(:disabled) { background: rgba(248,113,113,0.25); }
.btn-full { width: 100%; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8rem; border-radius: var(--radius-sm); }

/* ── Dividers ── */
.divider {
  border: none;
  border-top: 1px solid var(--border-dim);
  margin: 1.5rem 0;
}

/* ── Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-gold { background: rgba(201,169,110,0.15); color: var(--gold); border: 1px solid var(--border); }
.badge-success { background: rgba(74,222,128,0.12); color: var(--success); border: 1px solid rgba(74,222,128,0.2); }
.badge-error { background: rgba(248,113,113,0.12); color: var(--error); border: 1px solid rgba(248,113,113,0.2); }

/* ── Toast / Feedback ── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(6rem);
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1.5rem;
  font-size: 0.875rem;
  color: var(--text);
  white-space: nowrap;
  z-index: 999;
  transition: transform 0.35s ease, opacity 0.35s ease;
  opacity: 0;
  box-shadow: var(--shadow);
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.toast.success { border-color: rgba(74,222,128,0.3); color: var(--success); }
.toast.error   { border-color: rgba(248,113,113,0.3); color: var(--error); }

/* ── Decorative ── */
.glow-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
  margin: 2rem 0;
}
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* ── SDK tag styling ── */
/* These wrappers style the containers holding SDK-injected content */
.sdk-section {
  margin-bottom: 2rem;
}
.sdk-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-dim);
}

/* SDK carousel variables — Luxe Aesthetics theme */
[data-mw="memberships-carousel"],
[data-mw="services-carousel"],
[data-mw="classes-carousel"],
[data-mw="experiences-carousel"],
[data-mw="merchandise-carousel"],
[data-mw="offers-carousel"],
[data-mw="products-carousel"] {
  --mw-cta-bg:      #c9a96e;
  --mw-cta-text:    #1a1000;
  --mw-card-bg:     #1c1c28;
  --mw-card-radius: 16px;
  --mw-card-border: rgba(201,169,110,0.12);
  --mw-text-primary: #f0ece4;
  --mw-text-muted:  rgba(240,236,228,0.6);
  --mw-aspect:      16 / 9;
}
[data-mw="paywall"] {
  --mw-cta-bg:      #c9a96e;
  --mw-cta-text:    #1a1000;
  --mw-card-bg:     #1c1c28;
  --mw-card-radius: 16px;
  --mw-card-border: rgba(201,169,110,0.12);
  --mw-text-primary: #f0ece4;
  --mw-text-muted:  rgba(240,236,228,0.6);
}
[data-mw="my-bookings"] {
  --mw-cta-bg:      #c9a96e;
  --mw-cta-text:    #1a1000;
  --mw-card-bg:     #1c1c28;
  --mw-card-radius: 12px;
  --mw-card-border: rgba(201,169,110,0.12);
  --mw-text-primary: #f0ece4;
  --mw-text-muted:  rgba(240,236,228,0.6);
}

/* ── Admin Tab UI ── */
.tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border-dim);
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  flex-wrap: nowrap;
}
.tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  flex-shrink: 0;
  padding: 0.75rem 1.1rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.03em;
  margin-bottom: -1px;
}
.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-panel { display: none; padding-top: 2rem; }
.tab-panel.active { display: block; }

/* ── Table ── */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border-dim); }
table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
thead tr { border-bottom: 1px solid var(--border-dim); }
th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: var(--surface-2);
  white-space: nowrap;
}
td {
  padding: 0.85rem 1rem;
  color: var(--text);
  border-bottom: 1px solid var(--border-dim);
  white-space: nowrap;
}
tr:last-child td { border-bottom: none; }
tbody tr { transition: background var(--transition); }
tbody tr:hover { background: var(--surface-2); }
tbody tr.selected { background: rgba(201,169,110,0.07); }

/* ── Stat Cards ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
}
.stat-card .stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-card .stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* ── Search Input ── */
.search-wrap { position: relative; margin-bottom: 1rem; }
.search-wrap input { padding-left: 2.5rem; }
.search-wrap::before {
  content: '⌕';
  position: absolute;
  left: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-2);
  font-size: 1.1rem;
  pointer-events: none;
}

/* ── Customer search results dropdown ── */
.search-results {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 0.25rem;
  max-height: 240px;
  overflow-y: auto;
}
.search-result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid var(--border-dim);
  transition: background var(--transition);
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--surface-3); }
.search-result-item .name { font-weight: 500; font-size: 0.875rem; }
.search-result-item .email { font-size: 0.78rem; color: var(--muted); }

/* ── Activity Timeline ── */
.timeline { display: flex; flex-direction: column; gap: 0.75rem; }
.timeline-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.875rem;
  background: var(--surface-2);
  border-radius: var(--radius);
  border: 1px solid var(--border-dim);
}
.timeline-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.35rem;
}
.timeline-label { font-size: 0.875rem; font-weight: 500; }
.timeline-time { font-size: 0.75rem; color: var(--muted); margin-top: 0.2rem; }

/* ── Offer cards in admin ── */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.offer-card {
  background: var(--surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.offer-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.offer-card-body { padding: 1rem; }
.offer-card-title { font-weight: 600; margin-bottom: 0.25rem; }
.offer-card-desc { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.75rem; }
.offer-card-actions { display: flex; gap: 0.5rem; }

/* ── QR Section ── */
.qr-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}
#qrcode canvas,
#qrcode img {
  border-radius: var(--radius);
  background: #fff;
  padding: 12px;
}
.qr-url {
  font-size: 0.8rem;
  color: var(--gold);
  word-break: break-all;
  text-align: center;
  font-family: monospace;
  background: var(--surface-2);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

/* ── Pagination ── */
.pagination {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}
.page-btn {
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-dim);
  background: var(--surface-2);
  color: var(--text);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all var(--transition);
}
.page-btn:hover:not(:disabled) { border-color: var(--border); }
.page-btn.active { background: var(--gold); color: #1a1000; border-color: var(--gold); font-weight: 600; }
.page-btn:disabled { opacity: 0.4; cursor: default; }

/* ── Checkin button ── */
.checkin-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}
.checkin-icon {
  font-size: 1.5rem;
  line-height: 1;
}
.checkin-text h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.checkin-text p {
  font-size: 0.78rem;
  color: var(--muted);
}
#checkin-result {
  font-size: 0.85rem;
  font-weight: 500;
  margin-left: auto;
}
#checkin-result.success { color: var(--success); }
#checkin-result.error   { color: var(--error); }

/* ── Char counter ── */
.char-counter {
  text-align: right;
  font-size: 0.73rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ── Push preview ── */
.push-preview {
  background: var(--surface-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.5;
  min-height: 48px;
}
.push-preview .preview-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.push-preview .preview-text { color: var(--text); }

/* ── Variable buttons ── */
.var-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.var-btn {
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: none;
  color: var(--gold);
  font-size: 0.73rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
}
.var-btn:hover { background: var(--gold-glow); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav { padding: 0 1rem; }
  .container, .container-sm { padding: 0 1rem; }
  .card { padding: 1.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .nav-logo { font-size: 1.1rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .card { padding: 1.25rem; }
}

/* ── Auth pages ── */
.auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  background: var(--bg);
  position: relative;
}
.auth-page::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 20%, rgba(201,169,110,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 75% 80%, rgba(201,169,110,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}
.auth-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  display: block;
  margin-bottom: 0.25rem;
}
.auth-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.auth-footer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 1.5rem;
}
.auth-footer a { color: var(--gold); text-decoration: none; }
.auth-footer a:hover { text-decoration: underline; }

/* ── Members page specific ── */
.members-hero {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border-dim);
  padding: 2.5rem 0 2rem;
}
.members-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  padding: 2rem 0 4rem;
}
.members-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.members-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 860px) {
  .members-grid { grid-template-columns: 1fr; }
  .members-sidebar { flex-direction: row; flex-wrap: wrap; }
}

/* ── Landing page specific ── */
.landing-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.landing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 45%, rgba(201,169,110,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 15% 60%, rgba(201,169,110,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: var(--gold);
}
.hero-title { margin-bottom: 1.25rem; }
.hero-desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 440px;
}
.perks-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.perk-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.perk-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

@media (max-width: 800px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-desc { max-width: 100%; }
}
