  /* ─── HERO ─── */
  .hero {
    min-height: clamp(420px, 70vh, 700px);
    display: flex;
    align-items: stretch;
    padding: 0;
    position: relative;
    overflow: hidden;
    /* Bottom fade applied only to the bg image, not the whole section */
  }
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='86.6' viewBox='0 0 100 86.6'%3E%3Ccircle cx='50' cy='43.3' r='20' fill='none' stroke='%23c9a84c' stroke-width='0.4' opacity='0.15'/%3E%3Ccircle cx='50' cy='23.3' r='20' fill='none' stroke='%23c9a84c' stroke-width='0.4' opacity='0.15'/%3E%3Ccircle cx='50' cy='63.3' r='20' fill='none' stroke='%23c9a84c' stroke-width='0.4' opacity='0.15'/%3E%3Ccircle cx='32.7' cy='33.3' r='20' fill='none' stroke='%23c9a84c' stroke-width='0.4' opacity='0.15'/%3E%3Ccircle cx='67.3' cy='33.3' r='20' fill='none' stroke='%23c9a84c' stroke-width='0.4' opacity='0.15'/%3E%3Ccircle cx='32.7' cy='53.3' r='20' fill='none' stroke='%23c9a84c' stroke-width='0.4' opacity='0.15'/%3E%3Ccircle cx='67.3' cy='53.3' r='20' fill='none' stroke='%23c9a84c' stroke-width='0.4' opacity='0.15'/%3E%3C/svg%3E");
    background-size: 120px 104px;
    pointer-events: none;
    opacity: 0.5;
    z-index: 0;
  }
  .hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(70px);
  }
  .hero-orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(212,129,154,0.3), transparent 70%);
    top: -150px; right: -100px;
    animation: float 10s ease-in-out infinite;
  }
  .hero-orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(136,104,168,0.25), transparent 70%);
    bottom: -50px; left: -50px;
    animation: float 8s ease-in-out infinite reverse;
  }
  .hero-orb-3 {
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(92,56,120,0.08), transparent 70%);
    top: 40%; right: 30%;
    animation: float 12s ease-in-out infinite 2s;
  }
  /* Hero: full-bleed image with overlaid content */
  .hero-grid {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    flex: 1;
    padding: 3.5rem 0 3rem;
  }
  .hero-content { animation: fadeUp 0.8s ease both; position: relative; z-index: 2; }
  .hero-emblem { text-align: center; margin-bottom: 1.2rem; }
  .hero-emblem-img {
    width: 90px; height: 90px; object-fit: contain;
    filter: drop-shadow(0 2px 12px rgba(92,56,120,0.15));
    animation: fadeUp 0.6s ease both;
  }
  .hero-bg-img {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 0;
    mask-image: linear-gradient(to bottom, #000 75%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, #000 75%, transparent 100%);
  }
  .hero-bg-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: var(--hero-bg-opacity, 0.15);
  }
  .hero-content > * { position: relative; z-index: 1; }
  .hero-heading { margin-bottom: 1rem; }
  .hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 0;
    color: var(--deep-purple);
    text-shadow:
      0 0 20px rgba(248,240,245,1),
      0 0 40px rgba(248,240,245,0.9),
      0 2px 30px rgba(248,240,245,0.8);
  }
  .hero-title em { font-style: italic; color: var(--rose); text-shadow: 0 0 20px rgba(248,240,245,1), 0 0 40px rgba(248,240,245,0.9); }
  .hero-subtitle {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin: 0 auto;
    max-width: 680px;
    text-shadow: 0 0 12px rgba(248,240,245,0.9);
  }
  .hero-ctas {
    position: absolute;
    bottom: 2rem;
    left: 0; right: 0;
    z-index: 2;
    display: flex; gap: 0.75rem; flex-wrap: wrap;
    align-items: center; justify-content: center;
    padding: 0 2rem;
    animation: fadeUp 0.8s 0.2s ease both;
  }
  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.6rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
    white-space: nowrap;
  }
  .hero-cta-fill {
    background: rgba(92,56,120,0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    box-shadow: 0 4px 20px rgba(92,56,120,0.25);
  }
  .hero-cta-fill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(92,56,120,0.35);
    background: rgba(92,56,120,0.95);
  }
  .hero-cta-outline {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--deep-purple);
    border: 1.5px solid rgba(92,56,120,0.25);
    box-shadow: 0 2px 12px rgba(92,56,120,0.08);
  }
  .hero-cta-outline:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.85);
    border-color: rgba(92,56,120,0.4);
    box-shadow: 0 6px 24px rgba(92,56,120,0.15);
  }

  /* Highlight cards — bottom corners */
  .hero-highlight {
    border-radius: var(--radius-lg);
    width: clamp(110px, 12vw, 160px);
    height: clamp(140px, 16vw, 210px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 0.5rem;
    position: absolute;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    background: linear-gradient(145deg, #f8f0f5, #f0e4ed);
    z-index: 3;
  }
  #heroHighlightLeft { bottom: 6rem; left: 2rem; }
  #heroHighlightRight { bottom: 6rem; right: 2rem; background: linear-gradient(145deg, #ece8f4, #e2dcee); }
  .hero-highlight:hover { transform: translateY(-6px) rotate(1deg); }
  .hero-highlight-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    border-radius: inherit; transition: transform 0.4s;
  }
  .hero-highlight:hover .hero-highlight-bg { transform: scale(1.05); }
  .hero-highlight-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(45,32,48,0.55) 0%, transparent 50%);
  }
  .hero-highlight-label {
    position: relative; z-index: 1;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-mid); text-align: center;
  }
  @media (max-width: 768px) {
    .hero-highlight { width: clamp(90px, 22vw, 120px); height: clamp(115px, 28vw, 155px); }
    #heroHighlightLeft { bottom: 5.5rem; left: 1rem; }
    #heroHighlightRight { bottom: 5.5rem; right: 1rem; }
  }
  @media (max-width: 480px) {
    .hero-highlight { display: none; }
  }

  /* ─── CATEGORIES ─── */
  .categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
  .category-tile {
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
    display: block;
  }
  .category-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
  .cat-icon { font-size: 2.8rem; margin-bottom: 0.75rem; display: block; }
  .cat-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--deep-purple);
    font-weight: 700;
    margin-bottom: 0.35rem;
    text-shadow: 0 1px 4px rgba(255,255,255,0.8);
  }
  .cat-desc { font-size: 0.8rem; color: var(--text-mid); line-height: 1.5; text-shadow: 0 1px 3px rgba(255,255,255,0.7); }
  .ct1 { background: linear-gradient(145deg, #f8f0f5, #f0e4ed); }
  .ct2 { background: linear-gradient(145deg, #ece8f4, #e2dcee); }
  .ct3 { background: linear-gradient(145deg, #f5f0e8, #ede6d8); }
  .ct4 { background: linear-gradient(145deg, #e8edf5, #dde4f0); }

  /* Product grid styles moved to shop.html only */
  .product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    flex-shrink: 0;
    width: 220px;
    scroll-snap-align: start;
  }
  .product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
  .product-img {
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
  }
  .product-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
  }
  .product-card:hover .product-img img { transform: scale(1.06); }
  .product-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(92,56,120,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .product-card:hover .product-img-overlay { opacity: 1; }
  .product-badge-wrap {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 0.4rem;
    z-index: 1;
  }
  .product-info { padding: 1.1rem 1.4rem 1.4rem; }
  .product-cat {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.3rem;
  }
  .product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    line-height: 1.3;
  }
  .product-desc { font-size: 0.78rem; color: var(--text-light); line-height: 1.5; margin-bottom: 0.9rem; }
  .product-footer { display: flex; justify-content: space-between; align-items: center; }
  .product-price { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--deep-purple); font-weight: 700; }
  .product-price small { font-size: 0.7rem; color: var(--text-light); font-weight: 300; }
  .add-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--deep-purple);
    color: white;
    border: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    line-height: 1;
  }
  .add-btn:hover { background: var(--rose); transform: scale(1.1) rotate(90deg); }

  /* ─── CUSTOM BANNER ─── */
  .custom-banner {
    background: linear-gradient(135deg, #f5eef8, #ede4f5 50%, #f8f0f5);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.75rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .custom-banner::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(92,56,120,0.04) 0%, transparent 50%);
    pointer-events: none;
  }
  .custom-banner h2 { color: var(--deep-purple); font-size: clamp(1.2rem, 2vw, 1.6rem); margin-bottom: 0.35rem; font-weight: 600; }
  .custom-banner h2 em { color: var(--rose); font-style: italic; }
  .custom-banner p { color: var(--text-mid); font-size: 0.82rem; line-height: 1.65; margin-bottom: 1rem; max-width: 380px; }
  .custom-steps { display: flex; flex-direction: column; gap: 0.6rem; flex-shrink: 0; }
  .custom-step { display: flex; align-items: center; gap: 0.6rem; color: var(--text-mid); }
  .step-num {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(92,56,120,0.06);
    border: 1px solid rgba(92,56,120,0.12);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 0.72rem;
    flex-shrink: 0;
    color: var(--deep-purple);
  }
  .step-text { font-size: 0.78rem; }

  /* ─── ABOUT STRIP ─── */
  .about-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 5rem 0;
  }
  .about-visual-wrap {
    display: flex;
    justify-content: center;
    position: relative;
  }
  .about-big {
    font-size: 9rem;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 8px 20px rgba(92,56,120,0.15));
  }
  .about-dots {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(184,168,208,0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
  }
  .about-text .eyebrow { justify-content: flex-start; }
  .about-text h2 { margin-bottom: 1rem; }
  .about-text p { color: var(--text-mid); margin-bottom: 1.25rem; line-height: 1.85; }
  .about-stats { display: flex; gap: 2rem; margin: 1.5rem 0 2rem; }
  .stat { text-align: center; }
  .stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--deep-purple); font-weight: 700; line-height: 1; }
  .stat-lbl { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-top: 0.2rem; }

  /* ─── SPOTLIGHT STRIP ─── */
  .spotlight-card {
    flex-shrink: 0; width: 200px; background: white; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); overflow: hidden; cursor: pointer;
    scroll-snap-align: start; transition: transform 0.2s, box-shadow 0.2s;
  }
  .spotlight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
  .spotlight-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
  .spotlight-card-body { padding: 0.85rem; }
  .spotlight-card-name { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 0.25rem; }
  .spotlight-card-price { font-size: 0.82rem; font-weight: 700; color: var(--purple); }

  /* ─── TESTIMONIALS ─── */
  .testimonials-wrap { position: relative; }
  .testimonials-grid { display: flex; gap: 1.25rem; overflow-x: auto; padding-bottom: 0.75rem; scroll-snap-type: x mandatory; cursor: grab; }
  .testimonials-grid.dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
  .testimonials-grid::-webkit-scrollbar { height: 4px; }
  .testimonials-grid::-webkit-scrollbar-thumb { background: var(--lavender); border-radius: 4px; }
  .testimonials-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.9); border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--deep-purple); z-index: 2;
    transition: opacity 0.2s, box-shadow 0.2s;
  }
  .testimonials-arrow:hover { box-shadow: 0 4px 16px rgba(92,56,120,0.2); }
  .testimonials-arrow.left { left: -12px; }
  .testimonials-arrow.right { right: -12px; }
  .testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    flex-shrink: 0;
    width: 300px;
    scroll-snap-align: start;
  }
  .testimonial-card::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--lavender);
    position: absolute;
    top: -10px; left: 1.5rem;
    line-height: 1;
    opacity: 0.5;
  }
  .testimonial-text { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; font-style: italic; margin-bottom: 1.2rem; }

  /* All reviews modal */
  .all-reviews-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(30,15,40,0.5); z-index: 800;
    align-items: flex-start; justify-content: center;
    padding: 3rem 1.5rem; overflow-y: auto;
  }
  .all-reviews-overlay.open { display: flex; }
  .all-reviews-box {
    background: white; border-radius: var(--radius-xl);
    padding: 2rem; max-width: 800px; width: 100%;
    position: relative;
  }
  .all-reviews-grid {
    columns: 2; column-gap: 1.25rem;
  }
  .all-reviews-grid .testimonial-card {
    width: auto; break-inside: avoid;
    margin-bottom: 1.25rem; display: inline-block;
  }
  @media (max-width: 600px) {
    .all-reviews-grid { columns: 1; }
  }
  .testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
  .author-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }
  .author-name { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); }
  .author-loc  { font-size: 0.72rem; color: var(--text-light); }

  /* ─── INSTAGRAM STRIP ─── */
  .ig-strip {
    display: flex;
    text-decoration: none;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #faf6fb, #f5eef8);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
  }
  .ig-strip:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(92,56,120,0.1); }
  .ig-strip-bg { display: none; }
  .ig-strip-content {
    display: flex; align-items: center; gap: 1.25rem;
    width: 100%; color: var(--deep-purple);
  }
  .ig-icon-wrap {
    flex-shrink: 0; width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-radius: 12px;
    color: white;
  }
  .ig-icon-wrap svg { width: 24px; height: 24px; }
  .ig-strip-text { flex: 1; min-width: 0; }
  .ig-strip-handle {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 0.15rem;
  }
  .ig-strip-tagline { font-size: 0.78rem; color: var(--text-mid); line-height: 1.4; }
  .ig-strip-cta {
    flex-shrink: 0; display: flex; align-items: center; gap: 0.4rem;
    background: var(--deep-purple); color: #fff; border-radius: 50px;
    padding: 0.55rem 1.3rem; font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.06em;
    white-space: nowrap; transition: background 0.2s;
  }
  .ig-strip:hover .ig-strip-cta { background: var(--purple); }
  @media (max-width: 600px) {
    .ig-strip-content { flex-wrap: wrap; gap: 1rem; padding: 1.5rem; }
    .ig-icon-wrap { width: 48px; height: 48px; border-radius: 12px; }
    .ig-icon-wrap svg { width: 32px; height: 32px; }
    .ig-strip-text { flex-basis: calc(100% - 64px); }
    .ig-strip-cta { width: 100%; justify-content: center; }
  }

  /* ─── DECORATIVE TRINKETS (from Canva one-page original) ─── */
  .deco-blob {
    position: fixed; pointer-events: none; z-index: 0;
  }
  .deco-blob-1 {
    width: 220px; height: 180px; top: 180px; right: -60px;
    background: radial-gradient(ellipse 70% 100%, rgba(212,129,154,0.12), transparent 70%);
    border-radius: 60% 40% 50% 50%;
  }
  .deco-blob-2 {
    width: 180px; height: 200px; top: 55%; left: -50px;
    background: radial-gradient(ellipse 100% 70%, rgba(136,104,168,0.10), transparent 70%);
    border-radius: 40% 60% 50% 50%;
  }
  .deco-blob-3 {
    width: 250px; height: 200px; bottom: 15%; right: -80px;
    background: radial-gradient(ellipse 80% 100%, rgba(232,168,192,0.08), transparent 70%);
    border-radius: 50% 40% 60% 40%;
  }
  .deco-blob-4 {
    width: 160px; height: 140px; top: 38%; left: -30px;
    background: radial-gradient(ellipse 100% 80%, rgba(201,168,76,0.07), transparent 70%);
    border-radius: 45% 55% 40% 60%;
  }
  .deco-dots {
    position: fixed; pointer-events: none; z-index: 0;
  }
  .deco-dots::before {
    content: ''; position: absolute; width: 70px; height: 70px;
    background-image: radial-gradient(circle, var(--rose) 1.2px, transparent 1.2px);
    background-size: 12px 12px; opacity: 0.15;
  }
  .deco-curve {
    position: fixed; pointer-events: none; z-index: 0; opacity: 0.10;
  }
  .deco-sparkle {
    position: fixed; pointer-events: none; z-index: 0; opacity: 0.15;
  }
  @media (max-width: 768px) {
    .deco-blob, .deco-dots, .deco-curve, .deco-sparkle { display: none; }
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    /* hero-highlight responsive handled in hero section styles */
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-card { width: 260px; }
  }
  @media (max-width: 768px) {
    .hero-visual { gap: 0.5rem; }
    .custom-banner { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
    .custom-steps { display: none; }
    .about-strip { grid-template-columns: 1fr; gap: 2rem; }
    .about-visual-wrap { display: none; }
  }
  @media (max-width: 480px) {
    .categories-grid { grid-template-columns: 1fr; }
  }
