/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #f8ecec;
  --bg-alt:    #F3E1E1;  /* Blush */
  --primary:   #9B6B68;  /* Deep Rose */
  --heading:   #9B6B68;
  --accent:    #EBC7C4;  /* Soft Rose */
  --text:      #2C2C2C;
  --muted:     #7D6862;
  --border:    #DDC3B5;  /* Sandy Beige */
  --card-bg:   #FFFFFF;
  --shadow:    0 2px 12px rgba(235,199,196,0.15);
  --radius:    10px;
  --max-w:     1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

em { font-style: italic; }

/* ===== NAV ===== */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.nav-header.nav-scrolled {
  background: rgba(248, 236, 236, 0.95);
  backdrop-filter: blur(8px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  font-family: 'Sacramento', cursive;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--primary);
  white-space: nowrap;
}
.nav-logo:hover { text-decoration: none; }

nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
nav a:hover { color: var(--primary); background: var(--bg-alt); text-decoration: none; }

.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 0.35rem 0.85rem !important;
}
.nav-cta:hover { background: #7A5250 !important; }

.nav-linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  padding: 0.35rem;
  border-radius: 6px;
  line-height: 0;
  transition: color 0.2s, background 0.2s;
}
.nav-linkedin:hover { color: #7A5250; background: var(--bg-alt); text-decoration: none; }

/* ===== HAMBURGER (mobile only) ===== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: var(--bg-alt); }
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* open state */
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

  #navMenu {
    display: none;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(248, 236, 236, 0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 1rem 1rem;
    z-index: 99;
  }

  #navMenu.is-open {
    display: flex;
  }

  #navMenu a {
    font-size: 1rem;
    padding: 0.65rem 0.75rem;
    border-radius: 6px;
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.25rem;
  }

  .nav-linkedin {
    display: flex;
    margin-top: 0.5rem;
    padding: 0.65rem 0.75rem;
    border-radius: 6px;
  }

  .hero-linkedin { display: none; }
}


/* ===== STRING LIGHTS CANVAS ===== */
#heroBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ===== HERO ===== */
.hero-rect-wrap {
  position: relative;
  display: inline-block;
}

.hero-star {
  position: absolute;
  pointer-events: none;
}
.hero-star--1 { top: -22px;  left: -22px;  transform: rotate(-12deg); }
.hero-star--2 { top: -18px;  right: -18px; transform: rotate(20deg);  }
.hero-star--3 { bottom: -20px; left: -16px;  transform: rotate(8deg);   }
.hero-star--4 { bottom: -22px; right: -20px; transform: rotate(-18deg); }
.hero-star--5 { top: 42%;    right: -22px; transform: rotate(14deg);  }
.hero-star--6 { top: 20%;   left: -26px;  transform: rotate(-8deg);  }
.hero-star--7 { bottom: 30%; right: -24px; transform: rotate(22deg);  }
.hero-star--8 { top: -10px; left: 38%;    transform: rotate(6deg);   }

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  padding: 0 3rem;
  margin-top: -62px;
}

.hero-rect {
  position: relative;
  width: 260px;
  height: 320px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--accent);
  border-radius: 130px 130px 0 0;
}

.hero-rect .hero-photo-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: auto;
}

.hero-content {
  max-width: 1100px;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 7rem 0 5rem;
}

.hero-text {
  flex: 1;
  text-align: left;
  padding-right: 3rem;
}

.hero-visual {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  transform: translateX(-100px);
}


.hero-korilakkuma {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(10%, -70%) rotate(20deg);
  height: 70px;
  width: auto;
  pointer-events: none;
  z-index: 2;
}

.hero-cinna {
  height: 120px;
  width: auto;
  align-self: flex-end;
  pointer-events: none;
  flex-shrink: 0;
}

.hero-miffy {
  position: absolute;
  top: 25%;
  left: 1.5rem;
  width: 100px;
  animation: float 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
}

.hero-tagline {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero-links { display: flex; gap: 1rem; justify-content: flex-start; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.7rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #7A5250; text-decoration: none; transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.68rem 1.6rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover { background: var(--primary); color: #fff; text-decoration: none; }

/* ===== QUOTE BANNER ===== */
.quote-banner {
  background: var(--primary);
  color: #fff;
  padding: 2.5rem 2rem;
  text-align: center;
}

.quote-banner-text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.quote-banner-text cite {
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.85;
}

/* ===== SECTIONS ===== */
.section { padding: 5rem 2rem; position: relative; }
.section-alt { background: var(--bg); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--heading);
  margin-bottom: 2.5rem;
}

.subsection-title {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  color: var(--heading);
  margin: 3rem 0 1.25rem;
}

.section-intro {
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 3rem;
}

/* ===== ABOUT ===== */
#about { position: relative; }

.about-star {
  position: absolute;
  pointer-events: none;
}
.about-star--1 { top: 3.5rem;    left: 0.75rem;  transform: rotate(-14deg); opacity: 0.75; }
.about-star--2 { top: 3rem;      right: 0.75rem; transform: rotate(18deg);  opacity: 0.65; }
.about-star--3 { top: 45%;       left: 0.5rem;   transform: translateY(-50%) rotate(-7deg); opacity: 0.55; }
.about-star--4 { top: 38%;       right: 0.4rem;  transform: translateY(-50%) rotate(12deg); opacity: 0.6; }
.about-star--5 { bottom: 3rem;   left: 1rem;     transform: rotate(9deg);   opacity: 0.65; }
.about-star--6 { bottom: 2.5rem; right: 0.8rem;  transform: rotate(-16deg); opacity: 0.55; }
.about-star--7 { top: 8%;  left: 28%;  transform: rotate(-5deg);  opacity: 0.3; }
.about-star--8 { top: 6%;  right: 26%; transform: rotate(13deg);  opacity: 0.28; }
.about-star--9 { top: 42%; left: 50%;  transform: translateX(-50%) rotate(-9deg); opacity: 0.3; }
.about-star--10 { top: 62%; left: 20%; transform: rotate(11deg);  opacity: 0.25; }
.about-star--11 { top: 68%; right: 18%; transform: rotate(-7deg); opacity: 0.28; }

.edu-star {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.edu-star--1  { top: 3rem;     left: 1rem;    transform: rotate(-10deg); opacity: 0.7; }
.edu-star--2  { top: 2.5rem;   right: 1rem;   transform: rotate(15deg);  opacity: 0.6; }
.edu-star--3  { top: 40%;      left: 0.5rem;  transform: translateY(-50%) rotate(-8deg); opacity: 0.5; }
.edu-star--4  { top: 38%;      right: 0.5rem; transform: translateY(-50%) rotate(12deg); opacity: 0.55; }
.edu-star--5  { bottom: 3rem;  left: 1.5rem;  transform: rotate(7deg);   opacity: 0.6; }
.edu-star--6  { bottom: 2rem;  right: 1rem;   transform: rotate(-14deg); opacity: 0.5; }
.edu-star--7  { top: 12%;      left: 25%;     transform: rotate(-5deg);  opacity: 0.28; }
.edu-star--8  { top: 10%;      right: 22%;    transform: rotate(11deg);  opacity: 0.25; }
.edu-star--9  { bottom: 22%;   left: 42%;     transform: rotate(-9deg);  opacity: 0.22; }
.edu-star--10 { top: 55%;      left: 15%;     transform: rotate(7deg);   opacity: 0.25; }
.edu-star--11 { top: 60%;      right: 12%;    transform: rotate(-11deg); opacity: 0.22; }
.edu-star--12 { top: 28%;      left: 38%;     transform: rotate(4deg);   opacity: 0.2; }
.edu-star--13 { bottom: 35%;   right: 35%;    transform: rotate(-6deg);  opacity: 0.22; }
.edu-star--14 { top: 75%;      left: 28%;     transform: rotate(14deg);  opacity: 0.2; }
.edu-star--15 { top: 20%;      left: 8%;      transform: rotate(-3deg);  opacity: 0.35; }
.edu-star--16 { bottom: 10%;   right: 18%;    transform: rotate(8deg);   opacity: 0.3; }

.exp-star {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.exp-star--1  { top: 3.5rem;   left: 0.75rem;  transform: rotate(-12deg); opacity: 0.7; }
.exp-star--2  { top: 3rem;     right: 0.75rem; transform: rotate(18deg);  opacity: 0.6; }
.exp-star--3  { top: 45%;      left: 0.5rem;   transform: translateY(-50%) rotate(-7deg); opacity: 0.5; }
.exp-star--4  { top: 40%;      right: 0.4rem;  transform: translateY(-50%) rotate(10deg); opacity: 0.55; }
.exp-star--5  { bottom: 3rem;  left: 1rem;     transform: rotate(9deg);   opacity: 0.6; }
.exp-star--6  { bottom: 2.5rem; right: 0.8rem; transform: rotate(-16deg); opacity: 0.5; }
.exp-star--7  { top: 8%;       left: 30%;      transform: rotate(-5deg);  opacity: 0.28; }
.exp-star--8  { top: 6%;       right: 28%;     transform: rotate(13deg);  opacity: 0.25; }
.exp-star--9  { bottom: 18%;   left: 50%;      transform: rotate(-8deg);  opacity: 0.22; }
.exp-star--10 { top: 50%;      left: 18%;      transform: rotate(6deg);   opacity: 0.25; }
.exp-star--11 { top: 55%;      right: 15%;     transform: rotate(-10deg); opacity: 0.22; }
.exp-star--12 { top: 30%;      left: 42%;      transform: rotate(3deg);   opacity: 0.2; }
.exp-star--13 { bottom: 30%;   right: 38%;     transform: rotate(-7deg);  opacity: 0.22; }
.exp-star--14 { top: 70%;      left: 25%;      transform: rotate(12deg);  opacity: 0.2; }
.exp-star--15 { top: 22%;      left: 10%;      transform: rotate(-4deg);  opacity: 0.35; }
.exp-star--16 { bottom: 12%;   right: 20%;     transform: rotate(9deg);   opacity: 0.3; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text p { margin-bottom: 1rem; color: var(--muted); }
.about-text a { color: var(--accent); font-weight: 500; }

.about-img-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  margin-top: -14rem;
}

.about-img-5972 {
  max-width: 260px;
  width: 100%;
  display: block;
}

.speech-bubble {
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 20px;
  padding: 0.85rem 1.25rem;
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
  color: var(--primary);
  position: relative;
  box-shadow: var(--shadow);
  white-space: nowrap;
}

.speech-bubble::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -14px;
  transform: translateY(-50%);
  border-width: 10px 14px 10px 0;
  border-style: solid;
  border-color: transparent var(--primary) transparent transparent;
}

.speech-bubble::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -11px;
  transform: translateY(-50%);
  border-width: 9px 12px 9px 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
  z-index: 1;
}

.photo-placeholder {
  background: var(--bg-alt);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.5rem;
}
.photo-placeholder.wide { grid-column: span 2; aspect-ratio: 16/5; }
.photo-placeholder.small { aspect-ratio: 4/3; }
.photo-placeholder.centered { margin-top: 0.75rem; }

/* ===== POLAROIDS ===== */
.polaroid-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  padding: 0.5rem 0;
  margin-top: -5rem;
}

.polaroid {
  background: #fff;
  padding: 7px 7px 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  position: relative;
  z-index: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

.polaroid:hover {
  transform: scale(1.07) rotate(0deg) !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  z-index: 10;
}

.polaroid img {
  width: 160px;
  height: 145px;
  object-fit: cover;
  display: block;
}

.polaroid-caption {
  text-align: center;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.7rem;
  color: #777;
  padding-top: 5px;
  min-height: 18px;
  line-height: 1.2;
}

.polaroid-caption--handwritten {
  font-family: 'Indie Flower', cursive;
  font-style: normal;
  font-size: 0.85rem;
  color: #555;
}

.polaroid:nth-child(1) { transform: rotate(-2.5deg); }
.polaroid:nth-child(2) { transform: rotate(1.8deg); }
.polaroid:nth-child(3) { transform: rotate(-1.2deg); }
.polaroid:nth-child(4) { transform: rotate(2.3deg); }
.polaroid:nth-child(5) { transform: rotate(-0.8deg); }
.polaroid:nth-child(6) { transform: rotate(1.5deg); }
.polaroid:nth-child(7) { transform: rotate(-2deg); }

/* ===== EDUCATION STICKERS ===== */
.edu-section {
  position: relative;
  overflow: visible;
}

.edu-sticker {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.edu-sticker--hermione {
  height: 340px;
  width: auto;
  top: -28%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(-15deg);
  filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.15));
  z-index: 1;
}

.edu-sticker--elle {
  height: 160px;
  width: auto;
  bottom: -10px;
  left: 2%;
  transform: rotate(6deg);
  filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.15));
  z-index: 10;
}

/* ===== EDUCATION DIPLOMAS ===== */
.edu-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
}

.diploma {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 2;
  padding: 5px;
}

.diploma--wgu  { background: #1E3A5F; }
.diploma--osu  { background: #C4845E; }
.diploma--uncg { background: #A68B5B; }

.diploma-uncg-wrap {
  flex: 1;
  min-width: 0;
  position: relative;
}

.diploma-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: #FDFAF6;
  height: 100%;
  box-sizing: border-box;
}

.diploma--wgu  .diploma-inner { border: 2px solid #1E3A5F; }
.diploma--osu  .diploma-inner { border: 2px solid #C4845E; }
.diploma--uncg .diploma-inner { border: 2px solid #A68B5B; }

.diploma-logo-wrap {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.diploma-logo {
  max-height: 52px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
}

.diploma-logo--lg {
  max-height: 96px;
  max-width: 200px;
}

.diploma-rule {
  width: 55%;
  height: 1px;
  margin: 0.75rem auto;
  border: none;
}

.diploma--wgu  .diploma-rule { background: #1E3A5F; }
.diploma--osu  .diploma-rule { background: #C4845E; }
.diploma--uncg .diploma-rule { background: #A68B5B; }

.diploma-school {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.diploma--wgu  .diploma-school { color: #1E3A5F; }
.diploma--osu  .diploma-school { color: #C4845E; }
.diploma--uncg .diploma-school { color: #A68B5B; }

.diploma-degree {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.diploma-detail {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }

/* ===== TIMELINE — horizontal (Experience) ===== */
.timeline {
  position: relative;
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--primary) 8%, var(--border) 92%, transparent);
  z-index: 0;
}

.timeline-item {
  flex: 1;
  min-width: 155px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.75rem;
  position: relative;
}

.timeline-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(235,199,196,0.2);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  margin-bottom: 0.75rem;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--primary);
  flex-shrink: 0;
  z-index: 1;
  position: relative;
  margin-bottom: 1rem;
}

.timeline-dot--open {
  background: var(--bg);
  box-shadow: 0 0 0 2px var(--border);
}

.timeline-content {
  background: #FDFAF6;
  border: 2px solid var(--border);
  border-radius: 0;
  padding: 1rem;
  box-shadow: var(--shadow);
  width: 100%;
  flex: 1;
}

.timeline-item--open .timeline-content {
  border: 2px dashed var(--border);
  background: transparent;
  box-shadow: none;
}

.timeline-logo {
  max-height: 40px;
  max-width: 110px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 0.5rem;
}

.timeline-role {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  color: var(--heading);
  margin-bottom: 0.25rem;
}

.timeline-org {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.1rem;
}

.timeline-loc {
  font-size: 0.76rem;
  color: var(--muted);
}

.card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(235,199,196,0.2);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}

.card-logo {
  max-height: 48px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.75rem;
  display: block;
}
.card-logo--lg {
  max-height: 72px;
  max-width: 200px;
}

.card h3 {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  color: var(--heading);
  margin-bottom: 0.4rem;
}

.card p { font-size: 0.9rem; color: var(--muted); }
.card-org { font-weight: 500; color: var(--text) !important; font-size: 0.9rem !important; }
.card-loc { font-size: 0.85rem !important; color: var(--muted) !important; margin-top: 0.2rem; }

.card-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}
.card-link:hover { text-decoration: underline; }

.card-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}
.tool-chip {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
}

/* photo strip inside card */
.photo-strip {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.photo-strip .photo-placeholder { flex: 1; min-width: 0; }
.photo-strip-img { flex: 1; min-width: 0; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); }

/* ===== FOLDER TABS (Projects) ===== */
.folder {
  margin-top: 1rem;
}

.folder-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}

.folder-tab {
  padding: 0.55rem 1.4rem;
  background: rgba(235,199,196,0.15);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  position: relative;
  bottom: -1px;
  letter-spacing: 0.01em;
}

.folder-tab:hover:not(.active) {
  background: rgba(235,199,196,0.25);
  color: var(--primary);
}

.folder-tab.active {
  background: var(--card-bg);
  color: var(--primary);
  font-weight: 600;
  border-bottom: 1px solid var(--card-bg);
  z-index: 1;
}

.folder-body {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 var(--radius) var(--radius) var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.folder-panel {
  display: none;
}

.folder-panel.active {
  display: block;
}

.folder-overview-intro {
  font-size: 1rem;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.overview-rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3rem;
}

.overview-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  align-items: baseline;
}

.overview-row:nth-last-child(-n+2) {
  border-bottom: 1px solid var(--border);
}

.overview-row-label {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}

.overview-row-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 720px) {
  .overview-rows {
    grid-template-columns: 1fr;
  }
  .overview-row:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .overview-row:last-child {
    border-bottom: 1px solid var(--border);
  }
  .overview-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

/* ===== PHILOSOPHY BLOCK ===== */
.philosophy-block {
  background: var(--card-bg);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
  font-size: 0.95rem;
  color: var(--text);
}

/* ===== RESEARCH ===== */
.research-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.research-header { margin-bottom: 1rem; }
.research-header h3 {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  color: var(--heading);
  margin: 0.4rem 0 0.2rem;
}
.research-subtitle { color: var(--muted); font-style: italic; }

.research-block p { margin-bottom: 0.85rem; font-size: 0.95rem; }

.research-note {
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  border-left: 3px solid var(--accent);
}
.research-note p { margin-bottom: 0.6rem; font-size: 0.9rem; color: var(--muted); }
.research-note p:last-child { margin-bottom: 0; }

/* ===== AWARDS ===== */
.award-block {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.award-badge {
  font-size: 2.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.award-content h3 {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  color: var(--heading);
  margin: 0.4rem 0 0.75rem;
}

.award-content ul { padding-left: 1.25rem; }
.award-content li { margin-bottom: 0.4rem; font-size: 0.95rem; }

/* ===== VIDEO CARDS ===== */
.video-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.video-card .video-placeholder {
  background: #5C3D3A;
  border-radius: 8px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 1.5rem;
  margin: 0.75rem 0;
  cursor: pointer;
}

.video-embed {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  margin: 0.75rem 0;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.story-details { margin-top: 1rem; }
.story-details summary {
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  user-select: none;
}
.story-details p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ===== INTERESTS ===== */
.interest-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}
.interest-block h3 {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  color: var(--heading);
  margin-bottom: 0.5rem;
}

.donate-block {
  text-align: center;
  padding: 1rem 0;
}
.donate-block h3 {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.donate-block h3 { color: var(--heading); }
.donate-block p { color: var(--text-muted, #666); margin-bottom: 1.5rem; }

.donate-circles {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.donate-star-link {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.35s ease;
}
.donate-star-link:hover {
  transform: scale(1.08);
}
.donate-star {
  width: 150px;
  height: 150px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.donate-star-img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

/* ===== CONTACT ===== */
#contact {
  position: relative;
}

#experience {
  position: relative;
  overflow: hidden;
}

.contact-wrapper {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.contact-container {
  text-align: center;
  flex: 1 1 50%;
  min-width: 0;
}
.contact-container p { color: var(--muted); margin-bottom: 1.5rem; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}

.cinna-balloon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 240px;
  animation: float 3s ease-in-out infinite;
  pointer-events: none;
}

.moose-sticker {
  position: absolute;
  top: 1.5rem;
  left: 14rem;
  width: 80px;
  pointer-events: none;
}

.remus-sticker {
  position: absolute;
  right: -20px;
  top: 4rem;
  transform: rotate(8deg);
  width: 160px;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.15));
}

.miffy-experience {
  position: absolute;
  bottom: 0;
  left: -60px;
  transform: rotate(-7deg);
  transform-origin: bottom left;
  width: 150px;
  pointer-events: none;
  z-index: 2;
}

.hk-sticker {
  position: absolute;
  top: 6.5rem;
  right: 16rem;
  width: 110px;
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
  transform: rotate(6deg);
}

.portfolio-intro-row {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.portfolio-intro-text {
  flex: 1;
}

.portfolio-circle-slideshow {
  position: relative;
  width: 320px;
  height: 320px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 6px solid var(--accent);
}

.portfolio-circle-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.portfolio-circle-slide.active { opacity: 1; }

.contact-slideshow-col {
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.contact-slideshow {
  width: 280px;
  height: 380px;
  flex-shrink: 0;
  position: relative;
  border: 4px solid var(--primary);
  border-radius: 140px 140px 0 0;
  padding: 8px;
  box-sizing: border-box;
  overflow: hidden;
}
.contact-slide {
  position: absolute;
  inset: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  object-fit: cover;
  border-radius: 132px 132px 0 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.contact-slide.active { opacity: 1; }

@media (max-width: 768px) {
  .contact-wrapper { flex-direction: column; }
  .contact-slideshow-col { width: 100%; }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  text-align: left;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  resize: vertical;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.contact-form .btn-primary {
  align-self: center;
  margin-top: 0.25rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: inherit;
}

/* ===== FOOTER ===== */
.footer {
  background: #5C3D3A;
  color: rgba(255,255,255,0.6);
  padding: 2rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
}

.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(255,255,255,0.6); }
.footer-links a:hover { color: #fff; text-decoration: none; }

.footer .donate-block { padding: 0.5rem 0 0; }
.footer .donate-block p { color: rgba(255,255,255,0.7); margin-bottom: 1rem; }
.footer .donate-circles { gap: 1.25rem; }
.footer .donate-star { width: 80px; height: 80px; }
.footer-support-label { font-size: 0.875rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .about-star { display: none; }
  .hero { padding: 0 1.5rem; }
  .hero-cinna { display: none; }
  .hero-miffy { display: none; }
  .hero-content { flex-direction: column; padding: 3.5rem 0 0; }
  .hero-text { text-align: center; padding-right: 0; }
  .hero-links { justify-content: center; }
  .hero-blob { width: 100%; top: auto; bottom: 0; height: 50%; border-radius: 55% 55% 0 0 / 40% 40% 0 0; }
  .hero-visual { width: 100%; min-height: 280px; justify-content: center; transform: none; margin-top: 2.5rem; }
  .hero-korilakkuma { display: none; }
  .hero-rect { width: 240px; height: 300px; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .edu-sticker--hermione { display: none; }
  .edu-sticker--elle { height: 160px; bottom: -40px; left: 1%; }
  .remus-sticker { display: none; }
  .edu-grid { flex-direction: column; align-items: stretch; }
  .diploma-uncg-wrap { min-width: 0; }
  .hk-sticker { display: none; }
  .portfolio-circle-slideshow { display: none; }
  .cinna-balloon { display: none; }
  .moose-sticker { display: none; }
  .polaroid-wall { margin-top: 0; }
  .about-img-row { margin-top: 2rem; }
  .speech-bubble { white-space: normal; font-size: 1rem; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .award-block { flex-direction: column; }
  nav { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .timeline { flex-direction: column; align-items: stretch; overflow-x: visible; padding-left: 2.5rem; }
  .timeline::before { top: 0; bottom: 0; left: 1rem; right: auto; width: 2px; height: auto; background: linear-gradient(to bottom, var(--primary), var(--border) 85%, transparent); }
  .timeline-item { align-items: flex-start; text-align: left; padding: 0 0 2rem 0; min-width: 0; }
  .timeline-dot { position: absolute; left: -2.5rem; top: 0.15rem; transform: translateX(-50%); margin-bottom: 0; }
  .timeline-badge { margin-bottom: 0.5rem; }
  .timeline-logo { margin: 0.5rem 0; }
}

@media (max-width: 480px) {
  .photo-placeholder.wide { aspect-ratio: 16/7; }
  .hero h1 { font-size: 2.5rem; }
}

.hero-greeting { position: relative; }
.hero-greeting .greeting-en,
.hero-greeting .greeting-lo {
  display: block;
  transition: opacity 0.8s ease;
}
.hero-greeting .greeting-lo {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  text-align: inherit;
  white-space: nowrap;
  opacity: 0;
}
.hero-greeting.show-lo .greeting-en { opacity: 0; }
.hero-greeting.show-lo .greeting-lo { opacity: 1; }

.typewriter-cursor {
  display: inline-block;
  margin-left: 2px;
  animation: blink 0.75s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ===== ACCORDION (Portfolio) ===== */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.accordion-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: background 0.2s;
}

.accordion-header:hover {
  background: var(--bg-alt);
}

.accordion-item.open > .accordion-header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.accordion-title {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  color: var(--primary);
}

.accordion-icon {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg) translateY(-3px);
  transition: transform 0.25s ease;
}

.accordion-item.open > .accordion-header .accordion-icon {
  transform: rotate(-135deg) translateY(3px);
}

.accordion-body {
  display: none;
  padding: 2rem 1.75rem;
}

.accordion-item.open > .accordion-body {
  display: block;
}

/* ===== SCROLL ANIMATIONS ===== */
[data-anim] {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-anim="up"] {
  transform: translateY(24px);
}
[data-anim].in-view {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-anim] { opacity: 1 !important; transform: none !important; transition: none !important; }
}
