:root {
    --pink: #E17896;
    --pink-light: #FFB4D2;
    --pink-outline: #E1A5C3;
    --lavender: #C3C3E1;
    --lavender-light: #EEEDFF;
    --blush: #FEDDE6;
    --cream: #FDF6F0;
    --mid: #F6E4F2;
    --text-dark: #3D2A35;
    --text-mid: #7A5567;
    --text-light: #B898A8;
    --white: #FFFAFD;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(160deg, var(--blush) 0%, var(--mid) 45%, var(--lavender-light) 100%);
    min-height: 100vh;
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* FLOATING DOTS BG */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle, rgba(225,120,150,0.1) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
  }

  /* FLOATING ELEMENTS */
  .floaties {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
  }

  .floatie {
    position: absolute;
    font-size: 22px;
    opacity: 0.18;
    animation: float linear infinite;
  }

  @keyframes float {
    0% { transform: translateY(110vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.18; }
    90% { opacity: 0.18; }
    100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    background: rgba(255, 250, 253, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1.5px solid rgba(225, 120, 150, 0.15);
  }

  .nav-logo {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: -0.5px;
    text-decoration: none;
  }

  .nav-logo span:first-child { color: var(--pink); }
  .nav-logo span:last-child { color: var(--lavender); }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--pink); }

  /* SECTIONS */
  section {
    position: relative;
    z-index: 1;
  }

  .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
  }

  .hero-text { }

  .hero-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pink);
    background: rgba(225, 120, 150, 0.1);
    border: 1.5px solid rgba(225, 120, 150, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease both;
  }

  .hero-name {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(52px, 7vw, 80px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 12px;
    animation: fadeUp 0.8s 0.1s ease both;
  }

  .hero-name .pink { color: var(--pink); }
  .hero-name .lav { color: var(--lavender); }

  .hero-tagline {
    font-family: 'Playwrite NO', cursive;
    font-size: 18px;
    color: var(--text-mid);
    margin-bottom: 32px;
    animation: fadeUp 0.8s 0.2s ease both;
  }

  .hero-desc {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 36px;
    animation: fadeUp 0.8s 0.3s ease both;
  }

  .hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.4s ease both;
  }

  .btn-primary {
    background: var(--pink);
    color: white;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(225, 120, 150, 0.35);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(225, 120, 150, 0.45);
  }

  .btn-secondary {
    background: rgba(195, 195, 225, 0.2);
    color: var(--text-mid);
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    border: 1.5px solid var(--lavender);
    transition: transform 0.2s, background 0.2s;
  }

  .btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(195, 195, 225, 0.35);
  }

  /* HERO MODEL IMAGE */
  .hero-model {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeUp 0.8s 0.2s ease both;
  }

  .model-img-wrap {
    position: relative;
    width: 340px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(225, 120, 150, 0.25);
    animation: floatGently 5s ease-in-out infinite;
    aspect-ratio: 3 / 4;
  }

  .model-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 2px solid rgba(225, 120, 150, 0.25);
    pointer-events: none;
  }

  .model-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 24px;
  }

  @keyframes floatGently {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  /* SECTION STYLES */
  .section-wrap {
    padding: 100px 0;
  }

  .section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 10px;
  }

  .section-title {
    font-family: 'Nunito', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    margin-bottom: 40px;
  }

  .card {
    background: rgba(255, 250, 253, 0.75);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(225, 120, 150, 0.15);
    border-radius: 24px;
    padding: 32px;
    transition: transform 0.25s, box-shadow 0.25s;
  }

  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(225, 120, 150, 0.12);
  }

  /* ABOUT */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .about-main {
    grid-column: span 2;
  }

  .about-main p {
    font-size: 15.5px;
    line-height: 1.9;
    color: var(--text-mid);
  }

  .about-stat {
    text-align: center;
    padding: 28px 20px;
  }

  .about-stat-emoji { font-size: 32px; display: block; margin-bottom: 10px; }
  .about-stat-label {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 6px;
  }
  .about-stat-desc { font-size: 13px; color: var(--text-light); font-weight: 500; }

  /* SCHEDULE */
  .schedule-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
  }

  .day-card {
    background: rgba(255,250,253,0.75);
    border: 1.5px solid rgba(225,120,150,0.15);
    border-radius: 16px;
    padding: 18px 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.2s;
  }

  .day-card:hover { transform: translateY(-3px); }

  .day-card.active {
    background: linear-gradient(135deg, rgba(225,120,150,0.15), rgba(195,195,225,0.15));
    border-color: var(--pink);
  }

  .day-name {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 10px;
  }

  .day-card.active .day-name { color: var(--pink); }

  .day-emoji { font-size: 22px; display: block; margin-bottom: 8px; }

  .day-time {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-mid);
    line-height: 1.4;
  }

  .day-card.off .day-emoji { opacity: 0.3; }
  .day-card.off .day-time { color: var(--text-light); }

  /* SOCIALS */
  .socials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
  }

  .social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    text-decoration: none;
    gap: 12px;
    border-radius: 20px;
  }

  .social-icon { font-size: 32px; }
  .social-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: var(--text-dark);
  }
  .social-handle { font-size: 12px; color: var(--text-light); font-weight: 600; }

  /* TIPS / RESOURCES */
  .tips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .tip-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-decoration: none;
    padding: 24px;
  }

  .tip-icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(225,120,150,0.15), rgba(195,195,225,0.15));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .tip-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 4px;
  }

  .tip-desc { font-size: 12.5px; color: var(--text-light); font-weight: 500; line-height: 1.5; }

  .tip-arrow {
    margin-left: auto;
    font-size: 18px;
    color: var(--pink);
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    align-self: center;
    flex-shrink: 0;
  }

  .tip-card:hover .tip-arrow { opacity: 1; transform: translateX(4px); }

  /* ARTISTS */
  .artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
  }

  .artist-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    text-decoration: none;
  }

  .artist-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-light), var(--lavender));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    border: 2px solid rgba(225,120,150,0.2);
  }

  .artist-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 3px;
  }

  .artist-role { font-size: 12px; color: var(--text-light); font-weight: 600; }

  /* TIP JAR */
  .tipjar-card {
    text-align: center;
    padding: 52px 40px;
    background: linear-gradient(135deg, rgba(225,120,150,0.1), rgba(195,195,225,0.12));
    border: 1.5px solid rgba(225,120,150,0.25);
  }

  .tipjar-emoji { font-size: 52px; display: block; margin-bottom: 16px; animation: floatGently 3s ease-in-out infinite; }

  .tipjar-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 12px;
  }

  .tipjar-desc {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 28px;
  }

  /* CONTACT */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    text-decoration: none;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(225,120,150,0.15), rgba(195,195,225,0.15));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
  }

  .contact-label {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 3px;
  }

  .contact-value { font-size: 12.5px; color: var(--pink); font-weight: 600; }

  /* DIVIDER */
  .divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--lavender));
    border-radius: 2px;
    margin-bottom: 40px;
  }

  /* FOOTER */
  footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 48px 40px;
    border-top: 1.5px solid rgba(225,120,150,0.15);
    background: rgba(255,250,253,0.5);
    backdrop-filter: blur(10px);
  }

  .footer-logo {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 26px;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
  }

  .footer-logo .pink { color: var(--pink); }
  .footer-logo .lav { color: var(--lavender); }

  .footer-tagline {
    font-family: 'Playwrite NO', cursive;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
  }

  .footer-note { font-size: 12px; color: var(--text-light); font-weight: 500; }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-model { order: -1; }
    .model-img-wrap { width: 280px; }
    .hero-btns { justify-content: center; }
    .about-grid { grid-template-columns: 1fr; }
    .about-main { grid-column: span 1; }
    .schedule-grid { grid-template-columns: repeat(4, 1fr); }
    .tips-grid, .contact-grid { grid-template-columns: 1fr; }
    .container { padding: 0 20px; }
    .section-wrap { padding: 70px 0; }
  }