@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --cream: #FFF5F8;
  --warm-white: #FFFBFC;
  --tickle-pink: #F283AF;
  --blush: #FBD9E5;
  --rose: #E85D8A;
  --deep-rose: #CA3670;
  --mauve: #B8286F;
  --brown: #8B1E5F;
  --light-brown: #D4627A;
  --text: #5C1F3A;
  --text-muted: #9B5A75;
  --border: rgba(242, 131, 175, 0.25);
  --shadow: rgba(202, 54, 112, 0.15);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --font-curly: 'Pacifico', cursive;

  --nav-h: 72px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* offset untuk navbar */
}

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

/* ===== NOISE TEXTURE OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ===== SCROLL PROGRESS BAR ===== */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--tickle-pink), var(--deep-rose), var(--rose));
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 20px rgba(242, 131, 175, 0.5);
}

/* ===== DYNAMIC ISLAND NAVBAR ===== */
.dynamic-island-nav {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 3rem;
  animation: island-appear 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes island-appear {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.island-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 251, 252, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 100px;
  border: 1px solid rgba(242, 131, 175, 0.25);
  box-shadow: 
    0 8px 32px rgba(202, 54, 112, 0.12),
    0 2px 8px rgba(168, 92, 114, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.island-container:hover {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 
    0 12px 40px rgba(202, 54, 112, 0.15),
    0 4px 12px rgba(168, 92, 114, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(242, 131, 175, 0.35);
}

.island-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--mauve);
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-right: auto;
}

.island-logo:hover {
  color: var(--deep-rose);
  transform: scale(1.05);
}

.island-links {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.dock-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.6rem 0.8rem;
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  white-space: nowrap;
}

.dock-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.dock-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active state - show label */
.dock-item.active .dock-label {
  opacity: 1;
  max-width: 100px;
  margin-left: 0.35rem;
}

.dock-item.active {
  background: linear-gradient(135deg, rgba(242, 196, 206, 0.4), rgba(242, 131, 175, 0.3));
  color: var(--mauve);
  padding: 0.6rem 1.2rem;
}

.dock-item.active .dock-icon {
  transform: scale(1.1);
}

/* Hover effect */
.dock-item:hover {
  background: rgba(242, 196, 206, 0.25);
  color: var(--mauve);
  transform: translateY(-2px);
}

.dock-item:hover .dock-icon {
  transform: scale(1.15);
}

.dock-item:hover .dock-label {
  opacity: 1;
  max-width: 100px;
  margin-left: 0.35rem;
}

/* Hamburger for mobile */
.island-hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.island-hamburger:hover {
  background: rgba(242, 196, 206, 0.2);
}

.hamburger-line {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--mauve);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.island-hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.island-hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.island-hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 768px) {
  .island-links {
    display: none;
  }
  .island-hamburger {
    display: flex;
  }
  .island-container {
    padding: 0.6rem 1rem;
  }
}

/* Mobile Menu Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  width: calc(100% - 2rem);
  max-width: 400px;
  background: rgba(255, 251, 252, 0.98);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(242, 131, 175, 0.3);
  box-shadow: 0 12px 48px rgba(202, 54, 112, 0.2);
  z-index: 99;
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 0;
  overflow: hidden;
}

.mobile-nav.open {
  display: flex;
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
  max-height: 500px;
}

.mobile-nav a {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.85rem 1.25rem;
  border-radius: 16px;
  transition: all 0.2s ease;
  position: relative;
  opacity: 0;
  transform: translateY(-10px);
  animation: none;
}

.mobile-nav.open a {
  animation: slideInMenuItem 0.3s ease forwards;
}

.mobile-nav.open a:nth-child(1) { animation-delay: 0.05s; }
.mobile-nav.open a:nth-child(2) { animation-delay: 0.1s; }
.mobile-nav.open a:nth-child(3) { animation-delay: 0.15s; }
.mobile-nav.open a:nth-child(4) { animation-delay: 0.2s; }
.mobile-nav.open a:nth-child(5) { animation-delay: 0.25s; }

@keyframes slideInMenuItem {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: rgba(242, 196, 206, 0.3);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.mobile-nav a:hover::before,
.mobile-nav a.active::before {
  opacity: 1;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--mauve);
}

/* ===== PAGE WRAPPER ===== */
.page-wrapper {
  padding-top: 0;
  min-height: 100vh;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10rem 3rem 6rem;
}

.hero-text {
  position: relative;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--tickle-pink), var(--deep-rose));
}

.hero-name {
  font-family: var(--font-curly);
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--deep-rose);
  margin-bottom: 1.25rem;
  letter-spacing: 1px;
}

.hero-name em {
  color: var(--tickle-pink);
  font-style: italic;
  display: block;
  margin-top: 0.25rem;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 300;
  color: var(--mauve);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 480px;
  margin-bottom: 3rem;
}

.hero-cta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, var(--tickle-pink), var(--deep-rose));
  color: white;
  text-decoration: none;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(202, 54, 112, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--deep-rose), var(--mauve));
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(202, 54, 112, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--deep-rose);
  text-decoration: none;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 2px solid var(--tickle-pink);
  transition: all var(--transition);
}

.btn-secondary:hover {
  background: var(--blush);
  border-color: var(--deep-rose);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(242, 131, 175, 0.25);
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.profile-card {
  position: relative;
  width: 380px;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(202, 54, 112, 0.25);
  transition: transform var(--transition), box-shadow var(--transition);
}

.profile-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(202, 54, 112, 0.35);
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Progressive blur overlay */
.progressive-blur-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  pointer-events: none;
  z-index: 1;
}

.progressive-blur-overlay::before,
.progressive-blur-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(0px);
}

.progressive-blur-overlay::before {
  mask-image: linear-gradient(180deg, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0.3) 20%,
    rgba(255, 255, 255, 0.6) 40%,
    rgba(255, 255, 255, 0.8) 60%,
    rgba(255, 255, 255, 1) 80%,
    rgba(255, 255, 255, 1) 100%
  );
  -webkit-mask-image: linear-gradient(180deg, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0.3) 20%,
    rgba(255, 255, 255, 0.6) 40%,
    rgba(255, 255, 255, 0.8) 60%,
    rgba(255, 255, 255, 1) 80%,
    rgba(255, 255, 255, 1) 100%
  );
  backdrop-filter: blur(2px);
}

.progressive-blur-overlay::after {
  mask-image: linear-gradient(180deg, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.7) 70%,
    rgba(255, 255, 255, 1) 90%,
    rgba(255, 255, 255, 1) 100%
  );
  -webkit-mask-image: linear-gradient(180deg, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.7) 70%,
    rgba(255, 255, 255, 1) 90%,
    rgba(255, 255, 255, 1) 100%
  );
  backdrop-filter: blur(8px);
}

/* Profile info overlay */
.profile-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 1.75rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.profile-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.profile-location {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.profile-role {
  font-size: 0.95rem;
  color: white;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ===== SECTION COMMONS ===== */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2rem 5rem;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--tickle-pink), var(--deep-rose));
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-title em {
  font-style: italic;
  color: var(--deep-rose);
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.8;
}

/* ===== DIVIDER ===== */
.divider {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.divider hr {
  border: none;
  border-top: 1px solid var(--border);
}

/* ===== ABOUT PAGE ===== */
.about-section-new {
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.2;
  margin-top: 1rem;
}

.about-title-highlight {
  font-family: var(--font-curly);
  color: var(--deep-rose);
  font-size: 1.1em;
  display: block;
  margin-top: 0.5rem;
}

/* Content Grid */
.about-content-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.about-intro-box {
  background: white;
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(202, 54, 112, 0.08);
  position: relative;
}

.about-quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--blush);
  position: absolute;
  top: 1rem;
  left: 2rem;
  line-height: 1;
  opacity: 0.5;
}

.about-intro-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--mauve);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.about-intro-text strong {
  color: var(--deep-rose);
  font-weight: 400;
}

.about-description {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* Info Cards */
.about-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-card {
  background: white;
  padding: 1.75rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: all var(--transition);
}

.info-card:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 32px rgba(202, 54, 112, 0.12);
  border-color: var(--tickle-pink);
}

.info-card-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(242, 196, 206, 0.3), rgba(242, 131, 175, 0.2));
  border-radius: 16px;
  transition: all var(--transition);
}

.info-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--deep-rose);
  transition: all var(--transition);
}

.info-card:hover .info-card-icon {
  background: linear-gradient(135deg, var(--tickle-pink), var(--deep-rose));
  transform: scale(1.1);
}

.info-card:hover .info-card-icon svg {
  color: white;
}

.info-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.info-card-content p {
  font-size: 0.95rem;
  color: var(--mauve);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.info-card-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Detail Cards */
.about-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.detail-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(202, 54, 112, 0.15);
  border-color: var(--tickle-pink);
}

.detail-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.detail-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(242, 196, 206, 0.25), rgba(242, 131, 175, 0.15));
  border-radius: 10px;
  transition: all var(--transition);
}

.detail-icon svg {
  width: 22px;
  height: 22px;
  color: var(--deep-rose);
  transition: all var(--transition);
}

.detail-card:hover .detail-icon {
  background: linear-gradient(135deg, var(--tickle-pink), var(--deep-rose));
  transform: rotate(5deg) scale(1.1);
}

.detail-card:hover .detail-icon svg {
  color: white;
}

.detail-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
}

.detail-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Journey Timeline */
.about-journey {
  background: white;
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(202, 54, 112, 0.08);
}

.journey-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 2.5rem;
  text-align: center;
}

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

.journey-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--tickle-pink), var(--blush), transparent);
}

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

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -2rem;
  top: 8px;
  width: 12px;
  height: 12px;
  background: var(--deep-rose);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--blush);
}

.timeline-year {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
  background: rgba(242, 196, 206, 0.3);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.5rem;
}

.timeline-content h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  margin: 0.5rem 0 0.35rem;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .about-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-intro-box {
    padding: 2rem;
  }

  .about-quote-mark {
    font-size: 4rem;
    top: 0.5rem;
    left: 1rem;
  }

  .about-intro-text {
    font-size: 1.25rem;
  }

  .about-details-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .about-journey {
    padding: 2rem;
  }

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

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

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

/* ===== SKILLS PAGE ===== */
.skills-intro {
  max-width: 540px;
  margin-bottom: 3.5rem;
}

/* ===== SKILLS CONTAINER ===== */
.skills-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(242,196,206,0.15) 0%, rgba(168,92,114,0.08) 100%);
  border-radius: 24px;
}

/* Skills List Column */
.skills-list-col {
  display: flex;
  flex-direction: column;
}

.skills-list-title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.skills-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skills-list li {
  padding: 0.9rem 1.2rem;
  background: white;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.skills-list li::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(242,196,206,0.4), rgba(212,132,154,0.3));
  transform: translateX(-100%);
  transition: transform var(--transition);
  z-index: -1;
}

.skills-list li:hover {
  border-color: var(--rose);
  transform: translateX(8px) scale(1.02);
  box-shadow: 0 8px 24px var(--shadow);
}

.skills-list li:hover::before {
  transform: translateX(0);
}

/* Skills Bar Column */
.skills-bar-col {
  display: flex;
  flex-direction: column;
}

.skills-bar-title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.skills-bars {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.skill-item {
  position: relative;
}

.skill-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.skill-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.skill-percent {
  font-size: 0.9rem;
  font-weight: 600;
  background: linear-gradient(90deg, var(--blush), var(--rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.skill-bar {
  height: 8px;
  background: rgba(212, 132, 154, 0.2);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all var(--transition);
}

.skill-bar:hover {
  height: 12px;
  box-shadow: 0 4px 16px rgba(212, 132, 154, 0.25);
}

.skill-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blush), var(--rose), var(--deep-rose));
  border-radius: 100px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 0 20px rgba(212, 132, 154, 0.4);
}

.skill-bar-fill.animated {
  width: var(--target-width);
}

.skill-item:hover .skill-bar-fill {
  filter: brightness(1.15);
  box-shadow: 0 0 30px rgba(212, 132, 154, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .skills-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }
}

/* Soft skills tags */
.soft-skills-section {
  margin-top: 1rem;
}

.soft-skills-header {
  text-align: center;
  margin-bottom: 3rem;
}

.soft-skills-header .section-subtitle {
  max-width: 600px;
  margin: 1rem auto 0;
}

.soft-skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.soft-skill-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.soft-skill-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--tickle-pink), var(--deep-rose));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.soft-skill-card:hover::before {
  transform: scaleX(1);
}

.soft-skill-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(202, 54, 112, 0.15);
  border-color: var(--tickle-pink);
}

.soft-skill-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(242, 196, 206, 0.2), rgba(242, 131, 175, 0.15));
  border-radius: 12px;
  transition: all var(--transition);
}

.soft-skill-icon svg {
  width: 24px;
  height: 24px;
  color: var(--deep-rose);
  transition: all var(--transition);
}

.soft-skill-card:hover .soft-skill-icon {
  background: linear-gradient(135deg, var(--tickle-pink), var(--deep-rose));
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(202, 54, 112, 0.3);
}

.soft-skill-card:hover .soft-skill-icon svg {
  color: white;
  transform: scale(1.1);
}

.soft-skill-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--mauve);
  margin-bottom: 0.75rem;
}

.soft-skill-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .soft-skills-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .soft-skills-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .soft-skill-card {
    padding: 1.5rem 1rem;
  }

  .soft-skill-icon {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .soft-skills-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PORTFOLIO PAGE ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.project-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px var(--shadow);
}

.project-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blush), #fce8f0);
  display: block;
  position: relative;
  border-radius: 20px 20px 0 0;
  flex-shrink: 0;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.project-card:hover .project-img img {
  transform: scale(1.05);
}

.project-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.6rem;
}

.project-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.project-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--mauve);
  text-decoration: none;
  border-bottom: 1px solid var(--blush);
  padding-bottom: 1px;
  transition: all var(--transition);
  align-self: flex-start;
  margin-top: auto;
}

.project-link:hover {
  color: var(--deep-rose);
  border-bottom-color: var(--deep-rose);
  gap: 0.65rem;
}

/* ===== CV PAGE ===== */
.cv-section-new {
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
}

.cv-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cv-header {
  text-align: center;
  margin-bottom: 4rem;
}

.cv-content-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Sidebar */
.cv-sidebar-new {
  position: sticky;
  top: 120px;
  background: white;
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(202, 54, 112, 0.08);
}

.cv-profile-section {
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.cv-profile-img-wrapper {
  width: 140px;
  height: 140px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--blush);
  box-shadow: 0 8px 24px rgba(202, 54, 112, 0.15);
}

.cv-profile-img-new {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cv-name-new {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.cv-role-new {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
}

.cv-contact-section {
  margin-bottom: 2rem;
}

.cv-sidebar-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 1rem;
}

.cv-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cv-contact-item-new {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all var(--transition);
}

.cv-contact-item-new svg {
  width: 18px;
  height: 18px;
  color: var(--rose);
  flex-shrink: 0;
}

.cv-contact-item-new:hover {
  background: rgba(242, 196, 206, 0.2);
  color: var(--mauve);
  transform: translateX(4px);
}

.cv-quote-new {
  background: linear-gradient(135deg, rgba(242, 196, 206, 0.2), rgba(242, 131, 175, 0.1));
  padding: 1.5rem;
  border-radius: 16px;
  border-left: 3px solid var(--tickle-pink);
  position: relative;
}

.quote-icon {
  width: 24px;
  height: 24px;
  color: var(--blush);
  margin-bottom: 0.5rem;
}

.cv-quote-new p {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--mauve);
  line-height: 1.5;
}

/* Main Content */
.cv-main-new {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.cv-section-new {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(202, 54, 112, 0.06);
}

.cv-section-title-new {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--blush);
}

.cv-section-title-new svg {
  width: 24px;
  height: 24px;
  color: var(--deep-rose);
}

/* Timeline */
.cv-timeline {
  position: relative;
  padding-left: 2rem;
}

.cv-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--tickle-pink), var(--blush));
}

.cv-timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.cv-timeline-item:last-child {
  padding-bottom: 0;
}

.cv-timeline-marker {
  position: absolute;
  left: -2.45rem;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--deep-rose);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--blush);
}

.cv-timeline-period {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(135deg, var(--tickle-pink), var(--deep-rose));
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.cv-timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  margin: 0.5rem 0 0.5rem;
}

.cv-timeline-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Experience Card */
.cv-experience-card {
  background: linear-gradient(135deg, rgba(242, 196, 206, 0.1), rgba(242, 131, 175, 0.05));
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.cv-experience-header {
  margin-bottom: 0.75rem;
}

.cv-experience-header h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.cv-experience-meta {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--rose);
  letter-spacing: 0.04em;
}

.cv-experience-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Skills Grid */
.cv-skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.cv-skill-category h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--mauve);
  margin-bottom: 1rem;
}

.cv-skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cv-skill-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: all var(--transition);
}

.cv-skill-tag:hover {
  background: var(--blush);
  border-color: var(--tickle-pink);
  color: var(--mauve);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .cv-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cv-sidebar-new {
    position: static;
  }

  .cv-skills-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ===== FOOTER ===== */
footer {
  background: white;
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--mauve);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-brown);
  margin-bottom: 1rem;
}

.footer-col p, .footer-col a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  margin-bottom: 0.4rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--mauve);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== FADE-IN ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ===== FAIRY WAND CURSOR ===== */
#fairy-wand {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.2s ease;
  filter: drop-shadow(0 0 4px rgba(242, 196, 206, 0.8));
}

/* Star particle animation */
@keyframes fairy-star-anim {
  0% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  60% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translate(var(--tx), var(--ty)) rotate(var(--rot)) scale(0.2);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
  }

  .hero-eyebrow { justify-content: center; }
  .hero-desc { margin: 0 auto 2.5rem; }
  .hero-cta { justify-content: center; }
  .hero-visual { order: -1; }
  .profile-card { width: 280px; }

  .about-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-photo-col { position: static; }
  .about-img-wrap { max-width: 220px; margin: 0 auto; }
  .about-cards { grid-template-columns: 1fr 1fr; }

  .cv-layout {
    grid-template-columns: 1fr;
  }
  .cv-sidebar { position: static; }
  .cv-profile-img { width: 140px; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .section { padding: 3.5rem 1.5rem; }
}
