:root {
            --bg-main: #fff8e8;
            --bg-soft: #fff1ca;
            --bg-dark: #14110b;
            --bg-card: rgba(255, 255, 255, .78);
            --text-main: #1d170d;
            --text-soft: #6f6148;
            --gold: #d99b22;
            --gold-light: #ffc857;
            --orange: #ef7d21;
            --brown: #4b2f16;
            --cream: #fff9ed;
            --line: rgba(75, 47, 22, .13);
            --shadow: 0 24px 80px rgba(77, 46, 9, .16);
            --shadow-soft: 0 14px 40px rgba(77, 46, 9, .12);
            --radius-xl: 30px;
            --radius-lg: 22px;
            --radius-md: 16px;
            --container: 1180px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: var(--text-main);
            background:
                radial-gradient(circle at top left, rgba(255, 200, 87, .46), transparent 34%),
                radial-gradient(circle at 90% 16%, rgba(239, 125, 33, .22), transparent 28%),
                linear-gradient(180deg, #fff7e3 0%, #fffaf0 42%, #fff3d5 100%);
            overflow-x: hidden;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            pointer-events: none;
            opacity: .32;
            background-image:
                linear-gradient(rgba(75, 47, 22, .05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(75, 47, 22, .05) 1px, transparent 1px);
            background-size: 38px 38px;
            mask-image: linear-gradient(to bottom, black, transparent 88%);
            z-index: -2;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            width: min(100% - 32px, var(--container));
            margin-inline: auto;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(18px);
            background: rgba(255, 248, 232, .78);
            border-bottom: 1px solid rgba(75, 47, 22, .08);
        }

        .nav {
            height: 78px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 220px;
        }

        .brand-mark {
            width: 48px;
            height: 48px;
            border-radius: 18px;
            position: relative;
            display: grid;
            place-items: center;
            overflow: hidden;
            color: #fff;
            background:
                radial-gradient(circle at 30% 20%, #ffe6a3, transparent 32%),
                linear-gradient(135deg, #2a1a0d, #b56c16 58%, #f2b335);
            box-shadow: 0 13px 32px rgba(87, 46, 5, .22);
        }

        .brand-mark::before {
            content: "";
            width: 22px;
            height: 22px;
            border: 2px solid rgba(255, 255, 255, .9);
            transform: rotate(45deg);
            border-radius: 7px;
            position: absolute;
        }

        .brand-mark::after {
            content: "CP";
            font-family: 'Cinzel', serif;
            font-weight: 800;
            font-size: 12px;
            letter-spacing: .7px;
            z-index: 2;
        }

        .brand-text strong {
            display: block;
            font-family: 'Cinzel', serif;
            font-size: 18px;
            line-height: 1;
            letter-spacing: .7px;
        }

        .brand-text span {
            display: block;
            margin-top: 4px;
            font-size: 12px;
            color: var(--text-soft);
            font-weight: 700;
            letter-spacing: .3px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 6px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .58);
            border: 1px solid rgba(75, 47, 22, .08);
        }

        .nav-links a {
            padding: 10px 14px;
            border-radius: 999px;
            font-size: 13px;
            color: #4f3d23;
            font-weight: 800;
            transition: .2s ease;
        }

        .nav-links a:hover {
            background: #20150c;
            color: #fff5df;
            transform: translateY(-1px);
        }

        .nav-action {
            display: flex;
            justify-content: flex-end;
            min-width: 220px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border: 0;
            cursor: pointer;
            font-family: inherit;
            font-weight: 900;
            border-radius: 999px;
            padding: 13px 18px;
            line-height: 1;
            transition: .2s ease;
            white-space: nowrap;
        }

        .btn-primary {
            color: #1b1005;
            background: linear-gradient(135deg, #ffd66b, #ef8c26);
            box-shadow: 0 16px 34px rgba(198, 101, 13, .27);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 42px rgba(198, 101, 13, .36);
        }

        .btn-dark {
            color: #fff5df;
            background: linear-gradient(135deg, #20150c, #4b2f16);
            box-shadow: 0 16px 34px rgba(20, 17, 11, .25);
        }

        .btn-dark:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 42px rgba(20, 17, 11, .35);
        }

        .btn-ghost {
            color: #2c1d0d;
            border: 1px solid rgba(75, 47, 22, .16);
            background: rgba(255, 255, 255, .58);
        }

        .btn-ghost:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, .9);
        }

        .mobile-menu-btn {
            display: none;
            width: 46px;
            height: 46px;
            border: 0;
            border-radius: 16px;
            background: #20150c;
            color: #fff8e8;
            cursor: pointer;
            font-size: 22px;
            line-height: 1;
        }

        .mobile-panel {
            display: none;
            padding: 0 0 18px;
        }

        .mobile-panel.active {
            display: block;
        }

        .mobile-panel a {
            display: block;
            padding: 14px 16px;
            margin-top: 8px;
            border-radius: 16px;
            background: rgba(255, 255, 255, .66);
            border: 1px solid rgba(75, 47, 22, .08);
            font-weight: 900;
            color: #3d2812;
        }

        .hero {
            position: relative;
            padding: 76px 0 58px;
            overflow: hidden;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.02fr .98fr;
            gap: 42px;
            align-items: center;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 13px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .68);
            border: 1px solid rgba(75, 47, 22, .1);
            color: #5a3c17;
            font-size: 13px;
            font-weight: 900;
            box-shadow: 0 10px 30px rgba(77, 46, 9, .08);
        }

        .eyebrow i {
            width: 9px;
            height: 9px;
            border-radius: 999px;
            background: var(--orange);
            box-shadow: 0 0 0 7px rgba(239, 125, 33, .13);
        }

        .hero-title {
            margin: 24px 0 18px;
            font-family: 'Cinzel', serif;
            font-size: clamp(42px, 7vw, 86px);
            line-height: .95;
            letter-spacing: -2px;
        }

        .hero-title span {
            display: inline-block;
            background: linear-gradient(135deg, #20150c, #95520e 50%, #ef8c26);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero-desc {
            max-width: 640px;
            margin: 0 0 28px;
            color: var(--text-soft);
            font-size: clamp(16px, 2vw, 19px);
            line-height: 1.8;
            font-weight: 600;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 28px;
        }

        .hero-note {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            max-width: 650px;
        }

        .note-card {
            padding: 15px;
            border-radius: 20px;
            border: 1px solid rgba(75, 47, 22, .1);
            background: rgba(255, 255, 255, .62);
            box-shadow: 0 12px 30px rgba(77, 46, 9, .08);
        }

        .note-card strong {
            display: block;
            font-size: 22px;
            margin-bottom: 4px;
            color: #28180b;
        }

        .note-card span {
            display: block;
            color: var(--text-soft);
            font-weight: 800;
            font-size: 12px;
            line-height: 1.35;
        }

        .hero-visual {
            position: relative;
            min-height: 620px;
            display: grid;
            place-items: center;
        }

        .mandala {
            position: absolute;
            width: min(88vw, 560px);
            aspect-ratio: 1;
            border-radius: 50%;
            background:
                repeating-conic-gradient(from 0deg, rgba(75, 47, 22, .13) 0 8deg, transparent 8deg 16deg),
                radial-gradient(circle, rgba(255, 255, 255, .8) 0 23%, rgba(255, 200, 87, .33) 24% 38%, transparent 39%);
            animation: slowSpin 34s linear infinite;
            opacity: .86;
            filter: drop-shadow(0 30px 70px rgba(77, 46, 9, .12));
        }

        .mandala::before,
        .mandala::after {
            content: "";
            position: absolute;
            inset: 11%;
            border-radius: 50%;
            border: 1px solid rgba(75, 47, 22, .17);
        }

        .mandala::after {
            inset: 23%;
            border-style: dashed;
        }

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

        .hero-product-stage {
            position: relative;
            z-index: 2;
            width: min(100%, 560px);
            padding: 14px;
            border-radius: 40px;
            background:
                radial-gradient(circle at top left, rgba(255, 214, 107, .35), transparent 34%),
                rgba(255, 255, 255, .42);
            border: 1px solid rgba(75, 47, 22, .1);
            box-shadow: 0 34px 90px rgba(70, 39, 8, .16);
            backdrop-filter: blur(10px);
            transform: rotate(-1.5deg);
        }

        .hero-product-stage::before {
            content: "";
            position: absolute;
            inset: 14px;
            border-radius: 30px;
            border: 1px solid rgba(255, 214, 107, .28);
            pointer-events: none;
            z-index: 3;
        }

        .hero-product-img {
            position: relative;
            z-index: 2;
            width: 100%;
            aspect-ratio: 1200 / 630;
            height: auto;
            border-radius: 30px;
            object-fit: cover;
            filter: drop-shadow(0 24px 34px rgba(42, 24, 7, .18));
        }

        .floating-chip {
            position: absolute;
            z-index: 4;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .78);
            border: 1px solid rgba(75, 47, 22, .1);
            box-shadow: var(--shadow-soft);
            backdrop-filter: blur(16px);
            font-weight: 900;
            color: #2d1d0c;
        }

        .floating-chip i {
            width: 28px;
            height: 28px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: #20150c;
            color: #ffd66b;
            font-style: normal;
            font-size: 14px;
        }

        .chip-one {
            left: 1%;
            top: 16%;
        }

        .chip-two {
            right: 0;
            bottom: 18%;
        }

        .section {
            padding: 74px 0;
        }

        .section-head {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 26px;
            margin-bottom: 30px;
        }

        .section-kicker {
            display: inline-flex;
            padding: 8px 13px;
            border-radius: 999px;
            color: #6f3b0c;
            background: rgba(255, 200, 87, .26);
            border: 1px solid rgba(239, 125, 33, .18);
            font-size: 13px;
            font-weight: 900;
        }

        .section-title {
            margin: 13px 0 0;
            font-family: 'Cinzel', serif;
            font-size: clamp(30px, 4vw, 52px);
            line-height: 1.05;
            letter-spacing: -.9px;
        }

        .section-desc {
            max-width: 520px;
            color: var(--text-soft);
            line-height: 1.75;
            font-weight: 650;
            margin: 0;
        }

        .intro-panel {
            position: relative;
            overflow: hidden;
            padding: 34px;
            border-radius: var(--radius-xl);
            background:
                radial-gradient(circle at top right, rgba(255, 200, 87, .35), transparent 31%),
                linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(255, 243, 213, .72));
            border: 1px solid rgba(75, 47, 22, .12);
            box-shadow: var(--shadow);
        }

        .intro-grid {
            display: grid;
            grid-template-columns: .86fr 1.14fr;
            gap: 28px;
            align-items: center;
        }

        .intro-carousel {
            position: relative;
            min-height: 430px;
            border-radius: 34px;
            overflow: hidden;
            background:
                radial-gradient(circle at 50% 22%, rgba(255, 214, 107, .45), transparent 28%),
                radial-gradient(circle at 50% 70%, rgba(239, 125, 33, .25), transparent 38%),
                linear-gradient(135deg, #20150c, #553214);
            box-shadow:
                inset 0 0 0 1px rgba(255, 230, 166, .18),
                0 24px 70px rgba(77, 46, 9, .18);
        }

        .intro-carousel::before {
            content: "";
            position: absolute;
            inset: 18px;
            border-radius: 26px;
            border: 1px solid rgba(255, 230, 166, .18);
            pointer-events: none;
            z-index: 4;
        }

        .intro-slide {
            position: absolute;
            inset: 0;
            display: grid;
            grid-template-columns: 1fr;
            align-items: center;
            justify-items: center;
            padding: 22px 22px 76px;
            opacity: 0;
            transform: scale(.96) translateX(22px);
            transition: opacity .55s ease, transform .55s ease;
            pointer-events: none;
        }

        .intro-slide.active {
            opacity: 1;
            transform: scale(1) translateX(0);
            pointer-events: auto;
        }

        .intro-slide img {
            width: min(92%, 360px);
            height: 310px;
            object-fit: contain;
            filter: drop-shadow(0 26px 24px rgba(0, 0, 0, .32));
            transform: translateY(-4px);
        }

        .intro-slide-caption {
            position: absolute;
            left: 22px;
            right: 22px;
            bottom: 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            padding: 14px 16px;
            border-radius: 22px;
            color: #fff7e3;
            background: rgba(20, 17, 11, .66);
            border: 1px solid rgba(255, 230, 166, .18);
            backdrop-filter: blur(14px);
            z-index: 5;
        }

        .intro-slide-caption strong {
            display: block;
            font-family: 'Cinzel', serif;
            font-size: 20px;
            line-height: 1.1;
            letter-spacing: .2px;
        }

        .intro-slide-caption span {
            display: block;
            margin-top: 4px;
            color: rgba(255, 247, 227, .72);
            font-size: 12px;
            font-weight: 750;
            line-height: 1.35;
        }

        .intro-slide-badge {
            flex: 0 0 auto;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 9px 12px;
            border-radius: 999px;
            color: #1b1005;
            background: linear-gradient(135deg, #ffd66b, #ef8c26);
            font-size: 12px;
            font-weight: 950;
            white-space: nowrap;
        }

        .intro-carousel-controls {
            position: absolute;
            top: 50%;
            left: 14px;
            right: 14px;
            z-index: 8;
            display: flex;
            justify-content: space-between;
            pointer-events: none;
            transform: translateY(-50%);
        }

        .intro-carousel-btn {
            width: 42px;
            height: 42px;
            border: 1px solid rgba(255, 230, 166, .18);
            border-radius: 999px;
            display: grid;
            place-items: center;
            color: #fff4d8;
            background: rgba(20, 17, 11, .62);
            box-shadow: 0 14px 34px rgba(0, 0, 0, .2);
            backdrop-filter: blur(14px);
            cursor: pointer;
            pointer-events: auto;
            transition: .2s ease;
            font-size: 22px;
            line-height: 1;
        }

        .intro-carousel-btn:hover {
            transform: translateY(-2px);
            background: rgba(255, 214, 107, .9);
            color: #1b1005;
        }

        .intro-carousel-dots {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 9px;
            z-index: 9;
            display: flex;
            justify-content: center;
            gap: 7px;
        }

        .intro-dot {
            width: 9px;
            height: 9px;
            padding: 0;
            border: 0;
            border-radius: 999px;
            cursor: pointer;
            background: rgba(255, 247, 227, .38);
            transition: .2s ease;
        }

        .intro-dot.active {
            width: 28px;
            background: linear-gradient(135deg, #ffd66b, #ef8c26);
        }

        .intro-content h2 {
            margin: 0 0 16px;
            font-size: clamp(28px, 4vw, 46px);
            line-height: 1.05;
            letter-spacing: -1px;
        }

        .intro-content p {
            margin: 0 0 18px;
            color: var(--text-soft);
            line-height: 1.78;
            font-size: 16px;
            font-weight: 600;
        }

        .mini-list {
            display: grid;
            gap: 10px;
            margin-top: 24px;
        }

        .mini-item {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            padding: 14px;
            border-radius: 18px;
            background: rgba(255, 255, 255, .68);
            border: 1px solid rgba(75, 47, 22, .1);
        }

        .mini-icon {
            width: 34px;
            height: 34px;
            flex: 0 0 34px;
            display: grid;
            place-items: center;
            border-radius: 13px;
            color: #1f1409;
            background: linear-gradient(135deg, #ffd66b, #ef8c26);
            font-weight: 950;
        }

        .mini-item strong {
            display: block;
            margin-bottom: 3px;
        }

        .mini-item span {
            display: block;
            color: var(--text-soft);
            font-size: 14px;
            line-height: 1.5;
            font-weight: 650;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        .product-card {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-xl);
            padding: 18px;
            min-height: 570px;
            background: rgba(255, 255, 255, .74);
            border: 1px solid rgba(75, 47, 22, .11);
            box-shadow: 0 18px 50px rgba(77, 46, 9, .1);
            transition: .24s ease;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 28px 70px rgba(77, 46, 9, .18);
        }

        .product-card::before {
            content: "";
            position: absolute;
            inset: 0;
            opacity: .85;
            background:
                radial-gradient(circle at top right, var(--card-glow), transparent 46%),
                linear-gradient(180deg, rgba(255, 255, 255, .7), transparent);
            pointer-events: none;
        }

        .product-card.melati {
            --card-glow: rgba(255, 255, 255, .95);
        }

        .product-card.cendana {
            --card-glow: rgba(214, 139, 58, .38);
        }

        .product-card.kemenyan {
            --card-glow: rgba(111, 71, 38, .34);
        }

        .product-card.booster {
            --card-glow: rgba(255, 119, 48, .38);
        }

        .product-top,
        .product-image-wrap,
        .product-body,
        .product-action {
            position: relative;
            z-index: 2;
        }

        .product-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
        }

        .product-badge {
            padding: 8px 11px;
            border-radius: 999px;
            background: rgba(32, 21, 12, .92);
            color: #fff1ca;
            font-size: 12px;
            font-weight: 900;
        }

        .product-number {
            color: rgba(75, 47, 22, .2);
            font-family: 'Cinzel', serif;
            font-size: 30px;
            line-height: 1;
            font-weight: 900;
        }

        .product-image-wrap {
            min-height: 245px;
            display: grid;
            place-items: center;
            margin: 4px 0 18px;
            padding: 10px;
            border-radius: 24px;
            background:
                radial-gradient(circle at 50% 48%, rgba(255, 214, 107, .26), transparent 45%),
                rgba(255, 255, 255, .28);
            border: 1px solid rgba(75, 47, 22, .08);
        }

        .product-image {
            width: 100%;
            max-width: 250px;
            height: 245px;
            object-fit: contain;
            filter: drop-shadow(0 20px 22px rgba(42, 24, 7, .16));
            transition: .28s ease;
        }

        .product-card:hover .product-image {
            transform: scale(1.035) rotate(-.6deg);
        }

        .product-body {
            flex: 1;
        }

        .product-body h3 {
            margin: 0 0 10px;
            font-size: 22px;
            line-height: 1.1;
            letter-spacing: -.4px;
        }

        .product-body .tagline {
            margin: 0 0 12px;
            color: #9a5712;
            font-weight: 900;
            line-height: 1.45;
        }

        .product-body .desc {
            margin: 0;
            color: var(--text-soft);
            font-size: 14px;
            line-height: 1.7;
            font-weight: 620;
        }

        .product-action {
            margin-top: 20px;
        }

        .product-action .btn {
            width: 100%;
            padding: 14px;
        }

        .showcase-strip {
            margin-top: 28px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }

        .showcase-mini {
            position: relative;
            min-height: 130px;
            overflow: hidden;
            border-radius: 24px;
            background:
                radial-gradient(circle at top, rgba(255, 214, 107, .35), transparent 38%),
                rgba(255, 255, 255, .64);
            border: 1px solid rgba(75, 47, 22, .1);
            box-shadow: 0 14px 36px rgba(77, 46, 9, .08);
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px;
        }

        .showcase-mini img {
            width: 72px;
            height: 98px;
            object-fit: contain;
            filter: drop-shadow(0 12px 14px rgba(42, 24, 7, .14));
            flex: 0 0 auto;
        }

        .showcase-mini strong {
            display: block;
            font-size: 14px;
            line-height: 1.2;
            margin-bottom: 5px;
        }

        .showcase-mini span {
            display: block;
            font-size: 12px;
            color: var(--text-soft);
            line-height: 1.35;
            font-weight: 700;
        }

        .package-section {
            position: relative;
        }

        .package-wrap {
            position: relative;
            overflow: hidden;
            border-radius: 42px;
            padding: 36px;
            background:
                radial-gradient(circle at 12% 8%, rgba(255, 214, 107, .44), transparent 28%),
                radial-gradient(circle at 92% 24%, rgba(239, 125, 33, .28), transparent 32%),
                linear-gradient(135deg, #17110a 0%, #2a190b 46%, #6c3c10 100%);
            box-shadow: 0 30px 90px rgba(77, 46, 9, .25);
            color: #fff7e3;
        }

        .package-wrap::before {
            content: "";
            position: absolute;
            inset: 18px;
            border-radius: 30px;
            border: 1px solid rgba(255, 230, 166, .14);
            pointer-events: none;
        }

        .package-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: .92fr 1.08fr;
            gap: 30px;
            align-items: center;
        }

        .package-visual {
            position: relative;
            min-height: 410px;
            display: grid;
            place-items: center;
            border-radius: 32px;
            background:
                radial-gradient(circle at center, rgba(255, 214, 107, .26), transparent 42%),
                rgba(255, 255, 255, .07);
            border: 1px solid rgba(255, 230, 166, .13);
            overflow: hidden;
        }

        .package-visual::before {
            content: "2 BOTOL";
            position: absolute;
            top: 20px;
            left: 20px;
            padding: 9px 13px;
            border-radius: 999px;
            color: #1b1005;
            background: linear-gradient(135deg, #ffd66b, #ef8c26);
            font-size: 12px;
            font-weight: 950;
            z-index: 4;
        }

        .package-img-stack {
            position: relative;
            width: min(100%, 470px);
            height: 350px;
        }

        .package-img-stack img {
            position: absolute;
            width: 62%;
            height: 340px;
            object-fit: contain;
            filter: drop-shadow(0 26px 28px rgba(0, 0, 0, .35));
            transition: .25s ease;
        }

        .package-img-stack img:first-child {
            left: 0;
            bottom: 0;
            transform: rotate(-4deg);
            z-index: 2;
        }

        .package-img-stack img:nth-child(2) {
            right: 0;
            bottom: 0;
            transform: rotate(4deg);
            z-index: 3;
        }

        .package-wrap:hover .package-img-stack img:first-child {
            transform: rotate(-6deg) translateY(-4px);
        }

        .package-wrap:hover .package-img-stack img:nth-child(2) {
            transform: rotate(6deg) translateY(-4px);
        }

        .package-content .section-kicker {
            color: #1b1005;
            background: linear-gradient(135deg, #ffd66b, #ef8c26);
            border-color: rgba(255, 230, 166, .28);
        }

        .package-title {
            margin: 14px 0 12px;
            font-family: 'Cinzel', serif;
            font-size: clamp(34px, 5vw, 58px);
            line-height: .98;
            letter-spacing: -1px;
            color: #fff7e3;
        }

        .package-subtitle {
            margin: 0 0 22px;
            max-width: 610px;
            color: rgba(255, 247, 227, .78);
            line-height: 1.75;
            font-weight: 650;
        }

        .price-box {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 18px;
            align-items: center;
            margin: 24px 0;
            padding: 18px;
            border-radius: 26px;
            background: rgba(255, 255, 255, .09);
            border: 1px solid rgba(255, 230, 166, .15);
            backdrop-filter: blur(14px);
        }

        .price-main {
            padding: 20px 22px;
            border-radius: 22px;
            color: #1b1005;
            background: linear-gradient(135deg, #ffd66b, #ef8c26);
            box-shadow: 0 20px 44px rgba(239, 125, 33, .24);
        }

        .price-main small {
            display: block;
            font-size: 12px;
            font-weight: 900;
            opacity: .78;
            margin-bottom: 5px;
        }

        .price-main strong {
            display: block;
            font-size: clamp(30px, 4vw, 44px);
            line-height: 1;
            letter-spacing: -1px;
        }

        .price-detail {
            color: rgba(255, 247, 227, .82);
            font-weight: 750;
            line-height: 1.7;
        }

        .price-detail del {
            color: rgba(255, 247, 227, .44);
        }

        .saving-pill {
            display: inline-flex;
            margin-top: 8px;
            padding: 7px 10px;
            border-radius: 999px;
            color: #fff7e3;
            background: rgba(255, 255, 255, .12);
            border: 1px solid rgba(255, 230, 166, .16);
            font-size: 12px;
            font-weight: 950;
        }

        .package-points {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 11px;
            margin: 22px 0;
        }

        .package-point {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            padding: 13px;
            border-radius: 18px;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 230, 166, .12);
        }

        .package-point i {
            width: 27px;
            height: 27px;
            flex: 0 0 27px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            color: #1b1005;
            background: linear-gradient(135deg, #ffd66b, #ef8c26);
            font-style: normal;
            font-weight: 950;
            font-size: 12px;
        }

        .package-point span {
            color: rgba(255, 247, 227, .78);
            font-size: 13px;
            line-height: 1.5;
            font-weight: 700;
        }

        .package-note {
            margin: 0 0 22px;
            padding: 14px 16px;
            border-radius: 18px;
            color: rgba(255, 247, 227, .78);
            background: rgba(0, 0, 0, .16);
            border: 1px solid rgba(255, 230, 166, .12);
            font-size: 13px;
            line-height: 1.65;
            font-weight: 650;
        }

        .package-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }

        .combo-title-row {
            position: relative;
            z-index: 2;
            margin-top: 34px;
            margin-bottom: 14px;
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 18px;
        }

        .combo-title-row h3 {
            margin: 0;
            color: #fff7e3;
            font-size: clamp(22px, 3vw, 32px);
            letter-spacing: -.6px;
        }

        .combo-title-row p {
            margin: 0;
            max-width: 470px;
            color: rgba(255, 247, 227, .68);
            line-height: 1.6;
            font-size: 13px;
            font-weight: 650;
        }

        .combo-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
            margin-top: 14px;
        }

        .combo-card {
            position: relative;
            overflow: hidden;
            min-height: 360px;
            padding: 15px;
            border-radius: 26px;
            color: #fff7e3;
            background:
                radial-gradient(circle at 50% 10%, rgba(255, 214, 107, .18), transparent 34%),
                rgba(255, 255, 255, .075);
            border: 1px solid rgba(255, 230, 166, .13);
            box-shadow: 0 18px 48px rgba(0, 0, 0, .16);
            transition: .24s ease;
        }

        .combo-card:hover {
            transform: translateY(-6px);
            background:
                radial-gradient(circle at 50% 10%, rgba(255, 214, 107, .27), transparent 36%),
                rgba(255, 255, 255, .105);
            box-shadow: 0 26px 62px rgba(0, 0, 0, .22);
        }

        .combo-card::before {
            content: "";
            position: absolute;
            inset: 12px;
            border-radius: 20px;
            border: 1px solid rgba(255, 230, 166, .11);
            pointer-events: none;
        }

        .combo-label {
            position: relative;
            z-index: 2;
            display: inline-flex;
            padding: 7px 10px;
            border-radius: 999px;
            color: #1b1005;
            background: linear-gradient(135deg, #ffd66b, #ef8c26);
            font-size: 11px;
            font-weight: 950;
            margin-bottom: 12px;
        }

        .combo-visual {
            position: relative;
            z-index: 2;
            height: 138px;
            margin-bottom: 14px;
        }

        .combo-visual img {
            position: absolute;
            bottom: 0;
            width: 58%;
            height: 136px;
            object-fit: contain;
            filter: drop-shadow(0 16px 18px rgba(0, 0, 0, .28));
            transition: .24s ease;
        }

        .combo-visual img:first-child {
            left: 0;
            transform: rotate(-5deg);
        }

        .combo-visual img:nth-child(2) {
            right: 0;
            transform: rotate(5deg);
        }

        .combo-card:hover .combo-visual img:first-child {
            transform: rotate(-7deg) translateY(-4px);
        }

        .combo-card:hover .combo-visual img:nth-child(2) {
            transform: rotate(7deg) translateY(-4px);
        }

        .combo-body {
            position: relative;
            z-index: 2;
        }

        .combo-body h4 {
            margin: 0 0 7px;
            font-size: 18px;
            line-height: 1.15;
        }

        .combo-items {
            display: inline-flex;
            margin-bottom: 10px;
            padding: 7px 9px;
            border-radius: 999px;
            background: rgba(0, 0, 0, .22);
            border: 1px solid rgba(255, 230, 166, .12);
            color: #ffd66b;
            font-size: 12px;
            font-weight: 900;
        }

        .combo-body p {
            margin: 0 0 14px;
            color: rgba(255, 247, 227, .72);
            font-size: 13px;
            line-height: 1.55;
            font-weight: 650;
        }

        .combo-price {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            gap: 10px;
            margin-bottom: 13px;
            padding-top: 12px;
            border-top: 1px solid rgba(255, 230, 166, .12);
        }

        .combo-price strong {
            color: #ffd66b;
            font-size: 22px;
            line-height: 1;
        }

        .combo-price span {
            color: rgba(255, 247, 227, .52);
            font-size: 12px;
            font-weight: 800;
        }

        .combo-card .btn {
            position: relative;
            z-index: 2;
            width: 100%;
            padding: 12px 13px;
            font-size: 13px;
        }

        .ritual {
            position: relative;
            overflow: hidden;
            border-radius: 38px;
            padding: 42px;
            color: #fff5df;
            background:
                radial-gradient(circle at 12% 10%, rgba(255, 200, 87, .28), transparent 27%),
                radial-gradient(circle at 92% 24%, rgba(239, 125, 33, .24), transparent 25%),
                linear-gradient(135deg, #15100a 0%, #2b1b0d 44%, #5a3414 100%);
            box-shadow: var(--shadow);
        }

        .ritual::before {
            content: "";
            position: absolute;
            inset: 18px;
            border-radius: 28px;
            border: 1px solid rgba(255, 230, 166, .13);
            pointer-events: none;
        }

        .steps {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-top: 30px;
        }

        .step {
            position: relative;
            overflow: hidden;
            min-height: 520px;
            border-radius: 28px;
            background:
                radial-gradient(circle at top, rgba(255, 214, 107, .18), transparent 34%),
                rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 230, 166, .15);
            box-shadow: 0 22px 58px rgba(0, 0, 0, .2);
            backdrop-filter: blur(12px);
            transition: .24s ease;
        }

        .step:hover {
            transform: translateY(-7px);
            background:
                radial-gradient(circle at top, rgba(255, 214, 107, .26), transparent 36%),
                rgba(255, 255, 255, .105);
            box-shadow: 0 30px 74px rgba(0, 0, 0, .28);
        }

        .step-image {
            position: relative;
            overflow: hidden;
            aspect-ratio: 4 / 5;
            min-height: 340px;
            background: #20150c;
        }

        .step-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: .32s ease;
        }

        .step:hover .step-image img {
            transform: scale(1.035);
        }

        .step-image::after {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            background:
                linear-gradient(to bottom, rgba(20, 17, 11, .02) 32%, rgba(20, 17, 11, .48) 76%, rgba(20, 17, 11, .92) 100%),
                radial-gradient(circle at top left, rgba(255, 214, 107, .18), transparent 36%);
        }

        .step-num {
            position: absolute;
            top: 16px;
            left: 16px;
            z-index: 3;
            width: 48px;
            height: 48px;
            display: grid;
            place-items: center;
            border-radius: 18px;
            color: #20150c;
            background: linear-gradient(135deg, #ffd66b, #ef8c26);
            box-shadow: 0 14px 32px rgba(0, 0, 0, .24);
            font-weight: 950;
        }

        .step-content {
            position: relative;
            z-index: 4;
            margin-top: -74px;
            padding: 0 18px 20px;
        }

        .step-content-inner {
            padding: 18px;
            border-radius: 24px;
            background: rgba(20, 17, 11, .72);
            border: 1px solid rgba(255, 230, 166, .16);
            box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
            backdrop-filter: blur(16px);
        }

        .step h3 {
            margin: 0 0 10px;
            color: #fff7e3;
            font-size: 19px;
            line-height: 1.18;
            letter-spacing: -.2px;
        }

        .step p {
            margin: 0;
            color: rgba(255, 245, 223, .74);
            font-size: 13px;
            line-height: 1.62;
            font-weight: 620;
        }

        .step-tips {
            display: flex;
            flex-wrap: wrap;
            gap: 7px;
            margin-top: 13px;
        }

        .step-tips span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 9px;
            border-radius: 999px;
            color: #ffd66b;
            background: rgba(255, 214, 107, .1);
            border: 1px solid rgba(255, 230, 166, .12);
            font-size: 11px;
            font-weight: 850;
            line-height: 1;
        }

        .step-tips span::before {
            content: "✦";
            color: #ef8c26;
            font-size: 10px;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .why-card {
            padding: 26px;
            border-radius: var(--radius-xl);
            background: rgba(255, 255, 255, .68);
            border: 1px solid rgba(75, 47, 22, .1);
            box-shadow: 0 18px 50px rgba(77, 46, 9, .09);
        }

        .why-card i {
            width: 48px;
            height: 48px;
            display: grid;
            place-items: center;
            border-radius: 18px;
            background: #20150c;
            color: #ffd66b;
            font-style: normal;
            font-weight: 950;
            margin-bottom: 20px;
        }

        .why-card h3 {
            margin: 0 0 10px;
            font-size: 20px;
        }

        .why-card p {
            margin: 0;
            color: var(--text-soft);
            line-height: 1.75;
            font-weight: 620;
        }

        .ritual-story-section {
            position: relative;
            padding: 80px 0;
        }

        .ritual-story-wrap {
            position: relative;
            overflow: hidden;
            border-radius: 44px;
            padding: 38px;
            color: #fff7e3;
            background:
                radial-gradient(circle at 12% 8%, rgba(255, 214, 107, .34), transparent 28%),
                radial-gradient(circle at 90% 12%, rgba(239, 125, 33, .24), transparent 32%),
                linear-gradient(135deg, #15100a 0%, #2a190c 48%, #5d3410 100%);
            box-shadow: 0 30px 90px rgba(77, 46, 9, .26);
        }

        .ritual-story-wrap::before {
            content: "";
            position: absolute;
            inset: 18px;
            border-radius: 32px;
            border: 1px solid rgba(255, 230, 166, .14);
            pointer-events: none;
        }

        .ritual-story-head {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: .95fr 1.05fr;
            gap: 28px;
            align-items: end;
            margin-bottom: 28px;
        }

        .ritual-story-head .section-kicker {
            color: #1b1005;
            background: linear-gradient(135deg, #ffd66b, #ef8c26);
            border-color: rgba(255, 230, 166, .28);
        }

        .ritual-story-title {
            margin: 14px 0 0;
            font-family: 'Cinzel', serif;
            font-size: clamp(32px, 5vw, 58px);
            line-height: 1.02;
            letter-spacing: -1px;
            color: #fff7e3;
        }

        .ritual-story-lead {
            margin: 0;
            color: rgba(255, 247, 227, .78);
            line-height: 1.82;
            font-weight: 650;
            font-size: 16px;
        }

        .ritual-story-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .ritual-story-card {
            overflow: hidden;
            border-radius: 30px;
            background:
                radial-gradient(circle at top, rgba(255, 214, 107, .18), transparent 34%),
                rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 230, 166, .13);
            box-shadow: 0 20px 54px rgba(0, 0, 0, .18);
            transition: .24s ease;
        }

        .ritual-story-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 28px 72px rgba(0, 0, 0, .24);
        }

        .ritual-story-image {
            position: relative;
            overflow: hidden;
            aspect-ratio: 4 / 3;
            background: #20150c;
        }

        .ritual-story-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: .32s ease;
        }

        .ritual-story-card:hover .ritual-story-image img {
            transform: scale(1.05);
        }

        .ritual-story-image::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(to bottom, transparent 45%, rgba(20, 17, 11, .56)),
                radial-gradient(circle at top left, rgba(255, 214, 107, .22), transparent 36%);
            pointer-events: none;
        }

        .ritual-story-badge {
            position: absolute;
            left: 16px;
            bottom: 16px;
            z-index: 2;
            display: inline-flex;
            padding: 8px 12px;
            border-radius: 999px;
            color: #1b1005;
            background: linear-gradient(135deg, #ffd66b, #ef8c26);
            font-size: 12px;
            font-weight: 950;
        }

        .ritual-story-body {
            padding: 22px;
        }

        .ritual-story-body h3 {
            margin: 0 0 10px;
            color: #fff7e3;
            font-size: 20px;
            line-height: 1.2;
            letter-spacing: -.3px;
        }

        .ritual-story-body p {
            margin: 0;
            color: rgba(255, 247, 227, .74);
            font-size: 14px;
            line-height: 1.75;
            font-weight: 620;
        }

        .ritual-story-note {
            position: relative;
            z-index: 2;
            margin-top: 22px;
            padding: 18px 20px;
            border-radius: 24px;
            color: rgba(255, 247, 227, .8);
            background: rgba(0, 0, 0, .18);
            border: 1px solid rgba(255, 230, 166, .12);
            line-height: 1.75;
            font-weight: 650;
        }

        .ritual-story-note strong {
            color: #ffd66b;
        }

        .faq-wrap {
            display: grid;
            grid-template-columns: .88fr 1.12fr;
            gap: 24px;
            align-items: start;
        }

        .faq-side {
            position: sticky;
            top: 102px;
            padding: 30px;
            border-radius: var(--radius-xl);
            background:
                radial-gradient(circle at top right, rgba(255, 200, 87, .42), transparent 36%),
                rgba(255, 255, 255, .7);
            border: 1px solid rgba(75, 47, 22, .1);
            box-shadow: 0 18px 50px rgba(77, 46, 9, .09);
        }

        .faq-side h2 {
            margin: 0 0 12px;
            font-size: 32px;
            letter-spacing: -.8px;
        }

        .faq-side p {
            margin: 0;
            color: var(--text-soft);
            line-height: 1.75;
            font-weight: 620;
        }

        .faq-list {
            display: grid;
            gap: 12px;
        }

        .faq-item {
            border-radius: 22px;
            overflow: hidden;
            background: rgba(255, 255, 255, .76);
            border: 1px solid rgba(75, 47, 22, .1);
            box-shadow: 0 13px 36px rgba(77, 46, 9, .07);
        }

        .faq-question {
            width: 100%;
            text-align: left;
            border: 0;
            background: transparent;
            color: #26180b;
            padding: 20px 22px;
            cursor: pointer;
            font-family: inherit;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            font-size: 16px;
            font-weight: 950;
        }

        .faq-question span {
            width: 32px;
            height: 32px;
            flex: 0 0 32px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            color: #fff4da;
            background: #20150c;
            transition: .2s ease;
        }

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

        .faq-answer p {
            margin: 0;
            padding: 0 22px 20px;
            color: var(--text-soft);
            line-height: 1.75;
            font-weight: 620;
        }

        .faq-item.active .faq-answer {
            max-height: 320px;
        }

        .faq-item.active .faq-question span {
            transform: rotate(45deg);
            background: linear-gradient(135deg, #ef8c26, #20150c);
        }

        .cta {
            padding-bottom: 84px;
        }

        .cta-box {
            position: relative;
            overflow: hidden;
            border-radius: 42px;
            padding: 48px;
            color: #fff7e3;
            background:
                radial-gradient(circle at 15% 5%, rgba(255, 214, 107, .42), transparent 28%),
                radial-gradient(circle at 88% 72%, rgba(239, 125, 33, .35), transparent 30%),
                linear-gradient(135deg, #16100a, #3b240f 52%, #7a4512);
            box-shadow: 0 30px 90px rgba(77, 46, 9, .25);
        }

        .cta-box::before {
            content: "";
            position: absolute;
            right: -120px;
            top: -120px;
            width: 340px;
            height: 340px;
            border-radius: 50%;
            border: 1px dashed rgba(255, 230, 166, .25);
        }

        .cta-inner {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 26px;
            align-items: center;
        }

        .cta h2 {
            margin: 0 0 12px;
            font-family: 'Cinzel', serif;
            font-size: clamp(30px, 4vw, 54px);
            line-height: 1.05;
        }

        .cta p {
            max-width: 680px;
            margin: 0;
            color: rgba(255, 247, 227, .76);
            line-height: 1.75;
            font-weight: 650;
        }

        .cta-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: flex-end;
        }

        .footer {
            padding: 34px 0;
            background: #14110b;
            color: rgba(255, 248, 232, .7);
        }

        .footer-grid {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            flex-wrap: wrap;
        }

        .footer strong {
            color: #fff8e8;
            font-family: 'Cinzel', serif;
            letter-spacing: .5px;
        }

        .footer small {
            display: block;
            margin-top: 6px;
            line-height: 1.5;
        }

        .footer-links {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .footer-links a {
            padding: 10px 13px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .08);
            color: #fff1ca;
            font-weight: 800;
            font-size: 13px;
        }

        .wa-float {
            position: fixed;
            right: 18px;
            bottom: 18px;
            z-index: 60;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 18px;
            border-radius: 999px;
            color: #fff;
            background: linear-gradient(135deg, #128c7e, #25d366);
            box-shadow: 0 20px 48px rgba(18, 140, 126, .34);
            font-weight: 950;
        }

        .wa-float:hover {
            transform: translateY(-2px);
        }

        .reveal {
            opacity: 0;
            transform: translateY(22px);
            transition: .7s ease;
        }

        .reveal.show {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 1080px) {
            .nav-links,
            .nav-action {
                display: none;
            }

            .mobile-menu-btn {
                display: grid;
                place-items: center;
            }

            .hero-grid,
            .intro-grid,
            .faq-wrap,
            .package-grid,
            .ritual-story-head {
                grid-template-columns: 1fr;
            }

            .hero {
                padding-top: 46px;
            }

            .hero-visual {
                min-height: 500px;
            }

            .products-grid,
            .combo-grid,
            .ritual-story-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .showcase-strip {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps {
                grid-template-columns: repeat(2, 1fr);
            }

            .step {
                min-height: 500px;
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .faq-side {
                position: relative;
                top: auto;
            }

            .cta-inner {
                grid-template-columns: 1fr;
            }

            .cta-actions {
                justify-content: flex-start;
            }

            .intro-carousel {
                min-height: 460px;
            }

            .intro-slide img {
                height: 330px;
            }

            .package-visual {
                min-height: 360px;
            }
        }

        @media (max-width: 720px) {
            .container {
                width: min(100% - 24px, var(--container));
            }

            .nav {
                height: 68px;
            }

            .brand {
                min-width: 0;
            }

            .brand-mark {
                width: 44px;
                height: 44px;
                border-radius: 16px;
            }

            .brand-text strong {
                font-size: 15px;
            }

            .brand-text span {
                font-size: 11px;
            }

            .hero-title {
                letter-spacing: -1.2px;
            }

            .hero-desc {
                line-height: 1.7;
            }

            .hero-actions .btn {
                width: 100%;
            }

            .hero-note {
                grid-template-columns: 1fr;
            }

            .hero-visual {
                min-height: 360px;
            }

            .mandala {
                width: 410px;
            }

            .hero-product-stage {
                width: min(100%, 390px);
                padding: 10px;
                border-radius: 28px;
                transform: rotate(0deg);
            }

            .hero-product-stage::before {
                inset: 10px;
                border-radius: 22px;
            }

            .hero-product-img {
                border-radius: 22px;
            }

            .floating-chip {
                font-size: 12px;
                padding: 10px 12px;
            }

            .chip-one {
                left: 0;
                top: 8%;
            }

            .chip-two {
                right: 0;
                bottom: 8%;
            }

            .section,
            .ritual-story-section {
                padding: 54px 0;
            }

            .section-head {
                display: block;
            }

            .section-desc {
                margin-top: 14px;
            }

            .intro-panel,
            .ritual,
            .cta-box,
            .package-wrap,
            .ritual-story-wrap {
                padding: 24px;
                border-radius: 28px;
            }

            .ritual-story-wrap::before {
                inset: 12px;
                border-radius: 22px;
            }

            .intro-carousel {
                min-height: 390px;
                border-radius: 26px;
            }

            .intro-carousel::before {
                inset: 12px;
                border-radius: 20px;
            }

            .intro-slide {
                padding: 18px 18px 76px;
            }

            .intro-slide img {
                height: 250px;
                width: min(96%, 300px);
            }

            .intro-slide-caption {
                left: 14px;
                right: 14px;
                bottom: 18px;
                padding: 12px 13px;
                border-radius: 18px;
            }

            .intro-slide-caption strong {
                font-size: 17px;
            }

            .intro-slide-badge {
                padding: 8px 10px;
                font-size: 11px;
            }

            .intro-carousel-btn {
                width: 36px;
                height: 36px;
                font-size: 18px;
            }

            .products-grid,
            .steps,
            .showcase-strip,
            .package-points,
            .combo-grid,
            .ritual-story-grid {
                grid-template-columns: 1fr;
            }

            .step {
                min-height: auto;
            }

            .step-image {
                min-height: 0;
            }

            .product-card {
                min-height: auto;
            }

            .product-image-wrap {
                min-height: 260px;
            }

            .product-image {
                height: 260px;
                max-width: 275px;
            }

            .showcase-mini {
                min-height: 118px;
            }

            .showcase-mini img {
                width: 82px;
                height: 102px;
            }

            .package-visual {
                min-height: 330px;
                border-radius: 24px;
            }

            .package-img-stack {
                height: 300px;
            }

            .package-img-stack img {
                height: 288px;
            }

            .price-box {
                grid-template-columns: 1fr;
            }

            .price-main {
                text-align: center;
            }

            .combo-title-row {
                display: block;
            }

            .combo-title-row p {
                margin-top: 8px;
            }

            .combo-card {
                min-height: auto;
            }

            .combo-visual {
                height: 170px;
            }

            .combo-visual img {
                height: 168px;
                width: 54%;
            }

            .package-actions .btn,
            .cta-actions .btn {
                width: 100%;
            }

            .wa-float {
                left: 12px;
                right: 12px;
                justify-content: center;
                bottom: 12px;
                border-radius: 18px;
            }

            .footer {
                padding-bottom: 82px;
            }
        }

        @media (max-width: 420px) {
            .brand-text strong {
                font-size: 14px;
            }

            .brand-text span {
                max-width: 160px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .hero-product-stage {
                width: 100%;
            }

            .product-image {
                height: 240px;
            }

            .intro-carousel {
                min-height: 370px;
            }

            .intro-slide img {
                height: 230px;
            }

            .intro-slide-caption {
                align-items: flex-start;
                flex-direction: column;
                gap: 8px;
            }

            .package-img-stack {
                height: 270px;
            }

            .package-img-stack img {
                height: 255px;
            }

            .ritual-story-body {
                padding: 18px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation: none !important;
                transition: none !important;
                scroll-behavior: auto !important;
            }
        }
