/* =========================================================
   GLOBAL
========================================================= */

* {
  box-sizing: border-box;
}

:root {
  --navy: #102a43;
  --deep-blue: #1e3a5f;
  --blue: #1a73e8;
  --soft-blue: #eef5ff;
  --gold: #d4a017;
  --text: #1f2937;
  --muted: #667085;
  --card: #ffffff;
  --border: rgba(16, 42, 67, 0.1);
  --shadow: 0 20px 45px rgba(16, 42, 67, 0.1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background:
    radial-gradient(circle at top left, rgba(26, 115, 232, 0.10), transparent 28%),
    radial-gradient(circle at bottom right, rgba(26, 115, 232, 0.08), transparent 30%),
    linear-gradient(180deg, #0f2f4d 0%, #12385c 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top center, rgba(255,255,255,0.03), transparent 40%);
  z-index: -1;
}

.portfolio-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 90px 0 70px;
  position: relative;
}

#about-section,
#teaching-section,
#skills-section,
#experience-section,
#projectsSection,
#evidenceSection,
#contact-section {
  scroll-margin-top: 120px;
}

/* =========================================================
   BUTTONS
========================================================= */

.primary-btn,
.secondary-btn,
.btn,
.project-link,
.evidence-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.25s ease;
  cursor: pointer;
}

.primary-btn,
.project-link,
.evidence-link {
  background: var(--blue);
  color: #ffffff !important;
  box-shadow: 0 12px 24px rgba(26, 115, 232, 0.25);
}

.secondary-btn,
.btn {
  background: #ffffff;
  color: var(--deep-blue);
  border: 1px solid var(--border);
}

.primary-btn:hover,
.secondary-btn:hover,
.btn:hover,
.project-link:hover,
.evidence-link:hover {
  transform: translateY(-2px);
}

.project-card a,
.project-card a:link,
.project-card a:visited,
.project-card a:hover,
.project-card a:active {
  color: #ffffff !important;
  text-decoration: none !important;
}

/* =========================================================
   PORTFOLIO NAVIGATION
========================================================= */

.portfolio-nav {
  width: 100%;
  margin: 0;
  padding: 10px 32px;
  border-radius: 0;
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid rgba(16, 42, 67, 0.10);
  box-shadow: 0 10px 28px rgba(16, 42, 67, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  backdrop-filter: blur(14px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: var(--deep-blue);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.nav-brand strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.1;
}

.nav-brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--deep-blue);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  padding: 9px 12px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.nav-links a:hover {
  background: var(--soft-blue);
  color: var(--blue);
}

.nav-toggle {
  display: none;
  border: none;
  background: var(--soft-blue);
  color: var(--deep-blue);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  font-family: inherit;
  cursor: pointer;
}

/* =========================================================
   HERO
========================================================= */

.hero-section {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 44px;
  align-items: center;
  text-align: left;
  padding: 48px 64px;
  margin-top: -45px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(238,245,255,0.95)),
    radial-gradient(circle at top right, rgba(212,160,23,0.18), transparent 30%);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(26, 115, 232, 0.08);
  top: -140px;
  right: -110px;
}

.hero-content,
.hero-image-wrap {
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 620px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  justify-content: flex-start;
  white-space: nowrap;
  padding: 9px 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--deep-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(16, 42, 67, 0.06);
}

.hero-name {
  display: block;
  width: 100%;
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -2px;
}

.hero-role {
  display: block;
  width: 100%;
  margin: 16px 0 0;
  color: var(--blue);
  font-size: 20px;
  font-weight: 800;
}

.hero-story {
  max-width: 560px;
  margin: 24px 0 0;
  color: #475467;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.social-links {
  display: flex;
  gap: 18px;
  margin-top: 24px;
}

.social-links a {
  color: var(--deep-blue);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.social-links a:hover {
  color: var(--blue);
}

.hero-image-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.hero-image {
  width: min(440px, 100%);
  max-width: 100%;
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
  border-radius: 38px;
  border: 10px solid #ffffff;
  background: #e5e7eb;
  box-shadow: 0 30px 70px rgba(16, 42, 67, 0.22);
}

/* =========================================================
   SNAPSHOT STRIP
   Teaching Focus / Student Support / Classroom Culture
========================================================= */

.snapshot-section {
  width: min(1080px, calc(100% - 64px));
  margin: 34px auto 42px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 42, 67, 0.10);
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(16, 42, 67, 0.10);
  overflow: hidden;
}

.snapshot-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 24px 28px;
  box-shadow: none;
  min-height: auto;
}

.snapshot-card:not(:last-child) {
  border-right: 1px solid rgba(16, 42, 67, 0.10);
}

.snapshot-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 900;
}

.snapshot-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* =========================================================
   SHARED SECTIONS
========================================================= */

.content-section {
  margin-top: 34px;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 44px;
  box-shadow: 0 14px 34px rgba(16, 42, 67, 0.06);
}

.section-kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
}

.section-heading {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: -1px;
}

.section-body {
  color: #475467;
  font-size: 17px;
  line-height: 1.7;
  white-space: pre-line;
}

/* =========================================================
   ABOUT
========================================================= */

.about-story-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.about-main .section-body {
  margin-top: 24px;
}

.about-story-cards {
  display: grid;
  gap: 16px;
}

.about-story-card {
  position: relative;
  overflow: hidden;
  background: var(--soft-blue);
  border: 1px solid rgba(26, 115, 232, 0.12);
  border-radius: 22px;
  padding: 22px 22px 22px 34px;
  box-shadow: 0 10px 24px rgba(16, 42, 67, 0.06);
}

.about-story-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  width: 5px;
  height: 38px;
  border-radius: 999px;
  background: var(--blue);
}

.about-story-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.about-story-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #475467;
  font-size: 15.5px;
  line-height: 1.65;
}

/* =========================================================
   TEACHING APPROACH
========================================================= */

.teaching-section {
  color: #ffffff;
  background: linear-gradient(135deg, #102a43, #1e3a5f);
}

.teaching-section .section-heading {
  color: #ffffff;
  max-width: 820px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.approach-card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
}

.approach-card h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 18px;
}

.approach-card p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
}

/* =========================================================
   SKILLS
========================================================= */

.skills-box {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skill-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--deep-blue);
  border: 1px solid rgba(26, 115, 232, 0.12);
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(16, 42, 67, 0.05);
}

/* =========================================================
   EXPERIENCE
========================================================= */

.experience-timeline {
  margin-top: 34px;
  display: grid;
  gap: 22px;
  position: relative;
  padding-left: 28px;
}

.experience-timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, rgba(26, 115, 232, 0.75), rgba(212, 160, 23, 0.55));
  border-radius: 999px;
}

.experience-card {
  display: grid;
  gap: 6px;
  position: relative;
  padding: 28px 30px;
  border-radius: 26px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 12px 28px rgba(16, 42, 67, 0.07);
  transition: 0.25s ease;
}

.experience-card::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 32px;
  width: 14px;
  height: 14px;
  background: var(--blue);
  border: 4px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.14);
}

.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(16, 42, 67, 0.12);
}

.exp-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.exp-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 16px;
  background: #eef5ff;
  color: var(--blue);
  border: 1px solid rgba(26, 115, 232, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 18px rgba(16, 42, 67, 0.06);
}

.exp-title {
  min-height: 46px;
  display: flex;
  align-items: center;
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.2px;
}

.exp-sub {
  width: fit-content;
  display: inline-block;
  color: var(--blue);
  background: rgba(26, 115, 232, 0.08);
  border: 1px solid rgba(26, 115, 232, 0.12);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  margin: 6px 0;
}

.experience-card ul {
  margin: 8px 0 0;
  padding-left: 22px;
}

.experience-card li {
  color: #475467;
  line-height: 1.7;
  margin-bottom: 6px;
}

.experience-card li::marker {
  color: var(--blue);
}

/* =========================================================
   PROJECTS
========================================================= */

.projects-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  align-items: stretch;
}

.project-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(16, 42, 67, 0.08);
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 16px 36px rgba(16, 42, 67, 0.08);
  transition: 0.25s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(16, 42, 67, 0.14);
}

.project-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.project-content {
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.project-title {
  color: var(--navy);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.2px;
  margin-bottom: 12px;
}

.project-desc {
  flex: 1;
  color: #475467;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.project-link {
  align-self: flex-start;
}

/* =========================================================
   EVIDENCE
========================================================= */

.evidence-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.evidence-card {
  min-height: 360px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid rgba(16, 42, 67, 0.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 32px rgba(16, 42, 67, 0.07);
  display: flex;
  flex-direction: column;
}

.evidence-card p {
  margin-bottom: 24px;
}

.evidence-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--soft-blue);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.evidence-title {
  color: var(--navy);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 10px;
}

.evidence-desc {
  color: #475467;
  font-size: 15.5px;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}

.evidence-link {
  margin-top: auto;
}

.doc-fold {
  width: 20px;
  height: 24px;
  background: #1a73e8;
  border-radius: 4px;
  position: relative;
  display: inline-block;
}

.doc-fold::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 8px;
  background: #eef5ff;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.evidence-file-list {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

/* =========================================================
   CONTACT
========================================================= */

.contact-section {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 28px;
  align-items: center;
  padding: 46px;
  border-radius: 30px;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(16,42,67,0.96), rgba(30,58,95,0.96));
  box-shadow: var(--shadow);
}

.contact-section .section-heading {
  color: #ffffff;
}

.contact-text {
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin-bottom: 0;
}

.contact-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  padding: 24px;
}

#email,
#phone {
  color: rgba(255,255,255,0.95);
  margin-bottom: 14px;
  word-break: break-word;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
}

.contact-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.22);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.4px;
}

.contact-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* =========================================================
   DEMO MODE
========================================================= */

#demoBanner {
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

body.demo-mode .portfolio-nav {
  top: 0;
}

body.demo-mode .portfolio-page {
  padding-top: 145px !important;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {
  html {
    scroll-padding-top: 120px;
  }

  .portfolio-nav {
    width: 100%;
    padding: 10px 14px;
    border-radius: 0;
    align-items: flex-start;
    flex-wrap: wrap;
    top: 0;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    box-shadow: 0 8px 20px rgba(16, 42, 67, 0.08);
  }

  .nav-links {
    display: none;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 12px;
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    background: #ffffff;
    border: 1px solid rgba(16, 42, 67, 0.08);
    padding: 12px 14px;
  }

  .portfolio-page {
    width: min(100% - 22px, 1180px);
    padding-top: 85px !important;
  }

  .hero-section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    margin-top: 0;
    padding: 12px 18px 28px;
    gap: 14px;
    border-radius: 26px;
    text-align: left;
  }

  .hero-image-wrap {
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .hero-image {
    width: 100%;
    max-width: 320px;
    height: 240px;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center top;
    border-radius: 24px;
    border: 4px solid #ffffff;
  }

  .hero-content {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
  }

  .hero-role {
    order: 1;
    display: block;
    width: 100%;
    margin: 4px 0 8px;
    padding: 12px 14px;
    border: 1px solid rgba(16,42,67,0.12);
    border-radius: 18px;
    background: rgba(255,255,255,0.78);
    color: var(--navy);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
    box-shadow: 0 10px 24px rgba(16, 42, 67, 0.07);
  }

  .hero-badge {
    order: 2;
    align-self: stretch;
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    font-size: 12px;
    line-height: 1.35;
    padding: 8px 12px;
    margin: 0 0 10px;
  }

  .hero-name {
    order: 3;
    font-size: clamp(34px, 8vw, 40px);
    line-height: 1;
    letter-spacing: -1px;
    text-align: center;
  }

  .hero-story {
    order: 4;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 12px;
    text-align: center;
  }

  .hero-actions {
    order: 5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 10px;
    margin-top: 18px;
  }

  .hero-actions .primary-btn {
    grid-column: 1 / -1;
  }

  .primary-btn,
  .secondary-btn,
  .btn {
    width: 100%;
    min-height: 44px;
    font-size: 14px;
  }

  .social-links {
    justify-content: center;
  }

  .snapshot-section {
    width: min(720px, calc(100% - 24px));
    grid-template-columns: 1fr;
    gap: 0;
    margin: 24px auto 34px;
    padding: 0;
    border-radius: 22px;
  }

  .snapshot-card {
    padding: 20px 22px;
  }

  .snapshot-card:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(16, 42, 67, 0.10);
  }

  .snapshot-card h3 {
    font-size: 18px;
  }

  .snapshot-card p {
    font-size: 15px;
    line-height: 1.6;
  }

  .about-story-section,
  .approach-grid,
  .projects-grid,
  .evidence-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .content-section,
  .contact-section {
    margin-top: 24px;
    padding: 28px 22px;
    border-radius: 26px;
  }

  .section-kicker {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .section-heading {
    font-size: clamp(30px, 8vw, 42px);
    line-height: 1.12;
    letter-spacing: -0.8px;
  }

  .section-body {
    font-size: 16px;
    line-height: 1.65;
  }

  .about-story-section {
    gap: 22px;
  }

  .about-main .section-body {
    margin-top: 18px;
  }

  .about-story-cards {
    gap: 14px;
  }

  .about-story-card {
    padding: 20px 20px 20px 32px;
    border-radius: 20px;
  }

  .teaching-section {
    padding: 30px 22px;
  }

  .approach-grid {
    gap: 16px;
    margin-top: 22px;
  }

  .approach-card {
    padding: 22px;
    border-radius: 22px;
  }

  .approach-card h3,
  .project-title,
  .exp-title {
    font-size: 20px;
    line-height: 1.3;
  }

  .approach-card p,
  .project-desc,
  .experience-card li,
  .contact-text {
    font-size: 16px;
    line-height: 1.65;
  }

  .skills-box {
    gap: 10px;
  }

  .skill-pill {
    font-size: 15px;
    padding: 10px 15px;
  }

  .experience-timeline {
    padding-left: 20px;
    gap: 18px;
  }

  .experience-timeline::before {
    left: 6px;
  }

  .experience-card {
    padding: 22px 20px;
    border-radius: 22px;
  }

  .experience-card::before {
    left: -27px;
    top: 28px;
    width: 12px;
    height: 12px;
    border-width: 4px;
  }

  .exp-header {
    gap: 12px;
    align-items: flex-start;
  }

  .exp-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 14px;
  }

  .exp-title {
    min-height: auto;
  }

  .exp-sub {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.35;
    padding: 7px 11px;
  }

  .experience-card ul {
    padding-left: 20px;
    margin-top: 12px;
  }

  .experience-card li {
    font-size: 15.5px;
  }

  .projects-grid {
    gap: 24px;
  }

  .project-card {
    border-radius: 26px;
  }

  .project-image {
    height: 210px;
    border-radius: 20px;
  }

  .project-content {
    padding: 22px;
  }

  .project-title {
    font-size: 20px;
  }

  .project-desc {
    font-size: 15.5px;
    margin-bottom: 18px;
  }

  .project-link,
  .evidence-link {
    align-self: stretch;
    width: 100%;
    min-height: 46px;
    font-size: 15px;
  }

  .evidence-grid {
    gap: 20px;
  }

  .evidence-card {
    padding: 22px;
    border-radius: 22px;
    min-height: auto;
  }

  .contact-section {
    gap: 18px;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .contact-section .section-heading {
    font-size: 34px;
    line-height: 1.05;
  }

  .contact-text {
    font-size: 15.5px;
    line-height: 1.5;
    margin-top: 10px;
  }

  .contact-card {
    padding: 18px;
    border-radius: 20px;
  }

  .contact-line {
    font-size: 16px;
    gap: 10px;
    margin-bottom: 10px;
  }

  .contact-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
  }

  .contact-buttons {
    flex-direction: column;
    gap: 9px;
    margin-top: 14px;
  }

  .contact-buttons .btn {
    min-height: 42px;
    font-size: 14px;
  }
}
/* =========================================================
   PREMIUM DARK SNAPSHOT STRIP
   Teaching Focus / Student Support / Classroom Culture
   Paste at the VERY BOTTOM of portfolio.css
========================================================= */

.snapshot-section {
  width: min(1120px, calc(100% - 64px)) !important;
  margin: 28px auto 56px !important;
  padding: 0 !important;

  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 18px !important;

  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;

  position: relative !important;
  z-index: 2 !important;
}

.snapshot-card {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 22px !important;
  padding: 24px 26px !important;

  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14) !important;
  backdrop-filter: blur(14px) !important;

  min-height: 150px !important;
  height: auto !important;

  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

.snapshot-card:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-bottom: none !important;
}

.snapshot-card::before {
  content: "" !important;
  width: 42px !important;
  height: 4px !important;
  border-radius: 999px !important;
  background: #1a73e8 !important;
  margin-bottom: 16px !important;
  display: block !important;
}

.snapshot-card h3 {
  margin: 0 0 10px !important;
  color: #ffffff !important;
  font-size: 18px !important;
  line-height: 1.25 !important;
  font-weight: 900 !important;
  letter-spacing: -0.2px !important;
}

.snapshot-card p {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.74) !important;
  font-size: 14.5px !important;
  line-height: 1.6 !important;
}

/* About section should breathe nicely after dark strip */
#about-section {
  margin-top: 34px !important;
}

/* Tablet / mobile */
@media (max-width: 900px) {
  .snapshot-section {
    width: min(720px, calc(100% - 24px)) !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    margin: 24px auto 40px !important;
  }

  .snapshot-card {
    min-height: auto !important;
    padding: 22px 24px !important;
  }

  .snapshot-card:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16) !important;
  }

  .snapshot-card h3 {
    font-size: 18px !important;
  }

  .snapshot-card p {
    font-size: 15px !important;
  }
}
/* =========================================================
   SNAPSHOT SECTION - FULL WIDTH ALIGNMENT
   Aligns Teaching Focus / Student Support / Classroom Culture
   with the Hero and About sections
========================================================= */

.snapshot-section {
  width: 100% !important;
  margin: 32px 0 34px !important;
  padding: 0 !important;

  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 18px !important;

  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;

  position: relative !important;
  z-index: 2 !important;
}

.snapshot-card {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 24px !important;
  padding: 26px 30px !important;

  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14) !important;
  backdrop-filter: blur(14px) !important;

  min-height: 170px !important;
  height: 100% !important;

  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

.snapshot-card::before {
  content: "" !important;
  width: 42px !important;
  height: 4px !important;
  border-radius: 999px !important;
  background: #1a73e8 !important;
  margin-bottom: 16px !important;
  display: block !important;
}

.snapshot-card h3 {
  margin: 0 0 10px !important;
  color: #ffffff !important;
  font-size: 18px !important;
  line-height: 1.25 !important;
  font-weight: 900 !important;
  letter-spacing: -0.2px !important;
}

.snapshot-card p {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 14.5px !important;
  line-height: 1.6 !important;
}

/* Make About section come naturally after the full-width snapshot row */
#about-section {
  margin-top: 34px !important;
}

/* Tablet / Mobile */
@media (max-width: 900px) {
  .snapshot-section {
    width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    margin: 24px 0 34px !important;
  }

  .snapshot-card {
    min-height: auto !important;
    padding: 22px 24px !important;
  }

  .snapshot-card h3 {
    font-size: 18px !important;
  }

  .snapshot-card p {
    font-size: 15px !important;
  }
}
/* =========================================================
   FINAL SNAPSHOT SPACING REFINEMENT
========================================================= */

.snapshot-section {
  margin: 22px 0 28px !important;
}

.snapshot-card {
  min-height: 150px !important;
  padding: 24px 28px !important;
}

#about-section {
  margin-top: 26px !important;
}

@media (max-width: 900px) {
  .snapshot-section {
    margin: 18px 0 24px !important;
  }

  .snapshot-card {
    min-height: auto !important;
    padding: 22px 24px !important;
  }

  #about-section {
    margin-top: 22px !important;
  }
}
/* =========================================================
   STRONGER SNAPSHOT VERTICAL ALIGNMENT FIX
========================================================= */

.snapshot-section {
  margin: 10px 0 18px !important;
}

.snapshot-card {
  min-height: 135px !important;
  padding: 20px 26px !important;
}

.snapshot-card::before {
  margin-bottom: 12px !important;
}

#about-section {
  margin-top: 18px !important;
}

@media (max-width: 900px) {
  .snapshot-section {
    margin: 16px 0 22px !important;
  }

  .snapshot-card {
    min-height: auto !important;
    padding: 20px 22px !important;
  }

  #about-section {
    margin-top: 18px !important;
  }
}
/* =========================================================
   HERO DEMO NOTICE
========================================================= */

.demo-hero-notice {
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin: 12px 0 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(26, 115, 232, 0.10);
  border: 1px solid rgba(26, 115, 232, 0.18);
  color: #12385c;
  font-size: 13px;
  font-weight: 900;
}

.demo-hero-notice span {
  color: #12385c;
}

.demo-hero-notice a {
  color: #1a73e8;
  font-weight: 900;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .demo-hero-notice {
    align-self: center;
    justify-content: center;
    margin: 8px auto 14px;
    font-size: 12px;
  }
}
.demo-hero-notice {
  margin: 0 0 14px;
}
.demo-hero-notice {
  background: rgba(255, 255, 255, 0.78) !important;
  border: 1px solid rgba(26, 115, 232, 0.16) !important;
  box-shadow: 0 10px 24px rgba(16, 42, 67, 0.08) !important;
}
/* =========================================================
   HERO SOCIAL LINKS POLISH
========================================================= */

.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 42, 67, 0.10);
  color: #12385c;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(16, 42, 67, 0.06);
  transition: 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: #eef5ff;
  color: #1a73e8;
  border-color: rgba(26, 115, 232, 0.18);
}

@media (max-width: 900px) {
  .social-links {
    justify-content: center;
    margin-top: 16px;
  }

  .social-links a {
    min-height: 40px;
    padding: 10px 16px;
  }
}
/* =========================================================
   HERO SOCIAL LINK FINAL POLISH
========================================================= */

.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px !important;
}

.social-links a {
  min-height: 36px !important;
  padding: 8px 16px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.78) !important;
  border: 1px solid rgba(16, 42, 67, 0.10) !important;
  color: #12385c !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  box-shadow: 0 8px 18px rgba(16, 42, 67, 0.06) !important;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: #eef5ff !important;
  color: #1a73e8 !important;
  border-color: rgba(26, 115, 232, 0.18) !important;
}

@media (max-width: 900px) {
  .social-links {
    justify-content: center;
    margin-top: 12px !important;
  }
}