
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --purple:       #a97bb5;
      --purple-light: #f3edf8;
      --purple-dark:  #7a5a85;
      --pink:         #f497aa;
      --pink-light:   #fef0f3;
      --peach:        #fcc081;
      --peach-light:  #fff5eb;
      --yellow:       #fff691;
      --yellow-light: #fffde8;
      --mint:         #8ecfa8;
      --mint-light:   #edf8f2;
      --sky:          #6cc9de;
      --sky-light:    #e8f8fc;
      --white:        #ffffff;
      --text-dark:    #3d2e4a;
      --text-mid:     #6b5a7a;
      --text-light:   #a090b0;
      --border:       #ede6f5;
      --deep:         #3d2e4a;
      --deep2:        #5a4070;
      --shadow:       rgba(169,123,181,0.13);
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'Nunito', sans-serif; color: var(--text-dark); background: #fff; line-height: 1.6; }

    /* ── BANNER ── */
    .top-banner { width: 100%; display: block; line-height: 0; }
    .top-banner img { width: 100%; height: auto; display: block; }

    /* ── RAINBOW BAR ── */
    .rainbow-bar {
      height: 5px;
      background: linear-gradient(to right, #a97bb5, #f497aa, #fcc081, #fff691, #8ecfa8, #6cc9de, #a97bb5);
    }

    /* ── ANNOUNCEMENT ── */
    .announcement {
      background: linear-gradient(135deg, var(--deep), var(--deep2));
      text-align: center;
      padding: 9px 20px;
      font-size: 13px;
      font-weight: 700;
      color: #fff;
    }
    .announcement span { margin: 0 14px; opacity: 0.4; }

    /* ── NAV ── */
    nav {
      background: linear-gradient(135deg, var(--deep), var(--deep2));
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 64px;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 16px var(--shadow);
    }
    .nav-brand {
      font-family: 'Dancing Script', cursive;
      font-size: 24px;
      font-weight: 700;
      color: var(--text-dark);
      text-decoration: none;
      letter-spacing: 0.3px;
      white-space: nowrap;
    }
    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 38px;
      list-style: none;
      flex-wrap: wrap;
    }
    .nav-links a {
      text-decoration: none;
      color: rgba(255,255,255,0.88);
      font-size: 14px;
      font-weight: 700;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--peach); }
    .nav-cta {
      background: #fff;
      color: var(--deep) !important;
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 13px !important;
    }
    .nav-cta:hover { background: var(--pink-light) !important; }

    /* ── HERO ── */
    .hero { background: #fff; padding: 64px 48px 56px; text-align: center; }
    .hero-badge {
      display: inline-block;
      background: linear-gradient(135deg, var(--deep), var(--deep2));
      color: #fff;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 20px;
      border-radius: 50px;
      margin-bottom: 24px;
    }
    .hero-logo { width: 400px; max-width: 88%; margin: 0 auto 22px; display: block; }
    .hero-subtitle {
      font-size: 17px;
      color: var(--text-mid);
      font-weight: 600;
      margin: 0 auto 20px;
      max-width: 520px;
    }
    .hero-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 34px; }
    .hero-tag { padding: 6px 16px; border-radius: 50px; font-size: 12px; font-weight: 800; letter-spacing: 0.3px; }
    .hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    .btn-primary {
      background: linear-gradient(135deg, var(--deep), var(--deep2));
      color: white;
      padding: 14px 34px;
      border-radius: 50px;
      font-weight: 800;
      font-size: 15px;
      text-decoration: none;
      display: inline-block;
      box-shadow: 0 4px 18px rgba(61,46,74,0.35);
      transition: all 0.2s;
    }
    .btn-primary:hover { background: var(--deep); transform: translateY(-2px); }
    .btn-secondary {
      background: white;
      color: var(--deep);
      padding: 14px 34px;
      border-radius: 50px;
      font-weight: 800;
      font-size: 15px;
      text-decoration: none;
      display: inline-block;
      border: 2px solid var(--border);
      transition: all 0.2s;
    }
    .btn-secondary:hover { border-color: var(--purple); transform: translateY(-2px); }

    /* ── STATS STRIP ── */
    .stats-strip {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
      padding: 26px 48px;
      background: #fafafa;
      border-top: 1.5px solid var(--border);
      border-bottom: 1.5px solid var(--border);
    }
    .stat-chip {
      background: white;
      border: 1.5px solid var(--border);
      border-radius: 50px;
      padding: 10px 22px;
      font-size: 13px;
      font-weight: 800;
      color: var(--text-mid);
      box-shadow: 0 2px 10px var(--shadow);
    }
    .stat-chip b { color: var(--deep); }

    /* ── RAINBOW DIVIDER ── */
    .rainbow-divider { height: 3px; background: linear-gradient(to right, #a97bb5, #f497aa, #fcc081, #fff691, #8ecfa8, #6cc9de); }

    /* ── SECTION HEADERS ── */
    .section-header { text-align: center; margin-bottom: 48px; }
    .section-tag {
      display: inline-block;
      font-size: 11px; font-weight: 800;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--deep2); margin-bottom: 10px;
    }
    .section-header h2 { font-size: 34px; font-weight: 900; color: var(--text-dark); margin-bottom: 10px; }
    .section-header p { font-size: 16px; color: var(--text-mid); max-width: 480px; margin: 0 auto; font-weight: 500; }

    /* ── NICHE GRID ── */
    .find-corner { padding: 80px 48px; background: white; }
    .niche-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 1080px;
      margin: 0 auto;
    }
    .niche-card {
      border-radius: 24px;
      padding: 28px 0;
      transition: transform 0.25s, box-shadow 0.25s;
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      align-items: center;
      overflow: hidden;
      position: relative;
    }
    a.niche-card:hover { transform: translateY(-6px); box-shadow: 0 18px 48px var(--shadow); }
    .niche-emoji { font-size: 44px; line-height: 1; margin-bottom: 16px; }
    .niche-content { padding: 0 26px; text-align: center; width: 100%; }
    .niche-card h3 { font-size: 17px; font-weight: 900; margin-bottom: 8px; text-align: center; }
    .niche-card p { font-size: 13px; font-weight: 500; opacity: 0.75; margin-bottom: 18px; line-height: 1.55; text-align: center; }
    .niche-link { font-size: 12px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; }
    .niche-link.arrow::after { content: ' →'; }
    .soon-ribbon {
      position: absolute;
      top: 14px; right: 14px;
      background: rgba(255,255,255,0.85);
      border-radius: 50px;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 4px 12px;
      color: var(--text-mid);
    }

    .card-purple { background: var(--purple-light); }
    .card-purple h3, .card-purple .niche-link { color: var(--purple-dark); }
    .card-pink { background: var(--pink-light); }
    .card-pink h3, .card-pink .niche-link { color: #c0607a; }
    .card-peach { background: var(--peach-light); }
    .card-peach h3, .card-peach .niche-link { color: #b07030; }
    .card-yellow { background: var(--yellow-light); }
    .card-yellow h3, .card-yellow .niche-link { color: #908010; }
    .card-mint { background: var(--mint-light); }
    .card-mint h3, .card-mint .niche-link { color: #2e8858; }
    .card-sky { background: var(--sky-light); }
    .card-sky h3, .card-sky .niche-link { color: #2878a0; }

    /* ── HOW IT WORKS ── */
    .how-section { padding: 80px 48px; background: #fafafa; }
    .how-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      max-width: 980px;
      margin: 0 auto 36px;
    }
    .how-card {
      background: white;
      border: 1.5px solid var(--border);
      border-radius: 20px;
      padding: 30px 26px;
      text-align: center;
      box-shadow: 0 4px 20px var(--shadow);
    }
    .how-num {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--deep), var(--deep2));
      color: #fff;
      font-weight: 900;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
    }
    .how-card h3 { font-size: 16px; font-weight: 900; margin-bottom: 8px; }
    .how-card p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }
    .never-expires {
      max-width: 640px;
      margin: 0 auto;
      background: linear-gradient(135deg, var(--deep), var(--deep2));
      border-radius: 20px;
      padding: 18px 26px;
      text-align: center;
      font-size: 14px;
      font-weight: 700;
      color: #fff;
    }

    /* ── SHOP GRID ── */
    .shop-section { padding: 80px 48px; background: white; }
    .shop-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
      max-width: 1120px;
      margin: 0 auto;
    }
    .product-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      border: 1.5px solid var(--border);
      transition: transform 0.25s, box-shadow 0.25s;
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
    }
    .product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px var(--shadow); }
    .product-image { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; background: var(--purple-light); }
    .product-body { padding: 16px 18px 20px; display: flex; flex-direction: column; flex: 1; }
    .product-tag { font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; }
    .product-body h3 { font-size: 14px; font-weight: 800; color: var(--text-dark); line-height: 1.4; margin-bottom: 10px; flex: 1; }
    .product-foot { display: flex; align-items: center; justify-content: space-between; }
    .product-price { font-size: 17px; font-weight: 900; color: var(--deep); }
    .product-cta { font-size: 11px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; color: var(--purple-dark); }
    .product-cta::after { content: ' →'; }
    .tag-bts { color: #2878a0; }
    .tag-val { color: #c0607a; }
    .tag-gift { color: #b07030; }

    /* ── REVIEWS ── */
    .reviews-section { padding: 80px 48px; background: #fafafa; }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      max-width: 1080px;
      margin: 0 auto;
    }
    .review-card {
      background: white;
      border: 1.5px solid var(--border);
      border-radius: 20px;
      padding: 26px;
      box-shadow: 0 4px 20px var(--shadow);
      display: flex;
      flex-direction: column;
    }
    .review-stars { color: #f5b942; font-size: 15px; letter-spacing: 2px; margin-bottom: 12px; }
    .review-card p { font-size: 14px; color: var(--text-mid); line-height: 1.65; font-weight: 500; flex: 1; }
    .review-name { margin-top: 16px; font-size: 12px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; color: var(--purple-dark); }

    /* ── CLASSES TEASER (visible) ── */
    .classes-teaser { padding: 56px 48px; background: white; text-align: center; }
    .classes-teaser-box {
      max-width: 720px; margin: 0 auto;
      background: linear-gradient(135deg, var(--deep), var(--deep2));
      border-radius: 24px; padding: 40px 34px;
    }
    .classes-teaser h2 { font-size: 26px; font-weight: 900; color: #fff; margin-bottom: 10px; }
    .classes-teaser p { font-size: 15px; color: rgba(255,255,255,0.75); font-weight: 500; max-width: 540px; margin: 0 auto 22px; }
    .classes-teaser .btn-primary { background: #fff; color: var(--deep); box-shadow: 0 4px 18px rgba(0,0,0,0.25); }

    /* ── CLASSES (full section — hidden until launch; see HTML comment at #classes) ── */
    .classes-section { padding: 80px 48px; background: #fafafa; }
    .classes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 860px; margin: 0 auto; }
    .class-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 20px var(--shadow); transition: transform 0.25s; border: 1.5px solid var(--border); }
    .class-card:hover { transform: translateY(-4px); }
    .class-image { height: 150px; display: flex; align-items: center; justify-content: center; font-size: 52px; }
    .class-body { padding: 22px; }
    .class-tag { display: inline-block; background: var(--purple-light); color: var(--purple-dark); font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: 50px; margin-bottom: 10px; }
    .class-body h3 { font-size: 17px; font-weight: 900; margin-bottom: 8px; color: var(--text-dark); }
    .class-meta { display: flex; gap: 14px; font-size: 12px; color: var(--text-light); font-weight: 700; margin-bottom: 14px; flex-wrap: wrap; }
    .class-price { font-size: 22px; font-weight: 900; color: var(--deep); }
    .class-price span { font-size: 12px; font-weight: 600; color: var(--text-light); }
    .btn-class { display: block; text-align: center; background: linear-gradient(135deg, var(--deep), var(--deep2)); color: white; padding: 11px; border-radius: 12px; font-weight: 800; font-size: 14px; text-decoration: none; margin-top: 14px; }

    /* ── BLOG (hidden until posts exist) ── */
    .blog-section { padding: 80px 48px; background: white; }
    .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1080px; margin: 0 auto; }
    .blog-card { border-radius: 20px; overflow: hidden; border: 1.5px solid var(--border); transition: transform 0.25s, box-shadow 0.25s; text-decoration: none; color: inherit; display: block; }
    .blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px var(--shadow); }
    .blog-image { height: 150px; display: flex; align-items: center; justify-content: center; font-size: 44px; }
    .blog-body { padding: 20px; }
    .blog-category { font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; color: var(--deep2); }
    .blog-body h3 { font-size: 15px; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; line-height: 1.4; }
    .blog-body p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }
    .blog-read { display: inline-block; margin-top: 10px; font-size: 12px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; color: var(--deep2); }

    /* ── FREEBIES (hidden until downloads exist) ── */
    .freebies-section { padding: 80px 48px; background: #fafafa; }
    .freebie-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1080px; margin: 0 auto; }
    .freebie-card { background: white; border: 1.5px solid var(--border); border-radius: 20px; padding: 28px 24px; text-align: center; box-shadow: 0 4px 20px var(--shadow); }
    .freebie-emoji { font-size: 44px; margin-bottom: 12px; }
    .freebie-card h3 { font-size: 16px; font-weight: 900; margin-bottom: 6px; color: var(--text-dark); }
    .freebie-card p { font-size: 13px; color: var(--text-mid); margin-bottom: 16px; }
    .btn-freebie { display: inline-block; background: linear-gradient(135deg, var(--deep), var(--deep2)); color: white; padding: 10px 26px; border-radius: 50px; font-weight: 800; font-size: 13px; text-decoration: none; }

    /* ── NEWSLETTER (live — Netlify Forms) ── */
    .newsletter { padding: 72px 48px; background: linear-gradient(135deg, var(--deep), var(--deep2)); text-align: center; color: white; }
    .newsletter .nl-tag { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--peach); margin-bottom: 14px; display: block; opacity: 0.9; }
    .newsletter h2 { font-size: 32px; font-weight: 900; margin-bottom: 12px; }
    .newsletter p { font-size: 15px; opacity: 0.75; max-width: 440px; margin: 0 auto 28px; font-weight: 500; }
    .newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
    .newsletter-form input { flex: 1; padding: 14px 20px; border-radius: 50px; border: none; font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 600; outline: none; color: var(--text-dark); }
    .newsletter-form button { background: #fff; color: var(--deep); border: none; padding: 14px 28px; border-radius: 50px; font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 800; cursor: pointer; }
    .newsletter-form button:hover { background: var(--pink-light); }
    @media (max-width: 560px) { .newsletter-form { flex-direction: column; } }

    /* ── SOCIAL STRIP (hidden until handles are real) ── */
    .social-strip { padding: 28px 48px; background: white; border-top: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
    .social-label { font-size: 13px; font-weight: 800; color: var(--text-mid); margin-right: 6px; }
    .social-chip { padding: 8px 18px; border-radius: 50px; font-size: 12px; font-weight: 800; text-decoration: none; transition: transform 0.2s; background: var(--purple-light); color: var(--deep); }
    .social-chip:hover { transform: translateY(-2px); }

    /* ── ABOUT ── */
    .about-section { padding: 80px 48px; background: white; }
    .about-wrap {
      max-width: 880px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 240px 1fr;
      gap: 44px;
      align-items: start;
    }
    .about-photo { width: 100%; border-radius: 50%; display: block; }
    .about-body h2 { font-size: 30px; font-weight: 900; margin-bottom: 6px; }
    .about-body .about-sub { font-size: 13px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--purple); margin-bottom: 18px; }
    .about-body p { font-size: 15px; color: var(--text-mid); font-weight: 500; margin-bottom: 14px; line-height: 1.75; }
    .about-sign { font-family: 'Dancing Script', cursive; font-size: 26px; color: var(--text-dark); margin-top: 6px; }

    /* ── CONTACT CTA ── */
    .contact-cta {
      padding: 80px 48px;
      background: linear-gradient(135deg, #3d2e4a, #5a4070);
      text-align: center;
      color: white;
    }
    .contact-cta .nl-tag { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--peach); margin-bottom: 14px; display: block; opacity: 0.9; }
    .contact-cta h2 { font-size: 34px; font-weight: 900; margin-bottom: 12px; }
    .contact-cta p { font-size: 16px; opacity: 0.75; max-width: 460px; margin: 0 auto 32px; font-weight: 500; }

    /* ── FOOTER ── */
    footer { background: #2e2238; color: white; padding: 52px 48px 28px; }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 44px;
      max-width: 1080px;
      margin: 0 auto 36px;
    }
    .footer-logo { margin-bottom: 14px; }
    .footer-logo img { height: 44px; }
    .footer-brand p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }
    .footer-col h4 { font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 9px; }
    .footer-col ul a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13px; font-weight: 600; transition: color 0.2s; }
    .footer-col ul a:hover { color: var(--purple); }
    .footer-rainbow {
      height: 4px;
      background: linear-gradient(to right, #a97bb5, #f497aa, #fcc081, #fff691, #8ecfa8, #6cc9de);
      border-radius: 2px;
      max-width: 1080px;
      margin: 0 auto 22px;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 20px; text-align: center;
      font-size: 12px; color: rgba(255,255,255,0.3); font-weight: 600;
      max-width: 1080px; margin: 0 auto;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 0 20px; }
      .nav-links { gap: 16px; }
      .nav-links li.hide-mobile { display: none; }
      .hero, .find-corner, .how-section, .shop-section, .reviews-section, .about-section, .contact-cta { padding-left: 20px; padding-right: 20px; }
      .niche-grid, .how-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
      .classes-grid { grid-template-columns: 1fr; }
      .blog-grid, .freebie-grid { grid-template-columns: repeat(2, 1fr); }
      .classes-teaser { padding-left: 20px; padding-right: 20px; }
      .shop-grid { grid-template-columns: repeat(2, 1fr); }
      .about-wrap { grid-template-columns: 1fr; }
      .about-photo { max-width: 200px; margin: 0 auto; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 560px) {
      .niche-grid, .how-grid, .reviews-grid, .shop-grid, .blog-grid, .freebie-grid { grid-template-columns: 1fr; }
      .section-header h2 { font-size: 27px; }
      .hero { padding-top: 40px; }
      .announcement { font-size: 11px; }
      .announcement span { margin: 0 6px; }
    }

    /* ── additions for the multi-page site (Sept 2026) ── */
    .about-photo { border-radius: 0 !important; }
    .nav-home { font-family: 'Dancing Script', cursive; font-size: 22px; font-weight: 700; color: #fff !important; margin-right: 6px; }
    .nav-links a.active { color: var(--peach); }
    .page-hero { text-align: center; padding: 64px 48px 48px; background: #fff; }
    .page-hero h1 { font-size: 40px; font-weight: 900; color: var(--text-dark); margin: 0 0 12px; line-height: 1.15; }
    .page-hero .lead { font-size: 17px; color: var(--text-mid); font-weight: 600; max-width: 600px; margin: 0 auto 26px; }
    .hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1080px; margin: 0 auto; }
    .hub-card { border-radius: 26px; padding: 44px 26px; text-decoration: none; color: inherit; display: flex; flex-direction: column; align-items: center; text-align: center; transition: transform .25s, box-shadow .25s; position: relative; }
    .hub-card:hover { transform: translateY(-6px); box-shadow: 0 18px 48px var(--shadow); }
    .hub-card .niche-emoji { font-size: 52px; margin-bottom: 14px; }
    .hub-card h3 { font-size: 24px; font-weight: 900; margin: 0; }
    .hub-card p { font-size: 14px; font-weight: 500; opacity: .8; line-height: 1.55; margin-bottom: 16px; }
    .hub-card .who { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; opacity: .7; margin-bottom: 10px; }
    .tile { width: 100%; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; font-size: 64px; }
    .tile small { font-size: 40px; margin-left: -10px; }
    .classes-grid-3 { max-width: 1080px; grid-template-columns: repeat(3, 1fr); }
    .store-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; max-width: 980px; margin: 0 auto; }
    .store-card { background: #fff; border: 1.5px solid var(--border); border-radius: 20px; padding: 26px; box-shadow: 0 4px 20px var(--shadow); }
    .store-card .store-open { display: inline-block; background: var(--mint-light); color: #2e8858; font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: 50px; margin-bottom: 10px; }
    .store-card h3 { font-size: 19px; font-weight: 900; margin-bottom: 4px; }
    .store-card .closes { font-size: 13px; color: var(--text-mid); font-weight: 700; margin-bottom: 12px; }
    .store-card p { font-size: 13px; color: var(--text-mid); margin-bottom: 14px; }
    .empty-box { max-width: 720px; margin: 0 auto; background: #fff; border: 2px dashed var(--border); border-radius: 20px; padding: 32px; text-align: center; color: var(--text-mid); font-weight: 600; }
    .policy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 900px; margin: 0 auto; }
    .policy { background: #fff; border: 1.5px solid var(--border); border-radius: 18px; padding: 22px 24px; }
    .policy h4 { font-size: 14px; font-weight: 900; margin-bottom: 6px; color: var(--deep); }
    .policy p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }
    .form-section { padding: 80px 48px; background: #fafafa; }
    .form-card { max-width: 640px; margin: 0 auto; background: #fff; border: 1.5px solid var(--border); border-radius: 24px; padding: 36px; box-shadow: 0 4px 24px var(--shadow); }
    .form-card label { display: block; font-size: 12px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; color: var(--text-mid); margin: 16px 0 6px; }
    .form-card input, .form-card select, .form-card textarea { width: 100%; padding: 12px 16px; border-radius: 14px; border: 1.5px solid var(--border); font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 600; color: var(--text-dark); background: #fff; outline: none; }
    .form-card input:focus, .form-card select:focus, .form-card textarea:focus { border-color: var(--purple); }
    .form-card textarea { min-height: 110px; resize: vertical; }
    .form-card .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-card button { margin-top: 22px; width: 100%; background: linear-gradient(135deg, var(--deep), var(--deep2)); color: #fff; border: none; padding: 15px; border-radius: 50px; font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 800; cursor: pointer; }
    .form-card button:hover { background: var(--deep); }
    .form-note { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 12px; font-weight: 600; }
    .faq { max-width: 760px; margin: 0 auto; }
    .faq details { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 16px 22px; margin-bottom: 12px; }
    .faq summary { font-weight: 800; font-size: 15px; cursor: pointer; color: var(--text-dark); list-style: none; display: flex; justify-content: space-between; align-items: center; }
    .faq summary::after { content: '+'; font-size: 20px; color: var(--purple); }
    .faq details[open] summary::after { content: '–'; }
    .faq details p { font-size: 14px; color: var(--text-mid); margin-top: 10px; line-height: 1.65; }
    .split { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
    .split h2 { font-size: 30px; font-weight: 900; margin-bottom: 12px; }
    .split p { font-size: 15px; color: var(--text-mid); font-weight: 500; line-height: 1.7; margin-bottom: 12px; }
    .split ul { padding-left: 20px; color: var(--text-mid); font-size: 14px; line-height: 1.8; margin-bottom: 16px; }
    .callout { background: linear-gradient(135deg, var(--purple-light), var(--pink-light)); border-radius: 24px; padding: 30px; }
    .callout h3 { font-size: 18px; font-weight: 900; margin-bottom: 8px; }
    .callout p { font-size: 14px; }
    .thanks-box { max-width: 560px; margin: 80px auto; text-align: center; padding: 48px; }
    .thanks-box h1 { font-size: 34px; font-weight: 900; margin-bottom: 12px; }
    .thanks-box p { color: var(--text-mid); font-size: 16px; margin-bottom: 24px; }
    @media (max-width: 900px) {
      .hub-grid { grid-template-columns: repeat(2, 1fr); }
      .classes-grid-3 { grid-template-columns: repeat(2, 1fr); }
      .page-hero { padding-left: 20px; padding-right: 20px; }
      .page-hero h1 { font-size: 32px; }
      .split { grid-template-columns: 1fr; }
      .policy-grid { grid-template-columns: 1fr; }
      .form-section, .classes-section, .blog-section, .freebies-section { padding-left: 20px; padding-right: 20px; }
    }
    @media (max-width: 560px) {
      .hub-grid { grid-template-columns: 1fr; }
      .classes-grid-3 { grid-template-columns: 1fr; }
      .tile { aspect-ratio: 16/9; font-size: 52px; }
      .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .product-body { padding: 12px; }
      .product-body h3 { font-size: 12px; }
      .form-card .row { grid-template-columns: 1fr; }
      .form-card { padding: 24px; }
      .nav-links { gap: 12px; }
      .nav-links a { font-size: 12px; }
    }
