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

    /* ── PALETTE ──────────────────────────────────────
       Hot pink energy + Burgundy authority + Cream warmth
       Inspired by Tortas Dolly aesthetic
    ─────────────────────────────────────────────────── */
    :root {
      --pink-bright:   #F72585;   /* hot pink — energy, youth, fun */
      --pink-soft:     #FF8DC7;   /* pastel pink — feminine, approachable */
      --pink-pale:     #FFD6EC;   /* blush — backgrounds, cards */
      --pink-ultralight: #FFF0F8; /* almost white pink */

      --burgundy:      #6B1A3A;   /* wine — authority, luxury, depth */
      --burgundy-mid:  #9B2559;   /* mid wine — headings, accents */
      --burgundy-light:#D4547A;   /* rose-wine — body text on light bg */

      --cream:         #FFFAF8;   /* warm page bg */
      --white:         #FFFFFF;

      --text-dark:     #3A0A20;   /* deep burgundy-black */
      --text-body:     #5C1F3A;   /* dark wine for body */
      --text-muted:    #9E6080;   /* muted rose */
      --border:        rgba(215, 84, 122, 0.18);
      --border-strong: rgba(107, 26, 58, 0.25);

      --shadow-pink:   0 8px 40px rgba(247, 37, 133, 0.2);
      --shadow-dark:   0 4px 24px rgba(58, 10, 32, 0.12);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--cream);
      color: var(--text-body);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ── DECORATIVE BG PATTERN ── */
    body::before {
      content: '';
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background-image:
        radial-gradient(circle at 15% 20%, rgba(247,37,133,0.06) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(107,26,58,0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255,141,199,0.04) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    * { position: relative; z-index: 1; }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 200;
      padding: 0 2.5rem;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(255, 250, 248, 0.9);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }

    .nav-left { display: flex; align-items: center; gap: 2.2rem; }
    .nav-links { display: flex; align-items: center; gap: 1.5rem; }
    .nav-links a { text-decoration: none; font-size: 0.95rem; font-weight: 500; color: var(--text-body); transition: color 0.2s; }
    .nav-links a:hover { color: var(--pink-bright); }
    .nav-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      font-size: 1.5rem;
      line-height: 1;
      color: var(--burgundy);
      padding: 0.4rem 0.2rem;
    }

    @media (max-width: 900px) {
      .nav-toggle { display: block; }
      .nav-links {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--cream);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 12px 24px rgba(58, 10, 32, 0.12);
        padding: 0.25rem 1.5rem 0.75rem;
      }
      .nav-links.is-open { display: flex; }
      .nav-links a { padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
      .nav-links a:last-child { border-bottom: none; }
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      text-decoration: none;
    }

    .logo-icon { width: 44px; height: 44px; flex-shrink: 0; }

    .logo-text {
      font-family: 'Nunito', sans-serif;
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--burgundy);
      letter-spacing: -0.01em;
      line-height: 1;
    }

    .logo-text span { color: var(--pink-bright); }

    .nav-yt {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
      background: var(--pink-bright);
      color: #fff;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      padding: 0.5rem 1.25rem;
      border-radius: 100px;
      transition: all 0.2s;
      box-shadow: var(--shadow-pink);
    }

    .nav-yt:hover {
      background: var(--burgundy-mid);
      box-shadow: var(--shadow-dark);
      transform: translateY(-1px);
    }

    .nav-yt .yt-icon { width: 15px; height: 15px; fill: #fff; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      align-items: center;
      gap: 3rem;
      padding: 7rem 2rem 4rem;
      max-width: 1320px;
      margin: 0 auto;
    }

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

    .hero-video-frame {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      border-radius: 22px;
      overflow: hidden;
      box-shadow: var(--shadow-dark);
      cursor: pointer;
      background: #1a0a10;
      animation: fadeUp 0.7s 0.3s ease both;
    }

    .hero-video-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s;
    }

    .hero-video-frame:hover img { transform: scale(1.04); }

    .hero-video-play {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 74px; height: 74px;
      border-radius: 50%;
      background: var(--pink-bright);
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 32px rgba(247,37,133,0.5);
      transition: background 0.2s, transform 0.2s;
      pointer-events: none;
    }

    .hero-video-frame:hover .hero-video-play {
      background: var(--burgundy);
      transform: translate(-50%, -50%) scale(1.08);
    }

    .hero-video-play svg { width: 26px; height: 26px; fill: #fff; margin-left: 3px; }

    @media (max-width: 900px) {
      .hero {
        grid-template-columns: 1fr;
        min-height: 0;
        padding-top: 6.5rem;
        gap: 2.25rem;
      }
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--pink-bright);
      background: var(--pink-pale);
      border: 1px solid rgba(247,37,133,0.2);
      padding: 0.4rem 1.1rem;
      border-radius: 100px;
      margin-bottom: 2rem;
      animation: fadeUp 0.7s ease both;
    }

    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 8vw, 6.5rem);
      font-weight: 700;
      line-height: 1.0;
      letter-spacing: -0.02em;
      color: var(--burgundy);
      margin-bottom: 0.4rem;
      animation: fadeUp 0.7s 0.1s ease both;
    }

    .hero h1 .italic {
      font-style: italic;
      color: var(--pink-bright);
      display: block;
    }

    .hero-sub {
      font-size: 1.05rem;
      font-weight: 300;
      color: var(--text-muted);
      max-width: 460px;
      margin: 1.5rem auto 2.5rem;
      line-height: 1.75;
      animation: fadeUp 0.7s 0.2s ease both;
    }

    .hero-btns {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeUp 0.7s 0.3s ease both;
    }

    .btn-pink {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: var(--pink-bright);
      color: #fff;
      text-decoration: none;
      padding: 0.9rem 2.2rem;
      border-radius: 100px;
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      box-shadow: var(--shadow-pink);
      transition: all 0.2s;
    }

    .btn-pink:hover {
      background: var(--burgundy-mid);
      box-shadow: var(--shadow-dark);
      transform: translateY(-2px);
    }

    .btn-pink svg { width: 18px; height: 18px; fill: #fff; }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--burgundy);
      text-decoration: none;
      padding: 0.9rem 2rem;
      border-radius: 100px;
      font-size: 0.95rem;
      font-weight: 500;
      border: 1.5px solid var(--border-strong);
      transition: all 0.2s;
    }

    .btn-outline:hover {
      background: var(--pink-pale);
      border-color: var(--pink-bright);
      color: var(--pink-bright);
    }

    /* ── STATS ── */
    .stats {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      margin: 3.5rem auto 0;
      max-width: 600px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-dark);
      animation: fadeUp 0.7s 0.4s ease both;
    }

    .stat-item {
      flex: 1;
      text-align: center;
      padding: 1.25rem 1rem;
    }

    .stat-item + .stat-item {
      border-left: 1px solid var(--border);
    }

    .stat-n {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--burgundy);
      line-height: 1;
    }

    .stat-n span { color: var(--pink-bright); }

    .stat-l {
      font-size: 0.7rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      margin-top: 0.3rem;
    }

    /* ── SECTION HEADER ── */
    .sec-head {
      text-align: center;
      margin-bottom: 3rem;
    }

    .sec-tag {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--pink-bright);
      margin-bottom: 0.75rem;
    }

    .sec-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 700;
      color: var(--burgundy);
      line-height: 1.15;
    }

    .sec-title em { font-style: italic; color: var(--pink-bright); }

    /* ── SEPARATOR ── */
    .separator {
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, var(--pink-bright), var(--burgundy-light));
      border-radius: 2px;
      margin: 1rem auto 0;
    }

    /* ── FREEBIE PROMO BANNER ── */
    .freebie-wrap {
      padding: 3rem 2rem;
      display: flex;
      justify-content: center;
    }

    .freebie {
      max-width: 900px;
      width: 100%;
      background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-mid) 100%);
      border-radius: 24px;
      padding: 2.5rem 2.5rem;
      color: var(--white);
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 2rem;
      align-items: center;
      box-shadow: 0 16px 50px rgba(58, 10, 32, 0.25);
      position: relative;
      overflow: hidden;
    }

    .freebie::before {
      content: '';
      position: absolute;
      top: -50px; right: -50px;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(247,37,133,0.3) 0%, transparent 70%);
      pointer-events: none;
    }

    .freebie-icon {
      width: 72px;
      height: 72px;
      background: var(--pink-bright);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      flex-shrink: 0;
      box-shadow: var(--shadow-pink);
    }

    .freebie-text h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 0.4rem;
    }

    .freebie-text h3 em {
      font-style: italic;
      color: var(--pink-soft);
    }

    .freebie-text p {
      font-size: 1rem;
      color: rgba(255,255,255,0.9);
      line-height: 1.5;
    }

    .freebie-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--pink-bright);
      color: var(--white);
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      padding: 0.95rem 1.8rem;
      border-radius: 100px;
      box-shadow: 0 6px 24px rgba(247,37,133,0.4);
      transition: all 0.2s;
      flex-shrink: 0;
    }

    .freebie-btn:hover {
      background: var(--white);
      color: var(--burgundy);
      transform: translateY(-2px);
    }

    .freebie-btn svg { width: 16px; height: 16px; fill: currentColor; }

    /* ── PRODUCT PROMO (own shop) ── */
    .promo-wrap { padding: 1rem 2rem 3rem; display: flex; justify-content: center; }
    .promo {
      max-width: 900px; width: 100%;
      background: linear-gradient(135deg, var(--pink-bright) 0%, var(--burgundy-mid) 100%);
      border-radius: 24px; padding: 2.5rem; color: var(--white);
      display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; align-items: center;
      box-shadow: 0 16px 50px rgba(247, 37, 133, 0.25);
    }
    .promo-icon {
      width: 72px; height: 72px; background: rgba(255,255,255,0.2); border-radius: 18px;
      display: flex; align-items: center; justify-content: center; font-size: 2rem; flex-shrink: 0;
    }
    .promo-text h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 0.4rem; }
    .promo-text h3 em { font-style: italic; color: var(--pink-pale); }
    .promo-text p { font-size: 1rem; color: rgba(255,255,255,0.9); line-height: 1.5; }
    .promo-btn {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--white); color: var(--burgundy); text-decoration: none;
      font-size: 0.95rem; font-weight: 600; padding: 0.95rem 1.8rem; border-radius: 100px;
      box-shadow: 0 6px 24px rgba(0,0,0,0.2); transition: all 0.2s; flex-shrink: 0;
    }
    .promo-btn:hover { transform: translateY(-2px); }
    .promo-btn svg { width: 16px; height: 16px; fill: currentColor; }
    @media (max-width: 700px) {
      .promo { grid-template-columns: 1fr; text-align: center; padding: 2rem 1.5rem; }
      .promo-icon { margin: 0 auto; }
    }

    /* ── VIDEOS SECTION ── */
    .videos-wrap {
      padding: 6rem 2rem;
      background: var(--white);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .videos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.75rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .vcard {
      background: var(--cream);
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--border);
      transition: transform 0.25s, box-shadow 0.25s;
      text-decoration: none;
      color: inherit;
      display: block;
    }

    .vcard:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(107, 26, 58, 0.14);
    }

    .vcard-thumb {
      width: 100%;
      padding-bottom: 56.25%;
      position: relative;
      background: var(--pink-pale);
      overflow: hidden;
    }

    .vcard-thumb iframe {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      border: none;
      pointer-events: none;
    }

    .vcard-info {
      padding: 1.1rem 1.25rem 1.35rem;
    }

    .vcard-tag {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--pink-bright);
      margin-bottom: 0.4rem;
    }

    .vcard-title {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text-dark);
      line-height: 1.4;
    }

    .play-btn {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 52px; height: 52px;
      background: var(--pink-bright);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(247,37,133,0.5);
      transition: transform 0.2s, background 0.2s;
    }

    .vcard:hover .play-btn {
      background: var(--burgundy);
      transform: translate(-50%, -50%) scale(1.1);
    }

    .play-btn svg { width: 22px; height: 22px; fill: #fff; margin-left: 3px; }

    /* ── ABOUT SECTION ── */
    .about-wrap {
      padding: 7rem 2rem;
      max-width: 860px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .about-text .sec-head { text-align: left; margin-bottom: 1.5rem; }
    .about-text .separator { margin: 0.75rem 0 0; }

    .about-text p {
      font-size: 0.98rem;
      font-weight: 300;
      color: var(--text-muted);
      line-height: 1.85;
      margin-top: 1.25rem;
    }

    .about-text p strong { color: var(--burgundy); font-weight: 500; }

    .about-text .btn-pink {
      display: inline-flex;
      margin-top: 2rem;
      font-size: 0.88rem;
    }

    .about-card {
      background: linear-gradient(145deg, var(--burgundy) 0%, var(--burgundy-mid) 100%);
      border-radius: 24px;
      padding: 2.5rem 2rem;
      text-align: center;
      box-shadow: 0 20px 60px rgba(107, 26, 58, 0.3);
    }

    .about-card .big-emoji {
      font-size: 4rem;
      line-height: 1;
      margin-bottom: 1rem;
      display: block;
    }

    .about-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-style: italic;
      font-weight: 600;
      color: #fff;
      margin-bottom: 0.5rem;
    }

    .about-card p {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.65);
      font-weight: 300;
      line-height: 1.65;
    }

    .about-card .pink-pill {
      display: inline-block;
      margin-top: 1.25rem;
      background: var(--pink-bright);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.4rem 1rem;
      border-radius: 100px;
    }

    /* ── CTA SECTION ── */
    .cta-wrap {
      padding: 7rem 2rem;
      background: linear-gradient(160deg, var(--burgundy) 0%, #3A0A20 100%);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-wrap::before {
      content: '';
      position: absolute;
      top: -50%; left: -20%;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(247,37,133,0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-wrap::after {
      content: '';
      position: absolute;
      bottom: -30%; right: -10%;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(255,141,199,0.1) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-wrap .sec-tag { color: var(--pink-soft); }

    .cta-wrap .sec-title {
      color: #fff;
      max-width: 600px;
      margin: 0 auto;
    }

    .cta-wrap .sec-title em { color: var(--pink-soft); }

    .cta-sub {
      font-size: 1rem;
      font-weight: 300;
      color: rgba(255,255,255,0.55);
      margin: 1.25rem auto 2.75rem;
      max-width: 400px;
      line-height: 1.7;
    }

    .btn-cta-light {
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
      background: var(--pink-bright);
      color: #fff;
      text-decoration: none;
      padding: 1rem 2.5rem;
      border-radius: 100px;
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      box-shadow: 0 8px 40px rgba(247, 37, 133, 0.5);
      transition: all 0.2s;
    }

    .btn-cta-light:hover {
      background: #fff;
      color: var(--pink-bright);
      transform: translateY(-3px);
    }

    .btn-cta-light:hover svg { fill: var(--pink-bright); }
    .btn-cta-light svg { width: 20px; height: 20px; fill: #fff; transition: fill 0.2s; }

    .cta-note {
      margin-top: 1.25rem;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.35);
      letter-spacing: 0.05em;
    }

    /* ── FOOTER ── */
    footer {
      padding: 1.75rem 2rem;
      background: #25040F;
      text-align: center;
    }

    footer p {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.3);
    }

    footer a {
      color: var(--pink-soft);
      text-decoration: none;
    }

    footer a:hover { color: var(--pink-bright); }

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

    /* ── RESPONSIVE ── */
    @media (max-width: 700px) {
      nav { padding: 0 1.25rem; }
      .logo-text { font-size: 1.2rem; }
      .logo-icon { width: 36px; height: 36px; }
      .nav-yt { font-size: 0.72rem; padding: 0.45rem 0.9rem; }

      /* Hero */
      .hero { padding: 6rem 1.25rem 3rem; }
      .hero h1 { font-size: clamp(2.2rem, 10vw, 3.5rem); }
      .hero-sub { font-size: 0.95rem; }
      .hero-btns { flex-direction: column; align-items: center; gap: 0.75rem; }
      .btn-pink, .btn-outline { width: 100%; justify-content: center; }

      /* Stats */
      .stats { flex-direction: column; max-width: 280px; }
      .stat-item + .stat-item { border-left: none; border-top: 1px solid var(--border); }

      /* Section headers */
      .sec-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }

      /* Videos */
      .videos-wrap { padding: 3.5rem 1.25rem; }
      .videos-grid { grid-template-columns: 1fr; gap: 1rem; }

      /* Freebie banner */
      .freebie-wrap { padding: 2rem 1.25rem; }
      .freebie {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.2rem;
      }
      .freebie-icon { margin: 0 auto; }
      .freebie-text h3 { font-size: 1.45rem; }
      .freebie-text p { font-size: 0.95rem; }
      .freebie-btn { width: 100%; justify-content: center; }

      /* Shop */
      .shop-wrap { padding: 3.5rem 1.25rem; }
      .shop-grid-top { grid-template-columns: 1fr; max-width: 100%; }
      .shop-grid-bottom { grid-template-columns: 1fr 1fr; max-width: 100%; }
      .shop-img-wrap { padding-bottom: 60%; }

      /* About */
      .about-wrap {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 4rem 1.25rem;
      }
      .about-title-big { font-size: clamp(2rem, 8vw, 3rem) !important; }
      .about-text .sec-head { text-align: center; }
      .about-text .separator { margin: 0.75rem auto 0; }
      .about-text .btn-pink { margin: 2rem auto 0; display: flex; width: 100%; justify-content: center; }
      .about-text p { text-align: center; }
      .about-videos { grid-template-columns: 1fr 1fr; }

      /* CTA */
      .cta-wrap { padding: 4rem 1.25rem; }
      .btn-cta-light { width: 100%; justify-content: center; font-size: 0.9rem; }

      /* Footer */
      footer { padding: 1.5rem 1.25rem; }
      footer p { font-size: 0.72rem; }
    }

    @media (max-width: 400px) {
      .shop-grid-bottom { grid-template-columns: 1fr; }
      .about-videos { grid-template-columns: 1fr 1fr; }
      .hero h1 { font-size: 2rem; }
    }
    /* ── RESOURCE LINKS ── */
    .resources-wrap {
      padding: 3.5rem 2rem;
      background: var(--cream);
      border-top: 1px solid var(--border);
    }

    .resources-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      max-width: 560px;
      margin: 0 auto;
    }

    .resource-card {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 14px;
      padding: 1.1rem 1rem 1rem;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0.35rem;
      transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    }

    .resource-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(247,37,133,0.13);
      border-color: var(--pink-bright);
    }

    .resource-icon {
      font-size: 1.6rem;
      line-height: 1;
      margin-bottom: 0.2rem;
    }

    .resource-title {
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.3;
    }

    .resource-desc {
      font-size: 0.72rem;
      font-weight: 400;
      color: var(--text-muted);
      line-height: 1.4;
    }

    .resource-link-label {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--pink-bright);
      margin-top: 0.3rem;
    }

    .resources-note {
      text-align: center;
      font-size: 0.7rem;
      color: var(--text-muted);
      margin-top: 0.9rem;
    }

    /* ── SHOP ── */
    .shop-wrap {
      padding: 6rem 2rem;
      background: var(--pink-ultralight);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .shop-grid-top {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      max-width: 825px;
      margin: 0 auto 1.25rem;
    }

    .shop-grid-bottom {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .shop-card {
      background: var(--white);
      border-radius: 16px;
      border: 1px solid var(--border);
      padding: 1.25rem 1rem 1rem;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .shop-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(247,37,133,0.15);
    }

    .shop-card--featured {
      border: 2px solid var(--pink-bright);
    }

    .shop-popular {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #fff;
      background: var(--pink-bright);
      padding: 0.28rem 0.7rem;
      border-radius: 100px;
      display: inline-block;
      margin-bottom: 0.4rem;
      align-self: flex-start;
    }

    .shop-img-wrap {
      width: 100%;
      padding-bottom: 75%;
      position: relative;
      background: var(--pink-ultralight);
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .shop-img-wrap .shop-emoji {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      font-size: 3.5rem;
      line-height: 1;
    }

    .shop-brand {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--burgundy-light);
    }

    .shop-name {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--text-dark);
      line-height: 1.4;
      flex: 1;
    }

    .shop-btn {
      display: inline-block;
      margin-top: 0.6rem;
      background: var(--pink-bright);
      color: #fff;
      font-size: 0.72rem;
      font-weight: 600;
      padding: 0.42rem 0.9rem;
      border-radius: 100px;
      align-self: flex-start;
      transition: background 0.2s;
    }

    .shop-card:hover .shop-btn {
      background: var(--burgundy);
    }

    .about-title-big {
      font-size: clamp(2.2rem, 5vw, 3.5rem) !important;
    }

    .about-videos {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
      width: 100%;
    }

    .about-vid {
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      aspect-ratio: 16/9;
      display: block;
      text-decoration: none;
    }

    .about-vid img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s;
    }

    .about-vid:hover img { transform: scale(1.05); }

    .about-vid-play {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 38px; height: 38px;
      background: var(--pink-bright);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(247,37,133,0.5);
      transition: background 0.2s, transform 0.2s;
    }

    .about-vid:hover .about-vid-play {
      background: var(--burgundy);
      transform: translate(-50%, -50%) scale(1.1);
    }

    .about-vid-play svg { width: 16px; height: 16px; fill: #fff; margin-left: 2px; }

    .about-vid--more {
      background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-mid) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .about-vid--more span {
      color: #fff;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-style: italic;
      text-align: center;
      line-height: 1.4;
    }

    .about-vid--more:hover { opacity: 0.9; }

    @media (max-width: 700px) {
      .about-videos { grid-template-columns: 1fr 1fr; }
    }


  /* ─── Newsletter Section ─────────────────────────────────────── */
  .nl-section {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-mid) 100%);
    padding: 72px 24px;
    text-align: center;
    font-family: inherit;
  }

  .nl-inner {
    max-width: 560px;
    margin: 0 auto;
  }

  .nl-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: var(--pink-pale);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.2);
  }

  .nl-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 5vw, 38px);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  .nl-ribbon {
    display: inline-block;
    margin-left: 6px;
  }

  .nl-subtitle {
    font-size: 16px;
    color: var(--pink-pale);
    line-height: 1.65;
    margin: 0 0 24px;
  }

  .nl-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .nl-bullets li {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    padding-left: 4px;
  }

  /* Override MailerLite form styles to match brand.
     MailerLite loads its own stylesheet with an ID-scoped wrapper
     (#mlb2-XXXXXXXX), so plain class selectors lose the cascade —
     we match that same ID to guarantee our colors win. */
  .nl-section .ml-embedded {
    margin: 0 auto;
    max-width: 440px;
  }

  .nl-section .ml-embedded .ml-form-embedWrapper,
  #mlb2-44026912.ml-form-embedWrapper {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
  }

  .nl-section .ml-embedded .ml-form-embedBody {
    padding: 0 !important;
  }

  /* Hide MailerLite's own heading/subtitle — we have ours above */
  .nl-section .ml-embedded h4,
  .nl-section .ml-embedded p.ml-form-embedContent {
    display: none !important;
  }

  /* Input field */
  .nl-section .ml-embedded input.form-control,
  #mlb2-44026912 input.form-control {
    background: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    border-radius: 8px !important;
    color: var(--text-dark) !important;
    font-size: 15px !important;
    padding: 14px 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-bottom: 10px !important;
  }

  .nl-section .ml-embedded input.form-control::placeholder {
    color: var(--text-muted) !important;
  }

  .nl-section .ml-embedded input.form-control:focus,
  #mlb2-44026912 input.form-control:focus {
    outline: none !important;
    border-color: var(--pink-bright) !important;
  }

  /* Submit button */
  .nl-section .ml-embedded button.primary,
  #mlb2-44026912 button.primary {
    background-color: var(--pink-bright) !important;
    border: none !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 14px 28px !important;
    width: 100% !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease !important;
    letter-spacing: 0.01em !important;
  }

  .nl-section .ml-embedded button.primary:hover,
  #mlb2-44026912 button.primary:hover {
    background-color: var(--burgundy-mid) !important;
  }

  .nl-privacy {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-top: 16px;
    margin-bottom: 0;
  }

  /* Mobile */
  @media (max-width: 480px) {
    .nl-section {
      padding: 52px 20px;
    }
  }
  /* ─────────────────────────────────────────────────────────────── */
