:root {
  --primary: #1e3a5f;
  --primary-dark: #152d4a;
  --primary-light: #2a4d7a;
  --accent: #2196F3;
  --accent-light: #64B5F6;
  --accent-soft: #E3F2FD;
  --white: #ffffff;
  --off-white: #f5f7fa;
  --gray-light: #e0e4e8;
  --gray: #7a8a9a;
  --gray-dark: #4a5568;
  --text: #1a202c;
  --text-light: #4a5568;
  --success: #38a169;
  --warm: #ed8936;
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 8px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent-light);
}

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

/* ── Navigation ── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 1000;
  padding: 0 2rem;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--gray-light);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.02em;
}

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

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

.nav-links a {
  color: var(--gray-dark);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  margin: 5px 0;
  transition: 0.3s;
}

/* ── Hero ── */

.hero {
  background: #ffffff;
  color: var(--text);
  padding: 10rem 2rem 6rem;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--gray-light);
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-headshot {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 4px solid var(--white);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-lg);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  color: var(--primary);
}

.hero h1 .nickname {
  color: var(--accent);
}

.hero .tagline {
  font-size: 1.15rem;
  color: var(--gray-dark);
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}

.hero .intro {
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

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

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(33, 150, 243, 0.35);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* ── Sections ── */

.section {
  padding: 5rem 2rem;
}

.section-alt {
  background: var(--off-white);
}

.section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.accent-line {
  width: 50px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 2rem;
}

/* ── About / Story ── */

.story p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: var(--text-light);
}

.story p strong {
  color: var(--text);
}

.highlight-box {
  background: var(--primary);
  color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  margin: 2.5rem 0;
  position: relative;
  box-shadow: var(--shadow-md);
}

.highlight-box::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--accent);
  position: absolute;
  top: 0.25rem;
  left: 1.25rem;
  line-height: 1;
  opacity: 0.5;
}

.highlight-box .quote {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  color: var(--accent-light);
}

.highlight-box .attribution {
  font-size: 0.9rem;
  color: var(--accent-light);
  font-style: normal;
  padding-left: 0.5rem;
}

/* ── Career Timeline ── */

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-light);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.35rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--accent);
}

.timeline-item.current::before {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.timeline-date {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.timeline-role {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary);
  margin: 0.25rem 0;
}

.timeline-company {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.timeline-desc {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ── Certifications ── */

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.cert-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.2s;
}

.cert-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-soft);
}

.cert-card h4 {
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.cert-card p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ── Music Section ── */

.music-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.music-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s;
}

.music-link:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.music-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.music-embed {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
}

/* ── Community ── */

.community-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
}

.community-card h3 {
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.community-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ── Business Spotlight ── */

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.spotlight-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s;
}

.spotlight-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-soft);
}

.spotlight-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.spotlight-card-body {
  padding: 1.5rem;
}

.spotlight-card-body h3 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.spotlight-card-body .spotlight-address {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0.75rem;
}

.spotlight-card-body p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* ── Contact ── */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-card {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  transition: all 0.2s;
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-soft);
}

.contact-card h3 {
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-card a {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 600;
}

/* ── Footer ── */

.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.footer-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-light);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 1.5rem;
}

/* ── Page Header (subpages) ── */

.page-header {
  background: #ffffff;
  color: var(--text);
  padding: 8rem 2rem 3rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-light);
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.page-header p {
  color: var(--gray-dark);
  font-size: 1.1rem;
}

/* ── Responsive ── */

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 2rem 2rem;
    gap: 1rem;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--gray-light);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    padding: 8rem 1.5rem 4rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .intro {
    font-size: 1rem;
  }

  .section {
    padding: 3rem 1.5rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    padding-left: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.7rem;
  }

  .hero-headshot {
    width: 140px;
    height: 140px;
  }

  .music-links {
    flex-direction: column;
  }

  .cert-grid {
    grid-template-columns: 1fr;
  }
}
