/* ═══════════════════════════════════════════════════════
   CSS VARIABLES & RESET
   ═══════════════════════════════════════════════════════ */
:root {
  /* Dark surfaces — rich teal (headers, nav, footer, CTAs) */
  --navy-deepest: #1A3640;
  --navy-deep: #234550;
  --navy: #2D5560;
  --navy-mid: #355E68;
  --navy-light: #3E606A;
  --slate: #4D7580;
  --slate-light: #7A9EA8;

  /* Accent — dominant teal */
  --gold: #3E606A;
  --gold-light: #5A8A96;
  --gold-dim: #2D4A52;
  --gold-pale: #E4EEF0;

  /* Light surfaces — clean & bright so accents pop */
  --bg-primary: #FAFBFC;
  --bg-secondary: #F1F4F5;
  --bg-tertiary: #E6ECEE;
  --bg-card: #FFFFFF;

  /* Text — high contrast on light backgrounds */
  --text-dark: #1B2D32;
  --text-body: #2C3E44;
  --text-secondary: #506A72;
  --text-muted: #7E9298;

  /* Text on dark backgrounds — aligned with hero subtitle & testimonial body */
  --text-on-dark: #ffffff;
  --text-secondary-on-dark: #eaf2f4;
  --text-muted-on-dark: #c5d8df;

  /* Borders & shadows */
  --border-light: rgba(62, 96, 106, 0.10);
  --border-gold: rgba(62, 96, 106, 0.22);
  --card-shadow: 0 2px 20px rgba(45, 85, 96, 0.06);
  --card-shadow-hover: 0 12px 40px rgba(45, 85, 96, 0.12);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --schedule-banner-height: 46px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ═══════════════════════════════════════════════════════
   SCHEDULE BANNER (site-wide, above nav)
   ═══════════════════════════════════════════════════════ */
.schedule-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  min-height: var(--schedule-banner-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem clamp(0.75rem, 3vw, 1.5rem);
  background: linear-gradient(105deg, var(--navy-deepest) 0%, #1e4550 45%, var(--navy-mid) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-family: var(--font-body);
  font-size: clamp(0.65rem, 1.1vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  transition: background 0.35s ease, color 0.25s ease;
}
.schedule-banner:hover {
  background: var(--navy-deep);
  color: #fff;
}
.schedule-banner-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  max-width: min(1040px, 100%);
  line-height: 1.4;
}
.schedule-banner-chevron {
  opacity: 0.9;
  flex-shrink: 0;
  font-size: 1.1em;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ═══════════════════════════════════════════════════════
   NAVIGATION (always on dark headers)
   ═══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: var(--schedule-banner-height);
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s var(--transition-smooth);
}

/* Default: light text on dark hero — align with admin tabs / nav secondary CTA */
.nav .nav-logo-text { color: #fff; }
.nav .nav-link { color: var(--text-secondary-on-dark); }
.nav .nav-link:hover { color: #fff; }
.nav .nav-link.active { color: var(--gold-light); }
.nav .nav-hamburger span { background: #fff; }

/* Scrolled: frosted glass light */
.nav.scrolled {
  background: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 20px rgba(0,0,0,0.05);
}
.nav.scrolled .nav-logo-text { color: var(--text-dark); }
.nav.scrolled .nav-link { color: var(--text-secondary); }
.nav.scrolled .nav-link:hover, .nav.scrolled .nav-link.active { color: var(--gold); }
.nav.scrolled .nav-hamburger span { background: var(--text-dark); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}
.nav-logo-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: contain;
  transition: all 0.3s ease;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: nowrap;
}
.nav-auth {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: nowrap;
}
.nav-auth--user {
  align-items: center;
  gap: 0.75rem;
}
.nav-auth-text {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0.25rem 0;
}
.nav .nav-auth-text { color: var(--text-muted-on-dark); }
.nav .nav-auth-text:hover { color: var(--gold-light); }
.nav.scrolled .nav-auth-text { color: var(--text-secondary); }
.nav.scrolled .nav-auth-text:hover { color: var(--gold); }
.nav-auth-email {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted-on-dark);
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav.scrolled .nav-auth-email { color: var(--text-muted); }

.mobile-auth {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.mobile-auth--user { gap: 0.75rem; }
.mobile-auth-email {
  font-size: 0.85rem;
  color: var(--text-muted-on-dark);
  max-width: 85vw;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

.nav-link {
  font-size: 0.82rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  position: relative; padding: 0.25rem 0;
  transition: color 0.3s ease; cursor: pointer;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width 0.4s var(--transition-smooth);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
  padding: 0.55rem 1rem;
  border: 1px solid;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.nav-cta:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

/* Header CTAs — one style for all (Log In, Change Password, Sign Up, Log Out) */
.nav .nav-cta,
.mobile-menu .nav-cta {
  background: var(--gold);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.nav .nav-cta:hover,
.mobile-menu .nav-cta:hover {
  background: var(--gold-light);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 4px 16px rgba(45, 85, 96, 0.22);
}

.nav.scrolled .nav-cta {
  background: var(--gold);
  color: #fff;
  border-color: rgba(62, 96, 106, 0.35);
  box-shadow: 0 1px 2px rgba(45, 85, 96, 0.06);
}
.nav.scrolled .nav-cta:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 18px rgba(62, 96, 106, 0.16);
}
a.nav-cta {
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
}

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; z-index: 1001;
}
.nav-hamburger span { width: 24px; height: 2px; transition: all 0.3s ease; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(15, 22, 40, 0.97); backdrop-filter: blur(30px);
  z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { font-size: 1.1rem; letter-spacing: 0.15em; color: var(--text-secondary-on-dark); }
.mobile-menu .nav-link:hover { color: #fff; }
.mobile-menu .nav-link.active { color: var(--gold-light); }
.mobile-menu .nav-cta {
  padding: 0.6rem 1.6rem;
  font-size: 0.78rem;
}
.mobile-menu .mobile-logout-btn { margin-top: 0.25rem; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ═══════════════════════════════════════════════════════
   PAGE SECTIONS
   ═══════════════════════════════════════════════════════ */
.page-section { display: none; min-height: 100vh; }
.page-section.active { display: block; animation: fadeInPage 0.5s var(--transition-smooth); }

@keyframes fadeInPage {
  from { opacity: 0; } to { opacity: 1; }
}

/* ═══════════════════════════════════════════════════════
   DARK PAGE HEADER (used on every page)
   ═══════════════════════════════════════════════════════ */
.dark-header {
  padding: 10rem clamp(2rem, 6vw, 8rem) clamp(3.5rem, 5vw, 5rem);
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.dark-header::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(62, 96, 106, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(36, 48, 82, 0.3) 0%, transparent 50%);
  pointer-events: none;
}
.dark-header::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  pointer-events: none;
}
.dark-header-content {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════
   TYPOGRAPHY ON DARK
   ═══════════════════════════════════════════════════════ */
.label-dark {
  display: inline-flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem;
}
.label-dark-line { width: 32px; height: 1px; background: var(--gold); }
.label-dark-text {
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em; color: #fff;
}

.heading-dark {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 300; line-height: 1.12;
  color: #fff;
}
.heading-dark em { font-style: italic; color: var(--gold-light); font-weight: 400; }

.desc-dark {
  color: var(--text-secondary-on-dark);
  max-width: 560px; margin-top: 1.25rem;
  font-size: 1.05rem; line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════
   TYPOGRAPHY ON LIGHT
   ═══════════════════════════════════════════════════════ */
.label-light {
  display: inline-flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem;
}
.label-light-line { width: 32px; height: 1px; background: var(--gold); }
.label-light-text {
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold);
}

.heading-light {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; line-height: 1.2;
  color: var(--text-dark); margin-bottom: 1.5rem;
}
.heading-light em { font-style: italic; color: var(--gold); }

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */
.btn-primary {
  padding: 0.9rem 2.5rem; background: var(--gold); color: #fff;
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  transition: all 0.3s ease;
  display: inline-flex; align-items: center; gap: 0.5rem; cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(62, 96, 106, 0.2);
}
.btn-primary:disabled,
.btn-primary--loading {
  opacity: 0.8;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
.btn-spinner {
  width: 0.95rem;
  height: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: btnSpin 0.85s linear infinite;
}
@keyframes btnSpin {
  to { transform: rotate(360deg); }
}

.btn-outline-light {
  padding: 0.9rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.2); color: var(--text-secondary-on-dark);
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  transition: all 0.3s ease; cursor: pointer;
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold-light); }

.btn-outline {
  padding: 0.9rem 2.5rem;
  border: 1px solid var(--navy); color: var(--navy);
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  transition: all 0.3s ease; cursor: pointer;
}
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-arrow { transition: transform 0.3s ease; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════
   HOME — HERO (taller version of dark header)
   ═══════════════════════════════════════════════════════ */
.hero {
  height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--navy-deep);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(62, 96, 106, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(36, 48, 82, 0.3) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 900px; padding: 0 clamp(2rem, 6vw, 8rem);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  margin-bottom: 2rem; opacity: 0;
  animation: slideUp 0.8s var(--transition-smooth) 0.3s forwards;
}
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.hero-eyebrow-text {
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em; color: #fff;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300; line-height: 1.08; color: #fff;
  margin-bottom: 1.5rem; opacity: 0;
  animation: slideUp 0.8s var(--transition-smooth) 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.hero-subtitle {
  font-size: 1.15rem; font-weight: 300;
  color: var(--text-secondary-on-dark);
  max-width: 540px; line-height: 1.8; margin-bottom: 2.5rem;
  opacity: 0; animation: slideUp 0.8s var(--transition-smooth) 0.7s forwards;
}
.hero-actions {
  display: flex; gap: 1.25rem; flex-wrap: wrap;
  opacity: 0; animation: slideUp 0.8s var(--transition-smooth) 0.9s forwards;
}
.hero-scroll {
  position: absolute; bottom: 3rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0; animation: fadeIn 1s ease 1.5s forwards;
}
.hero-scroll span {
  font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--text-muted-on-dark);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { to { opacity: 1; } }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ═══════════════════════════════════════════════════════
   HOME — VISION STRIP (light)
   ═══════════════════════════════════════════════════════ */
.vision-strip {
  padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 6vw, 8rem);
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
}
.vision-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 5rem; align-items: start;
}
@media (max-width: 800px) { .vision-grid { grid-template-columns: 1fr; gap: 2rem; } }
.vision-text { font-size: 1rem; color: var(--text-secondary); line-height: 1.9; }
.vision-text p + p { margin-top: 1.25rem; }

/* ═══════════════════════════════════════════════════════
   HOME — TESTIMONIALS (dark band)
   ═══════════════════════════════════════════════════════ */
.testimonials {
  padding: clamp(5rem, 10vw, 8rem) clamp(2rem, 6vw, 8rem);
  background: var(--navy-deep);
  position: relative; overflow: hidden;
}
.testimonials::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(62, 96, 106, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.testimonials-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.testimonials .heading-light { color: #fff; }
.testimonials .heading-light em { color: var(--gold-light); }

.testimonial-carousel { position: relative; overflow: hidden; margin-top: 3rem; }
.testimonial-track { display: flex; transition: transform 0.7s var(--transition-smooth); }
.testimonial-card { min-width: 100%; padding: 3rem clamp(1.5rem, 4vw, 4rem); }
.testimonial-quote {
  font-family: var(--font-display); font-size: 5rem;
  color: var(--gold); opacity: 0.3; line-height: 1; margin-bottom: -1rem;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 400; font-style: italic; line-height: 1.7;
  color: var(--text-secondary-on-dark); max-width: 800px;
}
.testimonial-dots { display: flex; gap: 0.75rem; margin-top: 2.5rem; justify-content: center; }
.testimonial-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2); cursor: pointer; transition: all 0.3s ease;
}
.testimonial-dot.active { background: var(--gold); transform: scale(1.3); }

/* ═══════════════════════════════════════════════════════
   HOME — CTA
   ═══════════════════════════════════════════════════════ */
.cta-light {
  padding: clamp(5rem, 10vw, 8rem) clamp(2rem, 6vw, 8rem);
  text-align: center; background: var(--bg-primary);
}
.cta-light-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; color: var(--text-dark); margin-bottom: 1rem;
}
.cta-light-heading em { color: var(--gold); font-style: italic; }
.cta-light-sub {
  font-size: 1rem; color: var(--text-secondary);
  margin-bottom: 2.5rem; max-width: 500px;
  margin-left: auto; margin-right: auto;
}

/* Dark CTA variant */
.cta-dark {
  padding: clamp(4rem, 8vw, 6rem) clamp(2rem, 6vw, 8rem);
  text-align: center; background: var(--navy-deep);
  position: relative; overflow: hidden;
}
.cta-dark::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(62, 96, 106, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
.cta-dark-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400; color: #fff; margin-bottom: 0.75rem;
  position: relative; z-index: 2;
}
.cta-dark-heading em { color: var(--gold-light); font-style: italic; }
.cta-dark-sub {
  font-size: 0.95rem; color: var(--text-secondary-on-dark);
  margin-bottom: 2rem; position: relative; z-index: 2;
}

/* ═══════════════════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════════════════ */
.newsletter {
  padding: 4rem clamp(2rem, 6vw, 8rem);
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.newsletter-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.newsletter-title {
  font-family: var(--font-display); font-size: 1.6rem;
  font-weight: 400; color: var(--text-dark); margin-bottom: 0.75rem;
}
.newsletter-sub { font-size: 0.92rem; color: var(--text-secondary); margin-bottom: 2rem; }
.newsletter-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto; }
.newsletter-input {
  flex: 1; background: #fff; border: 1px solid var(--bg-tertiary);
  border-right: none; padding: 0.85rem 1.2rem;
  color: var(--text-dark); font-family: var(--font-body);
  font-size: 0.9rem; outline: none; transition: border-color 0.3s ease;
}
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-input::placeholder { color: var(--text-muted); }
.newsletter-btn {
  padding: 0.85rem 2rem; background: var(--navy);
  color: #fff; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  transition: background 0.3s ease; cursor: pointer; white-space: nowrap;
}
.newsletter-btn:hover { background: var(--gold); }

/* ═══════════════════════════════════════════════════════
   ABOUT — DIFFERENTIATORS
   ═══════════════════════════════════════════════════════ */
.content-section {
  padding: clamp(3.5rem, 6vw, 5rem) clamp(2rem, 6vw, 8rem);
  background: var(--bg-primary);
}
.content-section--alt { background: var(--bg-secondary); border-top: 1px solid var(--border-light); }
.content-section-inner { max-width: 1100px; margin: 0 auto; }

/* Track record page: half-width columns — disclaimer | PDF */
.content-section-inner--track-split {
  max-width: 1320px;
}
.track-split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: start;
}
.track-split-layout__disclaimer .disclaimer-box {
  margin-top: 1.5rem;
}
.track-split-layout__viewer .heading-light {
  margin-top: 0.35rem;
  margin-bottom: 0;
}
.track-split-layout__viewer #track-list-container {
  margin-top: 0.5rem;
}
.track-split-layout__viewer .tr-list {
  margin-top: 0.75rem;
}
.track-split-layout__viewer .tr-viewer {
  margin-top: 0;
}
/* Slightly shorter PDF in split layout so both columns feel balanced */
.track-split-layout .tr-pdf-frame-shell {
  min-height: min(62vh, 680px);
}
.track-split-layout .tr-pdf-frame {
  height: min(62vh, 680px);
  min-height: 360px;
}
@media (max-width: 900px) {
  .track-split-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .track-split-layout .tr-pdf-frame-shell {
    min-height: min(68vh, 720px);
  }
  .track-split-layout .tr-pdf-frame {
    height: min(68vh, 720px);
  }
}

.diff-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.diff-card {
  padding: 2.5rem; background: var(--bg-card);
  border: 1px solid var(--border-light);
  transition: all 0.4s ease; position: relative; overflow: hidden;
  box-shadow: var(--card-shadow);
}
.diff-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--gold);
  transition: height 0.5s var(--transition-smooth);
}
.diff-card:hover::before { height: 100%; }
.diff-card:hover {
  border-color: var(--border-gold); transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}
.diff-card-title {
  font-family: var(--font-display); font-size: 1.4rem;
  font-weight: 500; color: var(--text-dark); margin-bottom: 0.75rem;
}
.diff-card-text { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; }

.methodology-text {
  font-size: 1.05rem; color: var(--text-secondary);
  line-height: 1.9; max-width: 800px;
}
.methodology-text p + p { margin-top: 1.25rem; }

/* ═══════════════════════════════════════════════════════
   MEDIA — ITEMS & ARTICLES
   ═══════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════
   VIDEO CARDS (inline YouTube player)
   ═══════════════════════════════════════════════════════ */
.video-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--card-shadow);
}
.video-card:hover {
  border-color: var(--border-gold); transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
}

.video-card-thumb {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0; overflow: hidden;
  cursor: pointer;
  background: var(--navy-deep);
}
.video-card-thumb img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease, transform 0.4s ease;
}
.video-card-thumb:hover img {
  transform: scale(1.05); opacity: 0.85;
}

.video-card-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem;
  padding-left: 3px; /* optical center for triangle */
  transition: all 0.3s ease;
  pointer-events: none;
}
.video-card-thumb:hover .video-card-play {
  background: var(--gold);
  border-color: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-card-thumb iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.video-card-info {
  padding: 1.25rem 1.5rem 1.5rem;
}
.video-card-pub {
  font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--gold); margin-bottom: 0.5rem;
}
.video-card-title {
  font-family: var(--font-display); font-size: 1.05rem;
  font-weight: 500; color: var(--text-dark); line-height: 1.45;
}

/* ═══════════════════════════════════════════════════════
   PUBLISHED ARTICLES
   ═══════════════════════════════════════════════════════ */
.pub-group {
  margin-top: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.pub-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.25rem 1.75rem;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
}
.pub-group-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}
.pub-author-link {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}
.pub-author-link:hover { color: var(--gold-light); }

.pub-list {
  display: flex;
  flex-direction: column;
}
.pub-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.75rem;
  text-decoration: none;
  border-bottom: 1px solid var(--border-light);
  transition: all 0.25s ease;
  cursor: pointer;
}
.pub-item:last-child { border-bottom: none; }
.pub-item:hover {
  background: var(--bg-secondary);
  padding-left: 2.25rem;
}
.pub-item-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}
.pub-item-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
  transition: color 0.25s ease;
}
.pub-item:hover .pub-item-title { color: var(--gold); }
.pub-item-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pub-item-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.pub-item-arrow {
  font-size: 1rem;
  color: var(--text-muted);
  transition: color 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
}
.pub-item:hover .pub-item-arrow {
  color: var(--gold);
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .pub-item-desc { -webkit-line-clamp: 1; line-clamp: 1; }
}
@media (max-width: 600px) {
  .pub-group-header { padding: 1rem 1.25rem; }
  .pub-item { padding: 0.75rem 1.25rem; }
  .pub-item:hover { padding-left: 1.5rem; }
  .pub-item-meta { display: none; }
  .pub-item-desc { display: none; }
}

/* ═══════════════════════════════════════════════════════
   TRACK RECORD
   ═══════════════════════════════════════════════════════ */

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: var(--card-shadow);
}
.stat-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
}
.stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

/* PDF Download Card */
.tr-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  margin-top: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}
.tr-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--card-shadow-hover);
}
.tr-card-icon {
  width: 56px;
  height: 56px;
  background: var(--navy-deep);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
}
.tr-card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.tr-card-date {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
}
.tr-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
}
.tr-card-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.tr-card-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.btn-sm {
  padding: 0.5rem 1.25rem !important;
  font-size: 0.78rem !important;
}

/* Data Table */
.tr-table-wrap {
  overflow-x: auto;
  margin-top: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--card-shadow);
}
.tr-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  white-space: nowrap;
}
.tr-table thead {
  background: var(--navy-deep);
}
.tr-table th {
  padding: 0.85rem 1rem;
  text-align: left;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
}
.tr-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
}
.tr-table tbody tr {
  transition: background 0.2s ease;
}
.tr-table tbody tr:hover {
  background: var(--bg-secondary);
}
.tr-table tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.015);
}
.tr-table tbody tr:nth-child(even):hover {
  background: var(--bg-secondary);
}
.tr-gain {
  color: #16a34a;
  font-weight: 600;
}
.tr-loss {
  color: #dc2626;
  font-weight: 600;
}
.tr-highlight {
  background: rgba(22, 163, 74, 0.08);
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
}
.tr-footnote {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.6;
  font-style: italic;
}

/* Track Record List */
.tr-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.tr-list-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  box-shadow: var(--card-shadow);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.tr-list-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding-left: 2.25rem;
}
.tr-list-icon {
  width: 48px;
  height: 48px;
  background: var(--navy-deep);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
}
.tr-list-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.tr-list-date {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
}
.tr-list-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.25s ease;
}
.tr-list-item:hover .tr-list-name {
  color: var(--gold);
}
.tr-list-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.tr-list-badge {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  flex-shrink: 0;
}
.tr-list-badge--latest {
  background: var(--gold-pale);
  color: var(--navy-deep);
  border: 1px solid var(--border-gold);
}
.tr-list-arrow {
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: color 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
}
.tr-list-item:hover .tr-list-arrow {
  color: var(--gold);
  transform: translateX(4px);
}

/* Track record — embedded PDF (teal / light surfaces — matches site) */
.tr-viewer {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--gold);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
}
.tr-pdf-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(180deg, var(--gold-pale) 0%, var(--bg-card) 100%);
  border-bottom: 1px solid var(--border-gold);
}
.tr-pdf-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
  min-width: 0;
}
.tr-pdf-meta-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  font-weight: 600;
}
.tr-pdf-meta-date {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
}
.tr-pdf-meta-range {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 0.5rem;
  border-left: 1px solid var(--border-light);
}
.tr-pdf-open-tab {
  flex-shrink: 0;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy-deep);
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  background: var(--bg-card);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.tr-pdf-open-tab:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--navy-deepest);
}
.tr-pdf-frame-shell {
  position: relative;
  width: 100%;
  background: var(--bg-tertiary);
  min-height: min(72vh, 880px);
  box-shadow: inset 0 2px 12px rgba(35, 69, 80, 0.08);
}
.tr-pdf-frame {
  display: block;
  width: 100%;
  height: min(72vh, 880px);
  min-height: 420px;
  border: 0;
  background: var(--bg-card);
}
.tr-pdf-fallback {
  margin: 0;
  padding: 0.85rem 1.25rem 1.1rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-gold);
}
.tr-pdf-fallback a {
  color: var(--navy-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.tr-pdf-fallback a:hover {
  color: var(--gold);
}

@media (max-width: 600px) {
  .tr-pdf-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .tr-pdf-open-tab {
    text-align: center;
  }
  .tr-pdf-meta-range {
    border-left: none;
    padding-left: 0;
    width: 100%;
  }
  .tr-pdf-frame-shell {
    min-height: 65vh;
  }
  .tr-pdf-frame {
    height: 65vh;
    min-height: 360px;
  }
  .tr-list-item {
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
  }
  .tr-list-badge {
    order: -1;
    margin-left: auto;
  }
  .tr-list-info {
    min-width: calc(100% - 64px);
  }
}

/* Nav lock (Short Ideas — guests only) */
.nav-lock {
  display: none;
  margin-left: 0.35rem;
  vertical-align: middle;
  color: var(--text-muted-on-dark);
  cursor: help;
}
.nav.scrolled .nav-lock { color: var(--text-muted); }
.nav-link .nav-lock-icon {
  display: block;
  position: relative;
  top: 1px;
}
.nav-lock.visible { display: inline-block; }
.mobile-menu .nav-lock {
  margin-left: 0.4rem;
  color: var(--text-muted-on-dark);
}

/* Short Ideas table */
.si-toolbar {
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
}
.si-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  align-items: flex-end;
}
.si-filter {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 140px;
  flex: 1 1 auto;
}
.si-filter-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--text-muted);
}
.si-filter-input {
  font-family: inherit;
  font-size: 0.9rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: var(--bg-card);
  color: var(--text-body);
  width: 100%;
  max-width: 280px;
}
.si-filter-input:focus {
  outline: none;
  border-color: var(--gold);
}

.si-filter--range {
  min-width: 220px;
  max-width: 400px;
}
.si-date-range {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}
.si-date-range-sep {
  color: var(--text-muted);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.si-filter-input--date {
  flex: 1 1 130px;
  min-width: 0;
  max-width: 160px;
}

.si-filter--dropdown { max-width: 280px; }
.si-dropdown {
  position: relative;
  width: 100%;
}
.si-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  font-family: inherit;
  font-size: 0.9rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: var(--bg-card);
  color: var(--text-body);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease;
}
.si-dropdown-toggle:hover {
  border-color: rgba(184, 157, 102, 0.45);
}
.si-dropdown.open .si-dropdown-toggle {
  border-color: var(--gold);
}
.si-dropdown-chevron {
  font-size: 0.65rem;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}
.si-dropdown.open .si-dropdown-chevron {
  transform: rotate(-180deg);
}
.si-dropdown-panel {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  min-width: 220px;
  max-height: 280px;
  overflow-y: auto;
  z-index: 50;
  padding: 0.5rem 0;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.si-dropdown-toolbar {
  display: flex;
  gap: 0.75rem;
  padding: 0.35rem 0.75rem 0.6rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 0.35rem;
}
.si-dropdown-action {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  cursor: pointer;
}
.si-dropdown-action:hover {
  text-decoration: underline;
}
.si-checkbox-list {
  padding: 0 0.35rem 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.si-checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.35;
}
.si-checkbox-item:hover {
  background: rgba(184, 157, 102, 0.08);
}
.si-checkbox-item input {
  margin: 0.2rem 0 0 0;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.si-checkbox-item span {
  word-break: break-word;
}
.si-dropdown-empty {
  margin: 0;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.si-status-list {
  padding: 0.35rem 0.35rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.si-status-option {
  display: block;
  width: 100%;
  text-align: left;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--text-body);
  padding: 0.45rem 0.65rem;
  border: none;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  line-height: 1.35;
}
.si-status-option:hover {
  background: rgba(184, 157, 102, 0.08);
}
.si-status-option--active {
  background: rgba(184, 157, 102, 0.14);
  color: var(--text-dark);
  font-weight: 600;
}

.si-table-wrap {
  overflow-x: auto;
  margin-top: 0.5rem;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  background: var(--bg-card);
  box-shadow: var(--card-shadow);
}
.si-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.si-table th {
  text-align: left;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
  padding: 0;
  vertical-align: middle;
}
.si-th {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}
.si-th:hover { color: var(--gold); }
.si-th--static {
  display: block;
  cursor: default;
  padding: 0.85rem 1rem;
}
.si-th--static:hover { color: var(--text-secondary); }
.si-sort-ind::before { content: '·'; opacity: 0.35; margin-left: 0.25rem; font-weight: 400; }
.si-th.si-sort-asc .si-sort-ind::before { content: '↑'; opacity: 1; }
.si-th.si-sort-desc .si-sort-ind::before { content: '↓'; opacity: 1; }
.si-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-body);
  vertical-align: middle;
}
.si-table tbody tr:last-child td { border-bottom: none; }
.si-table tbody tr:hover td { background: rgba(184, 157, 102, 0.06); }
.si-name {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text-dark);
}
.si-badge {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}
.si-badge--new {
  background: rgba(46, 125, 50, 0.12);
  color: #2e7d32;
  border: 1px solid rgba(46, 125, 50, 0.25);
}
.si-badge--archived {
  background: rgba(120, 120, 120, 0.1);
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}
.si-pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(184, 157, 102, 0.45);
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}
.si-pdf-link:hover {
  background: var(--gold);
  color: var(--navy-deepest);
}
.si-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 2rem 1rem !important;
}

@media (max-width: 720px) {
  .si-table { font-size: 0.82rem; }
  .si-table th:first-child .si-th,
  .si-table td:first-child { padding-left: 0.75rem; }
}

/* Disclaimer */
.disclaimer-box {
  padding: 2.5rem; background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--gold); margin-top: 2rem;
}
.disclaimer-box p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.8; }
.disclaimer-box p + p { margin-top: 1rem; }
.disclaimer-box strong { color: var(--gold); }

@media (max-width: 768px) {
  .tr-card { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .tr-card-actions { width: 100%; }
  .tr-card-actions a { flex: 1; text-align: center; justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat-card { padding: 1.25rem 1rem; }
  .stat-value { font-size: 2rem; }
  .tr-table { font-size: 0.78rem; }
  .tr-table th, .tr-table td { padding: 0.5rem 0.65rem; }
}

/* ═══════════════════════════════════════════════════════
   TEAM
   ═══════════════════════════════════════════════════════ */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.team-card {
  background: var(--bg-card); border: 1px solid var(--border-light);
  overflow: hidden; transition: all 0.4s ease;
  cursor: pointer; box-shadow: var(--card-shadow);
}
.team-card:hover {
  border-color: var(--border-gold); transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}
.team-card-img {
  width: 100%; height: 240px;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.team-card-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}
.team-card:hover .team-card-photo {
  transform: scale(1.05);
}
.team-card-initials {
  font-family: var(--font-display); font-size: 2.8rem;
  font-weight: 300; color: var(--gold); opacity: 0.45;
}
.team-card-info { padding: 1.5rem 1.75rem 1.75rem; }
.team-card-name {
  font-family: var(--font-display); font-size: 1.3rem;
  font-weight: 500; color: var(--text-dark); margin-bottom: 0.3rem;
}
.team-card-role {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gold);
}

.team-expanded { display: none; }
.team-expanded.active { display: block; animation: fadeInPage 0.4s ease; }
.team-expanded-back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold); cursor: pointer; margin-bottom: 2rem;
  transition: all 0.3s ease;
}
.team-expanded-back:hover { gap: 0.75rem; }
.team-expanded-header {
  display: flex; align-items: center; gap: 2rem;
  margin-bottom: 2.5rem;
}
.team-expanded-photo {
  width: 160px; height: 160px; min-width: 160px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  display: flex; align-items: center; justify-content: center;
  border: 3px solid var(--border-gold);
}
.team-expanded-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}
.team-expanded-initials {
  font-family: var(--font-display); font-size: 3rem;
  font-weight: 300; color: var(--gold); opacity: 0.45;
}
.team-expanded-meta { flex: 1; }
.team-expanded-name {
  font-family: var(--font-display); font-size: 2.5rem;
  font-weight: 400; color: var(--text-dark);
}
.team-expanded-role {
  font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--gold);
  margin-top: 0.5rem;
}
.team-expanded-bio {
  font-size: 1.02rem; color: var(--text-secondary); line-height: 1.9;
}
.team-expanded-bio p + p { margin-top: 1.25rem; }

/* ═══════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════ */
.contact-body {
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 6vw, 8rem);
  background: var(--bg-primary);
}
.contact-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }

.contact-info-item { margin-bottom: 2.5rem; }
.contact-info-label {
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--gold); margin-bottom: 0.5rem;
}
.contact-info-value {
  font-family: var(--font-display); font-size: 1.3rem;
  color: var(--text-dark); line-height: 1.5;
}
.contact-info-value a { transition: color 0.3s ease; }
.contact-info-value a:hover { color: var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label {
  font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--text-muted);
}
.form-label .form-optional {
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 0.68rem;
  opacity: 0.85;
}
.form-input, .form-textarea {
  background: #fff; border: 1px solid var(--bg-tertiary);
  padding: 0.9rem 1.2rem; color: var(--text-dark);
  font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color 0.3s ease; outline: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  padding: 4rem clamp(2rem, 6vw, 8rem) 2rem;
  background: var(--navy-deep);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: start; flex-wrap: wrap; gap: 3rem;
}
.footer-brand { max-width: 320px; }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: contain;
}
.footer-logo-text {
  font-family: var(--font-display); font-size: 1.15rem; color: var(--text-on-dark);
}
.footer-tagline { font-size: 0.88rem; color: var(--text-muted-on-dark); line-height: 1.7; }

.footer-nav { display: flex; gap: 3rem; }
.footer-nav-group h4 {
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--gold-pale); margin-bottom: 1rem;
}
.footer-nav-group a {
  display: block; font-size: 0.88rem;
  color: var(--text-secondary-on-dark); margin-bottom: 0.5rem;
  transition: color 0.3s ease; cursor: pointer;
}
.footer-nav-group a:hover { color: var(--gold-light); }

.footer-social {
  display: flex; gap: 0.75rem; margin-top: 0.25rem;
}
.footer-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--text-secondary-on-dark);
  transition: all 0.3s ease;
}
.footer-social-link svg {
  width: 16px; height: 16px;
}
.footer-social-link:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: 1200px; margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.78rem; color: var(--text-muted-on-dark); }
.footer-address { font-size: 0.78rem; color: var(--text-muted-on-dark); }

/* ═══════════════════════════════════════════════════════
   AUTH MODAL (header Log In)
   ═══════════════════════════════════════════════════════ */

.auth-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.auth-modal-overlay.open {
  display: flex;
}
.auth-modal {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 400px;
  width: 100%;
  position: relative;
  box-shadow: var(--card-shadow-hover);
}
.auth-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--text-muted);
  background: none;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
}
.auth-modal-close:hover {
  color: var(--text-body);
}
.auth-modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-body);
  margin: 0 0 0.25rem 0;
}
.auth-modal-sub {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0 0 1.5rem 0;
}
.auth-form .auth-field {
  margin-bottom: 1.25rem;
}
.auth-form .auth-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  margin-bottom: 0.4rem;
}
.password-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.password-wrap input {
  flex: 1;
  padding-right: 2.75rem;
}
.auth-form .auth-field--password .password-wrap input {
  padding-right: 2.75rem;
}
.password-toggle {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.35rem;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.password-toggle:hover {
  color: var(--gold);
}
.password-toggle svg {
  display: block;
}
.password-toggle .icon-eye-off {
  display: none !important;
}
.password-toggle.revealed .icon-eye {
  display: none !important;
}
.password-toggle.revealed .icon-eye-off {
  display: block !important;
}
.auth-form .auth-field input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  font-family: inherit;
}
.auth-form .auth-field input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(62, 96, 106, 0.15);
}
.auth-error {
  color: #c53030;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  min-height: 1.4em;
}
.auth-success {
  color: #2f855a;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  min-height: 1.4em;
}
.auth-inline-action {
  margin: 0.75rem 0 0;
  text-align: right;
}
.auth-form button[type="submit"] {
  margin-top: 0.5rem;
}
.auth-modal-footer {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-gold);
}
.auth-link {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  color: var(--gold);
  cursor: pointer;
  text-decoration: underline;
}
.auth-link:hover {
  color: var(--gold-dark, #4a7568);
}

/* ═══════════════════════════════════════════════════════
   SCHEDULE / APPOINTMENTS PAGE
   ═══════════════════════════════════════════════════════ */
.schedule-page {
  padding-bottom: 0;
}
.schedule-page-main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 2.5rem clamp(1.5rem, 5vw, 3rem) 3rem;
}
.schedule-intro {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.schedule-tz-note {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  padding: 0.9rem 1.1rem;
  background: var(--bg-secondary);
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
}
.schedule-tz-note-line {
  margin: 0 0 0.65rem;
  line-height: 1.6;
}
.schedule-tz-note-line:last-child {
  margin-bottom: 0;
}
.schedule-tz-note .schedule-tz-code {
  font-size: 0.88em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: var(--text-body);
  background: rgba(62, 96, 106, 0.09);
  padding: 0.1em 0.4em;
  border-radius: 4px;
  font-weight: 500;
}
.schedule-tz-note strong {
  color: var(--text-secondary);
}
.schedule-times-tz-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: -0.2rem 0 1rem;
  line-height: 1.45;
}
.schedule-times-tz-hint .schedule-tz-code {
  font-size: 0.92em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: var(--text-body);
}
.schedule-times-tz-label {
  display: inline-block;
  font-weight: 700;
  color: var(--gold);
  margin-right: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.62rem;
}
.schedule-slots-heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}
.schedule-day-group {
  margin-bottom: 2.25rem;
}
.schedule-day-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.schedule-slot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.schedule-slot-btn {
  padding: 0.65rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  background: var(--bg-card);
  color: var(--navy);
  transition: all 0.2s ease;
}
.schedule-slot-btn:hover {
  border-color: var(--navy);
  box-shadow: var(--card-shadow);
}
.schedule-slot-btn.selected {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.schedule-slot-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.schedule-book-panel {
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
}
.schedule-book-panel h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}
.schedule-selected-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.schedule-selected-label strong {
  color: var(--text-dark);
}
.schedule-form-error {
  color: #c53030;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  min-height: 1.35em;
}
.schedule-success {
  padding: 2rem;
  text-align: center;
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid var(--border-gold);
}
.schedule-success h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.schedule-loading,
.schedule-empty {
  color: var(--text-muted);
  padding: 2rem 0;
}

/* Calendar + times two-column picker */
.schedule-picker-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

.schedule-calendar-card,
.schedule-times-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  box-shadow: var(--card-shadow);
  padding: 1.35rem 1.35rem 1.5rem;
}

.schedule-times-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.schedule-times-hint {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

.schedule-slot-grid--column {
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.schedule-slot-grid--column .schedule-slot-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  white-space: normal;
  line-height: 1.35;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

/* Month calendar */
.sched-cal-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-light);
}

.sched-cal-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0;
  flex: 1;
  text-align: center;
  line-height: 1.2;
}

.sched-cal-nav {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border-gold);
  background: var(--bg-primary);
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
  padding: 0;
  font-family: var(--font-body);
}

.sched-cal-nav:hover:not(:disabled) {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.sched-cal-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.sched-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
}

.sched-cal-weekdays span {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.sched-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.sched-cal-day {
  position: relative;
  aspect-ratio: 1;
  max-height: 52px;
  width: 100%;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: 10px;
  border: 1px solid transparent;
  background: var(--bg-secondary);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

button.sched-cal-day {
  padding: 0;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
}

.sched-cal-day--muted {
  opacity: 0.42;
  background: transparent;
  font-weight: 500;
}

.sched-cal-day--available {
  cursor: pointer;
  background: var(--bg-card);
  border-color: rgba(62, 96, 106, 0.22);
  color: var(--navy);
}

.sched-cal-day--available:hover {
  border-color: var(--navy);
  box-shadow: var(--card-shadow);
}

.sched-cal-day--available.sched-cal-day--muted:hover {
  opacity: 0.85;
}

.sched-cal-day--selected {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
  color: #fff !important;
  opacity: 1 !important;
}

.sched-cal-day--selected .sched-cal-dot {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: none;
}

.sched-cal-day--today:not(.sched-cal-day--selected) {
  box-shadow: inset 0 0 0 2px var(--gold);
}

.sched-cal-dot {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 2px var(--bg-card);
}

.sched-cal-day--selected .sched-cal-dot {
  bottom: 4px;
}

.sched-cal-legend {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.sched-cal-legend .sched-cal-dot {
  position: static;
  transform: none;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .schedule-picker-layout {
    grid-template-columns: 1fr;
  }
  .sched-cal-day {
    max-height: 44px;
    font-size: 0.8rem;
  }
}

/* ═══════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(25px);
  transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline, .btn-outline-light { text-align: center; justify-content: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid var(--bg-tertiary); }
  .team-expanded-header { flex-direction: column; text-align: center; gap: 1.25rem; }
  .team-expanded-photo { width: 130px; height: 130px; min-width: 130px; }
}
