/* ==========================================================================
   WILDFLOWER CHILDREN AND YOUTH SERVICES
   Design System & Theme Tokens (Stitch MCP "Compassion Flow")
   ========================================================================== */

:root {
  /* Brand Palette */
  --primary: #004349;
  --primary-container: #0d5c63;
  --on-primary: #ffffff;
  --on-primary-container: #90d2da;
  --primary-fixed: #abeef6;
  --primary-fixed-dim: #8fd1d9;

  --secondary: #006876;
  --secondary-container: #98edfe;
  --on-secondary: #ffffff;
  --on-secondary-container: #006d7b;

  --tertiary: #4e3800;
  --tertiary-container: #6b4e00;
  --on-tertiary: #ffffff;
  --on-tertiary-container: #f9bd22;

  --hope-orange: #f97316;
  --safety-teal: #134e4a;
  --soft-blush: #fdf2f8;
  --ink: #1e293b;

  /* Surfaces & Backgrounds (Light Mode) */
  --background: #f7f9fb;
  --on-background: #191c1e;

  --surface: #ffffff;
  --on-surface: #191c1e;
  --on-surface-variant: #3f484a;

  --surface-container-lowest: #ffffff;
  --surface-container-low: #f2f4f6;
  --surface-container: #eceef0;
  --surface-container-high: #e6e8ea;
  --surface-container-highest: #e0e3e5;
  --surface-variant: #e0e3e5;

  --outline: #6f797a;
  --outline-variant: #bfc8c9;
  --error: #ba1a1a;
  --error-container: #ffdad6;
  --on-error-container: #93000a;

  /* Fonts */
  --font-headline: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows & Effects */
  --ambient-shadow: 0 20px 40px -10px rgba(0, 67, 73, 0.08);
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --hover-shadow: 0 12px 30px rgba(0, 67, 73, 0.12);
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Layout Spacing */
  --max-width: 1280px;
  --header-height: 80px;
}

/* Dark Mode Tokens */
[data-theme="dark"] {
  --background: #0f1719;
  --on-background: #e1e3e5;

  --surface: #172023;
  --on-surface: #e1e3e5;
  --on-surface-variant: #a0acae;

  --surface-container-lowest: #121a1d;
  --surface-container-low: #1b262a;
  --surface-container: #202d32;
  --surface-container-high: #27363c;
  --surface-container-highest: #2e3f46;
  --surface-variant: #2e3f46;

  --primary: #8fd1d9;
  --primary-container: #004f55;
  --on-primary: #002023;
  --on-primary-container: #abeef6;

  --secondary: #7fd3e4;
  --secondary-container: #004e59;
  --on-secondary-container: #a0efff;

  --outline: #899395;
  --outline-variant: #3f484a;

  /* Dark-mode error palette: soft salmon red for text/icons so it reads
     gently against dark surfaces, with dark red for text on error buttons */
  --error: #ffb4ab;
  --on-error: #690005;
  --error-container: #93000a;
  --on-error-container: #ffdad6;

  --ambient-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
  --soft-blush: #281926;
  --ink: #f1f5f9;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--on-background);
  line-height: 1.6;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--background);
  color: var(--on-background);
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4 {
  color: var(--primary);
}

.title-xl {
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.02em;
}

.title-lg {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
}

.title-md {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.body-lg {
  font-size: 1.125rem;
  line-height: 1.7;
}

.body-md {
  font-size: 1rem;
  line-height: 1.6;
}

.caption {
  font-size: 0.875rem;
  color: var(--on-surface-variant);
}

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

/* Header & Glassmorphism Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(247, 249, 251, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--surface-container);
  transition: background-color 0.3s ease;
}

[data-theme="dark"] .header {
  background: rgba(15, 23, 25, 0.85);
  border-bottom-color: var(--surface-variant);
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.06));
}

.logo:hover .logo-img {
  transform: scale(1.08) rotate(-2deg);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-wordmark {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--primary);
}

.logo-sub {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--on-surface-variant);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: 2px;
}

.brand-showcase-card {
  background: var(--surface);
  border: 1px solid var(--surface-variant);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--ambient-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.brand-showcase-img {
  max-width: 320px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  background: white;
  padding: 1rem;
  box-shadow: var(--card-shadow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--on-surface-variant);
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.25s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Buttons */
.icon-btn {
  background: transparent;
  border: 1px solid var(--outline-variant);
  color: var(--on-surface);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.icon-btn:hover {
  background: var(--surface-container-high);
  color: var(--primary);
}

.btn-help {
  background-color: var(--hope-orange);
  color: #ffffff !important;
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.btn-help:hover {
  background-color: #ea580c;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.35);
}

/* Dark mode: .btn-help is used with the light error surface (salmon), so
   switch its text to dark red to keep contrast instead of white-on-salmon */
[data-theme="dark"] .btn-help {
  color: #690005 !important;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--on-primary);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: var(--card-shadow);
}

.btn-primary:hover {
  background-color: var(--primary-container);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--hover-shadow);
}

.btn-secondary {
  background-color: var(--surface);
  color: var(--primary);
  border: 1px solid var(--outline-variant);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background-color: var(--surface-container);
  border-color: var(--primary);
  transform: translateY(-1px);
}

/* Mobile Navigation Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 1.75rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: var(--surface);
  border-bottom: 1px solid var(--outline-variant);
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 999;
}

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

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Main Layout & Sections */
main {
  flex: 1;
  margin-top: var(--header-height);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background-color: var(--surface-container-low);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem auto;
}

.section-header p {
  color: var(--on-surface-variant);
  margin-top: 0.75rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  background-color: var(--secondary-container);
  color: var(--on-secondary-container);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

/* Stitch Hero Section with Stock Image Overlay */
.hero-stitch {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.75rem 1.5rem;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(247, 249, 251, 0.85);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 1;
}

[data-theme="dark"] .hero-overlay {
  background: rgba(15, 23, 25, 0.88);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Stitch Stock Image Containers */
.stitch-image-container {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--ambient-shadow);
  border: 1px solid var(--surface-variant);
}

.stitch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.stitch-image-container:hover .stitch-img {
  transform: scale(1.03);
}

/* Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.grid-3-centered {
  grid-template-columns: repeat(6, 1fr);
}
.grid-3-centered > .card:nth-child(-n+3) {
  grid-column: span 2;
}
.grid-3-centered > .card:nth-child(4) {
  grid-column: 2 / span 2;
}
.grid-3-centered > .card:nth-child(5) {
  grid-column: 4 / span 2;
}

@media (max-width: 768px) {
  .grid-3-centered {
    grid-template-columns: 1fr;
  }
  /* Equal specificity to the desktop nth-child rules below, so they
     win here and fully reset card placement to natural flow */
  .grid-3-centered > .card,
  .grid-3-centered > .card:nth-child(-n+3),
  .grid-3-centered > .card:nth-child(4),
  .grid-3-centered > .card:nth-child(5) {
    grid-column: auto;
  }
}

/* Below the 320px min column width the base .grid-3 would overflow,
   so force a single column on very narrow phones */
@media (max-width: 360px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

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

/* Cards & Components */
.card {
  background-color: var(--surface);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--surface-variant);
  box-shadow: var(--card-shadow);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hover-shadow);
  border-color: var(--primary-fixed);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background-color: var(--secondary-container);
  color: var(--on-secondary-container);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.card-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.card-text {
  color: var(--on-surface-variant);
  font-size: 0.95rem;
  flex-grow: 1;
}

/* Feature Checklists */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-item span {
  color: var(--secondary);
  font-size: 1.5rem;
  margin-top: 0.1rem;
}

/* Testimonial / Impact Banner */
.impact-banner {
  background: #004f55;
  color: #ffffff;
  padding: 4rem 1.5rem;
  text-align: center;
  border-radius: var(--radius-2xl);
  margin: 3rem auto;
  max-width: var(--max-width);
  border: 2px solid #8fd1d9;
  box-shadow: 0 8px 30px rgba(0, 79, 85, 0.3);
}

.cta-content {
  text-align: center;
}

.cta-heading {
  color: #ffffff !important;
  font-family: var(--font-headline);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.cta-text {
  color: #abeef6;
}

.cta-icon {
  font-size: 3rem;
  color: #f97316;
  display: block;
  margin: 0 auto 1rem auto;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background-color: var(--hope-orange);
  color: #ffffff;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}

.btn-cta-primary:hover {
  background-color: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.35);
}

.btn-cta-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #abeef6;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-cta-secondary:hover {
  background-color: #abeef6;
  color: #004349;
  transform: translateY(-2px);
}

/* Dark Mode CTA Banner Fixes */
[data-theme="dark"] .impact-banner {
  background: #004f55;
}

[data-theme="dark"] .cta-icon {
  color: var(--hope-orange);
}

[data-theme="dark"] .btn-cta-primary {
  background-color: var(--hope-orange);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

[data-theme="dark"] .btn-cta-primary:hover {
  background-color: #ea580c;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
}

[data-theme="dark"] .btn-cta-secondary {
  color: #abeef6;
  border-color: #8fd1d9;
}

[data-theme="dark"] .btn-cta-secondary:hover {
  background-color: #8fd1d9;
  color: #002023;
}

/* Override heading color on CTA in dark mode to keep it white */
[data-theme="dark"] .impact-banner .cta-heading {
  color: #ffffff;
}

[data-theme="dark"] .impact-banner .cta-text {
  color: var(--primary-fixed-dim);
}

/* Emergency Box */
.emergency-box {
  background-color: var(--soft-blush);
  border: 1px solid var(--error-container);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.emergency-title {
  color: var(--hope-orange);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.emergency-phone {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1.25rem 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.phone-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-headline);
}

.support-email {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--on-surface-variant);
  text-decoration: none;
}

.support-email:hover {
  color: var(--primary);
  text-decoration: underline;
}

.call-btn {
  background: var(--hope-orange);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.call-btn:hover {
  transform: scale(1.1);
}

/* Forms & Inputs */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--on-surface);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--outline-variant);
  background-color: var(--surface);
  color: var(--on-surface);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0, 104, 118, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* File Upload (Resume) */
.form-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

.form-file {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  padding: 1.75rem 1.25rem;
  border: 2px dashed var(--outline-variant);
  border-radius: var(--radius-md);
  background-color: var(--surface);
  color: var(--on-surface-variant);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

.form-file:hover {
  border-color: var(--secondary);
  background-color: var(--secondary-container);
  color: var(--on-secondary-container);
}

.form-file:focus-within {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0, 104, 118, 0.15);
}

.form-file .form-file-icon {
  font-size: 2.25rem;
  color: var(--secondary);
}

.form-file .form-file-text {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--on-surface);
}

.form-file .form-file-hint {
  opacity: 0.8;
}

.form-file.has-file .form-file-text {
  color: var(--primary);
}

.form-error {
  color: #ba1a1a;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Floating Quick Exit Widget */
.quick-exit-bar {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1001;
}

.quick-exit-btn {
  background-color: #ba1a1a;
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(186, 26, 26, 0.4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
}

.quick-exit-btn:hover {
  background-color: #93000a;
  transform: scale(1.05);
}

/* Footer */
.footer {
  background-color: var(--surface-container);
  border-top: 1px solid var(--surface-variant);
  padding: 3.5rem 0 2rem 0;
  margin-top: auto;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--on-surface-variant);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: var(--on-surface-variant);
  border-top: 1px solid var(--outline-variant);
  padding-top: 1.5rem;
}

.footer-email {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.5rem;
  word-break: break-word;
}

.footer-email:hover {
  text-decoration: underline;
}

.footer-phone {
  color: var(--on-surface-variant);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.5rem;
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .nav-links, .nav-actions {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .section {
    padding: 3rem 0;
  }
}
