/* ============================================================
   BetterTarrant.com — Shared Stylesheet
   Design system: Blue primary, amber accent, warm community feel
   Mobile-first. Breakpoints: 768px, 1024px
   ============================================================ */

/* --- Custom Properties (Design Tokens) --- */
:root {
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-primary-light: #dbeafe;
  --color-accent: #f59e0b;
  --color-accent-dark: #d97706;
  --color-bg: #ffffff;
  --color-surface: #f8fafc;
  --color-surface-alt: #f1f5f9;
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --color-text-light: #94a3b8;
  --color-border: #e2e8f0;
  --color-success: #16a34a;
  --color-success-light: #dcfce7;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --radius: 8px;
  --radius-sm: 4px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.10), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12), 0 4px 8px rgba(0,0,0,0.08);

  --max-width: 1200px;
  --nav-height: 68px;

  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

/* --- Skip Nav (Accessibility) --- */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 0;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  z-index: 9999;
  border-radius: 0 0 var(--radius) 0;
  transition: top 0.2s;
}

.skip-nav:focus {
  top: 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  height: var(--nav-height);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.nav-logo span {
  color: var(--color-primary);
}

/* Desktop nav links */
.nav-links {
  display: none;
  gap: var(--space-xl);
  align-items: center;
}

.nav-links a {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary);
}

.nav-cta {
  flex-shrink: 0;
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  border-radius: var(--radius-sm);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  transition: background 0.15s;
}

.nav-hamburger:hover {
  background: var(--color-surface);
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav-mobile-menu {
  display: none;
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
  z-index: 99;
}

.nav-mobile-menu.open {
  display: block;
}

.nav-mobile-menu a {
  display: block;
  padding: var(--space-sm) 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
}

.nav-mobile-menu a:last-of-type {
  border-bottom: none;
  margin-bottom: var(--space-md);
}

.nav-mobile-menu a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

/* Desktop: show links, hide hamburger */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-hamburger {
    display: none;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.75rem 1.5rem;
  min-height: 48px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s, box-shadow 0.15s, transform 0.1s;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

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

.btn:active {
  transform: translateY(0);
}

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

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-text);
  border-color: var(--color-accent);
}

.btn-accent:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary-light);
  box-shadow: var(--shadow-sm);
}

.btn-sm {
  padding: 0.5rem 1rem;
  min-height: 40px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  min-height: 56px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* Arrow indicator */
.btn-arrow::after {
  content: '\2192';
  font-style: normal;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-3xl) 0;
}

.section-sm {
  padding: var(--space-2xl) 0;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 60ch;
  margin-bottom: var(--space-xl);
}

.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }

/* Grid helpers */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

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

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-thumbnail {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--color-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-thumbnail-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, #eff6ff 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  color: var(--color-primary);
}

.card-thumbnail-placeholder .play-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.card-thumbnail-placeholder span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.card-body {
  padding: var(--space-lg);
}

.card-tag {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--color-primary-light);
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.card-meta {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.form-label .required {
  color: #dc2626;
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color 0.15s, box-shadow 0.15s;
  min-height: 48px;
  appearance: none;
  -webkit-appearance: none;
}

.form-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 fill='%2364748b' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-light);
}

/* Honeypot — visually hidden, accessible */
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

/* Form row (side by side on desktop) */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .form-row.two-col {
    grid-template-columns: 1fr 1fr;
  }
}

/* Error states */
.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #dc2626;
}

.form-error-msg {
  margin-top: var(--space-xs);
  font-size: 0.8125rem;
  color: #dc2626;
}

/* Form section header */
.form-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-lg);
  margin-top: var(--space-xl);
}

.form-section-label:first-child {
  margin-top: 0;
}

/* ============================================================
   SUCCESS / CONFIRMATION STATES
   ============================================================ */
.success-state {
  display: none;
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  background: var(--color-success-light);
  border: 1.5px solid #86efac;
  border-radius: var(--radius-lg);
}

.success-state.visible {
  display: block;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-success);
  color: #fff;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.success-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.success-body {
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

/* Inline newsletter success */
.newsletter-success {
  display: none;
  padding: var(--space-md) var(--space-lg);
  background: var(--color-success-light);
  border: 1px solid #86efac;
  border-radius: var(--radius);
  color: var(--color-success);
  font-weight: 600;
  font-size: 0.9375rem;
}

.newsletter-success.visible {
  display: block;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(160deg, #eff6ff 0%, #ffffff 60%);
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid var(--color-border);
}

.hero-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.35;
  margin-bottom: var(--space-2xl);
  max-width: 60ch;
}

.hero-quote em {
  color: var(--color-primary);
  font-style: normal;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

@media (min-width: 1024px) {
  .hero-layout {
    grid-template-columns: 2fr 1fr;
  }
}

/* Episode embed placeholder */
.episode-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.episode-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(37,99,235,0.2) 0%, transparent 70%);
}

.episode-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(37,99,235,0.2);
  position: relative;
  z-index: 1;
}

.episode-play-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  margin-left: 4px;
}

.episode-placeholder-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-align: center;
  position: relative;
  z-index: 1;
}

.episode-placeholder-subtext {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 1;
}

.hero-cta {
  margin-top: var(--space-xl);
}

/* Happy Hour sidebar card */
.happy-hour-card {
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.happy-hour-card .card-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: var(--space-md);
}

.happy-hour-detail {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.happy-hour-detail strong {
  color: var(--color-text);
}

.happy-hour-icon {
  flex-shrink: 0;
  width: 20px;
  color: var(--color-primary);
  font-size: 1rem;
  text-align: center;
}

/* ============================================================
   EPISODE CARDS — HORIZONTAL SCROLL ON MOBILE
   ============================================================ */
.episodes-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
  margin: 0 calc(-1 * var(--space-lg));
  padding: var(--space-xs) var(--space-lg) var(--space-md);
}

.episodes-scroll-wrapper::-webkit-scrollbar {
  height: 4px;
}

.episodes-scroll-wrapper::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 2px;
}

.episodes-scroll-inner {
  display: flex;
  gap: var(--space-lg);
  width: max-content;
}

.episodes-scroll-inner .card {
  width: 280px;
  flex-shrink: 0;
}

/* Desktop: switch to grid */
@media (min-width: 768px) {
  .episodes-scroll-wrapper {
    overflow-x: visible;
    margin: 0;
    padding: 0;
  }

  .episodes-scroll-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: auto;
  }

  .episodes-scroll-inner .card {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .episodes-scroll-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   NEWSLETTER / CTA BAND
   ============================================================ */
.newsletter-section {
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-2xl) 0;
}

.newsletter-section .section-title {
  color: #fff;
  margin-bottom: var(--space-sm);
}

.newsletter-section .section-subtitle {
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-xl);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 480px;
}

.newsletter-form .form-input {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.newsletter-form .form-input::placeholder {
  color: rgba(255,255,255,0.55);
}

.newsletter-form .form-input:focus {
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
}

.newsletter-form .btn-accent {
  align-self: flex-start;
}

@media (min-width: 600px) {
  .newsletter-form {
    flex-direction: row;
    align-items: center;
  }

  .newsletter-form .form-input {
    flex: 1;
  }

  .newsletter-form .btn-accent {
    align-self: auto;
    flex-shrink: 0;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-sm);
}

.footer-mission {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #64748b;
  margin-bottom: var(--space-lg);
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  color: #64748b;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-contact-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  margin-bottom: var(--space-sm);
  font-size: 0.9375rem;
  color: #64748b;
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 18px;
  color: var(--color-primary);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.footer-social a {
  color: #64748b;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.375rem 0.75rem;
  border: 1px solid #334155;
  border-radius: var(--radius-sm);
  transition: color 0.15s, border-color 0.15s;
}

.footer-social a:hover {
  color: #fff;
  border-color: #64748b;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: var(--space-lg);
  font-size: 0.8125rem;
  color: #475569;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ============================================================
   HAPPY HOUR SECTION (Homepage)
   ============================================================ */
.happy-hour-section {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.happy-hour-box {
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.happy-hour-box .section-label {
  margin-bottom: var(--space-md);
}

.happy-hour-box .detail-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin-bottom: var(--space-sm);
}

.happy-hour-box .coming-soon-text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin: var(--space-md) 0 var(--space-xl);
}

/* ============================================================
   NOMINATE PAGE — SPECIFIC
   ============================================================ */
.nominate-hero {
  background: linear-gradient(160deg, #eff6ff 0%, #fff 60%);
  padding: var(--space-3xl) 0 var(--space-xl);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.nominate-hero .page-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.nominate-hero .page-subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 48ch;
  margin: 0 auto;
}

.nominate-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: start;
  padding: var(--space-3xl) 0;
}

@media (min-width: 1024px) {
  .nominate-layout {
    grid-template-columns: 3fr 2fr;
  }
}

.nomination-form-card {
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
}

/* What Happens Next */
.what-next-section {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.what-next-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

.what-next-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.what-next-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.what-next-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.what-next-text {
  padding-top: 4px;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.what-next-text strong {
  color: var(--color-text);
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}

/* ============================================================
   SPINNER (loading state)
   ============================================================ */
.btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.btn.loading .btn-spinner {
  display: inline-block;
}

.btn.loading .btn-label {
  display: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   DIVIDER
   ============================================================ */
.divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: var(--space-2xl) 0;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
