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

    body {
      font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      min-height: 100vh;
      background: radial-gradient(circle at top left, #ff4ec2 0, #2b0b45 40%, #050013 100%);
      color: #fdf5ff;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-wrapper {
      max-width: 1200px;
      width: 100%;
      padding: 40px 24px;
    }

.hero {
  display: grid;
  grid-template-columns: 1fr 340px;
  grid-template-areas:
    "eyebrow eyebrow"
    "title title"
    "subtitle photo";
  column-gap: 40px;
  row-gap: 18px;
  align-items: start;
}

.hero-text {
  max-width: 720px;
}

    .hero-eyebrow {
      grid-area: eyebrow;
      font-size: 0.9rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #ffb3ff;
      opacity: 0.9;
      margin-bottom: 22px;
      transform: translateY(-6px);
    }

.visitor-count{
  margin-top: 14px;
  font-size: 0.95rem;
  opacity: 0.75;
}

  .hero-title {
  grid-area: title;
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-size: clamp(4rem, 10vw, 9rem);
  white-space: nowrap; /* keeps it on ONE line */
  color: #ffe6ff;
  line-height: 1.05;
  letter-spacing: 0.04em;

  text-shadow:
    0 0 20px rgba(255, 105, 220, 0.95),
    0 0 40px rgba(200, 90, 255, 0.90),
    0 0 85px rgba(255, 150, 255, 0.85),
    0 0 140px rgba(255, 180, 255, 0.70);

   margin-bottom: 32px;
  }


      margin-bottom: 18px;
    }

    .hero-title span {
      display: block;
    }

    .hero-subtitle {
      grid-area: subtitle;
      .hero-subtitle {
       grid-column: 1 / 2; /* stays left column /
       padding-right: 40px; / gives breathing room near photo */
       text-wrap: pretty;
    }
      font-size: 1.05rem;
      max-width: 720px;
      line-height: 1.7;
      color: #f4ddff;
      opacity: 0.95;
    }

    .hero-subtitle span {
      color: #ff8ef4;
      font-weight: 600;
    }

    .hero-photo {
      grid-area: photo;
      flex: 0 0 260px;
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      margin-top: 0;
      transform: translateY(-180px) translateX(-40px);
    }

    .hero-photo-inner {
      position: relative;
	display: inline-block;
    }

    .hero-photo-inner::before {
      content: "";
      position: absolute;
      inset: -10px;
      border-radius: 999px;
      background: conic-gradient(from 210deg, #ff4ec2, #c77dff, #8a5cff, #ff4ec2);
      filter: blur(8px);
      opacity: 0.75;
      z-index: 0;
    }

    .hero-photo-inner img {
      position: relative;
      z-index: 1;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow:
        0 0 12px rgba(255, 150, 220, 0.25),
        0 0 22px rgba(180, 120, 255, 0.18);
    }

    @media (max-width: 768px) {
      body {
        align-items: flex-start;
      }

      .hero-wrapper {
        padding-top: 32px;
      }

      .hero {
        flex-direction: column-reverse;
        text-align: center;
      }

      .hero-subtitle {
        margin: 0 auto;
      }