:root {
  --blush: #f2d1d9;
  --blush-light: #fdf0f3;
  --lavender: #e8d5f5;
  --lavender-deep: #c9a0dc;
  --plum: #7a2d6b;
  --plum-dark: #4a1942;
  --cream: #fef9f4;
  --warm-white: #fffaf7;
  --rose: #d4788c;
  --rose-gold: #b76e79;
  --text-primary: #2d1b33;
  --text-secondary: #6b5270;
  --text-muted: #9d8ba3;
  --accent-glow: rgba(201, 160, 220, 0.3);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", -apple-system, sans-serif;
  --display: "Playfair Display", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--sans);
  color: var(--text-primary);
  background: var(--warm-white);
  overflow-x: hidden;
  line-height: 1.7;
}

::selection {
  background: var(--lavender);
  color: var(--plum-dark);
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--lavender-deep);
  border-radius: 10px;
}

.sparkle {
  position: fixed;
  pointer-events: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lavender-deep);
  z-index: 9999;
  animation: sparkle-fade 0.6s ease-out forwards;
}
@keyframes sparkle-fade {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0) translateY(-20px);
  }
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 250, 247, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 160, 220, 0.15);
  transition: all 0.4s ease;
}

nav.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

nav.scrolled {
  box-shadow: 0 4px 30px rgba(122, 45, 107, 0.06);
}

.nav-logo {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--plum);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span {
  color: var(--rose);
}

.nav-links {
  display: flex;
  gap: 1rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--rose);
  transition: width 0.3s ease;
}
.nav-links a:hover {
  color: var(--plum);
}
.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--plum);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(255, 250, 247, 0.97);
  backdrop-filter: blur(20px);
  padding: 2rem;
  flex-direction: column;
  gap: 1.2rem;
  z-index: 999;
  border-bottom: 1px solid var(--blush);
}
.mobile-menu.active {
  display: flex;
}
.mobile-menu a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 0;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    var(--warm-white) 0%,
    var(--blush-light) 40%,
    var(--lavender) 100%
  );
}

.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 120, 140, 0.12) 0%,
    transparent 70%
  );
  animation: float-blob 12s ease-in-out infinite;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 160, 220, 0.15) 0%,
    transparent 70%
  );
  animation: float-blob 10s ease-in-out infinite reverse;
}

@keyframes float-blob {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -20px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 15px) scale(0.95);
  }
}

.hero-content {
  text-align: center;
  z-index: 2;
  padding: 2rem;
  max-width: 800px;
}

.hero-greeting {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--rose);
  margin-bottom: 1rem;
  opacity: 0;
  animation: rise-in 1s ease 0.2s forwards;
  letter-spacing: 0.05em;
}

.hero-name {
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400;
  color: var(--plum-dark);
  line-height: 1.05;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: rise-in 1s ease 0.4s forwards;
  letter-spacing: -0.03em;
}

.hero-tagline {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: rise-in 1s ease 0.6s forwards;
  letter-spacing: 0.02em;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: rise-in 1s ease 0.8s forwards;
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--plum);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s ease;
}
.btn-primary-custom:hover {
  background: var(--plum-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(122, 45, 107, 0.25);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--plum);
  border: 1.5px solid var(--lavender-deep);
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s ease;
}
.btn-ghost:hover {
  background: var(--lavender);
  border-color: var(--lavender);
  transform: translateY(-2px);
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: rise-in 1s ease 1.2s forwards;
}
.scroll-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid var(--lavender-deep);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  color: var(--plum);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
  animation: bounce-down 2s ease-in-out infinite;
}
.scroll-btn:hover {
  background: var(--plum);
  color: white;
  border-color: var(--plum);
  transform: translateY(3px);
}
@keyframes bounce-down {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
}

.section-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--plum-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 550px;
  font-weight: 300;
  line-height: 1.8;
}

.section-header {
  margin-bottom: 3.5rem;
}
.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-header.center .section-desc {
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.stats-strip {
  background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 100%);
  padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
}
.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item {
  padding: 0.5rem;
}
.stat-number {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: white;
  line-height: 1.2;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.3rem;
}
@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .stats-grid .stat-item:last-child {
    grid-column: 1 / -1;
  }
}

.about-section {
  background: var(--warm-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-image-wrap {
  position: relative;
}
.about-image-wrap::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1.5px solid var(--lavender-deep);
  border-radius: 20px;
  z-index: 0;
}
.about-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  filter: grayscale(10%) contrast(1.02);
  background: var(--blush-light);
}

.about-text h3 {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--plum);
  margin-bottom: 1.2rem;
}

.about-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.about-details {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.5rem;
}
.about-detail {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.about-detail i {
  color: var(--rose);
  width: 18px;
  text-align: center;
  font-size: 0.8rem;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--plum);
  background: var(--blush-light);
  border: 1px solid var(--lavender);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  letter-spacing: 0.02em;
}
.about-badge i {
  font-size: 0.7rem;
  color: var(--lavender-deep);
}

.education-section {
  background: linear-gradient(
    180deg,
    var(--blush-light) 0%,
    var(--warm-white) 100%
  );
}

.edu-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.edu-timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--lavender-deep), transparent);
}

.edu-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.edu-dot {
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 2px solid var(--lavender-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.edu-dot i {
  font-size: 0.75rem;
  color: var(--plum);
}

.edu-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem 1.8rem;
  flex: 1;
  box-shadow: 0 2px 20px rgba(122, 45, 107, 0.04);
  border: 1px solid rgba(232, 213, 245, 0.5);
  transition: all 0.3s ease;
}
.edu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(122, 45, 107, 0.08);
}

.edu-year {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--rose);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.edu-degree {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--plum-dark);
  margin-bottom: 0.25rem;
}
.edu-school {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}
.edu-grade {
  font-size: 0.82rem;
  color: var(--rose-gold);
  font-weight: 500;
  background: var(--blush-light);
  display: inline-block;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
}

.experience-section {
  background: var(--warm-white);
}

.community-section {
  background: linear-gradient(
    180deg,
    var(--blush-light) 0%,
    var(--warm-white) 100%
  );
}

.exp-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.exp-grid-pro {
  max-width: 900px;
}

.exp-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(232, 213, 245, 0.4);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.exp-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--lavender-deep));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.exp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(122, 45, 107, 0.08);
}
.exp-card:hover::before {
  opacity: 1;
}

.exp-card-featured {
  border: 1.5px solid var(--lavender-deep);
  background: linear-gradient(135deg, white 0%, var(--blush-light) 100%);
  position: relative;
}

.exp-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--rose), var(--lavender-deep));
  color: white;
  padding: 0.25rem 0.8rem;
  border-radius: 20px;
}

.exp-role {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 0.3rem;
}
.exp-company {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--rose-gold);
  margin-bottom: 0.15rem;
}
.exp-year {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.exp-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.75;
}
.exp-desc li {
  margin-bottom: 0.4rem;
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.exp-desc li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--lavender-deep);
  font-size: 0.6rem;
  top: 4px;
}

.skills-section {
  background: linear-gradient(
    135deg,
    var(--plum-dark) 0%,
    var(--plum) 50%,
    #9b4dca 100%
  );
  color: white;
  text-align: center;
}
.skills-section .section-label {
  color: var(--blush);
}
.skills-section .section-title {
  color: white;
}
.skills-section .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.skills-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.skill-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: default;
}
.skill-pill:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}
.skill-pill i {
  font-size: 0.9rem;
}

.projects-section {
  background: var(--warm-white);
}

.projects-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.project-card {
  background: white;
  border-radius: 20px;
  padding: 2rem 1.8rem;
  border: 1px solid rgba(232, 213, 245, 0.4);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(122, 45, 107, 0.1);
}

.project-number {
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--blush);
  line-height: 1;
  margin-bottom: 1rem;
}

.project-name {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--plum-dark);
  margin-bottom: 0.3rem;
}
.project-type {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.project-links {
  margin-top: auto;
  display: flex;
  gap: 0.8rem;
}
.project-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.project-links a:hover {
  background: var(--plum);
  color: white;
  border-color: var(--plum);
}

.project-desc-text {
  font-size: 0.83rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.awards-section {
  background: linear-gradient(
    180deg,
    var(--blush-light) 0%,
    var(--warm-white) 100%
  );
}

.awards-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.award-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(232, 213, 245, 0.4);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.award-card::after {
  content: "";
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  opacity: 0.08;
}
.award-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(122, 45, 107, 0.1);
}

.award-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blush), var(--lavender));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--plum);
}

.award-year {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--rose);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.award-title {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--plum-dark);
  margin-bottom: 0.25rem;
}
.award-org {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--rose-gold);
  margin-bottom: 0.6rem;
}
.award-desc {
  font-size: 0.83rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
}

@media (max-width: 600px) {
  .awards-grid {
    grid-template-columns: 1fr;
  }
}

.hobbies-section {
  background: var(--warm-white);
}
.hobbies-section .trek-card {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.hobbies-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
}

.hobby-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(232, 213, 245, 0.4);
  transition: all 0.4s ease;
}
.hobby-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(122, 45, 107, 0.1);
}

.hobby-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, var(--blush-light), var(--lavender));
}

.hobby-card-body {
  padding: 1.3rem 1.5rem 1.5rem;
}

.hobby-card-body h4 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--plum-dark);
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hobby-card-body h4 .hobby-emoji {
  font-size: 1.2rem;
}
.hobby-card-body p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
}

.poetry-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(232, 213, 245, 0.4);
  transition: all 0.4s ease;
}
.poetry-card:hover {
  box-shadow: 0 15px 40px rgba(122, 45, 107, 0.1);
}

.poetry-visual {
  position: relative;
  min-height: 340px;
  overflow: hidden;
}
.poetry-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, var(--blush-light), var(--lavender));
}
.poetry-visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(
    to top,
    rgba(74, 25, 66, 0.75) 0%,
    transparent 100%
  );
}
.poetry-visual-overlay h4 {
  font-family: var(--display);
  font-size: 1.3rem;
  color: white;
  font-weight: 500;
}
.poetry-visual-overlay p {
  font-family: "Noto Serif Devanagari", var(--sans);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.poetry-reader {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.poetry-reader-label {
  font-family: "Noto Serif Devanagari", var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.4rem;
}
.poetry-reader-title {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--plum-dark);
  margin-bottom: 1rem;
}

.poem-carousel {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.poem-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}
.poem-slide {
  min-width: 100%;
  display: flex;
  flex-direction: column;
}
.poem-title {
  font-family: "Noto Serif Devanagari", var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  font-style: italic;
  color: var(--plum);
  margin-bottom: 0.7rem;
}
.poem-text {
  font-family: "Noto Serif Devanagari", var(--serif);
  font-size: 0.93rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.8;
  flex: 1;
  overflow-y: auto;
}
.poem-text::-webkit-scrollbar {
  width: 3px;
}
.poem-text::-webkit-scrollbar-thumb {
  background: var(--lavender);
  border-radius: 10px;
}
.poem-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  line-height: 2.2;
}

.poem-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--lavender);
}
.poem-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--lavender-deep);
  background: white;
  color: var(--plum);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: all 0.3s ease;
}
.poem-nav-btn:hover {
  background: var(--plum);
  color: white;
  border-color: var(--plum);
}
.poem-counter {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.hobbies-small-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1.5rem;
  max-width: 1500px;
  margin: 1.5rem auto 0;
}

@media (max-width: 900px) {
  .poetry-card {
    grid-template-columns: 1fr;
  }
  .poetry-visual {
    min-height: 220px;
  }
  .hobbies-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .hobbies-small-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .hobbies-small-grid {
    grid-template-columns: 1fr;
  }
}

.blogs-section {
  background: linear-gradient(
    180deg,
    var(--blush-light) 0%,
    var(--warm-white) 100%
  );
}

.blogs-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(232, 213, 245, 0.4);
  transition: all 0.4s ease;
  text-decoration: none;
  display: block;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(122, 45, 107, 0.1);
}

.blog-card-gradient {
  height: 140px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.2rem;
}
.blog-card:nth-child(1) .blog-card-gradient {
  background: linear-gradient(135deg, #f5c6d0, #e8d5f5);
}
.blog-card:nth-child(2) .blog-card-gradient {
  background: linear-gradient(135deg, #e8d5f5, #c9a0dc);
}
.blog-card:nth-child(3) .blog-card-gradient {
  background: linear-gradient(135deg, #d4788c, #f2d1d9);
}
.blog-card:nth-child(4) .blog-card-gradient {
  background: linear-gradient(135deg, #c9a0dc, #7a2d6b);
}
.blog-card:nth-child(5) .blog-card-gradient {
  background: linear-gradient(135deg, #b76e79, #e8d5f5);
}

.blog-number {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  position: absolute;
  top: 0.8rem;
  right: 1.2rem;
  line-height: 1;
}

.blog-card-body {
  padding: 1.2rem 1.5rem 1.5rem;
}
.blog-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.3rem;
}
.blog-title {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--plum-dark);
  margin-bottom: 0.4rem;
}
.blog-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.adventures-section {
  background: linear-gradient(
    180deg,
    var(--blush-light) 0%,
    var(--warm-white) 100%
  );
}

.adventures-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}
.adventures-intro p {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.9;
}

.trek-card {
  max-width: 1000px;
  margin: 0 auto 3rem;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(232, 213, 245, 0.4);
  transition: all 0.4s ease;
}
.trek-card:hover {
  box-shadow: 0 20px 50px rgba(122, 45, 107, 0.1);
}

.trek-hero {
  position: relative;
  height: 340px;
  overflow: hidden;
}
.trek-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, var(--lavender), var(--blush));
  transition: transform 0.6s ease;
}
.trek-card:hover .trek-hero img {
  transform: scale(1.03);
}
.trek-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(74, 25, 66, 0.8) 0%,
    rgba(74, 25, 66, 0.1) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}
.trek-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: fit-content;
  margin-bottom: 0.8rem;
}
.trek-hero-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  color: white;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}
.trek-hero-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.trek-body {
  padding: 2rem 2.5rem;
}

.trek-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.trek-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.trek-stat i {
  color: var(--rose);
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
}
.trek-stat span {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.trek-experience {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.trek-gallery-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.8rem;
}

.trek-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 120px);
  gap: 0.5rem;
  border-radius: 16px;
  overflow: hidden;
}

.trek-gallery-item {
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
}
.trek-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, var(--blush-light), var(--lavender));
  transition: transform 0.4s ease;
}
.trek-gallery-item:hover img {
  transform: scale(1.1);
}

.trek-gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
}
.lightbox-overlay.active {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  object-fit: contain;
}
.lightbox-caption {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}
.lightbox-prev {
  left: 1.5rem;
}
.lightbox-next {
  right: 1.5rem;
}

.trek-card-mini {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(232, 213, 245, 0.4);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 240px;
  transition: all 0.4s ease;
}
.trek-card-mini:hover {
  box-shadow: 0 15px 40px rgba(122, 45, 107, 0.1);
}

.trek-mini-img {
  position: relative;
  overflow: hidden;
}
.trek-mini-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, var(--lavender), var(--blush));
  transition: transform 0.6s ease;
}
.trek-card-mini:hover .trek-mini-img img {
  transform: scale(1.03);
}

.trek-mini-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.trek-mini-body .trek-badge {
  margin-bottom: 0.6rem;
  color: var(--plum);
  background: var(--blush-light);
  border-color: var(--lavender);
}
.trek-mini-body h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--plum-dark);
  margin-bottom: 0.3rem;
}
.trek-mini-body p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
}

@media (max-width: 600px) {
  .trek-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 110px);
    gap: 0.4rem;
  }
  .trek-gallery-item.featured {
    grid-column: span 2;
    grid-row: span 1;
  }
  .trek-gallery-item:nth-child(n + 7) {
    display: block;
  }
  .trek-gallery-item:nth-child(n + 8) {
    display: none;
  }
}

@media (max-width: 600px) {
  .trek-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 110px);
    gap: 0.4rem;
  }
  .trek-gallery-item.featured {
    grid-column: span 2;
    grid-row: span 1;
  }
  .trek-gallery-item:nth-child(n + 8) {
    display: none;
  }
}

.moments-section {
  background: var(--blush-light);
}

.moments-carousel {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.moments-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.moment-slide {
  min-width: 100%;
  position: relative;
}

.moment-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: var(--blush-light);
}

.moment-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 2rem 1.5rem;
  background: linear-gradient(
    to top,
    rgba(74, 25, 66, 0.85) 0%,
    transparent 100%
  );
}
.moment-overlay h4 {
  font-family: var(--display);
  font-size: 1.2rem;
  color: white;
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.moment-overlay p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--lavender-deep);
  background: white;
  color: var(--plum);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}
.carousel-btn:hover {
  background: var(--plum);
  color: white;
  border-color: var(--plum);
}

.carousel-dots {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lavender);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.carousel-dot.active {
  background: var(--plum);
  width: 24px;
  border-radius: 10px;
}

/* ═══ CONTACT / FOOTER ═══ */
.contact-section {
  background: linear-gradient(
    135deg,
    var(--plum-dark) 0%,
    var(--plum) 60%,
    #9b4dca 100%
  );
  color: white;
  text-align: center;
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
}

.contact-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.contact-subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.social-links a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-links a:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.footer-text {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.05em;
}

.flower-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  color: var(--lavender-deep);
  font-size: 0.6rem;
}
.flower-divider::before,
.flower-divider::after {
  content: "";
  width: 60px;
  height: 1px;
  background: var(--lavender);
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--plum);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(122, 45, 107, 0.3);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--plum-dark);
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-image-wrap {
    max-width: 300px;
    margin: 0 auto;
  }
  .about-image-wrap::before {
    display: none;
  }
  .exp-grid {
    grid-template-columns: 1fr;
  }
  .exp-grid-pro {
    grid-template-columns: 1fr;
  }
  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blogs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .blogs-grid {
    grid-template-columns: 1fr;
  }
  .edu-timeline::before {
    display: none;
  }
  .edu-dot {
    display: none;
  }
  .edu-item {
    gap: 0;
  }
}
