
    :root {
      --cream: #F5EFE6;
      --linen: #E4D5C3;
      --gold: #C8A97E;
      --earth: #6B4F3B;
      --charcoal: #2C2C2C;
      --white: #FFFFFF;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      color: var(--charcoal);
      background:
        radial-gradient(circle at 20% 15%, rgba(200, 169, 126, 0.18), transparent 32rem),
        linear-gradient(135deg, #fffaf3 0%, var(--cream) 45%, #eadcca 100%);
      overflow-x: hidden;
    }

    body.loading {
      overflow: hidden;
    }

    ::selection {
      color: var(--white);
      background: var(--earth);
    }

    .font-display {
      font-family: 'Playfair Display', serif;
    }

    .glass {
      background: rgba(255, 255, 255, 0.16);
      border: 1px solid rgba(255, 255, 255, 0.32);
      box-shadow: 0 18px 58px rgba(44, 44, 44, 0.12);
      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);
    }

    .glass-warm {
      background: rgba(245, 239, 230, 0.72);
      border: 1px solid rgba(255, 255, 255, 0.72);
      box-shadow: 0 22px 70px rgba(107, 79, 59, 0.12);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
    }

    .noise {
      position: fixed;
      inset: 0;
      z-index: 60;
      pointer-events: none;
      opacity: 0.035;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    .preloader {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: grid;
      place-items: center;
      background: var(--cream);
      transition: opacity 0.75s ease, visibility 0.75s ease;
    }

    .preloader.hide {
      opacity: 0;
      visibility: hidden;
    }

    .loader-ring {
      width: 6.75rem;
      height: 6.75rem;
      border-radius: 50%;
      border: 1px solid rgba(107, 79, 59, 0.22);
      border-top-color: var(--gold);
      animation: spin 1.1s linear infinite;
    }

    .loader-mark {
      position: absolute;
      font-family: 'Playfair Display', serif;
      color: var(--earth);
      letter-spacing: 0.18em;
      font-size: 0.7rem;
      text-transform: uppercase;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    #progress {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 90;
      height: 3px;
      width: 0%;
      background: linear-gradient(90deg, var(--gold), var(--earth));
      box-shadow: 0 0 18px rgba(200, 169, 126, 0.55);
    }

    .cursor-dot,
    .cursor-ring {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 95;
      pointer-events: none;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: opacity 0.2s ease;
    }

    .cursor-dot {
      width: 7px;
      height: 7px;
      background: var(--gold);
    }

    .cursor-ring {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(107, 79, 59, 0.45);
      transition: width 0.18s ease, height 0.18s ease, border-color 0.18s ease, opacity 0.2s ease;
    }

    .cursor-ring.active {
      width: 58px;
      height: 58px;
      border-color: rgba(200, 169, 126, 0.85);
    }

    .navbar.scrolled {
      background: rgba(245, 239, 230, 0.82);
      border-bottom: 1px solid rgba(107, 79, 59, 0.12);
      box-shadow: 0 18px 50px rgba(44, 44, 44, 0.08);
    }

    .navbar.scrolled .nav-brand,
    .navbar.scrolled .nav-menu,
    .navbar.scrolled .nav-logo-mark,
    .navbar.scrolled #menuToggle {
      color: var(--charcoal);
    }

    .navbar.scrolled .nav-logo-mark,
    .navbar.scrolled #menuToggle {
      border-color: rgba(107, 79, 59, 0.16);
      background: rgba(255, 255, 255, 0.58);
    }

    main > section:not(.hero):not(.page-hero):not(.parallax-retreat) {
      padding-top: clamp(4rem, 7vw, 6.5rem) !important;
      padding-bottom: clamp(4rem, 7vw, 6.5rem) !important;
    }

    .nav-link {
      position: relative;
    }

    .nav-menu {
      gap: 1.15rem !important;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -0.45rem;
      width: 0;
      height: 1px;
      background: var(--gold);
      transition: width 0.3s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }

    .hero {
      min-height: 94svh;
      background-image:
        linear-gradient(180deg, rgba(20, 19, 17, 0.42), rgba(20, 19, 17, 0.58)),
        url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?auto=format&fit=crop&w=2200&q=85');
      background-position: center;
      background-size: cover;
      isolation: isolate;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 24vh;
      background: linear-gradient(to bottom, transparent, var(--cream));
      z-index: -1;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: inherit;
      transform: scale(1.05);
      animation: slowZoom 18s ease-in-out infinite alternate;
      z-index: -3;
    }

    @keyframes slowZoom {
      from { transform: scale(1.04); }
      to { transform: scale(1.14); }
    }

    .particle {
      position: absolute;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(245, 239, 230, 0.58);
      animation: floatParticle 8s ease-in-out infinite;
    }

    @keyframes floatParticle {
      0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.25; }
      50% { transform: translate3d(18px, -42px, 0); opacity: 0.95; }
    }

    .btn-luxe {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    }

    .btn-luxe::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.42) 45%, transparent 70%);
      transform: translateX(-120%);
      transition: transform 0.7s ease;
    }

    .btn-luxe:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 38px rgba(44, 44, 44, 0.18);
    }

    .btn-luxe:hover::before {
      transform: translateX(120%);
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      color: var(--earth);
      font-size: 0.76rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
    }

    .section-kicker::before {
      content: "";
      width: 2.25rem;
      height: 1px;
      background: var(--gold);
    }

    .section-soft {
      position: relative;
    }

    .section-soft::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(120deg, rgba(255,255,255,0.44), transparent 34%),
        radial-gradient(circle at 84% 10%, rgba(200,169,126,0.18), transparent 22rem);
      mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
    }

    .image-frame {
      overflow: hidden;
      background: var(--linen);
    }

    .image-frame img {
      transition: transform 0.9s cubic-bezier(.2,.8,.2,1), filter 0.7s ease;
    }

    .image-frame:hover img {
      transform: scale(1.08);
      filter: saturate(1.07) contrast(1.04);
    }

    .service-card,
    .benefit-card,
    .program-card,
    .teacher-card,
    .faq-item {
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    }

    .service-card:hover,
    .benefit-card:hover,
    .program-card:hover,
    .teacher-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 80px rgba(107, 79, 59, 0.18);
    }

    .icon-bloom {
      transition: transform 0.35s ease, background 0.35s ease;
    }

    .service-card:hover .icon-bloom,
    .benefit-card:hover .icon-bloom {
      transform: translateY(-5px) rotate(-4deg) scale(1.07);
      background: var(--gold);
      color: var(--white);
    }

    .parallax-retreat {
      background-image:
        linear-gradient(90deg, rgba(20, 19, 17, 0.72), rgba(44, 44, 44, 0.26)),
        url('https://images.unsplash.com/photo-1545389336-cf090694435e?auto=format&fit=crop&w=2200&q=85');
      background-attachment: fixed;
      background-position: center;
      background-size: cover;
    }

    .home-about-portrait {
      min-height: 34rem;
      background-image:
        linear-gradient(180deg, rgba(44,44,44,0.08), rgba(44,44,44,0.52)),
        url('https://images.unsplash.com/photo-1545205597-3d9d02c29597?auto=format&fit=crop&w=1400&q=85');
      background-position: center;
      background-size: cover;
    }

    .ritual-strip {
      background:
        linear-gradient(120deg, rgba(44, 44, 44, 0.92), rgba(107, 79, 59, 0.78)),
        url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?auto=format&fit=crop&w=1800&q=85');
      background-position: center;
      background-size: cover;
    }

    .deep-healing {
      background:
        linear-gradient(115deg, rgba(33, 26, 22, 0.95), rgba(107, 79, 59, 0.72)),
        url('https://images.unsplash.com/photo-1600881333168-2ef49b341f30?auto=format&fit=crop&w=1800&q=85');
      background-position: center;
      background-size: cover;
    }

    .course-card,
    .shop-card {
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .course-card:hover,
    .shop-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 80px rgba(107, 79, 59, 0.18);
    }

    #cartDrawer {
      border-left: 1px solid rgba(107, 79, 59, 0.12);
    }

    #cartItems::-webkit-scrollbar {
      width: 8px;
    }

    #cartItems::-webkit-scrollbar-thumb {
      border-radius: 999px;
      background: rgba(107, 79, 59, 0.22);
    }

    .qty {
      color: var(--earth);
      font-weight: 700;
    }

    .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
      background: var(--earth);
      opacity: 0.25;
    }

    .swiper-pagination-bullet-active {
      opacity: 1;
      background: var(--gold);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, opacity 0.35s ease;
      opacity: 0;
    }

    .faq-item.open .faq-answer {
      opacity: 1;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    .faq-icon {
      transition: transform 0.3s ease;
    }

    .floating-action {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .floating-action:hover {
      transform: translateY(-4px) scale(1.04);
      box-shadow: 0 18px 38px rgba(44, 44, 44, 0.22);
    }

    .scroll-indicator {
      animation: scrollPulse 1.8s ease-in-out infinite;
    }

    @keyframes scrollPulse {
      0%, 100% { transform: translateY(0); opacity: 0.55; }
      50% { transform: translateY(10px); opacity: 1; }
    }

    .marquee-track {
      animation: marquee 28s linear infinite;
    }

    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    .field {
      width: 100%;
      border-radius: 1.25rem;
      border: 1px solid rgba(107, 79, 59, 0.16);
      background: rgba(255, 255, 255, 0.62);
      padding: 1rem 1.1rem;
      outline: none;
      transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    }

    .field:focus {
      border-color: var(--gold);
      background: rgba(255, 255, 255, 0.9);
      box-shadow: 0 0 0 4px rgba(200, 169, 126, 0.18);
    }

    @media (max-width: 1024px) {
      .cursor-dot,
      .cursor-ring {
        display: none;
      }

      .parallax-retreat {
        background-attachment: scroll;
      }

      #mobileMenu {
        position: fixed;
        top: 4.75rem;
        left: 1rem;
        right: 1rem;
        z-index: 70;
        margin: 0;
        max-height: calc(100svh - 6rem);
        overflow-y: auto;
      }
    }

    @media (max-width: 767px) {
      .hero {
        min-height: 96svh;
      }

      .section-kicker {
        letter-spacing: 0.14em;
      }
    }
  

.page-hero {
  min-height: 64svh;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20, 19, 17, 0.38), rgba(20, 19, 17, 0.68));
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18vh;
  z-index: -1;
  background: linear-gradient(to bottom, transparent, var(--cream));
}

.active-page {
  color: var(--gold);
}

.navbar.scrolled .active-page {
  color: var(--earth);
}

.detail-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  color: rgba(44, 44, 44, 0.72);
  line-height: 1.8;
}

.detail-list li::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  margin-top: 0.7rem;
  border-radius: 999px;
  background: var(--gold);
  flex: none;
}
