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

/* ── VARIABLES ── */
:root {
  --teal: #4CB8C4;
  --teal-light: #5EC6D1;
  --teal-dark: #3A9BA6;
  --navy: #0B1821;
  --navy-light: #122230;
  --navy-mid: #1E3340;
  --silver: #A0A8AD;
  --silver-light: #BFC5C9;
  --gold: #D4C84A;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
  --transition: 0.2s ease;
}

/* ── RESET ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Roboto, sans-serif;
  color: var(--gray-800); background: var(--white); line-height: 1.6;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; color: var(--gray-900); letter-spacing: -0.025em; }
h1 { font-size: clamp(1.875rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.125rem; }
a { color: var(--teal-dark); }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
@media (max-width: 768px) { section { padding: 56px 0; } }
.label { text-transform: uppercase; letter-spacing: 2px; font-size: 0.7rem; font-weight: 600; color: var(--teal-dark); margin-bottom: 8px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy); border-bottom: 1px solid rgba(255,255,255,0.06);
  height: 56px; transition: background 0.3s ease;
}
nav.nav-transparent { background: transparent; border-bottom-color: transparent; }
nav.nav-scrolled { background: var(--navy); border-bottom: 1px solid rgba(255,255,255,0.06); }
nav .container { display: flex; justify-content: space-between; align-items: center; height: 100%; }
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo img { height: 24px; width: auto; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.8125rem;
  font-weight: 500; transition: color var(--transition); letter-spacing: 0.01em;
}
.nav-links a:hover { color: white; }
.nav-links a.active { color: white; }
.nav-cta {
  background: var(--teal) !important; color: var(--navy) !important;
  padding: 6px 16px; border-radius: 6px; font-weight: 600 !important;
  font-size: 0.8125rem !important; display: inline-flex !important;
  align-items: center; gap: 5px; transition: background var(--transition);
}
.nav-cta:hover { background: var(--teal-light) !important; }
.nav-cta svg { width: 13px; height: 13px; }
.mobile-menu-btn {
  display: none; background: none; border: none;
  color: rgba(255,255,255,0.7); cursor: pointer; padding: 4px;
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
}

/* ── MOBILE MENU OVERLAY ── */
.mobile-menu {
  display: none; position: fixed; top: 56px; left: 0; right: 0; bottom: 0;
  background: var(--navy); z-index: 999; padding: 24px;
  flex-direction: column; gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.7); text-decoration: none; font-size: 1.125rem;
  font-weight: 500; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  display: block; transition: color var(--transition);
}
.mobile-menu a:hover { color: white; }
.mobile-menu a.nav-cta {
  margin-top: 16px; text-align: center; justify-content: center;
  border-bottom: none; border-radius: 8px; padding: 14px 24px;
}

/* ── HERO / WEBCAM ── */
.hero {
  background: var(--navy); padding: 56px 0 0; margin-top: 56px;
}
.hero-inner { padding: 48px 0 0; }
.hero-top { margin-bottom: 24px; }
.hero-top .label { color: var(--teal); }
.hero h1 { color: var(--white); margin-bottom: 8px; font-weight: 800; }
.hero h1 .teal { color: var(--teal); }
.hero-sub { color: rgba(255,255,255,0.5); font-size: 1rem; max-width: 540px; }

.webcam-container { position: relative; max-width: 100%; margin-top: 32px; }
.webcam-frame {
  position: relative; border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden; background: #000; aspect-ratio: 16/9;
  box-shadow: 0 -1px 0 rgba(255,255,255,0.05);
}
.webcam-frame iframe {
  width: 100%; height: 100%; border: none; position: absolute; top: 0; left: 0;
}
.cam-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(8px);
  color: white; padding: 4px 10px; border-radius: 4px;
  font-size: 0.6875rem; font-weight: 600; display: flex;
  align-items: center; gap: 5px; z-index: 2; letter-spacing: 0.5px;
}
.cam-badge .dot { width: 6px; height: 6px; background: #ef4444; border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }
.cam-sponsor {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  padding: 20px 16px 10px; text-align: center;
  color: rgba(255,255,255,0.6); font-size: 0.6875rem; z-index: 2;
}
.cam-sponsor strong { color: rgba(255,255,255,0.85); font-weight: 600; }
.cam-sponsor .sponsor-logo { height: 20px; width: auto; vertical-align: middle; margin-left: 6px; opacity: 0.85; }

/* Conditions strip */
.conditions {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--gray-900); border-top: 1px solid rgba(255,255,255,0.04);
}
.cond { padding: 16px; text-align: center; border-right: 1px solid rgba(255,255,255,0.04); }
.cond:last-child { border-right: none; }
.cond-label { color: rgba(255,255,255,0.35); font-size: 0.625rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 2px; }
.cond-val { color: white; font-size: 1.25rem; font-weight: 700; }
.cond-unit { color: rgba(255,255,255,0.3); font-size: 0.75rem; font-weight: 400; }
@media (max-width: 640px) { .conditions { grid-template-columns: repeat(2, 1fr); } .cond { border-bottom: 1px solid rgba(255,255,255,0.04); } }

/* ── APP DOWNLOAD SECTION ── */
.app-section {
  background: var(--white); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200);
  padding: 72px 0;
}
.app-inner { display: grid; grid-template-columns: 1fr 280px; gap: 56px; align-items: center; }
.app-text h2 { margin-bottom: 12px; }
.app-text > p { color: var(--gray-500); line-height: 1.7; margin-bottom: 28px; max-width: 480px; }
.app-stores { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.store-btn {
  display: flex; align-items: center; gap: 14px;
  background: var(--navy); color: white; padding: 14px 24px;
  border-radius: 10px; text-decoration: none; transition: all var(--transition);
  min-width: 220px;
}
.store-btn:hover { background: var(--navy-light); transform: translateX(2px); }
.store-btn svg { width: 24px; height: 24px; flex-shrink: 0; opacity: 0.9; }
.store-btn-text { display: flex; flex-direction: column; }
.store-btn-label { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); line-height: 1; }
.store-btn-name { font-size: 1.0625rem; font-weight: 700; line-height: 1.3; }
.app-checklist { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.app-checklist li { display: flex; align-items: center; gap: 8px; color: var(--gray-600); font-size: 0.875rem; }
.app-checklist li svg { width: 16px; height: 16px; color: var(--teal-dark); flex-shrink: 0; }

/* Phone mockup */
.phone-mock { position: relative; }
.phone-device {
  width: 260px; height: 530px; background: var(--gray-900);
  border-radius: 36px; border: 3px solid var(--gray-700);
  padding: 8px; box-shadow: var(--shadow-lg);
  overflow: hidden; position: relative;
}
.phone-screen-wrap {
  width: 100%; height: 100%; border-radius: 28px; overflow: hidden;
  position: relative; background: #000;
}
.phone-slide {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity 1s ease-in-out;
}
.phone-slide.active { opacity: 1; }
@media (max-width: 768px) {
  .app-inner { grid-template-columns: 1fr; text-align: center; }
  .app-stores { align-items: center; }
  .app-checklist { align-items: center; }
  .phone-mock { display: none; }
}

/* ── ABOUT ── */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 340px; gap: 64px; align-items: start; }
.about-text { max-width: 640px; }
.about-text p { color: var(--gray-600); margin-bottom: 16px; line-height: 1.8; }
.about-text .read-more { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 0.9375rem; margin-top: 8px; }
.stats-col { display: flex; flex-direction: column; gap: 16px; }
.stat-card {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
}
.stat-icon { color: var(--teal-dark); flex-shrink: 0; }
.stat-icon svg { width: 20px; height: 20px; }
.stat-num { font-size: 1.5rem; font-weight: 800; color: var(--gray-900); line-height: 1; }
.stat-label { color: var(--gray-500); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ── FEATURES ── */
.features { background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.features-header { margin-bottom: 40px; }
.features-header h2 { margin-bottom: 8px; }
.features-header p { color: var(--gray-500); max-width: 480px; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--gray-200); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; }
.feat {
  background: white; padding: 28px 24px; transition: background var(--transition);
}
.feat:hover { background: var(--gray-50); }
.feat-icon { margin-bottom: 12px; }
.feat-icon svg { width: 20px; height: 20px; }
.feat-icon.cam { color: var(--teal-dark); }
.feat-icon.weather { color: #2563eb; }
.feat-icon.lake { color: #059669; }
.feat-icon.events { color: #d97706; }
.feat-icon.news { color: #7c3aed; }
.feat-icon.alerts { color: #dc2626; }
.feat h3 { margin-bottom: 6px; font-size: 0.9375rem; }
.feat p { color: var(--gray-500); font-size: 0.8125rem; line-height: 1.6; }
@media (max-width: 768px) { .feat-grid { grid-template-columns: 1fr; } }

/* ── SUNSET ── */
.sunset { background: var(--gray-900); }
.sunset-inner { display: flex; align-items: center; gap: 48px; }
.sunset-text { flex: 1; }
.sunset-text .label { color: var(--gold); }
.sunset-text h2 { color: white; margin-bottom: 8px; }
.sunset-text p { color: rgba(255,255,255,0.5); margin-bottom: 20px; max-width: 400px; line-height: 1.7; }
.sunset-links { display: flex; gap: 16px; }
.sunset-link {
  color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.8125rem;
  font-weight: 600; display: inline-flex; align-items: center; gap: 6px;
  transition: color var(--transition);
}
.sunset-link:hover { color: white; }
.sunset-link svg { width: 16px; height: 16px; }
.sunset-gallery { flex-shrink: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: 400px; }
.sunset-thumb {
  border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 16/9; background: #000;
}
.sunset-thumb:first-child { grid-column: 1 / -1; }
.sunset-img { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; top: 0; left: 0; }
@media (max-width: 768px) { .sunset-inner { flex-direction: column; } .sunset-gallery { width: 100%; } }

/* ── EVENTS ── */
.events { background: white; }
.events-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 24px; }
.events-header h2 { margin-bottom: 0; }
.link-arrow {
  color: var(--teal-dark); text-decoration: none; font-weight: 600; font-size: 0.8125rem;
  display: inline-flex; align-items: center; gap: 4px; transition: gap var(--transition);
}
.link-arrow:hover { gap: 8px; }
.link-arrow svg { width: 14px; height: 14px; }
.ev-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; }
.ev {
  display: grid; grid-template-columns: 72px 1fr; border-bottom: 1px solid var(--gray-200);
  transition: background var(--transition);
}
.ev:last-child { border-bottom: none; }
.ev:hover { background: var(--gray-50); }
.ev-date {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 16px 12px; background: var(--gray-50); border-right: 1px solid var(--gray-200);
}
.ev-day { font-size: 1.25rem; font-weight: 800; color: var(--gray-900); line-height: 1; }
.ev-mon { font-size: 0.625rem; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; }
.ev-body { padding: 16px 20px; }
.ev-body h3 { font-size: 0.9375rem; margin-bottom: 2px; }
.ev-body p { color: var(--gray-500); font-size: 0.8125rem; }
.ev-body .ev-meta { display: flex; gap: 16px; margin-top: 6px; }
.ev-body .ev-meta a { font-size: 0.75rem; font-weight: 600; }
.ev-body .ev-source { display: inline-block; font-size: 0.625rem; background: var(--gray-100); color: var(--gray-500); padding: 2px 8px; border-radius: 4px; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
@media (max-width: 640px) { .events-header { flex-direction: column; align-items: flex-start; gap: 8px; } }

/* ── LAKE GUIDE (SEO content) ── */
.guide { background: var(--gray-50); border-top: 1px solid var(--gray-200); }
.guide-inner { max-width: 720px; margin: 0 auto; }
.guide-inner h2 { margin-bottom: 8px; }
.guide-intro { color: var(--gray-500); margin-bottom: 40px; }
.guide-entry { margin-bottom: 28px; }
.guide-entry h3 { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; color: var(--gray-900); }
.guide-entry h3 svg { width: 18px; height: 18px; color: var(--teal-dark); flex-shrink: 0; }
.guide-entry p { color: var(--gray-600); line-height: 1.8; }
.guide-sep { width: 40px; height: 2px; background: var(--gray-300); margin: 32px 0; }

/* ── BOTTOM CTA ── */
.bottom-cta {
  background: var(--navy); padding: 64px 0; text-align: center;
}
.bottom-cta h2 { color: white; margin-bottom: 8px; }
.bottom-cta p { color: rgba(255,255,255,0.45); max-width: 440px; margin: 0 auto 32px; line-height: 1.7; }
.bottom-stores { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.bottom-stores .store-btn { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); min-width: 200px; }
.bottom-stores .store-btn:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.18); }

/* ── FOOTER ── */
footer {
  background: var(--gray-900); padding: 40px 0 20px;
  color: rgba(255,255,255,0.4); font-size: 0.8125rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer-brand img { height: 20px; width: auto; margin-bottom: 10px; }
.footer-brand p { line-height: 1.7; max-width: 260px; }
.footer-col h4 { color: rgba(255,255,255,0.7); font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.8125rem; transition: color var(--transition); }
.footer-col a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05); padding-top: 16px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: rgba(255,255,255,0.3);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── ABOUT PAGE: TOC SIDEBAR ── */
.about-page-layout { display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: start; }
.about-toc { position: sticky; top: 72px; }
.about-toc h4 { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray-400); margin-bottom: 12px; font-weight: 600; }
.about-toc ul { list-style: none; }
.about-toc li { margin-bottom: 8px; }
.about-toc a { color: var(--gray-500); text-decoration: none; font-size: 0.8125rem; font-weight: 500; transition: color var(--transition); display: block; padding: 4px 0; border-left: 2px solid transparent; padding-left: 12px; }
.about-toc a:hover, .about-toc a.active { color: var(--teal-dark); border-left-color: var(--teal-dark); }
.about-content h2 { margin-top: 48px; margin-bottom: 12px; }
.about-content h2:first-child { margin-top: 0; }
.about-content h3 { margin-top: 32px; margin-bottom: 8px; }
.about-content p { color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }
.about-content ul { color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; padding-left: 24px; }
.about-content li { margin-bottom: 6px; }
@media (max-width: 768px) {
  .about-page-layout { grid-template-columns: 1fr; gap: 24px; }
  .about-toc { position: static; }
}

/* ── EVENTS PAGE: FILTERS ── */
.events-filters { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.events-filters button {
  background: var(--gray-100); border: 1px solid var(--gray-200); color: var(--gray-600);
  padding: 6px 16px; border-radius: 20px; font-size: 0.8125rem; font-weight: 500;
  cursor: pointer; transition: all var(--transition);
}
.events-filters button:hover { background: var(--gray-200); }
.events-filters button.active { background: var(--teal); color: var(--navy); border-color: var(--teal); font-weight: 600; }

/* ── SUNSETS PAGE: GALLERY ── */
.sunset-page-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.sunset-page-gallery .sunset-card {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/10;
  background: #000;
  position: relative;
}
.sunset-page-gallery .sunset-card img,
.sunset-page-gallery .sunset-card video {
  width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0;
}
.sunset-page-gallery .sunset-card .sunset-date {
  position: absolute; bottom: 8px; left: 8px; background: rgba(0,0,0,0.6);
  color: white; font-size: 0.6875rem; padding: 2px 8px; border-radius: 4px;
  font-weight: 500;
}
@media (max-width: 640px) { .sunset-page-gallery { grid-template-columns: 1fr 1fr; } }
@media (max-width: 400px) { .sunset-page-gallery { grid-template-columns: 1fr; } }

/* ── DOWNLOAD PAGE ── */
.download-hero {
  background: var(--navy); padding: 80px 0 64px; margin-top: 56px; text-align: center;
}
.download-hero h1 { color: white; margin-bottom: 12px; }
.download-hero p { color: rgba(255,255,255,0.5); max-width: 520px; margin: 0 auto 32px; }
.download-stores-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.download-features { padding: 64px 0; }
.download-features .feat-grid { margin-top: 32px; }

/* ── WEBCAM PAGE ── */
.webcam-page-hero {
  background: var(--navy); padding: 24px 0 0; margin-top: 56px;
}
.webcam-fullwidth {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.webcam-fullwidth .webcam-frame { border-radius: var(--radius-lg); }
.webcam-fullwidth .conditions { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.apple-tv-callout {
  background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 24px 32px; display: flex; align-items: center; gap: 16px; margin-top: 32px;
}
.apple-tv-callout svg { width: 32px; height: 32px; color: var(--gray-400); flex-shrink: 0; }
.apple-tv-callout h3 { font-size: 1rem; margin-bottom: 2px; }
.apple-tv-callout p { color: var(--gray-500); font-size: 0.875rem; margin: 0; }

/* ── INNER PAGE HERO (non-home pages) ── */
.page-hero {
  background: var(--navy); padding: 80px 0 48px; margin-top: 56px;
}
.page-hero .label { color: var(--teal); }
.page-hero h1 { color: white; margin-bottom: 8px; }
.page-hero p { color: rgba(255,255,255,0.5); max-width: 540px; }

/* ── LEGAL PAGES ── */
.legal-content { max-width: 720px; margin: 0 auto; }
.legal-content h2 { margin-top: 40px; margin-bottom: 12px; font-size: 1.25rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }
.legal-content ul { color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; padding-left: 24px; }
.legal-content li { margin-bottom: 6px; }
.legal-content a { color: var(--teal-dark); }
