/* ── Google Fonts ── */
  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

  :root {
    --ink:        #0f1117;
    --bg:         #f5f4ef;
    --surface:    #ffffff;
    --gold:       #c9a84c;
    --gold-light: #f0dfa0;
    --gold-pale:  #fdf8ec;
    --accent:     #2d3a8c;
    --muted:      #7a7a8a;
    --border:     #e4e2d8;
    --radius:     16px;
    --shadow-sm:  0 2px 12px rgba(15,17,23,.07);
    --shadow-md:  0 8px 32px rgba(15,17,23,.12);
    --transition: .25s cubic-bezier(.4,0,.2,1);
  }

  body { background: var(--bg); font-family: 'DM Sans', sans-serif; color: var(--ink); }

  /* ══ HERO COVER ══ */
  .vp-cover {
    position: relative;
    height: 260px;
    background: linear-gradient(135deg, #0f1117 0%, #2d3a8c 55%, #c9a84c 100%);
    overflow: hidden;
  }
  .vp-cover::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,.25) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 10% 80%, rgba(45,58,140,.4) 0%, transparent 60%);
  }
  .vp-cover-pattern {
    position: absolute; inset: 0; opacity: .06;
    background-image: repeating-linear-gradient(
      45deg,
      transparent, transparent 30px,
      rgba(255,255,255,.8) 30px, rgba(255,255,255,.8) 31px
    );
  }
  .vp-cover-text {
    position: absolute; bottom: 24px; left: 40px;
    color: rgba(255,255,255,.45);
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    user-select: none;
  }

  /* ══ IDENTITY STRIP ══ */
  .vp-identity {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding-bottom: 0;
    position: relative;
    z-index: 10;
  }
  .vp-identity-inner {
    max-width: 82%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: flex-end;
    gap: 24px;
    position: relative;
  }
  .vp-avatar-wrap {
    margin-top: -60px;
    flex-shrink: 0; 
  }
  .vp-avatar {
    width: 120px; height: 120px;
    border-radius: 50%;
    border: 5px solid #cacef4;
    object-fit: cover;
    box-shadow: var(--shadow-md);
    background: var(--gold-pale);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .vp-avatar-fallback {
    width: 120px; height: 120px;
    border-radius: 50%;
    border: 4px solid var(--surface);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--accent), var(--gold));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-top: -60px;
    flex-shrink: 0;
  }
  .vp-identity-info {
    flex: 1;
    padding: 16px 0 20px;
  }
  .vp-name {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 6px;
    line-height: 1.15;

    display: flex;
    align-items: center;
    gap: 8px;
  }
  .verified-badge {
    display: inline-flex;
}
  .vp-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
  }
  .vp-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
  }
  .vp-tag svg { width:15px; height:15px; opacity:.7; }
  .vp-plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .4px;
    text-transform: uppercase;
  }
  .vp-plan-premium { background: linear-gradient(90deg, #c9a84c, #f0dfa0); color: #5a3e00; }
  .vp-plan-basic   { background: #e8f0fe; color: var(--accent); }
  .vp-plan-free    { background: #f0f0f0; color: #555; }

  /* Stars inline */
  .vp-stars { display: inline-flex; gap: 2px; align-items: center; }
  .vp-stars i { font-size: 13px; }

  /* Identity actions */
  .vp-identity-actions {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding: 0 0 20px;
    flex-shrink: 0;
  }
  .btn-vp-primary {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--accent);
    color: #fff;
    border: none; border-radius: 8px;
    padding: 10px 22px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
  }
  .btn-vp-primary:hover { background: #1e2b6e; color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(45,58,140,.3); }
  .btn-vp-outline {
    display: inline-flex; align-items: center; gap: 7px;
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--border); border-radius: 8px;
    padding: 9px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
  }
  .btn-vp-outline:hover { border-color: var(--accent); color: var(--accent); }

  /* ══ NAV TABS ══ */
  .vp-nav {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 100;
  }
  .vp-nav-inner {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 4px;
  }
  .vp-nav-link {
    padding: 14px 20px;
    font-size: 14px; font-weight: 600;
    color: var(--muted);
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
  }
  .vp-nav-link:hover { color: var(--ink); }
  .vp-nav-link.active { color: var(--accent); border-bottom-color: var(--accent); }

  /* ══ MAIN LAYOUT ══ */
  .vp-body {
    max-width: 82%;
    margin: 32px auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
    align-items: start;
  }

  /* ══ CARDS ══ */
  .vp-card {
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 20px;
  }
  .vp-card-header {
    padding: 18px 20px 14px;
    border-bottom: 1px solid var(--border);
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    display: flex; align-items: center; gap: 8px;
  }
  .vp-card-header span { font-size: 18px; }
  .vp-card-body { padding: 18px 20px; }

  /* Info rows */
  .vp-info-row {
    display: flex; align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
  }
  .vp-info-row:last-child { border-bottom: none; }
  .vp-info-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--gold-pale);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
  }
  .vp-info-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--muted);
    margin-bottom: 2px;
  }
  .vp-info-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
  }

  /* Social links */
  .vp-social-row {
    display: flex; gap: 7px;
    flex-wrap: wrap;
    padding: 14px 20px;
  }
  .vp-social-btn {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
  }
  .vp-social-btn:hover { transform: translateY(-3px); box-shadow: 0 4px 14px rgba(0,0,0,.15); }
  .vp-social-fb    { background: #1877f2; color: #fff; }
  .vp-social-insta { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
  .vp-social-li    { background: #0077b5; color: #fff; }
  .vp-social-wa    { background: #25d366; color: #fff; }
  .vp-social-yt    { background: #ff0000; color: #fff; }
  .vp-social-tw    { background: #1da1f2; color: #fff; }

  /* Event type chips */
  .vp-chip {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px; font-weight: 600;
    background: var(--gold-pale);
    color: #6b4800;
    border: 1px solid var(--gold-light);
    margin: 3px 2px;
  }

  /* Stat pills */
  .vp-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 16px 20px;
  }
  .vp-stat-pill {
    background: var(--bg);
    border-radius: 12px;
    padding: 14px 12px;
    text-align: center;
  }
  .vp-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
  }
  .vp-stat-label {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
    margin-top: 4px;
  }

  /* ══ ABOUT CARD ══ */
  .vp-about-text {
    font-size: 15px;
    line-height: 1.75;
    color: #444;
  }

  /* ══ PORTFOLIO GRID ══ */
  .vp-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 16px 20px;
  }
  .vp-portfolio-item {
    aspect-ratio: 4/3;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }
  .vp-portfolio-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
  }
  .vp-portfolio-item:hover img { transform: scale(1.08); }
  .vp-portfolio-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity .3s;
    display: flex; align-items: flex-end;
    padding: 10px;
  }
  .vp-portfolio-item:hover .vp-portfolio-overlay { opacity: 1; }
  .vp-portfolio-caption {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    width: 100%;
  }

  /* ══ REVIEWS ══ */
  .vp-review-card {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
  }
  .vp-review-card:last-child { border-bottom: none; }
  .vp-review-card:hover { background: var(--gold-pale); }
  .vp-reviewer-row {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 10px;
  }
  .vp-reviewer-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background-image: linear-gradient(to top, #a7a6cb 0%, #8989ba 52%, #8989ba 100%);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 17px; font-weight: 700;
    color: white;
    flex-shrink: 0;
  }
  .vp-reviewer-name {
    font-size: 14px; font-weight: 600;
    color: var(--ink);
  }
  .vp-reviewer-date {
    font-size: 12px;
    color: var(--muted);
  }
  .vp-review-text {
    font-size: 14px; line-height: 1.65;
    color: #555;
    font-style: italic;
    padding-left: 54px;
  }

  /* ══ RATING SUMMARY ══ */
  .vp-rating-big {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
  }
  .vp-rating-number {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 900;
    color: var(--ink);
    line-height: 1;
    min-width: 90px;
    text-align: center;
  }
  .vp-rating-bars { flex: 1; }
  .vp-bar-row {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 5px;
    font-size: 12px; color: var(--muted); font-weight: 500;
  }
  .vp-bar-track {
    flex: 1; height: 6px;
    background: var(--border);
    border-radius: 99px;
    overflow: hidden;
  }
  .vp-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), #f0dfa0);
    border-radius: 99px;
    transition: width .8s ease;
  }

  /* ══ LIGHTBOX ══ */
  .vp-lightbox {
    display: none;
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(10,10,15,.95);
    align-items: center; justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
  }
  .vp-lightbox.open { display: flex; }
  .vp-lightbox-inner {
    position: relative;
    max-width: 90vw; max-height: 90vh;
    cursor: default;
    animation: lbIn .25s ease;
  }
  @keyframes lbIn { from { opacity:0; transform: scale(.94); } to { opacity:1; transform: scale(1); } }
  .vp-lightbox-inner img {
    max-width: 90vw; max-height: 82vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 24px 80px rgba(0,0,0,.6);
  }
  .vp-lightbox-caption {
    color: rgba(255,255,255,.75);
    text-align: center;
    margin-top: 12px;
    font-size: 14px;
  }
  .vp-lightbox-close {
    position: absolute; top: -44px; right: 0;
    background: none; border: none;
    color: rgba(255,255,255,.7); font-size: 26px;
    cursor: pointer; line-height: 1;
    transition: color .2s;
  }
  .vp-lightbox-close:hover { color: #fff; }

  /* ══ SECTION ANIMATIONS ══ */
  .vp-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .5s forwards;
  }
  .vp-fade-in:nth-child(1) { animation-delay: .05s; }
  .vp-fade-in:nth-child(2) { animation-delay: .15s; }
  .vp-fade-in:nth-child(3) { animation-delay: .25s; }
  @keyframes fadeUp { to { opacity:1; transform: translateY(0); } }

  /* ══ RESPONSIVE ══ */
  @media (max-width: 768px) {
    .vp-body { grid-template-columns: 1fr; }
    .vp-identity-inner { flex-wrap: wrap; }
    .vp-identity-actions { padding-bottom: 12px; }
    .vp-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .vp-cover { height: 180px; }
    .vp-cover-text { font-size: 36px; left: 20px; bottom: 16px; }
    .vp-avatar-fallback, .vp-avatar { width: 90px; height: 90px; margin-top: -45px; font-size: 30px; }
    .vp-name { font-size: 22px; }
    .vp-rating-number { font-size: 42px; }
  }