    :root {
      --purple-deep:   #2d0a4e;
      --purple:        #5b1f8a;
      --purple-mid:    #7b2fbe;
      --purple-light:  #c084fc;
      --purple-glow:   rgba(123,47,190,0.25);
      --gold:          #c9a84c;
      --gold-light:    #e8c97a;
      --gold-pale:     #f5e6b8;
      --white:         #ffffff;
      --off-white:     #faf7ff;
      --text-light:    rgba(255,255,255,0.75);
      --text-muted:    rgba(255,255,255,0.5);
      --card-bg:       rgba(255,255,255,0.06);
      --card-border:   rgba(201,168,76,0.2);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--purple-deep);
      color: var(--white);
      overflow-x: hidden;
    }

    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--purple-deep); }
    ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

    /* ══════════════════════════════════════════
       NAV
    ══════════════════════════════════════════ */
    nav {
      position: fixed; top: 0; width: 100%; z-index: 200;
      padding: 0 6%;
      height: 72px;
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(45,10,78,0.85);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(201,168,76,0.15);
      transition: all .3s;
    }
    nav.scrolled {
      height: 60px;
      box-shadow: 0 4px 40px rgba(0,0,0,0.4);
    }

    .nav-logo {
      display: flex; align-items: center; gap: 10px;
      text-decoration: none;
    }
    .logo-icon {
      width: 38px; height: 38px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
      box-shadow: 0 0 15px rgba(201,168,76,0.4);
    }
    .logo-text {
      display: flex; flex-direction: column; line-height: 1;
    }
    .logo-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem; font-weight: 700;
      color: var(--gold-light);
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .logo-sub {
      font-size: 0.55rem; font-weight: 400;
      color: var(--text-muted);
      letter-spacing: 0.25em;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex; gap: 2.2rem; list-style: none;
    }
    .nav-links a {
      font-size: 0.78rem; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--text-light);
      text-decoration: none;
      transition: color .2s;
      position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0;
      width: 0; height: 1px; background: var(--gold);
      transition: width .3s;
    }
    .nav-links a:hover { color: var(--gold-light); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
      color: var(--purple-deep) !important;
      padding: 0.5rem 1.4rem;
      border-radius: 50px;
      font-weight: 600 !important;
      box-shadow: 0 4px 20px rgba(201,168,76,0.35);
      transition: all .25s !important;
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 30px rgba(201,168,76,0.5) !important; }

    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; border: none; background: none; padding: 4px;
    }
    .hamburger span {
      display: block; width: 22px; height: 1.5px;
      background: var(--gold-light); border-radius: 2px; transition: all .3s;
    }

    .mobile-menu {
      display: none;
      position: fixed; top: 72px; left: 0; right: 0;
      background: rgba(45,10,78,0.98);
      border-bottom: 1px solid rgba(201,168,76,0.15);
      padding: 2rem 6%;
      z-index: 199;
      flex-direction: column; gap: 1.5rem;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-size: 1rem; font-weight: 500; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--text-light);
      text-decoration: none; transition: color .2s;
    }
    .mobile-menu a:hover { color: var(--gold-light); }

    /* ══════════════════════════════════════════
       HERO
    ══════════════════════════════════════════ */
    #home {
      min-height: 100vh;
      display: flex; align-items: center;
      padding: 120px 6% 80px;
      position: relative; overflow: hidden;
    }

    /* Purple glow orbs */
    .orb {
      position: absolute; border-radius: 50%;
      pointer-events: none;
    }
    .orb-1 {
      width: 700px; height: 700px;
      top: -200px; right: -150px;
      background: radial-gradient(circle, rgba(123,47,190,0.35), transparent 65%);
      animation: pulse 8s ease-in-out infinite;
    }
    .orb-2 {
      width: 400px; height: 400px;
      bottom: -100px; left: -100px;
      background: radial-gradient(circle, rgba(201,168,76,0.12), transparent 65%);
      animation: pulse 10s ease-in-out infinite reverse;
    }
    .orb-3 {
      width: 300px; height: 300px;
      top: 30%; left: 35%;
      background: radial-gradient(circle, rgba(192,132,252,0.1), transparent 65%);
      animation: pulse 12s ease-in-out infinite;
    }

    @keyframes pulse {
      0%,100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.1); opacity: 0.7; }
    }

    /* Flower decorations */
    .flower-tl, .flower-tr, .flower-br {
      position: absolute; font-size: 4rem;
      opacity: 0.08; pointer-events: none;
      animation: sway 6s ease-in-out infinite;
    }
    .flower-tl { top: 80px; left: 3%; font-size: 8rem; animation-delay: 0s; }
    .flower-tr { top: 60px; right: 2%; font-size: 10rem; animation-delay: 1s; }
    .flower-br { bottom: 40px; right: 8%; font-size: 6rem; animation-delay: 2s; }

    @keyframes sway {
      0%,100% { transform: rotate(-3deg) scale(1); }
      50% { transform: rotate(3deg) scale(1.05); }
    }

    /* Floating particles */
    .particles { position: absolute; inset: 0; pointer-events: none; }
    .particle {
      position: absolute; border-radius: 50%;
      background: var(--gold);
      animation: sparkle linear infinite;
    }

    @keyframes sparkle {
      0%   { opacity: 0; transform: translateY(0) scale(0); }
      20%  { opacity: 1; transform: translateY(-20px) scale(1); }
      80%  { opacity: 0.5; }
      100% { opacity: 0; transform: translateY(-80px) scale(0.3); }
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: center;
      position: relative; z-index: 1;
      width: 100%;
    }

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      background: rgba(201,168,76,0.12);
      border: 1px solid rgba(201,168,76,0.3);
      padding: 0.4rem 1.2rem;
      border-radius: 50px;
      font-size: 0.72rem; font-weight: 500;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 1.5rem;
      animation: fadeUp .7s ease both;
    }
    .eyebrow-dot {
      width: 5px; height: 5px; border-radius: 50%;
      background: var(--gold); flex-shrink: 0;
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 6vw, 5rem);
      font-weight: 300; line-height: 1.05;
      color: var(--white);
      margin-bottom: 0.3rem;
      animation: fadeUp .7s .1s ease both;
    }
    .hero-title-script {
      font-family: 'Great Vibes', cursive;
      font-size: clamp(3.5rem, 7vw, 6rem);
      color: var(--gold-light);
      display: block; line-height: 1;
      text-shadow: 0 0 40px rgba(201,168,76,0.4);
      animation: fadeUp .7s .15s ease both;
    }
    .hero-title-last {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 6vw, 5rem);
      font-weight: 700; font-style: italic;
      color: var(--purple-light);
      animation: fadeUp .7s .2s ease both;
    }

    .hero-divider {
      display: flex; align-items: center; gap: 12px;
      margin: 1.5rem 0;
      animation: fadeUp .7s .25s ease both;
    }
    .hero-divider-line { flex: 1; max-width: 60px; height: 1px; background: var(--gold); opacity: 0.5; }
    .hero-divider-icon { color: var(--gold); font-size: 0.9rem; }

    .hero-desc {
      font-size: 1rem; font-weight: 300; line-height: 1.9;
      color: var(--text-light);
      margin-bottom: 2.5rem;
      animation: fadeUp .7s .3s ease both;
    }

    .hero-btns {
      display: flex; gap: 1rem; flex-wrap: wrap;
      animation: fadeUp .7s .35s ease both;
    }

    .btn-gold {
      display: inline-flex; align-items: center; gap: 8px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--purple-deep);
      padding: 0.9rem 2rem; border-radius: 50px;
      font-size: 0.85rem; font-weight: 600;
      letter-spacing: 0.05em; text-decoration: none;
      border: none; cursor: pointer;
      box-shadow: 0 6px 30px rgba(201,168,76,0.4);
      transition: all .25s;
    }
    .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(201,168,76,0.55); }

    .btn-outline {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent;
      color: var(--white);
      padding: 0.9rem 2rem; border-radius: 50px;
      font-size: 0.85rem; font-weight: 500;
      letter-spacing: 0.05em; text-decoration: none;
      border: 1px solid rgba(255,255,255,0.25);
      cursor: pointer; transition: all .25s;
    }
    .btn-outline:hover {
      border-color: var(--gold-light);
      color: var(--gold-light);
      transform: translateY(-2px);
    }

    /* Hero stats */
    .hero-stats {
      display: flex; gap: 2rem; margin-top: 3rem;
      animation: fadeUp .7s .4s ease both;
    }
    .stat { text-align: left; }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem; font-weight: 700;
      color: var(--gold-light); line-height: 1;
    }
    .stat-label {
      font-size: 0.7rem; font-weight: 400;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--text-muted);
    }
    .stat-divider { width: 1px; background: rgba(201,168,76,0.2); align-self: stretch; }

    /* Hero right — cake showcase */
    .hero-showcase {
      position: relative;
      display: flex; align-items: center; justify-content: center;
      animation: fadeUp .9s .2s ease both;
    }

    .showcase-ring {
      position: relative;
      width: min(420px, 90%);
      aspect-ratio: 1;
    }
    .showcase-circle {
      width: 100%; height: 100%; border-radius: 50%;
      background: radial-gradient(circle at 40% 35%, rgba(123,47,190,0.5), rgba(45,10,78,0.8));
      border: 1px solid rgba(201,168,76,0.2);
      display: flex; align-items: center; justify-content: center;
      position: relative;
      box-shadow:
        0 0 0 1px rgba(201,168,76,0.1),
        0 0 60px rgba(123,47,190,0.3),
        inset 0 0 60px rgba(45,10,78,0.5);
    }
    .showcase-emoji {
      font-size: 9rem;
      filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
    }

    /* Orbiting badges */
    .orbit-badge {
      position: absolute;
      background: rgba(45,10,78,0.9);
      border: 1px solid rgba(201,168,76,0.3);
      border-radius: 12px;
      padding: 0.6rem 1rem;
      backdrop-filter: blur(10px);
      white-space: nowrap;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    .orbit-badge-label { font-size: 0.65rem; color: var(--text-muted); }
    .orbit-badge-val   { font-size: 0.9rem; font-weight: 600; color: var(--gold-light); }
    .badge-top    { top: 5%; left: 50%; transform: translateX(-50%); animation: float 5s ease-in-out infinite; }
    .badge-right  { right: -8%; top: 40%; animation: float 6s 1s ease-in-out infinite; }
    .badge-bottom { bottom: 5%; left: 50%; transform: translateX(-50%); animation: float 7s 2s ease-in-out infinite; }
    .badge-left   { left: -8%; top: 40%; animation: float 5s 3s ease-in-out infinite; }

    @keyframes float {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(-8px); }
    }
    .badge-top.orbit-badge, .badge-bottom.orbit-badge {
      transform: translateX(-50%) translateY(0);
    }

    /* ══════════════════════════════════════════
       SECTION SHARED
    ══════════════════════════════════════════ */
    section { padding: 100px 6%; }

    .section-header { margin-bottom: 3.5rem; }
    .section-tag {
      font-family: 'Great Vibes', cursive;
      font-size: 1.8rem; color: var(--gold-light);
      display: block; margin-bottom: 0.3rem;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 600; color: var(--white);
      line-height: 1.15;
    }
    .section-title span { color: var(--purple-light); font-style: italic; }
    .section-sub {
      margin-top: 1rem;
      font-size: 0.95rem; font-weight: 300;
      color: var(--text-light); line-height: 1.9;
      max-width: 500px;
    }
    .gold-line {
      display: flex; align-items: center; gap: 12px;
      margin: 1rem 0 0;
    }
    .gold-line::before, .gold-line::after {
      content: ''; flex: 1; max-width: 40px;
      height: 1px; background: var(--gold); opacity: 0.5;
    }
    .gold-line-diamond { color: var(--gold); font-size: 0.5rem; }

    /* ══════════════════════════════════════════
       MENU
    ══════════════════════════════════════════ */
    #menu { background: linear-gradient(180deg, var(--purple-deep) 0%, #1a0535 100%); }

    .menu-tabs {
      display: flex; gap: 0.5rem; flex-wrap: wrap;
      margin-bottom: 3rem;
    }
    .tab-btn {
      padding: 0.55rem 1.4rem;
      border-radius: 50px;
      font-size: 0.78rem; font-weight: 500;
      letter-spacing: 0.08em; text-transform: uppercase;
      border: 1px solid rgba(201,168,76,0.25);
      background: transparent; color: var(--text-light);
      cursor: pointer; transition: all .2s;
    }
    .tab-btn:hover { border-color: var(--gold-light); color: var(--gold-light); }
    .tab-btn.active {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--purple-deep); border-color: transparent;
      font-weight: 600;
      box-shadow: 0 4px 20px rgba(201,168,76,0.35);
    }

    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.5rem;
    }

    .menu-card {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 20px;
      overflow: hidden;
      transition: all .3s;
      position: relative;
    }
    .menu-card:hover {
      transform: translateY(-6px);
      border-color: rgba(201,168,76,0.4);
      box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    }

    .menu-card-img {
      width: 100%; aspect-ratio: 4/3;
      background: linear-gradient(135deg, rgba(123,47,190,0.3), rgba(45,10,78,0.6));
      display: flex; align-items: center; justify-content: center;
      font-size: 5rem; position: relative;
      overflow: hidden;
    }
    .menu-card-badge {
      position: absolute; top: 12px; right: 12px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--purple-deep);
      font-size: 0.65rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 0.25rem 0.7rem; border-radius: 50px;
    }

    .menu-card-body { padding: 1.3rem; }
    .menu-card-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem; font-weight: 600;
      color: var(--white); margin-bottom: 0.4rem;
    }
    .menu-card-desc {
      font-size: 0.8rem; font-weight: 300;
      color: var(--text-muted); line-height: 1.7;
      margin-bottom: 1rem;
    }
    .menu-card-footer {
      display: flex; align-items: center; justify-content: space-between;
    }
    .menu-card-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem; font-weight: 700;
      color: var(--gold-light);
    }
    .menu-card-price span { font-size: 0.75rem; font-weight: 400; color: var(--text-muted); }

    .wa-btn {
      display: inline-flex; align-items: center; gap: 6px;
      background: #25D366; color: #fff;
      padding: 0.45rem 1rem; border-radius: 50px;
      font-size: 0.75rem; font-weight: 600;
      text-decoration: none; border: none; cursor: pointer;
      transition: all .2s;
      box-shadow: 0 4px 15px rgba(37,211,102,0.3);
    }
    .wa-btn:hover { background: #128C7E; transform: translateY(-1px); }
    .wa-icon { font-size: 1rem; }

    /* hidden tab panels */
    .menu-panel { display: none; }
    .menu-panel.active { display: block; }

    /* ══════════════════════════════════════════
       GALLERY
    ══════════════════════════════════════════ */
    #gallery { background: #1a0535; }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: auto;
      gap: 1rem;
    }
    .gallery-item {
      border-radius: 16px; overflow: hidden;
      aspect-ratio: 1;
      background: linear-gradient(135deg, rgba(123,47,190,0.3), rgba(45,10,78,0.7));
      display: flex; align-items: center; justify-content: center;
      font-size: 4rem; cursor: pointer;
      transition: all .3s; position: relative;
      border: 1px solid rgba(201,168,76,0.1);
    }
    .gallery-item:hover { transform: scale(1.03); border-color: rgba(201,168,76,0.35); }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
    .gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }

    .gallery-overlay {
      position: absolute; inset: 0;
      background: rgba(45,10,78,0.7);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; transition: opacity .3s;
    }
    .gallery-overlay-icon { font-size: 2rem; }

    /* ══════════════════════════════════════════
       ABOUT
    ══════════════════════════════════════════ */
    #about {
      background: var(--purple-deep);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: center;
    }

    .about-img-wrap { position: relative; }
    .about-main-img {
      width: 100%; aspect-ratio: 3/4;
      border-radius: 40px 10px 40px 10px;
      background: linear-gradient(160deg, rgba(123,47,190,0.4), rgba(45,10,78,0.8));
      display: flex; align-items: center; justify-content: center;
      font-size: 10rem;
      border: 1px solid rgba(201,168,76,0.15);
      box-shadow: 0 30px 80px rgba(0,0,0,0.4);
      position: relative; overflow: hidden;
    }
    .about-main-img::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(circle at 30% 20%, rgba(123,47,190,0.3), transparent 60%);
    }
    .about-accent {
      position: absolute; bottom: -16px; right: -16px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      width: 140px; height: 140px; border-radius: 50%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      color: var(--purple-deep);
      box-shadow: 0 10px 30px rgba(201,168,76,0.35);
    }
    .about-accent-num { font-size: 2rem; font-weight: 700; line-height: 1; }
    .about-accent-label { font-size: 0.65rem; font-weight: 600; text-align: center; letter-spacing: 0.05em; }

    .about-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; font-style: italic;
      color: var(--purple-light); line-height: 1.6;
      margin: 1.5rem 0;
      padding-left: 1.5rem;
      border-left: 2px solid var(--gold);
    }
    .about-list {
      list-style: none; display: flex; flex-direction: column; gap: 0.8rem;
      margin: 1.5rem 0;
    }
    .about-list li {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.9rem; font-weight: 300; color: var(--text-light);
    }
    .about-list li::before {
      content: '✦'; color: var(--gold); font-size: 0.5rem; flex-shrink: 0;
    }

    /* ══════════════════════════════════════════
       ORDER / CONTACT
    ══════════════════════════════════════════ */
    #order {
      background: linear-gradient(180deg, #1a0535 0%, var(--purple-deep) 100%);
    }

    .order-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: start;
    }

    .contact-cards { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
    .contact-card {
      display: flex; align-items: center; gap: 1rem;
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 14px; padding: 1rem 1.2rem;
      text-decoration: none; color: var(--white);
      transition: all .25s;
    }
    .contact-card:hover {
      border-color: rgba(201,168,76,0.4);
      transform: translateX(6px);
    }
    .contact-card-icon {
      width: 44px; height: 44px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; flex-shrink: 0;
    }
    .icon-wa   { background: rgba(37,211,102,0.15); }
    .icon-call { background: rgba(201,168,76,0.15); }
    .icon-ig   { background: rgba(192,132,252,0.15); }
    .icon-loc  { background: rgba(224,122,138,0.15); }
    .contact-card-label { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }
    .contact-card-val   { font-size: 0.95rem; font-weight: 500; color: var(--white); }

    /* Order form */
    .order-form {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 24px; padding: 2.5rem;
    }
    .form-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; font-weight: 600;
      color: var(--white); margin-bottom: 0.3rem;
    }
    .form-sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2rem; }

    .form-group { margin-bottom: 1.2rem; }
    .form-label {
      display: block; font-size: 0.75rem; font-weight: 500;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--gold-light); margin-bottom: 0.5rem;
    }
    .form-input, .form-select, .form-textarea {
      width: 100%;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(201,168,76,0.2);
      border-radius: 10px; padding: 0.75rem 1rem;
      color: var(--white); font-family: 'Jost', sans-serif;
      font-size: 0.9rem; font-weight: 300;
      transition: border-color .2s;
      outline: none;
    }
    .form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      border-color: rgba(201,168,76,0.5);
      background: rgba(255,255,255,0.07);
    }
    .form-select option { background: var(--purple-deep); }
    .form-textarea { resize: vertical; min-height: 100px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

    .form-submit {
      width: 100%; margin-top: 0.5rem;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--purple-deep);
      padding: 1rem; border-radius: 50px;
      font-family: 'Jost', sans-serif;
      font-size: 0.9rem; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase;
      border: none; cursor: pointer;
      box-shadow: 0 6px 30px rgba(201,168,76,0.35);
      transition: all .25s;
    }
    .form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(201,168,76,0.5); }

    .wa-submit {
      width: 100%; margin-top: 0.8rem;
      background: rgba(37,211,102,0.1);
      border: 1px solid rgba(37,211,102,0.3);
      color: #25D366;
      padding: 0.85rem; border-radius: 50px;
      font-family: 'Jost', sans-serif;
      font-size: 0.85rem; font-weight: 600;
      letter-spacing: 0.06em;
      cursor: pointer; transition: all .25s;
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }
    .wa-submit:hover { background: rgba(37,211,102,0.2); transform: translateY(-1px); }

    /* ══════════════════════════════════════════
       TESTIMONIALS
    ══════════════════════════════════════════ */
    #testimonials {
      background: #1a0535;
      text-align: center;
    }
    #testimonials .section-header { text-align: center; }
    #testimonials .section-sub { margin: 0 auto; }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }
    .testi-card {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 20px; padding: 2rem;
      text-align: left; transition: all .3s;
    }
    .testi-card:hover {
      transform: translateY(-4px);
      border-color: rgba(201,168,76,0.35);
    }
    .testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; }
    .testi-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem; font-style: italic;
      color: var(--text-light); line-height: 1.8;
      margin-bottom: 1.5rem;
    }
    .testi-author { display: flex; align-items: center; gap: 10px; }
    .testi-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: linear-gradient(135deg, var(--purple-mid), var(--purple-light));
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
    }
    .testi-name { font-size: 0.85rem; font-weight: 600; color: var(--white); }
    .testi-loc  { font-size: 0.7rem; color: var(--text-muted); }

    /* ══════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════ */
    footer {
      background: #0f0220;
      border-top: 1px solid rgba(201,168,76,0.1);
      padding: 3rem 6% 2rem;
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr;
      gap: 3rem; margin-bottom: 2.5rem;
    }
    .footer-brand-desc {
      font-size: 0.88rem; font-weight: 300;
      color: var(--text-muted); line-height: 1.9;
      margin-top: 1rem; max-width: 280px;
    }
    .footer-heading {
      font-size: 0.7rem; font-weight: 600;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold-light); margin-bottom: 1.2rem;
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
    .footer-links a {
      font-size: 0.85rem; font-weight: 300;
      color: var(--text-muted); text-decoration: none;
      transition: color .2s;
    }
    .footer-links a:hover { color: var(--gold-light); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 1.5rem;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 1rem;
    }
    .footer-copy { font-size: 0.78rem; color: var(--text-muted); }
    .footer-socials { display: flex; gap: 1rem; }
    .social-link {
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; text-decoration: none;
      transition: all .2s; color: var(--text-muted);
    }
    .social-link:hover {
      background: rgba(201,168,76,0.15);
      border-color: rgba(201,168,76,0.3);
      color: var(--gold-light);
    }

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

    .reveal {
      opacity: 0; transform: translateY(30px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* WhatsApp float */
    .wa-float {
      position: fixed; bottom: 28px; right: 28px; z-index: 300;
      width: 56px; height: 56px; border-radius: 50%;
      background: #25D366;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; text-decoration: none;
      box-shadow: 0 6px 30px rgba(37,211,102,0.5);
      transition: all .25s;
      animation: pulse-wa 3s infinite;
    }
    .wa-float:hover { transform: scale(1.1); }
    @keyframes pulse-wa {
      0%,100% { box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
      50%      { box-shadow: 0 6px 50px rgba(37,211,102,0.8); }
    }

    /* ══════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .hero-grid { grid-template-columns: 1fr; text-align: center; }
      .hero-showcase { display: none; }
      .hero-btns { justify-content: center; }
      .hero-stats { justify-content: center; }
      .gallery-grid { grid-template-columns: repeat(2,1fr); }
      .gallery-item.wide { grid-column: span 1; aspect-ratio: 1; }
      .gallery-item.tall { grid-row: span 1; aspect-ratio: 1; }
      #about { grid-template-columns: 1fr; }
      .about-img-wrap { max-width: 400px; margin: 0 auto; }
      .order-wrap { grid-template-columns: 1fr; }
      .testi-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      nav { padding: 0 5%; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      section { padding: 70px 5%; }
      .gallery-grid { grid-template-columns: repeat(2,1fr); }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }