
    @font-face {
      font-family: "Cardenio Modern Regular";
      src: url("https://db.onlinewebfonts.com/t/438737ca8792ed00d3c685dac4149b14.eot");
      src: url("https://db.onlinewebfonts.com/t/438737ca8792ed00d3c685dac4149b14.eot?#iefix") format("embedded-opentype"),
           url("https://db.onlinewebfonts.com/t/438737ca8792ed00d3c685dac4149b14.woff2") format("woff2"),
           url("https://db.onlinewebfonts.com/t/438737ca8792ed00d3c685dac4149b14.woff") format("woff"),
           url("https://db.onlinewebfonts.com/t/438737ca8792ed00d3c685dac4149b14.ttf") format("truetype"),
           url("https://db.onlinewebfonts.com/t/438737ca8792ed00d3c685dac4149b14.svg#Cardenio Modern Regular") format("svg");
    }
    @font-face {
      font-family: "Cardenio Modern Bold";
      src: url("https://db.onlinewebfonts.com/t/eb3efc1908522d0118d7e4571f3235ac.eot");
      src: url("https://db.onlinewebfonts.com/t/eb3efc1908522d0118d7e4571f3235ac.eot?#iefix") format("embedded-opentype"),
           url("https://db.onlinewebfonts.com/t/eb3efc1908522d0118d7e4571f3235ac.woff2") format("woff2"),
           url("https://db.onlinewebfonts.com/t/eb3efc1908522d0118d7e4571f3235ac.woff") format("woff"),
           url("https://db.onlinewebfonts.com/t/eb3efc1908522d0118d7e4571f3235ac.ttf") format("truetype"),
           url("https://db.onlinewebfonts.com/t/eb3efc1908522d0118d7e4571f3235ac.svg#Cardenio Modern Bold") format("svg");
    }

    /* Fallback stack if Cardenio Modern isn't installed */
    :root {
      --font-main: "Cardenio Modern Regular", 'Georgia', serif;
      --font-bold: "Cardenio Modern Bold", 'Georgia', serif;
      --purple-dark: #6B3FA0;
      --purple-light: #9B6EC8;
      --bg: #FFEFB4;
      --honey: #FFC117;
      --text: #2a1a00;
    }

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

    html {
      overflow-y: scroll;
      scrollbar-gutter: stable;
    }

    body {
      overflow-x: hidden;
      max-width: 100vw;
    }

    html, body {
      overflow-x: hidden;
      background-color: var(--bg);
      background-image: url('honeycomb.png');
      background-repeat: repeat;
      background-size: 400px auto;
      font-family: var(--font-bold);
      font-weight: 700;
      color: var(--text);
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* ── Honey drip header ── */
    .honey-header {
      width: 100%;
      background-color: var(--honey);
      position: relative;
      line-height: 0;
    }

    .honey-header img {
      width: 100%;
      display: block;
      /* The drip image already has the drip shape — we just tile it horizontally */
      /* We'll use it as a CSS background instead so it tiles properly */
    }

    .site-header {
      display: block;
      width: 100%;
      line-height: 0;
      font-size: 0;
      margin: 0;
      padding: 0;
      border: none;
    }

    .site-header img {
      display: block;
      width: 100%;
      height: auto;
      margin: 0;
      padding: 0;
      border: none;
      vertical-align: top;
    }

    /* ── Main content ── */
    .main {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: clamp(14px, 3vw, 28px) 24px 40px;
      gap: 18px;
      text-align: center;
    }

    .logo-wrap {
      position: relative;
      display: inline-block;
    }

    .logo-wrap::before {
      content: '';
      position: absolute;
      inset: -10px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(107,63,160,0.18) 0%, transparent 70%);
      z-index: 0;
    }

    .logo {
      width: clamp(180px, 45vw, 320px);
      height: clamp(180px, 45vw, 320px);
      border-radius: 50%;
      object-fit: cover;
      position: relative;
      z-index: 1;
      filter: drop-shadow(0 8px 24px rgba(107,63,160,0.25));
      animation: float 4s ease-in-out infinite;
    }

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

    h1 {
      font-family: var(--font-bold);
      font-weight: 700;
      font-size: clamp(4.2rem, 13vw, 7.5rem);
      color: #000000;
      letter-spacing: 0.02em;
      line-height: 1.1;
    }

    .tagline {
      font-family: var(--font-bold);
      font-weight: 700;
      font-size: clamp(1.45rem, 4vw, 2.1rem);
      color: var(--purple-dark);
      max-width: 560px;
      line-height: 1.5;
      font-style: normal;
    }

    .bee-divider {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 2px 0;
    }
    .bee-divider img {
      width: clamp(120px, 27vw, 240px);
      height: auto;
      display: block;
    }

    .about {
      max-width: 580px;
      font-size: clamp(1.2rem, 3.2vw, 1.5rem);
      font-weight: 700;
      line-height: 1.8;
      color: #3a2800;
    }

    .members {
      max-width: 580px;
      font-size: clamp(1.2rem, 3.2vw, 1.5rem);
      font-weight: 700;
      line-height: 1.8;
      color: #3a2800;
    }

    .members a {
      font-family: var(--font-bold);
      font-weight: bold;
      color: var(--purple-dark);
      text-decoration: none;
    }

    .members a:hover {
      text-decoration: underline;
    }

    /* ── Social buttons ── */
    .social-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      width: 100%;
      max-width: 420px;
    }

    .social-section h2 {
      font-family: var(--font-bold);
      font-weight: bold;
      font-size: clamp(1.3rem, 3.5vw, 1.65rem);
      color: var(--purple-dark);
      margin-bottom: 4px;
    }

    .btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      width: auto;
      min-width: 260px;
      max-width: 340px;
      padding: 14px 28px;
      border-radius: 50px;
      text-decoration: none;
      font-family: var(--font-bold);
      font-size: clamp(1.15rem, 3vw, 1.4rem);
      font-weight: bold;
      transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(107,63,160,0.22);
      filter: brightness(1.05);
    }

    .btn:active {
      transform: translateY(0);
    }

    .btn-instagram {
      background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
      color: #fff;
    }

    .btn-facebook {
      background: #1877f2;
      color: #fff;
    }

    .btn-icon {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .btn-text {
      display: flex;
      flex-direction: column;
      text-align: left;
    }

    .btn-handle {
      font-weight: bold;
      font-size: 1em;
    }

    .btn-platform {
      font-size: 0.75em;
      opacity: 0.85;
      font-weight: normal;
    }

    /* ── Footer ── */
    .bottom-waves {
      display: block;
      width: 100%;
      margin-bottom: -4px;
      line-height: 0;
      font-size: 0;
      padding: 0;
      border: none;
      position: relative;
      z-index: 1;
      background-color: #FFC117;
    }

    .bottom-waves img {
      display: block;
      width: 100%;
      height: auto;
      margin: 0;
      padding: 0;
      border: none;
      vertical-align: bottom;
    }

    footer {
      display: block;
      margin: 0;
      padding: 0;
      line-height: 0;
      font-size: 0;
    }



    /* ── Subtle purple accent overlays ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background-color: rgba(255, 255, 255, 0.15);
      background-image:
        radial-gradient(circle at 20% 80%, rgba(155,110,200,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(107,63,160,0.04) 0%, transparent 50%);
    }

    .main, .honey-drip-bar, footer {
      position: relative;
      z-index: 1;
    }

    /* ── Animations on load ── */
    .main > * {
      opacity: 0;
      transform: translateY(20px);
      animation: rise 0.7s ease forwards;
    }
    .main > *:nth-child(1) { animation-delay: 0.1s; }
    .main > *:nth-child(2) { animation-delay: 0.25s; }
    .main > *:nth-child(3) { animation-delay: 0.4s; }
    .main > *:nth-child(4) { animation-delay: 0.5s; }
    .main > *:nth-child(5) { animation-delay: 0.6s; }
    .main > *:nth-child(6) { animation-delay: 0.75s; }

    @keyframes rise {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ── Navigation ── */
    .nav-bar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px 16px;
      background-color: rgba(107, 63, 160, 0.96);
      backdrop-filter: blur(6px);
      box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    }

    .nav-spacer {
      height: 0px; /* Set by JS */
    }

    .nav-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
    }

    .nav-btn {
      background: none;
      border: 2px solid rgba(255,255,255,0.4);
      color: #fff;
      font-family: var(--font-bold);
      font-size: 0.9rem;
      font-weight: 700;
      padding: 6px 16px;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    @media (min-width: 768px) {
      .nav-btn {
        font-size: 1.05rem;
        padding: 8px 20px;
      }
    }

    .nav-btn:hover,
    .nav-btn.active {
      background-color: #FFC117;
      border-color: #FFC117;
      color: #000;
    }

    /* ── Page sections ── */
    .page {
      display: none;
    }
    .page.active {
      display: block;
    }

    /* push content below fixed nav - handled by spacer div */

    /* ── Contact page ── */
    .contact-main {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: clamp(40px, 8vw, 80px) 24px 60px;
      gap: 24px;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .contact-main h1 {
      font-family: var(--font-bold);
      font-weight: 700;
      font-size: clamp(4.2rem, 13vw, 7.5rem);
      color: #000;
    }

    .contact-main p {
      font-family: var(--font-bold);
      font-size: clamp(1rem, 2.5vw, 1.2rem);
      color: var(--purple-dark);
      max-width: 500px;
      line-height: 1.6;
    }

    .contact-form {
      width: 100%;
      max-width: 520px;
      background: rgba(255,255,255,0.65);
      border-radius: 20px;
      padding: clamp(24px, 5vw, 40px);
      box-shadow: 0 8px 32px rgba(107,63,160,0.12);
      text-align: left;
    }

    .contact-form label {
      display: block;
      font-family: var(--font-bold);
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--purple-dark);
      margin-bottom: 6px;
      margin-top: 18px;
    }

    .contact-form label:first-of-type {
      margin-top: 0;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 12px 16px;
      border: 2px solid rgba(107,63,160,0.25);
      border-radius: 12px;
      font-family: var(--font-bold);
      font-size: 1rem;
      background: #fff;
      color: #2a1a00;
      transition: border-color 0.2s;
      box-sizing: border-box;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: var(--purple-dark);
    }

    .contact-form textarea {
      min-height: 140px;
      resize: vertical;
    }

    .contact-form .submit-btn {
      display: block;
      width: 100%;
      margin-top: 24px;
      padding: 14px;
      background: linear-gradient(135deg, var(--purple-dark), var(--purple-light));
      color: #fff;
      border: none;
      border-radius: 50px;
      font-family: var(--font-bold);
      font-size: 1.1rem;
      font-weight: 700;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .contact-form .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(107,63,160,0.3);
    }

    .contact-form .submit-btn:disabled {
      opacity: 0.6;
      cursor: not-allowed;
      transform: none;
    }

    .form-success {
      display: none;
      text-align: center;
      padding: 32px;
      font-family: var(--font-bold);
      font-size: 1.2rem;
      color: var(--purple-dark);
    }

    .form-error-msg {
      color: #c0392b;
      font-size: 0.85rem;
      margin-top: 4px;
      font-family: var(--font-bold);
    }

    /* ── Sponsorship page ── */
    .sponsor-main {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: clamp(40px, 8vw, 80px) 24px 60px;
      gap: 32px;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .sponsor-main h1 {
      font-family: var(--font-bold);
      font-weight: 700;
      font-size: clamp(4.2rem, 13vw, 7.5rem);
      color: #000;
    }

    .sponsor-main .subhead {
      font-family: var(--font-bold);
      font-size: clamp(1.1rem, 3vw, 1.5rem);
      color: var(--purple-dark);
      max-width: 620px;
      line-height: 1.6;
      font-weight: 700;
    }

    .sponsor-main .body-text {
      font-family: var(--font-bold);
      font-size: clamp(1rem, 2.5vw, 1.2rem);
      color: #3a2800;
      max-width: 640px;
      line-height: 1.8;
    }

    .sponsor-tiers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 24px;
      width: 100%;
      max-width: 900px;
    }

    .sponsor-card {
      background: rgba(255,255,255,0.65);
      border-radius: 20px;
      padding: 32px 28px;
      width: clamp(240px, 40vw, 360px);
      box-shadow: 0 8px 32px rgba(107,63,160,0.12);
      border: 2px solid rgba(107,63,160,0.15);
      transition: transform 0.2s, box-shadow 0.2s;
      display: flex;
      flex-direction: column;
    }

    .sponsor-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 40px rgba(107,63,160,0.2);
    }

    .sponsor-card .tier-icon {
      font-size: 2.5rem;
      margin-bottom: 12px;
    }

    .sponsor-card h3 {
      font-family: var(--font-bold);
      font-size: 1.4rem;
      color: var(--purple-dark);
      margin-bottom: 12px;
    }

    .sponsor-card p {
      font-family: var(--font-bold);
      font-size: 0.95rem;
      color: #3a2800;
      line-height: 1.7;
    }

    .sponsor-card p + p {
      margin-top: 10px;
    }

    .sponsor-card .price {
      font-size: 1.2rem;
      color: var(--purple-dark);
      margin-top: 16px;
      font-weight: 700;
    }

    .sponsor-btn {
      display: inline-block;
      margin-top: 16px;
      padding: 12px 24px;
      background: linear-gradient(135deg, var(--purple-dark), var(--purple-light));
      color: #fff;
      font-family: var(--font-bold);
      font-size: 1rem;
      font-weight: 700;
      border-radius: 50px;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .sponsor-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(107,63,160,0.3);
    }

    .sponsor-cta {
      font-family: var(--font-bold);
      font-size: clamp(1rem, 2.5vw, 1.2rem);
      color: #3a2800;
      max-width: 560px;
      line-height: 1.7;
    }

    .sponsor-cta a {
      color: var(--purple-dark);
      font-weight: 700;
      text-decoration: none;
    }

    .sponsor-cta a:hover {
      text-decoration: underline;
    }

    .sponsors-showcase {
      width: 100%;
      max-width: 800px;
    }

    .sponsors-showcase h2 {
      font-family: var(--font-bold);
      font-size: clamp(1.4rem, 4vw, 2rem);
      color: var(--purple-dark);
      margin-bottom: 20px;
    }

    .sponsors-placeholder {
      background: rgba(255,255,255,0.5);
      border: 2px dashed rgba(107,63,160,0.3);
      border-radius: 16px;
      padding: 40px 24px;
      font-family: var(--font-bold);
      color: var(--purple-light);
      font-size: 1rem;
      line-height: 1.6;
    }
  