/* ============================================================
    Inas wafiyah — Portfolio  |  style.css
    ============================================================ */

  /* ── Variables ── */
  :root {
    --pink-blush:    #fff0f5;
    --pink-light:    #fce8ef;
    --pink-mid:      #e891b0;
    --pink-deep:     #c45880;
    --pink-cream:    #fdf0e8;
    --text-dark:     #2d1a22;
    --text-mid:      #7a4a5e;
    --text-soft:     #b07090;
    --glass-bg:      rgba(252, 232, 239, 0.72);
    --glass-border:  rgba(255, 255, 255, 0.72);
    --nav-h:         68px;
    --nav-mt:        16px;
    --nav-gap:       20px;
    --nav-r:         24px;
    --spring:        cubic-bezier(0.34, 1.56, 0.64, 1);
    --smooth:        cubic-bezier(0.16, 1,   0.3,  1);
  }

  /* ── Reset ── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html  { scroll-behavior: smooth; }
  body  {
    font-family: 'DM Sans', sans-serif;
    background: linear-gradient(160deg, #fce4f0 0%, #f5c6de 40%, #eeb5d0 100%);
    background-attachment: fixed;
    min-height: 100vh;
    color: var(--text-dark);
    overflow-x: hidden;
  }

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

  /* Blobs */
  .blob { position: fixed; border-radius: 50%; filter: blur(72px); pointer-events: none; z-index: 0; }
  .blob-1 { width: 400px; height: 400px; background: rgba(232,145,176,.18); top: -80px;  right: 4%;  animation: fblob 9s  ease-in-out infinite; }
  .blob-2 { width: 260px; height: 260px; background: rgba(196,88,128,.12);  bottom: 14%; left: 2%;   animation: fblob 12s ease-in-out infinite reverse; }
  .blob-3 { width: 180px; height: 180px; background: rgba(247,197,216,.28); top: 40%;   right: 9%;  animation: fblob 10s ease-in-out infinite 2.5s; }
  @keyframes fblob {
    0%,100% { transform: translate(0,0); }
    33%      { transform: translate(20px,-20px); }
    66%      { transform: translate(-15px,15px); }
  }

  /* ============================================================
    NAVBAR
    ============================================================ */
  header {
    position: fixed;
    top: var(--nav-mt); left: 50%; transform: translateX(-50%);
    width: calc(100% - var(--nav-gap) * 2); max-width: 980px;
    z-index: 200;
  }
  .navbar {
    display: flex; align-items: center; justify-content: space-between;
    height: var(--nav-h); padding: 0 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border: 1px solid var(--glass-border); border-radius: var(--nav-r);
    box-shadow: 0 4px 28px rgba(196,88,128,.13),
                inset 0 1px 0 rgba(255,255,255,.88),
                inset 0 -1px 0 rgba(232,145,176,.18);
    transition: background .4s var(--smooth), box-shadow .4s var(--smooth);
  }
  .navbar.scrolled {
    background: rgba(252,232,239,.93);
    box-shadow: 0 8px 44px rgba(196,88,128,.2), inset 0 1px 0 rgba(255,255,255,.9);
  }

  /* Logo */
  .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
  .logo-mark {
    width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--pink-mid), var(--pink-deep));
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(196,88,128,.38);
    transition: transform .35s var(--spring);
  }
  .logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .logo:hover .logo-mark { transform: rotate(-9deg) scale(1.1); }
  .logo-text { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 900; color: var(--text-dark); letter-spacing: -.3px; }
  .logo-text em { font-style: italic; color: var(--pink-deep); font-size: 22px; }

  /* Desktop links */
  .nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
  .nav-link {
    font-size: 14px; font-weight: 400; color: var(--text-mid);
    text-decoration: none; padding: 8px 13px; border-radius: 12px;
    position: relative; transition: color .2s, background .2s;
  }
  .nav-link::after {
    content: ''; position: absolute; bottom: 5px; left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 18px; height: 2px; border-radius: 2px; background: var(--pink-deep);
    transition: transform .3s var(--spring);
  }
  .nav-link:hover                   { color: var(--text-dark); background: rgba(255,255,255,.58); }
  .nav-link:hover::after,
  .nav-link.active::after           { transform: translateX(-50%) scaleX(1); }
  .nav-link.active                  { color: var(--pink-deep); font-weight: 500; }

  /* Nav actions */
  .nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

  .btn-hire {
    font-family: 'DM Sans', sans-serif; font-size: 13.5px; font-weight: 500;
    color: #fff; background: linear-gradient(135deg, var(--pink-mid), var(--pink-deep));
    border: none; padding: 10px 20px; border-radius: 14px;
    cursor: pointer; text-decoration: none; display: inline-block; white-space: nowrap;
    box-shadow: 0 4px 16px rgba(196,88,128,.42), inset 0 1px 0 rgba(255,255,255,.24);
    transition: transform .3s var(--spring), box-shadow .3s var(--spring);
  }
  .btn-hire:hover  { transform: translateY(-2px) scale(1.03); box-shadow: 0 8px 24px rgba(196,88,128,.52); }
  .btn-hire:active { transform: scale(.97); }
  .btn-hire--full  { display: block; text-align: center; width: 100%; padding: 13px 20px; border-radius: 16px; font-size: 15px; }

  /* Hamburger */
  .hamburger {
    display: none; flex-direction: column; justify-content: center; align-items: center;
    gap: 5px; width: 38px; height: 38px;
    background: rgba(255,255,255,.58); border: 1px solid rgba(232,145,176,.3);
    border-radius: 11px; cursor: pointer; padding: 9px 8px; transition: background .2s;
  }
  .hamburger:hover { background: rgba(255,255,255,.82); }
  .hamburger span  {
    display: block; width: 100%; height: 1.5px; background: var(--pink-deep);
    border-radius: 2px; transform-origin: center;
    transition: transform .35s var(--smooth), opacity .25s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* Mobile menu */
  .mobile-menu {
    display: none; position: fixed;
    top: calc(var(--nav-h) + var(--nav-mt) + 10px);
    left: 50%; transform: translateX(-50%) translateY(-10px);
    width: calc(100% - var(--nav-gap) * 2); max-width: 980px;
    background: rgba(252,232,239,.97);
    backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255,255,255,.82); border-radius: 20px;
    padding: 14px; z-index: 190;
    flex-direction: column; gap: 3px;
    opacity: 0; pointer-events: none;
    box-shadow: 0 10px 48px rgba(196,88,128,.22);
    transition: opacity .3s var(--smooth), transform .35s var(--smooth);
  }
  .mobile-menu.open { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
  .mob-link {
    font-size: 15px; color: var(--text-mid); text-decoration: none;
    padding: 12px 16px; border-radius: 12px;
    display: flex; align-items: center; justify-content: space-between;
    transition: background .2s, color .2s;
  }
  .mob-link:hover, .mob-link.active { background: rgba(255,255,255,.72); color: var(--pink-deep); }
  .mob-link .arrow { font-size: 13px; opacity: .35; transition: opacity .2s, transform .2s var(--spring); }
  .mob-link:hover .arrow, .mob-link.active .arrow { opacity: 1; transform: translateX(4px); }
  .mob-footer { margin-top: 10px; padding-top: 12px; border-top: 1px solid rgba(232,145,176,.22); }

  /* ============================================================
     CONTACT SECTION
  ============================================================ */
  .contact {
    position: relative;
    padding: clamp(80px, 12vw, 140px) clamp(20px, 6vw, 80px) clamp(80px, 12vw, 120px);
    background: linear-gradient(160deg, #fce4f0 0%, #f5c6de 40%, #eeb5d0 100%);
    overflow: hidden;
  }

  /* BG text */
  .contact-bg-text {
    position: absolute;
    top: 30px; left: 50%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(70px, 17vw, 210px);
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(196,88,128,.18);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    line-height: 1;
  }

  /* Floating decorative blobs inside section */
  .contact-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
  }
  .contact-blob--1 {
    width: clamp(180px, 30vw, 380px);
    height: clamp(180px, 30vw, 380px);
    background: rgba(255,255,255,.22);
    top: -60px; right: -40px;
  }
  .contact-blob--2 {
    width: clamp(120px, 18vw, 240px);
    height: clamp(120px, 18vw, 240px);
    background: rgba(196,88,128,.12);
    bottom: 40px; left: -30px;
  }

  /* Inner layout */
  .contact-inner {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(72px, 9vw, 120px);
    align-items: start;
  }

  /* ── LEFT: Header + Info ── */
  .contact-left {}

  .contact-eyebrow {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(10px, 1.1vw, 12px);
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pink-deep);
    background: rgba(255,255,255,.45);
    border: 1px solid rgba(196,88,128,.25);
    border-radius: 999px;
    padding: 5px 18px;
    margin-bottom: 20px;
    margin-top: 110px;
    backdrop-filter: blur(8px);
  }

  .contact-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 6vw, 78px);
    font-weight: 900;
    line-height: .92;
    color: var(--text-dark);
    letter-spacing: -2px;
    margin: 45px 0 20px;
  }
  .contact-title em {
    font-style: italic;
    color: var(--pink-deep);
    display: block;
  }

  .contact-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(13px, 1.3vw, 16px);
    line-height: 1.75;
    color: var(--text-mid);
    margin: 0 0 36px;
    max-width: 380px;
  }

  /* Info items */
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
  }

  .contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .contact-info-icon {
    width: 42px; height: 42px;
    flex-shrink: 0;
    border-radius: 14px;
    background: rgba(255,255,255,.55);
    border: 1px solid rgba(255,255,255,.85);
    backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(196,88,128,.12);
    color: var(--pink-deep);
  }

  .contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .contact-info-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-soft);
  }
  .contact-info-value {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(12px, 1.2vw, 14px);
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition: color .2s;
  }
  .contact-info-value:hover { color: var(--pink-deep); }

  /* Social links */
  .contact-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .contact-social {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-mid);
    text-decoration: none;
    background: rgba(255,255,255,.52);
    border: 1px solid rgba(255,255,255,.85);
    border-radius: 14px;
    padding: 9px 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(196,88,128,.10);
    transition: transform .3s var(--spring), box-shadow .3s var(--spring), background .2s;
  }
  .contact-social:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(196,88,128,.20);
    background: rgba(255,255,255,.75);
    color: var(--pink-deep);
  }

  /* ── RIGHT: Form card ── */
  .contact-form-card {
    background: rgba(255,255,255,.48);
    border: 1.5px solid rgba(255,255,255,.82);
    border-radius: 28px;
    padding: clamp(24px, 4vw, 44px);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow:
      0 8px 40px rgba(196,88,128,.12),
      inset 0 1px 0 rgba(255,255,255,.9);
    margin-top: 170px;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .contact-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

  .contact-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-soft);
  }

  .contact-input,
  .contact-textarea {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(12px, 1.2vw, 14px);
    color: var(--text-dark);
    background: rgba(255,255,255,.62);
    border: 1.5px solid rgba(232,145,176,.22);
    border-radius: 14px;
    padding: 12px 16px;
    outline: none;
    width: 100%;
    transition: border-color .25s, box-shadow .25s, background .25s;
    resize: none;
  }
  .contact-input::placeholder,
  .contact-textarea::placeholder { color: var(--text-soft); opacity: .65; }
  .contact-input:focus,
  .contact-textarea:focus {
    border-color: var(--pink-mid);
    background: rgba(255,255,255,.88);
    box-shadow: 0 0 0 3px rgba(232,145,176,.18);
  }
  .contact-textarea { min-height: 110px; }

  .contact-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(13px, 1.3vw, 15px);
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--pink-mid), var(--pink-deep));
    border: none;
    border-radius: 14px;
    padding: 14px 28px;
    cursor: pointer;
    width: 100%;
    letter-spacing: .3px;
    box-shadow: 0 6px 24px rgba(196,88,128,.38), inset 0 1px 0 rgba(255,255,255,.22);
    transition: transform .3s var(--spring), box-shadow .3s var(--spring);
    margin-top: 4px;
  }
  .contact-submit:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 36px rgba(196,88,128,.50);
  }
  .contact-submit:active { transform: scale(.97); }
  .contact-submit svg { flex-shrink: 0; }

  /* Form success state */
  .contact-success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: clamp(32px, 5vw, 56px) 0;
    text-align: center;
  }
  .contact-success.show { display: flex; }
  .contact-form.hide    { display: none; }

  .contact-success-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-mid), var(--pink-deep));
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 8px 28px rgba(196,88,128,.35);
    animation: popIn .5s var(--spring) both;
  }
  @keyframes popIn {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
  }
  .contact-success-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -.5px;
  }
  .contact-success-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(12px, 1.2vw, 14px);
    color: var(--text-soft);
    line-height: 1.65;
  }

  /* Footer strip */
  .contact-footer {
    position: relative;
    z-index: 1;
    margin-top: clamp(56px, 8vw, 96px);
    padding-top: clamp(24px, 3vw, 32px);
    border-top: 1px solid rgba(196,88,128,.18);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-footer-copy {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(11px, 1.1vw, 13px);
    color: var(--text-soft);
  }
  .contact-footer-copy em {
    font-style: normal;
    color: var(--pink-deep);
    font-weight: 600;
  }
  .contact-footer-back {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(11px, 1.1vw, 13px);
    font-weight: 500;
    color: var(--text-mid);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color .2s, gap .25s var(--spring);
  }
  .contact-footer-back:hover { color: var(--pink-deep); gap: 10px; }

  /* Tablet */
  @media (max-width: 860px) {
    .contact-inner {
      grid-template-columns: 1fr;
      gap: clamp(40px, 6vw, 64px);
    }
    .contact-title { font-size: clamp(42px, 9vw, 64px); }
    .contact-desc  { max-width: 100%; }
    .contact-form-row { grid-template-columns: 1fr 1fr; }
    .contact-form-card { margin-top: 0; }
  }

  /* Mobile */
  @media (max-width: 640px) {
    .contact {
      padding: 60px 20px 72px;
    }
    .contact-eyebrow {
      margin-top: 52px; /* naik 10px dari 62px */
      font-size: 7px;
      letter-spacing: 1px;
      padding: 4px 12px;
    }
    .contact-title { font-size: clamp(38px, 11vw, 56px); letter-spacing: -1.5px; margin-top: 4px; /* naik 10px dari 14px */ }
    .contact-form-row { grid-template-columns: 1fr; gap: 16px; }
    .contact-form-card {
      padding: 28px 24px;
      border-radius: 22px;
      margin-top: 0;
    }
    .contact-form      { gap: 20px; }
    .contact-field     { gap: 8px; }
    .contact-label     { padding-left: 0; margin-left: 0; display: block; font-size: 11px; letter-spacing: 1.5px; }
    .contact-input,
    .contact-textarea  { padding: 13px 16px; border-radius: 13px; }
    .contact-footer    { flex-direction: column; align-items: flex-start; gap: 8px; }
  }

  /* Very small */
  @media (max-width: 380px) {
    .contact-title { font-size: 34px; }
    .contact-socials { gap: 8px; }
    .contact-social  { padding: 8px 13px; font-size: 11px; }
    .contact-eyebrow { margin-top: 42px; font-size: 7px; letter-spacing: 1px; padding: 4px 12px; }
    .contact-form-card { padding: 22px 18px; border-radius: 18px; }
    .contact-form      { gap: 16px; }
  }
/* ============================================================
   EDUCATION + CV — side by side di semua ukuran layar
============================================================ */
.about-edu-cv-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(16px, 3vw, 36px);
  flex-wrap: nowrap; /* selalu sejajar, tidak turun ke bawah */
}

.about-edu-cv-row .about-edu {
  flex: 1;
  min-width: 0;
}

.about-edu-cv-row .about-cv-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding-top: 26px; /* sejajar dengan edu item grid */
  margin-top: 0;
}

/* ============================================================
   CV BUTTON
============================================================ */
.about-cv-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--pink-mid), var(--pink-deep));
  border: none;
  border-radius: 14px;
  padding: clamp(9px, 1.2vw, 13px) clamp(14px, 1.8vw, 22px);
  cursor: pointer;
  letter-spacing: .3px;
  box-shadow:
    0 6px 24px rgba(196,88,128,.40),
    inset 0 1px 0 rgba(255,255,255,.22);
  transition: transform .3s var(--spring), box-shadow .3s var(--spring);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.about-cv-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.18) 0%, transparent 60%);
  pointer-events: none;
}
.about-cv-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 36px rgba(196,88,128,.52);
}
.about-cv-btn:active { transform: scale(.97); }

.about-cv-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  background: rgba(255,255,255,.2);
  border-radius: 7px;
  flex-shrink: 0;
}

.about-cv-hint {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: var(--text-soft);
  letter-spacing: .3px;
  opacity: .75;
  text-align: center;
  max-width: 100px;
  line-height: 1.4;
}

/* Mobile ≤ 640px — tetap sejajar, ukuran lebih compact */
@media (max-width: 640px) {
  .about-edu-cv-row {
    gap: 12px;
    align-items: flex-start;
  }
  .about-edu-cv-row .about-cv-wrap {
    padding-top: 22px;
    gap: 6px;
  }
  .about-cv-btn {
    padding: 10px 13px;
    font-size: 11px;
    border-radius: 12px;
    gap: 6px;
  }
  .about-cv-btn-icon {
    width: 20px; height: 20px;
    border-radius: 6px;
  }
  .about-cv-hint { font-size: 9px; max-width: 72px; }
}

/* Very small ≤ 380px */
@media (max-width: 380px) {
  .about-edu-cv-row { gap: 8px; }
  .about-cv-btn { padding: 8px 10px; font-size: 10px; gap: 5px; }
  .about-cv-btn-icon { width: 18px; height: 18px; }
  .about-cv-hint { display: none; }
}
/* === CV BUTTON +2px (BALANCED SCALE) === */
.about-cv-wrap .about-cv-btn {
  font-size: 12px !important;        /* +1px dari sebelumnya */
  padding: 8px 12px !important;      /* +2px */
  border-radius: 10px !important;    /* +2px feel */
  gap: 6px !important;               /* +1px */
}

.about-cv-wrap .about-cv-btn-icon {
  width: 18px !important;            /* +2px */
  height: 18px !important;
  border-radius: 5px !important;
}

.about-cv-wrap .about-cv-hint {
  font-size: 9px !important;
}

/* MOBILE */
@media (max-width: 640px) {
  .about-cv-wrap .about-cv-btn {
    font-size: 11px !important;
    padding: 7px 10px !important;
    gap: 5px !important;
  }

  .about-cv-wrap .about-cv-btn-icon {
    width: 16px !important;
    height: 16px !important;
  }

  .about-cv-wrap .about-cv-hint {
    font-size: 8px !important;
  }
}


/* ============================================================
   CV MODAL
============================================================ */
.cv-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s var(--smooth);
}
.cv-modal.open {
  pointer-events: all;
  opacity: 1;
}

.cv-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 8, 16, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

.cv-modal-box {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  background: rgba(253, 240, 232, 0.97);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1.5px solid rgba(255,255,255,.9);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 32px 80px rgba(196,88,128,.28),
    0 8px 24px rgba(196,88,128,.16),
    inset 0 1px 0 rgba(255,255,255,.95);
  transform: translateY(24px) scale(.96);
  transition: transform .4s var(--spring);
}
.cv-modal.open .cv-modal-box {
  transform: translateY(0) scale(1);
}

/* Modal header */
.cv-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(196,88,128,.15);
  background: rgba(255,255,255,.55);
  flex-shrink: 0;
  gap: 12px;
}

.cv-modal-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: .2px;
}
.cv-modal-title svg { color: var(--pink-deep); flex-shrink: 0; }

.cv-modal-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Download button inside modal */
.cv-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--pink-mid), var(--pink-deep));
  border-radius: 12px;
  padding: 9px 18px;
  text-decoration: none;
  letter-spacing: .3px;
  box-shadow: 0 4px 16px rgba(196,88,128,.38), inset 0 1px 0 rgba(255,255,255,.22);
  transition: transform .3s var(--spring), box-shadow .3s var(--spring);
  white-space: nowrap;
}
.cv-download-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px rgba(196,88,128,.52);
}
.cv-download-btn:active { transform: scale(.97); }

/* Close button */
.cv-close-btn {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(196,88,128,.18);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text-mid);
  transition: background .2s, color .2s, transform .2s var(--spring);
  flex-shrink: 0;
}
.cv-close-btn:hover {
  background: rgba(196,88,128,.12);
  color: var(--pink-deep);
  transform: rotate(90deg);
}

/* Modal body — PDF iframe */
.cv-modal-body {
  flex: 1;
  overflow: hidden;
  min-height: 0;
  background: #f5f0ee;
}

.cv-iframe {
  width: 100%;
  height: 100%;
  min-height: 600px;
  border: none;
  display: block;
}

/* Mobile */
@media (max-width: 640px) {
  .cv-modal { padding: 8px; }
  .cv-modal-box { border-radius: 20px; max-height: 95vh; }
  .cv-modal-header { padding: 14px 16px; }
  .cv-modal-title span { font-size: 13px; }
  .cv-download-btn { font-size: 12px; padding: 8px 14px; }
  .cv-iframe { min-height: 500px; }
  .about-cv-wrap { margin-top: 22px; }
}

/* ============================================================
   CV BUTTON — About section
============================================================ */
.about-cv-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.about-cv-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--pink-mid), var(--pink-deep));
  border: none;
  border-radius: 16px;
  padding: 13px 26px;
  cursor: pointer;
  letter-spacing: .3px;
  box-shadow:
    0 6px 24px rgba(196,88,128,.40),
    inset 0 1px 0 rgba(255,255,255,.22);
  transition: transform .3s var(--spring), box-shadow .3s var(--spring);
  position: relative;
  overflow: hidden;
}
.about-cv-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.18) 0%, transparent 60%);
  pointer-events: none;
}
.about-cv-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 36px rgba(196,88,128,.52);
}
.about-cv-btn:active { transform: scale(.97); }

.about-cv-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: rgba(255,255,255,.2);
  border-radius: 8px;
  flex-shrink: 0;
}

.about-cv-hint {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: .4px;
  opacity: .8;
}

/* ============================================================
   CV MODAL — FIXED: full PDF, scrollable, tidak terpotong
============================================================ */
.cv-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
}
.cv-modal.open {
  pointer-events: all;
  opacity: 1;
}

.cv-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 8, 16, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
}

/* Box — kunci: gunakan vh penuh, flex column, overflow hidden */
.cv-modal-box {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
  /* FIX UTAMA: tinggi hampir full layar */
  height: calc(100vh - 48px);
  max-height: 940px;
  background: rgba(253, 240, 232, 0.98);
  border: 1.5px solid rgba(255,255,255,.9);
  border-radius: 28px;
  overflow: hidden;
  /* FIX: flex column agar body bisa mengisi sisa tinggi */
  display: flex;
  flex-direction: column;
  box-shadow:
    0 32px 80px rgba(196,88,128,.28),
    0 8px 24px rgba(196,88,128,.16),
    inset 0 1px 0 rgba(255,255,255,.95);
  transform: translateY(28px) scale(.95);
  transition: transform .4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cv-modal.open .cv-modal-box {
  transform: translateY(0) scale(1);
}

/* Header — fixed height, flex-shrink: 0 */
.cv-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(196,88,128,.14);
  background: rgba(255,255,255,.6);
  flex-shrink: 0;
  gap: 12px;
}

.cv-modal-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}
.cv-modal-title svg { color: var(--pink-deep); flex-shrink: 0; }

.cv-modal-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cv-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--pink-mid), var(--pink-deep));
  border-radius: 11px;
  padding: 8px 16px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(196,88,128,.36), inset 0 1px 0 rgba(255,255,255,.22);
  transition: transform .3s var(--spring), box-shadow .3s;
  white-space: nowrap;
}
.cv-download-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 26px rgba(196,88,128,.50);
}

.cv-close-btn {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(196,88,128,.16);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text-mid);
  transition: background .2s, color .2s, transform .25s var(--spring);
  flex-shrink: 0;
}
.cv-close-btn:hover {
  background: rgba(196,88,128,.12);
  color: var(--pink-deep);
  transform: rotate(90deg);
}

/* Body — FIX UTAMA: flex:1 + overflow auto untuk scroll PDF */
.cv-modal-body {
  flex: 1;           /* isi sisa tinggi setelah header */
  min-height: 0;     /* wajib untuk flex children bisa scroll */
  overflow: auto;
  background: #ede8e4;
  display: flex;
  flex-direction: column;
}

/* Object tag PDF — full width & height */
.cv-object {
  width: 100%;
  flex: 1;
  min-height: 0;
  /* Tinggi eksplisit supaya PDF render full page */
  height: 100%;
  display: block;
  border: none;
}

/* Fallback */
.cv-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 48px 24px;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-mid);
  font-size: 14px;
  flex: 1;
}

/* Mobile */
@media (max-width: 640px) {
  .cv-modal { padding: 8px; }
  .cv-modal-box {
    border-radius: 20px;
    height: calc(100vh - 20px);
  }
  .cv-modal-header { padding: 12px 14px; }
  .cv-modal-title span { font-size: 12px; }
  .cv-download-btn { font-size: 12px; padding: 7px 12px; }
  .about-cv-wrap { margin-top: 22px; }
  .about-cv-hint { display: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  position: relative;
  background: #1e0d16;
  overflow: hidden;
  margin-top: 0;
}

/* Noise texture overlay */
.footer-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* Pink mesh glow */
.site-footer::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 340px;
  background: radial-gradient(ellipse at center, rgba(196,88,128,.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.site-footer::after {
  content: '';
  position: absolute;
  bottom: 0; right: -60px;
  width: 320px; height: 260px;
  background: radial-gradient(ellipse at center, rgba(232,145,176,.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Top glowing line */
.footer-glow-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(196,88,128,.4) 20%,
    rgba(232,145,176,.9) 50%,
    rgba(196,88,128,.4) 80%,
    transparent 100%);
  z-index: 2;
  box-shadow: 0 0 18px 2px rgba(232,145,176,.35);
}

/* Inner container */
.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 80px) clamp(20px, 5vw, 64px) clamp(24px, 4vw, 40px);
}

/* TOP ROW */
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

/* Brand */
.footer-logo {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 14px;
  transition: color .25s;
}
.footer-logo em { font-style: normal; color: var(--pink-mid); }
.footer-logo:hover { color: var(--pink-mid); }

.footer-tagline {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  margin-bottom: 20px;
  letter-spacing: .2px;
}
.footer-tagline em {
  font-style: normal;
  color: rgba(232,145,176,.85);
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  letter-spacing: .5px;
  text-transform: uppercase;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(196,88,128,.25);
  padding: 6px 14px;
  border-radius: 999px;
}
.footer-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,.5);
  animation: pulse-green 2.2s ease-in-out infinite;
}
@keyframes pulse-green {
  0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,.5); }
  50%      { box-shadow: 0 0 0 5px rgba(74,222,128,0); }
}

/* Nav column */
.footer-nav-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink-mid);
  margin-bottom: 18px;
  opacity: .8;
}
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav ul li a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  letter-spacing: .2px;
  transition: color .2s, padding-left .25s var(--spring);
  display: inline-block;
  position: relative;
}
.footer-nav ul li a::before {
  content: '→';
  position: absolute;
  left: -18px;
  opacity: 0;
  color: var(--pink-mid);
  font-size: 12px;
  transition: opacity .2s, left .25s var(--spring);
}
.footer-nav ul li a:hover { color: #fff; padding-left: 18px; }
.footer-nav ul li a:hover::before { opacity: 1; left: 0; }

/* Social pills */
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.04);
  transition: background .22s, color .22s, border-color .22s, transform .3s var(--spring);
  letter-spacing: .2px;
}
.footer-social-pill:hover {
  background: rgba(196,88,128,.18);
  border-color: rgba(196,88,128,.4);
  color: #fff;
  transform: translateX(4px);
}
.footer-social-pill svg { flex-shrink: 0; opacity: .7; transition: opacity .2s; }
.footer-social-pill:hover svg { opacity: 1; }

/* Divider */
.footer-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: clamp(32px, 5vw, 52px) 0 clamp(20px, 3vw, 32px);
  opacity: .35;
}
.footer-divider::before,
.footer-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,88,128,.6), transparent);
}
.footer-divider-text {
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--pink-mid);
  white-space: nowrap;
}

/* Bottom row */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 12.5px;
  color: rgba(255,255,255,.28);
  letter-spacing: .3px;
}
.footer-copy em {
  font-style: normal;
  color: rgba(232,145,176,.6);
}
.footer-made {
  font-size: 12px;
  color: rgba(255,255,255,.22);
  letter-spacing: .3px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-heart {
  color: var(--pink-mid);
  animation: heartbeat 1.8s ease-in-out infinite;
  display: inline-block;
}
@keyframes heartbeat {
  0%,100% { transform: scale(1); }
  15%      { transform: scale(1.3); }
  30%      { transform: scale(1); }
  45%      { transform: scale(1.15); }
  60%      { transform: scale(1); }
}

/* Responsive Footer */
@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
  .footer-socials { flex-direction: row; flex-wrap: wrap; }
  .footer-social-pill { font-size: 12px; padding: 8px 13px; }
}

/* ============================================================
   SCROLL TO TOP — bulat, slide dari kanan
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 500;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pink-mid), var(--pink-deep));
  color: #fff;
  box-shadow: 0 6px 24px rgba(196,88,128,.42), inset 0 1px 0 rgba(255,255,255,.22);
  opacity: 0;
  transform: translateX(80px);
  pointer-events: none;
  transition: opacity .4s var(--smooth), transform .45s var(--spring), box-shadow .3s;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}
.scroll-top:hover {
  transform: translateX(0) translateY(-3px) scale(1.08);
  box-shadow: 0 12px 32px rgba(196,88,128,.55);
}
.scroll-top:active { transform: scale(.94); }
@media (max-width: 640px) {
  .scroll-top { bottom: 22px; right: 16px; width: 42px; height: 42px; }
}