:root {
    --rose: #f472b6;
    --lavender: #c084fc;
    --peach: #fb923c;
    --mint: #34d399;
    --sky: #38bdf8;
    --cream: #fef9f0;
    --charcoal: #1e1b2e;
    --soft-dark: #2d2640;
  }
 
  * { margin: 0; padding: 0; box-sizing: border-box; }
 
  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    overflow-x: hidden;
  }
 
  /* HERO */
  .hero {
    min-height: 100vh;
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
  }
 
  .hero::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(192,132,252,0.3) 0%, transparent 70%);
    top: -100px; left: -100px;
    animation: float 8s ease-in-out infinite;
  }
 
  .hero::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(244,114,182,0.25) 0%, transparent 70%);
    bottom: -100px; right: -100px;
    animation: float 10s ease-in-out infinite reverse;
  }
 
  @keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
  }
 
  .hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
  }
 
  .hero-tag {
    display: inline-block;
    background: rgba(192,132,252,0.2);
    border: 1px solid rgba(192,132,252,0.4);
    color: var(--lavender);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    animation: fadeUp 0.8s ease forwards;
  }
 
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    color: white;
    line-height: 1.05;
    animation: fadeUp 1s ease 0.2s both;
  }
 
  .hero h1 em {
    color: var(--rose);
    font-style: italic;
  }
 
  .hero-sub {
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    margin-top: 1.5rem;
    max-width: 400px;
    margin-left: auto; margin-right: auto;
    font-weight: 300;
    animation: fadeUp 1s ease 0.4s both;
  }
 
  .hero-cta {
    display: inline-flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp 1s ease 0.6s both;
  }
 
  .btn-primary {
    background: var(--rose);
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
  }
 
  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(244,114,182,0.4);
  }
 
  .btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.7);
    padding: 0.85rem 2rem;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.95rem;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
  }
 
  .btn-ghost:hover {
    border-color: rgba(255,255,255,0.5);
    color: white;
  }
 
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
 
  /* FLOATING CHIPS */
  .chips {
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
    pointer-events: none;
    overflow: hidden;
  }
 
  .chip {
    position: absolute;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    padding: 0.35rem 0.9rem;
    animation: drift linear infinite;
  }
 
  .chip:nth-child(1) { top: 15%; left: 8%; animation-duration: 20s; animation-delay: 0s; }
  .chip:nth-child(2) { top: 25%; right: 10%; animation-duration: 25s; animation-delay: -5s; }
  .chip:nth-child(3) { bottom: 25%; left: 12%; animation-duration: 18s; animation-delay: -10s; }
  .chip:nth-child(4) { bottom: 20%; right: 8%; animation-duration: 22s; animation-delay: -3s; }
 
  @keyframes drift {
    0%, 100% { transform: translateY(0) rotate(-2deg); opacity: 0.6; }
    50% { transform: translateY(-20px) rotate(2deg); opacity: 1; }
  }
 
  /* SECTIONS */
  section {
    padding: 6rem 2rem;
  }
 
  .section-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
 
  .section-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rose);
    font-weight: 500;
    margin-bottom: 1rem;
  }
 
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
  }
 
  /* ABOUT */
  .about {
    background: white;
  }
 
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
 
  @media (max-width: 700px) {
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  }
 
  .about-visual {
    position: relative;
  }
 
  .about-card {
    background: var(--charcoal);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    color: white;
    position: relative;
    overflow: hidden;
  }
 
  .about-card::before {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(244,114,182,0.3), transparent);
    top: -40px; right: -40px;
  }
 
  .about-card::after {
    content: '';
    position: absolute;
    width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(192,132,252,0.25), transparent);
    bottom: -30px; left: -30px;
  }
 
  .avatar-ring {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--lavender));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
  }
 
  .about-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
  }
 
  .about-card p {
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    line-height: 1.7;
    position: relative;
    z-index: 1;
  }
 
  .stat-row {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
  }
 
  .stat {
    text-align: center;
  }
 
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--rose);
  }
 
  .stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
 
  .about-text p {
    color: #555;
    font-weight: 300;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
  }
 
  /* INTERESTS / CARDS */
  .interests {
    background: var(--cream);
  }
 
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }
 
  .card {
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: default;
  }
 
  .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  }
 
  .card-1 { background: #1e1b2e; color: white; }
  .card-2 { background: #fff0f6; color: var(--charcoal); }
  .card-3 { background: #f0f4ff; color: var(--charcoal); }
  .card-4 { background: #f0faf5; color: var(--charcoal); }
 
  .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    display: block;
  }
 
  .card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
  }
 
  .card p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.7;
    font-weight: 300;
  }
 
  .card-badge {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    font-weight: 500;
  }
 
  .card-1 .card-badge { background: rgba(244,114,182,0.2); color: var(--rose); }
  .card-2 .card-badge { background: rgba(244,114,182,0.1); color: #db2777; }
  .card-3 .card-badge { background: rgba(99,102,241,0.1); color: #4f46e5; }
  .card-4 .card-badge { background: rgba(52,211,153,0.15); color: #059669; }
 
  /* JOURNAL / POSTS */
  .journal {
    background: white;
  }
 
  .posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
 
  .post {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f0eee9;
    transition: box-shadow 0.3s;
  }
 
  .post:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
 
  .post-img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
  }
 
  .post-img-1 { background: linear-gradient(135deg, #fce4ec, #f8bbd9); }
  .post-img-2 { background: linear-gradient(135deg, #ede7f6, #d1c4e9); }
  .post-img-3 { background: linear-gradient(135deg, #e3f2fd, #bbdefb); }
 
  .post-body {
    padding: 1.5rem;
  }
 
  .post-meta {
    font-size: 0.75rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.6rem;
  }
 
  .post-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }
 
  .post-body p {
    font-size: 0.88rem;
    color: #777;
    line-height: 1.7;
    font-weight: 300;
  }
 
  /* CONTACT */
  .contact {
    background: var(--charcoal);
    color: white;
    text-align: center;
  }
 
  .contact .section-title {
    color: white;
  }
 
  .contact p {
    color: rgba(255,255,255,0.5);
    max-width: 440px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.8;
  }
 
  .contact-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
 
  .contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 100px;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
  }
 
  .contact-btn:hover { transform: translateY(-3px); }
 
  .cb-rose { background: var(--rose); color: white; }
  .cb-rose:hover { box-shadow: 0 10px 25px rgba(244,114,182,0.4); }
 
  .cb-lavender { background: var(--lavender); color: white; }
  .cb-lavender:hover { box-shadow: 0 10px 25px rgba(192,132,252,0.4); }
 
  .cb-outline { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.2); }
  .cb-outline:hover { border-color: rgba(255,255,255,0.5); color: white; }
 
  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 2.5rem;
    background: rgba(30,27,46,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
 
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
  }
 
  .nav-logo span { color: var(--rose); }
 
  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }
 
  .nav-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
  }
 
  .nav-links a:hover { color: white; }
 
  @media (max-width: 600px) {
    .nav-links { display: none; }
    nav { padding: 1rem 1.5rem; }
  }
 
  /* FOOTER */
  footer {
    background: #111020;
    text-align: center;
    padding: 2rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.25);
  }
</style>