/* ============================================================
   ArlingtonBlack.com — Shared Stylesheet
   Design system: Green Oasis dark mode, emerald primary, neon accent
   Mobile-first. Breakpoints: 768px, 1024px
   ============================================================ */

/* --- Custom Properties (Design Tokens) --- */
:root {
  --color-primary: #068C43;
  --color-primary-dark: #04471D;
  --color-primary-light: #0D2918;
  --color-accent: #18DB67;
  --color-accent-dark: #068C43;
  --color-bg: #030303;
  --color-surface: #0D2918;
  --color-surface-alt: #0A1F14;
  --color-text: #E8F5EE;
  --color-text-muted: #7CB899;
  --color-text-light: #4A8A6A;
  --color-border: #0F3D22;
  --color-pine: #04471D;
  --color-success: #18DB67;
  --color-success-light: #0D2918;

  --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-accent);
  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;
}

/* --- Focus-Visible (keyboard navigation) --- */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ============================================================
   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-bg);
  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-link: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%, var(--color-surface-alt) 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='%237CB899' 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(6, 140, 67, 0.25);
}

.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;
}

/* 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 #18DB67;
  border-radius: var(--radius-lg);
}

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

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-success);
  color: var(--color-bg);
  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 #18DB67;
  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, var(--color-surface) 0%, var(--color-bg) 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, var(--color-surface) 0%, var(--color-primary-dark) 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(24,219,103,0.25) 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(6,140,67,0.25);
  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-dark);
  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: var(--color-surface);
  color: var(--color-text-muted);
  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: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

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

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

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

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--color-accent);
  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: var(--color-text-muted);
}

.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: var(--color-text-muted);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: color 0.15s, border-color 0.15s;
}

.footer-social a:hover {
  color: var(--color-text);
  border-color: var(--color-text-muted);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-lg);
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

.footer-contact-item a {
  white-space: nowrap;
}

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

.footer-social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: color 0.15s, border-color 0.15s;
}

.footer-social-icons a:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.footer-social-icons svg {
  width: 17px;
  height: 17px;
}

/* The .footer-inner block and its two @media overrides were removed 2026-09-25.
   The min-width:769px rule set `.footer-links { flex-direction: row }`, which beat
   the column layout above and wrapped every footer link list sideways inside its
   1fr grid track. Keep .footer-links columnar at all widths. */
@media (max-width: 768px) {
  .site-footer {
    padding: var(--space-2xl) var(--space-md) var(--space-xl);
  }

  .footer-bottom {
    text-align: center;
    align-items: center;
    justify-content: center;
  }
}

/* ============================================================
   COMMUNITY CTA SECTION
   ============================================================ */
.community-cta {
  background: linear-gradient(160deg, var(--color-primary-light) 0%, var(--color-bg) 80%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-3xl) 0;
  text-align: center;
}

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

.community-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 0.375rem 1rem 0.375rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
}

.community-cta-badge-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg);
  font-size: 0.6875rem;
  font-weight: 700;
}

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

.community-cta-text {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-xl);
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

.community-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--color-primary);
  color: var(--color-bg);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.community-cta-btn:hover {
  background: var(--color-accent);
  color: var(--color-bg);
  transform: translateY(-1px);
}

.community-cta-btn svg {
  width: 18px;
  height: 18px;
}

.community-cta-note {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-top: var(--space-md);
}

/* ============================================================
   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, var(--color-surface) 0%, var(--color-bg) 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); }

/* ============================================================
   COMING SOON HERO (single-column, phone CTA primary)
   ============================================================ */
.coming-soon-hero {
  padding: clamp(6rem, 12vh, 10rem) 0 var(--space-3xl);
}

.coming-soon-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.coming-soon-content {
  text-align: center;
  max-width: 680px;
}

.coming-soon-badge {
  display: inline-block;
  background: var(--color-pine);
  color: var(--color-accent);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.coming-soon-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  text-wrap: balance;
}

.coming-soon-subhead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.coming-soon-cta-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-accent);
}

/* CALL CTA & VOICE AI PRIMARY PROTOCOL */
.call-cta {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  width: 100%;
}

.voice-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(24, 219, 103, 0.12);
  border: 1px solid rgba(24, 219, 103, 0.35);
  border-radius: 9999px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.voice-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-accent);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--color-accent);
  animation: pulse-dot 1.8s infinite ease-in-out;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); opacity: 0.6; box-shadow: 0 0 0 0 rgba(24, 219, 103, 0.7); }
  70% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 0 6px rgba(24, 219, 103, 0); }
  100% { transform: scale(0.95); opacity: 0.6; box-shadow: 0 0 0 0 rgba(24, 219, 103, 0); }
}

.call-cta-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  background: var(--color-surface);
  border: 1.5px solid rgba(24, 219, 103, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-2xl);
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  min-width: 320px;
  max-width: 540px;
  width: 100%;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.call-cta-link:hover {
  background: var(--color-surface-alt, #0A1F14);
  border-color: rgba(24, 219, 103, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(24, 219, 103, 0.12);
}

.call-cta-link:focus-visible {
  background: var(--color-surface-alt, #0A1F14);
  border-color: rgba(24, 219, 103, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(24, 219, 103, 0.12);
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.call-cta-link:active {
  transform: translateY(0);
  background: var(--color-primary-dark);
}

.call-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(24, 219, 103, 0.1);
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent);
  border-radius: 9999px;
  flex-shrink: 0;
}

.call-cta-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: center;
}

.call-cta-headline {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.call-cta-bridge {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.call-cta-number {
  font-family: var(--font-body);
  font-size: clamp(1.85rem, 4.5vw, 2.35rem);
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  margin-top: 0.25rem;
}

.call-cta-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* HERO ACTION BUTTONS */
.hero-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 540px;
  margin-top: var(--space-xs);
}

.btn-voice-chat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-text);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1 1 200px;
}

.btn-voice-chat:hover,
.btn-voice-chat:focus-visible {
  background: rgba(24, 219, 103, 0.1);
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-1px);
}

.btn-secondary-schedule {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-primary-light, #04471D);
  border: 1px solid var(--color-accent);
  color: #FFFFFF;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1 1 200px;
}

.btn-secondary-schedule:hover,
.btn-secondary-schedule:focus-visible {
  background: var(--color-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(24, 219, 103, 0.2);
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes cta-glow {
    0%, 100% { border-color: rgba(24, 219, 103, 0.3); }
    50% { border-color: rgba(24, 219, 103, 0.55); }
  }
  .call-cta-link {
    animation: cta-glow 4s ease-in-out infinite;
  }
  .call-cta-link:hover,
  .call-cta-link:focus-visible {
    animation: none;
  }
}

/* MODAL TRIGGER */
.modal-trigger {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: none;
  border: none;
  border-bottom: 1px dashed var(--color-text-muted);
  padding: 0.25rem 0;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  margin-top: var(--space-xs);
}

.modal-trigger:hover,
.modal-trigger:focus-visible {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

/* ============================================================
   SELF-SCHEDULE SECTION (SECONDARY PATHWAY)
   ============================================================ */
.schedule-section {
  padding: var(--space-3xl) 0;
  background: var(--color-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-header {
  max-width: 720px;
  margin: 0 auto var(--space-xl);
}

.schedule-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(24, 219, 103, 0.08);
  border: 1px solid rgba(24, 219, 103, 0.25);
  padding: 4px 14px;
  border-radius: 9999px;
  margin-bottom: var(--space-sm);
}

.schedule-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.calendar-embed-card {
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  padding: var(--space-xs);
}

.release-terms-scroll {
  max-height: 52vh;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: var(--space-lg);
  margin: var(--space-md) 0 var(--space-lg);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.release-terms-scroll p {
  margin-bottom: 1rem;
}

.release-terms-scroll strong {
  color: var(--color-text);
}

.voice-modal-card {
  max-width: 560px;
  padding: var(--space-2xl);
  text-align: center;
  border: 1px solid rgba(24, 219, 103, 0.35);
}

.voice-agent-avatar {
  width: 72px;
  height: 72px;
  background: rgba(24, 219, 103, 0.12);
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--color-accent);
  animation: pulse-dot 2s infinite ease-in-out;
}

.voice-modal-phone {
  display: block;
  font-family: var(--font-body);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
  margin: var(--space-md) 0;
  padding: var(--space-sm);
  background: rgba(24, 219, 103, 0.08);
  border: 1px solid rgba(24, 219, 103, 0.3);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.voice-modal-phone:hover {
  background: rgba(24, 219, 103, 0.16);
  border-color: var(--color-accent);
  color: #FFFFFF;
}

/* ============================================================
   FORM MODAL OVERLAY
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(3, 3, 3, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  padding: var(--space-lg);
}

.modal-overlay.visible {
  display: flex;
}

.modal-card {
  position: relative;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-text-muted);
  background: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
  z-index: 1;
}

.modal-close:hover,
.modal-close:focus-visible {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.05);
}

/* TRUST MESSAGING */
.modal-trust {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
  background: rgba(6, 140, 67, 0.06);
  border: 1px solid rgba(6, 140, 67, 0.2);
  border-radius: var(--radius);
}

.modal-trust-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.modal-trust-text {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.coming-soon-form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: var(--space-xl);
}

.form-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.35rem;
}

.form-card-subtitle {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.coming-soon-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.coming-soon-form .form-group {
  margin-bottom: 0;
}

.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.feature-interest {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(13, 41, 24, 0.5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.feature-interest input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.feature-interest-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
}

.consent-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: rgba(6, 140, 67, 0.08);
  border: 1px solid rgba(6, 140, 67, 0.25);
  border-radius: var(--radius);
}

.consent-group input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.consent-text {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.form-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
  opacity: 0.6;
}

.btn-full { width: 100%; }

.form-error-msg {
  color: #E53E3E;
  font-size: 0.8rem;
  display: none;
}
.form-error-msg.visible { display: block; }

.success-state {
  display: none;
  text-align: center;
  padding: var(--space-lg) 0;
}
.success-state.visible { display: block; }

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--color-pine);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--color-accent);
}
.success-icon svg { width: 32px; height: 32px; }

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

.success-body {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.required { color: #E53E3E; }

.form-input.error {
  border-color: #E53E3E;
}

/* CARD CTA LINK */
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: var(--space-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  transition: gap 0.2s ease;
}

.card-link:hover .card-cta {
  gap: 0.6rem;
}

/* WHAT'S COMING CARDS */
.whats-coming-icon {
  width: 56px;
  height: 56px;
  background: rgba(4, 71, 29, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
  .coming-soon-hero {
    padding-top: clamp(5rem, 10vh, 7rem);
  }

  .coming-soon-headline {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .modal-card {
    width: 95%;
    max-height: 92vh;
  }

  .modal-overlay {
    padding: var(--space-md);
    align-items: flex-start;
    padding-top: 4vh;
  }

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