        :root {
            --bg: #f4f8f7;
            --surface: #ffffff;
            --surface2: #eef4f3;
            --text: #1b2430;
            --muted: #5a6573;
            --accent: #0f766e;
            --accent-mid: #0d9488;
            --accent-soft: rgba(15, 118, 110, 0.14);
            --border: #e2e8f0;
            --shadow: 0 4px 24px rgba(27, 36, 48, 0.07);
            --shadow-lg: 0 16px 48px rgba(27, 36, 48, 0.1);
            --radius: 14px;
            --font: "Source Sans 3", system-ui, -apple-system, sans-serif;
            --display: "Fraunces", Georgia, "Times New Roman", serif;
            --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: var(--font);
            font-size: 1.05rem;
            line-height: 1.6;
            color: var(--text);
            background-color: var(--bg);
            background-image:
                radial-gradient(ellipse 100% 80% at 100% 0%, rgba(15, 118, 110, 0.09), transparent 55%),
                radial-gradient(ellipse 70% 50% at 0% 100%, rgba(15, 118, 110, 0.05), transparent 50%);
        }

        a {
            color: var(--accent);
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }

        /* Top menu */
        .header {
            position: sticky;
            top: 0;
            z-index: 40;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            box-shadow: 0 4px 24px rgba(27, 36, 48, 0.04);
            transition: box-shadow 0.25s ease;
        }

        .header-inner {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0.9rem 1.25rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .logo {
            font-family: var(--display);
            font-weight: 700;
            font-size: 1.35rem;
            color: var(--text);
            transition: color 0.2s ease, transform 0.2s var(--ease-out);
        }

        .logo:hover {
            transform: translateY(-1px);
            text-decoration: none;
        }

        .logo span {
            color: var(--accent);
        }

        .nav {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            align-items: center;
        }

        .nav a {
            color: var(--text);
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            opacity: 0.88;
            transition: color 0.2s ease, opacity 0.2s ease;
        }

        .nav a:hover {
            color: var(--accent);
            opacity: 1;
            text-decoration: none;
        }

        .nav .cta {
            background: linear-gradient(135deg, #0f766e, #0d9488);
            color: #fff !important;
            padding: 0.45rem 1rem;
            border-radius: 999px;
            opacity: 1;
            box-shadow: 0 4px 16px rgba(15, 118, 110, 0.35);
            transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease, filter 0.2s ease;
        }

        .nav .cta:hover {
            filter: brightness(1.04);
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(15, 118, 110, 0.42);
            text-decoration: none;
        }

        /* Banner / hero slider — full viewport width */
        .banner {
            width: 100%;
            padding: 0;
            margin: 0;
            border-bottom: 1px solid var(--border);
            background: var(--bg);
        }

        .hero-slider {
            position: relative;
            width: 100%;
            max-width: none;
            margin: 0;
            padding: 0 0 1.25rem;
        }

        .hero-viewport {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 0;
            border: none;
            border-bottom: 1px solid var(--border);
            box-shadow: none;
        }

        .hero-track {
            display: flex;
            transition: transform 0.55s cubic-bezier(0.33, 1, 0.68, 1);
        }

        @media (prefers-reduced-motion: reduce) {
            .hero-track {
                transition: none;
            }
        }

        .hero-slide {
            flex: 0 0 100%;
            min-height: min(520px, 78vh);
            position: relative;
            background-color: #1a3d35;
            background-image: var(--slide-img);
            background-size: cover;
            background-position: center;
        }

        .hero-slide::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(
                105deg,
                rgba(250, 252, 251, 0.98) 0%,
                rgba(248, 250, 252, 0.9) 36%,
                rgba(248, 250, 252, 0.42) 58%,
                rgba(15, 118, 110, 0.12) 100%
            );
            pointer-events: none;
        }

        @media (prefers-reduced-motion: no-preference) {
            .hero-slide .hero-slide-content--intro,
            .hero-slide .hero-slide-aside {
                transition: opacity 0.45s var(--ease-out), transform 0.5s var(--ease-out);
            }

            .hero-slide[aria-hidden="true"] .hero-slide-content--intro,
            .hero-slide[aria-hidden="true"] .hero-slide-aside {
                opacity: 0;
                pointer-events: none;
            }

            .hero-slide[aria-hidden="true"] .hero-slide-content--intro {
                transform: translateX(-0.65rem);
            }

            .hero-slide[aria-hidden="true"] .hero-slide-aside {
                transform: translateX(0.65rem);
            }

            .hero-slide[aria-hidden="false"] .hero-slide-content--intro,
            .hero-slide[aria-hidden="false"] .hero-slide-aside {
                opacity: 1;
                transform: none;
            }
        }

        .hero-slide-inner {
            position: relative;
            z-index: 1;
            min-height: min(520px, 78vh);
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            gap: 1.75rem 2.5rem;
            flex-wrap: wrap;
            padding: 2rem max(1.25rem, calc((100vw - 1100px) / 2 + 1.25rem));
            max-width: none;
            margin: 0;
            width: 100%;
            box-sizing: border-box;
        }

        .hero-slide-content--intro {
            flex: 1 1 15rem;
            max-width: 32ch;
            min-width: 0;
        }

        .hero-slide-aside {
            flex: 0 1 20rem;
            max-width: 22.5rem;
            min-width: min(100%, 17rem);
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        @media (min-width: 720px) {
            .hero-slide-content--intro {
                max-width: 36ch;
            }

            .hero-slide-inner {
                padding-top: 2.5rem;
                padding-bottom: 2.5rem;
                padding-left: max(1.25rem, calc((100vw - 1100px) / 2 + 1.25rem));
                padding-right: max(1.25rem, calc((100vw - 1100px) / 2 + 1.25rem));
                flex-wrap: nowrap;
            }

            .hero-slide-aside {
                margin-left: auto;
            }
        }

        .hero-slide-badge {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--accent);
            background: var(--accent-soft);
            padding: 0.35rem 0.65rem;
            border-radius: 999px;
            margin: 0 0 0.75rem;
            border: 1px solid rgba(15, 118, 110, 0.18);
            box-shadow: 0 2px 12px rgba(15, 118, 110, 0.08);
        }

        @media (prefers-reduced-motion: no-preference) {
            .hero-slide[aria-hidden="false"] .hero-slide-badge {
                animation: badge-in 0.55s var(--ease-out) both;
            }

            @keyframes badge-in {
                from {
                    opacity: 0;
                    transform: translateY(-6px);
                }
            }
        }

        .hero-slide h1 {
            font-family: var(--display);
            font-size: clamp(1.75rem, 4vw, 2.65rem);
            line-height: 1.12;
            margin: 0 0 1rem;
            font-weight: 600;
            color: var(--text);
        }

        .hero-benefits {
            margin: 0;
            padding: 0;
            list-style: none;
            font-size: 0.95rem;
            color: var(--muted);
        }

        .hero-benefits li {
            position: relative;
            padding-left: 1.35rem;
            margin-bottom: 0.45rem;
        }

        .hero-benefits li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.55em;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
        }

        .hero-package {
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
            padding: 0.9rem 1rem;
            background: rgba(255, 255, 255, 0.96);
            border: 1px solid rgba(226, 232, 240, 0.95);
            border-radius: 12px;
            margin-bottom: 0;
            font-size: 0.92rem;
            box-shadow: 0 8px 32px rgba(27, 36, 48, 0.08);
            transition: box-shadow 0.25s ease, border-color 0.25s ease;
        }

        @media (prefers-reduced-motion: no-preference) {
            .hero-slide[aria-hidden="false"] .hero-package {
                animation: card-pop 0.6s var(--ease-out) 0.06s both;
            }

            @keyframes card-pop {
                from {
                    opacity: 0;
                    transform: translateY(10px) scale(0.98);
                }
            }
        }

        .hero-package strong {
            font-size: 1.05rem;
            color: var(--text);
        }

        .hero-package .pkg-includes {
            color: var(--muted);
            line-height: 1.45;
        }

        .hero-package .pkg-price-line {
            display: block;
            font-family: var(--display);
            margin-top: 0.25rem;
            font-size: 0.95rem;
            line-height: 1.45;
            color: var(--text);
        }

        .hero-package .pkg-price-line strong {
            color: var(--accent);
            font-size: 1.2rem;
        }

        .banner-actions {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .hero-slide-aside .banner-actions {
            width: 100%;
        }

        @media (max-width: 719px) {
            .banner-actions {
                justify-content: flex-start;
            }
        }

        .banner-actions .btn-outline {
            background: rgba(255, 255, 255, 0.92);
        }

        .hero-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 3;
            width: 2.5rem;
            height: 2.5rem;
            border: none;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.95);
            color: var(--text);
            cursor: pointer;
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            line-height: 1;
            transition: background 0.15s, transform 0.15s;
        }

        .hero-nav:hover {
            background: #fff;
            transform: translateY(-50%) scale(1.05);
        }

        .hero-nav:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        /* Mobile: one screenful — hero + dots fit below header, no in-banner scroll */
        @media (max-width: 719px) {
            .hero-slider {
                padding-bottom: 0.4rem;
            }

            /* Reserve space for sticky header + dot row + safe areas */
            .hero-viewport {
                height: calc(
                    100dvh - 9.25rem - env(safe-area-inset-bottom, 0px)
                );
                max-height: calc(
                    100svh - 9.25rem - env(safe-area-inset-bottom, 0px)
                );
            }

            .hero-track {
                height: 100%;
            }

            .hero-slide {
                min-height: 0;
                height: 100%;
                align-self: stretch;
            }

            .hero-slide-inner {
                min-height: 0;
                height: 100%;
                align-items: stretch;
                justify-content: flex-start;
                flex-direction: column;
                padding: 0.65rem 0.85rem;
                overflow: hidden auto;
                gap: 0.5rem;
            }

            .hero-slide-content--intro {
                max-width: 100%;
                flex: 0 0 auto;
            }

            .hero-slide-aside {
                flex: 0 0 auto;
                max-width: 100%;
                min-width: 0;
                width: 100%;
                margin-left: 0;
            }

            .hero-slide-badge {
                font-size: 0.62rem;
                padding: 0.22rem 0.45rem;
                margin-bottom: 0.35rem;
            }

            .hero-slide h1 {
                font-size: clamp(1.05rem, 4.8vw, 1.42rem);
                line-height: 1.18;
                margin: 0 0 0.4rem;
            }

            .hero-benefits {
                margin: 0 0 0.45rem;
                font-size: 0.72rem;
                line-height: 1.3;
            }

            .hero-benefits li {
                margin-bottom: 0.15rem;
                padding-left: 1.1rem;
            }

            .hero-benefits li::before {
                width: 4px;
                height: 4px;
                top: 0.52em;
            }

            .hero-package {
                padding: 0.4rem 0.55rem;
                margin-bottom: 0.45rem;
                font-size: 0.68rem;
                gap: 0.2rem;
                border-radius: 8px;
            }

            .hero-package strong {
                font-size: 0.78rem;
            }

            .hero-package .pkg-includes {
                line-height: 1.35;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            .hero-package .pkg-price-line {
                font-size: 0.82rem;
                margin-top: 0.15rem;
            }

            .hero-package .pkg-price-line strong {
                font-size: 0.95rem;
            }

            .banner-actions {
                gap: 0.35rem;
            }

            .banner-actions .btn {
                padding: 0.42rem 0.75rem;
                font-size: 0.78rem;
            }

            .hero-nav {
                width: 2.1rem;
                height: 2.1rem;
                font-size: 1.05rem;
            }

            .hero-dots {
                padding: 0.45rem 1rem 0;
            }
        }

        .hero-nav--prev {
            left: max(0.5rem, env(safe-area-inset-left, 0px));
        }

        .hero-nav--next {
            right: max(0.5rem, env(safe-area-inset-right, 0px));
        }

        @media (min-width: 640px) {
            .hero-nav--prev {
                left: max(1rem, env(safe-area-inset-left, 0px));
            }
            .hero-nav--next {
                right: max(1rem, env(safe-area-inset-right, 0px));
            }
        }

        .hero-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem 1.25rem 0;
            list-style: none;
            margin: 0;
        }

        .hero-dots button {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            border: none;
            padding: 0;
            background: var(--border);
            cursor: pointer;
            transition: transform 0.2s, background 0.2s, width 0.25s var(--ease-out), border-radius 0.2s ease;
        }

        .hero-dots button[aria-current="true"] {
            background: var(--accent);
            width: 22px;
            border-radius: 999px;
            transform: scale(1);
        }

        .hero-dots button:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.65rem 1.25rem;
            border-radius: 999px;
            font-weight: 600;
            font-family: inherit;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            text-decoration: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, #0f766e, #0d9488);
            color: #fff;
            box-shadow: 0 4px 18px rgba(15, 118, 110, 0.38);
            transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease, filter 0.2s ease;
        }

        .btn-primary:hover {
            filter: brightness(1.05);
            text-decoration: none;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(15, 118, 110, 0.45);
        }

        .btn-primary:active {
            transform: translateY(0);
        }

        .btn-outline {
            background: var(--surface);
            color: var(--text);
            border: 1px solid var(--border);
            transition: transform 0.2s var(--ease-out), border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
        }

        .btn-outline:hover {
            border-color: var(--accent);
            color: var(--accent);
            text-decoration: none;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(27, 36, 48, 0.08);
        }

        /* Section common */
        section {
            padding: 3.5rem 0;
        }

        section:nth-of-type(even) {
            background: var(--surface);
        }

        .section-head {
            text-align: center;
            max-width: 560px;
            margin: 0 auto 2.5rem;
        }

        .section-head h2 {
            font-family: var(--display);
            font-size: clamp(1.65rem, 3vw, 2rem);
            margin: 0 0 0.5rem;
        }

        .section-head p {
            color: var(--muted);
            margin: 0;
        }

        .section-head.reveal-on-scroll h2::after {
            content: "";
            display: block;
            width: 0;
            height: 3px;
            margin: 0.65rem auto 0;
            border-radius: 999px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            transition: width 0.55s var(--ease-out);
            transition-delay: 0.08s;
        }

        .section-head.reveal-on-scroll.is-visible h2::after {
            width: 3.25rem;
        }

        .reveal-on-scroll {
            opacity: 0;
            transform: translateY(1.1rem);
            transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
        }

        .reveal-on-scroll:nth-child(2) {
            transition-delay: 0.06s;
        }

        .reveal-on-scroll:nth-child(3) {
            transition-delay: 0.12s;
        }

        .reveal-on-scroll:nth-child(4) {
            transition-delay: 0.18s;
        }

        .reveal-on-scroll.is-visible {
            opacity: 1;
            transform: none;
        }

        .about-body {
            max-width: 680px;
            margin: 0 auto;
        }

        .about-body p {
            color: var(--muted);
            margin: 0 0 1rem;
        }

        .about-body p:last-of-type {
            margin-bottom: 0;
        }

        .about-highlights {
            list-style: none;
            margin: 1.75rem 0 0;
            padding: 0;
            display: grid;
            gap: 1rem;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        }

        .about-highlights .about-highlight {
            margin: 0;
            padding: 1.1rem 1.2rem;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            font-size: 0.98rem;
            line-height: 1.5;
            color: var(--text);
            box-shadow: var(--shadow);
            transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
        }

        @media (hover: hover) {
            .about-highlights .about-highlight:hover {
                transform: translateY(-4px);
                box-shadow: var(--shadow-lg);
            }
        }

        /* Packages detail slider */
        .pkg-slider {
            position: relative;
            max-width: 960px;
            margin: 0 auto;
            padding: 0 0 0.5rem;
        }

        .pkg-viewport {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            background: var(--surface);
        }

        @media (hover: hover) and (min-width: 781px) {
            .pkg-viewport {
                transition: box-shadow 0.3s ease, transform 0.3s var(--ease-out);
            }

            .pkg-viewport:hover {
                box-shadow: var(--shadow-lg);
                transform: translateY(-3px);
            }
        }

        .pkg-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
        }

        @media (prefers-reduced-motion: reduce) {
            .pkg-track {
                transition: none;
            }
        }

        .pkg-slide {
            flex: 0 0 100%;
            min-width: 0;
            box-sizing: border-box;
        }

        .pkg-slide-card {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto 1fr;
            grid-template-areas:
                "visual title"
                "visual rest";
            gap: 0;
            min-height: 420px;
        }

        @media (max-width: 780px) {
            .pkg-slide-card {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
                grid-template-areas:
                    "title"
                    "visual"
                    "rest";
                min-height: 0;
            }
        }

        .pkg-slide-visual {
            grid-area: visual;
            display: flex;
            flex-direction: column;
            background: var(--surface2);
            border-right: 1px solid var(--border);
        }

        @media (max-width: 780px) {
            .pkg-slide-visual {
                border-right: none;
                border-bottom: 1px solid var(--border);
            }
        }

        .pkg-hero-img {
            width: 100%;
            aspect-ratio: 4 / 3;
            object-fit: cover;
            display: block;
        }

        .pkg-slide-title {
            grid-area: title;
            font-family: var(--display);
            font-size: clamp(1.35rem, 3vw, 1.75rem);
            font-weight: 700;
            margin: 0 0 0.35rem;
            color: var(--text);
            align-self: start;
            padding: 1.35rem 1.5rem 0;
        }

        .pkg-slide-rest {
            grid-area: rest;
            display: flex;
            flex-direction: column;
            flex: 1;
            min-height: 0;
            align-self: stretch;
            padding: 0 1.5rem 1.5rem;
        }

        @media (max-width: 780px) {
            .pkg-slide-title {
                margin: 0;
                padding: 1.1rem 1.25rem 1rem;
                color: var(--accent);
                background: linear-gradient(
                    125deg,
                    var(--accent-soft) 0%,
                    color-mix(in srgb, var(--accent-mid) 22%, var(--surface) 78%) 52%,
                    color-mix(in srgb, var(--accent) 16%, var(--surface2) 84%) 100%
                );
                border-bottom: 1px solid color-mix(in srgb, var(--accent-mid) 28%, var(--border) 72%);
            }

            .pkg-slide-rest {
                padding: 1.15rem 1.5rem 1.5rem;
            }
        }

        .pkg-price-block {
            display: flex;
            flex-wrap: wrap;
            align-items: baseline;
            gap: 0.35rem 0.75rem;
            margin: 0 0 1rem;
        }

        .pkg-price-current {
            font-size: 1.45rem;
            font-weight: 700;
            color: var(--accent);
        }

        .pkg-price-was {
            font-size: 1rem;
            font-weight: 600;
            color: var(--muted);
            text-decoration: line-through;
            opacity: 0.85;
        }

        .pkg-price-delivery {
            flex-basis: 100%;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--muted);
            letter-spacing: 0.02em;
        }

        .pkg-slide-sub {
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--muted);
            margin: 0 0 0.5rem;
        }

        .pkg-qty-list {
            list-style: none;
            margin: 0 0 1.25rem;
            padding: 0;
            font-size: 0.9rem;
            flex: 1;
        }

        .pkg-qty-list li {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 0.5rem;
            padding: 0.45rem 0;
            border-bottom: 1px solid var(--border);
            align-items: baseline;
        }

        .pkg-qty-list li:last-child {
            border-bottom: none;
        }

        .pkg-qty-list .item-name {
            color: var(--text);
            font-weight: 600;
        }

        .pkg-qty-list .item-qty {
            color: var(--muted);
            font-size: 0.85rem;
            text-align: right;
            white-space: nowrap;
        }

        .pkg-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2;
            width: 2.35rem;
            height: 2.35rem;
            border: none;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.96);
            color: var(--text);
            cursor: pointer;
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            line-height: 1;
            border: 1px solid var(--border);
        }

        .pkg-nav:hover {
            background: #fff;
        }

        .pkg-nav:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        .pkg-nav--prev {
            left: 0.4rem;
        }

        .pkg-nav--next {
            right: 0.4rem;
        }

        .pkg-dots {
            display: flex;
            justify-content: center;
            gap: 0.45rem;
            padding: 1rem 0 0;
            margin: 0;
            list-style: none;
        }

        .pkg-dots button {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: none;
            padding: 0;
            background: var(--border);
            cursor: pointer;
            transition: transform 0.2s, background 0.2s, width 0.25s var(--ease-out), border-radius 0.2s ease;
        }

        .pkg-dots button[aria-current="true"] {
            background: var(--accent);
            width: 22px;
            border-radius: 999px;
            transform: scale(1);
        }

        .pkg-dots button:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        /* Mobile: list all packs vertically; desktop-only slider */
        @media (max-width: 780px) {
            .pkg-viewport {
                overflow: visible;
                border: none;
                box-shadow: none;
                background: transparent;
                border-radius: 0;
            }

            .pkg-track {
                flex-direction: column;
                gap: 1.25rem;
                transform: none !important;
                transition: none;
            }

            .pkg-slide {
                flex: 0 0 auto;
                width: 100%;
            }

            .pkg-slide-card {
                border: 1px solid var(--border);
                border-radius: var(--radius);
                box-shadow: var(--shadow);
                overflow: hidden;
                background: var(--surface);
            }

            .pkg-nav,
            .pkg-dots {
                display: none !important;
            }
        }

        .book-cell {
            display: flex;
            flex-wrap: wrap;
            gap: 0.45rem;
            align-items: center;
        }

        .btn-book {
            padding: 0.45rem 0.85rem;
            font-size: 0.82rem;
            border-radius: 999px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: none;
            cursor: pointer;
            font-family: inherit;
            transition: transform 0.2s var(--ease-out), filter 0.2s ease, box-shadow 0.2s ease;
        }

        .btn-book:active {
            transform: scale(0.98);
        }

        .btn-book--wa {
            background: #25d366;
            color: #fff;
        }

        .btn-book--wa:hover {
            filter: brightness(1.06);
            text-decoration: none;
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
        }

        .btn-book--ig {
            background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
            color: #fff;
        }

        .btn-book--ig:hover {
            filter: brightness(1.06);
            text-decoration: none;
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(221, 42, 123, 0.35);
        }

        /* Testimonials slider */
        .testimonial-slider {
            position: relative;
            max-width: 720px;
            margin: 0 auto;
            padding: 0 0 0.5rem;
        }

        .testimonial-viewport {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            transition: box-shadow 0.3s ease, transform 0.3s var(--ease-out);
        }

        @media (hover: hover) {
            .testimonial-viewport:hover {
                box-shadow: var(--shadow-lg);
                transform: translateY(-2px);
            }
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.45s cubic-bezier(0.33, 1, 0.68, 1);
        }

        @media (prefers-reduced-motion: reduce) {
            .testimonial-track {
                transition: none;
            }
        }

        .testimonial-slide {
            flex: 0 0 100%;
            min-width: 0;
        }

        .testimonial-card {
            margin: 0;
            padding: 2rem 2.75rem 2.25rem;
            background: linear-gradient(145deg, #ecfdf9 0%, #eef6ff 45%, #faf5ff 100%);
            text-align: center;
            min-height: 280px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            box-sizing: border-box;
        }

        @media (min-width: 640px) {
            .testimonial-card {
                padding: 2rem 3rem 2.25rem;
            }
        }

        .testimonial-stars {
            display: flex;
            justify-content: center;
            gap: 0.15rem;
            margin: 0 0 1rem;
            padding: 0;
            list-style: none;
            font-size: 1.2rem;
            line-height: 1;
        }

        .testimonial-stars .star {
            color: #e2e8f0;
        }

        .testimonial-stars .star.is-on {
            color: #f59e0b;
        }

        .testimonial-card blockquote {
            margin: 0;
            font-family: var(--display);
            font-size: clamp(1.05rem, 2.8vw, 1.25rem);
            font-style: italic;
            line-height: 1.5;
            color: var(--text);
        }

        .testimonial-card cite {
            display: block;
            margin-top: 1.15rem;
            font-style: normal;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--muted);
        }

        .t-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2;
            width: 2.25rem;
            height: 2.25rem;
            border: none;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.95);
            color: var(--text);
            cursor: pointer;
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.15rem;
            line-height: 1;
            border: 1px solid var(--border);
        }

        .t-nav:hover {
            background: #fff;
        }

        .t-nav:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        .t-nav--prev {
            left: 0.35rem;
        }

        .t-nav--next {
            right: 0.35rem;
        }

        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 0.45rem;
            padding: 1rem 0 0;
            margin: 0;
            list-style: none;
        }

        .testimonial-dots button {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: none;
            padding: 0;
            background: var(--border);
            cursor: pointer;
            transition: transform 0.2s, background 0.2s, width 0.25s var(--ease-out), border-radius 0.2s ease;
        }

        .testimonial-dots button[aria-current="true"] {
            background: var(--accent);
            width: 22px;
            border-radius: 999px;
            transform: scale(1);
        }

        .testimonial-dots button:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        /* Contact */
        .contact-grid {
            max-width: 560px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-group label {
            display: block;
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--muted);
            margin-bottom: 0.35rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.65rem 0.85rem;
            border: 1px solid var(--border);
            border-radius: 10px;
            font-family: inherit;
            font-size: 1rem;
            background: var(--surface);
            color: var(--text);
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px var(--accent-soft);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--muted);
            opacity: 0.82;
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

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

        .form-status {
            display: none;
            margin-top: 0.85rem;
            padding: 0.75rem 1rem;
            border-radius: 10px;
            font-size: 0.92rem;
            line-height: 1.45;
            outline: none;
        }

        .form-status.is-visible {
            display: block;
        }

        .form-status--success {
            background: rgba(15, 118, 110, 0.12);
            border: 1px solid rgba(15, 118, 110, 0.35);
            color: var(--text);
        }

        .form-status--error {
            background: rgba(220, 38, 38, 0.1);
            border: 1px solid rgba(220, 38, 38, 0.35);
            color: #b91c1c;
        }

        /* Toast notifications */
        .toast-root {
            position: fixed;
            top: max(1rem, env(safe-area-inset-top, 0px));
            left: 50%;
            transform: translateX(-50%);
            z-index: 100;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            align-items: stretch;
            max-width: min(28rem, calc(100vw - 1.5rem));
            width: calc(100vw - 1.5rem);
            pointer-events: none;
        }

        .toast {
            pointer-events: auto;
            margin: 0;
            padding: 0.9rem 1.15rem 0.9rem 1rem;
            border-radius: 12px;
            font-size: 0.95rem;
            line-height: 1.45;
            box-shadow: 0 12px 40px rgba(27, 36, 48, 0.18), 0 0 0 1px rgba(27, 36, 48, 0.06);
            background: var(--surface);
            color: var(--text);
            opacity: 0;
            transform: translateY(-0.75rem) scale(0.98);
            transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out);
            display: flex;
            align-items: flex-start;
            gap: 0.65rem;
        }

        .toast.toast--show {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .toast__icon {
            flex-shrink: 0;
            width: 1.35rem;
            height: 1.35rem;
            margin-top: 0.12rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 700;
        }

        .toast--success .toast__icon {
            background: rgba(15, 118, 110, 0.2);
            color: var(--accent);
        }

        .toast--error .toast__icon {
            background: rgba(220, 38, 38, 0.15);
            color: #dc2626;
        }

        .toast--success {
            border-left: 4px solid var(--accent);
        }

        .toast--error {
            border-left: 4px solid #dc2626;
        }

        .toast__body {
            flex: 1;
            min-width: 0;
        }

        .toast__close {
            flex-shrink: 0;
            border: none;
            background: transparent;
            color: var(--muted);
            cursor: pointer;
            padding: 0.15rem;
            line-height: 1;
            font-size: 1.25rem;
            border-radius: 6px;
            margin: -0.1rem -0.2rem 0 0;
        }

        .toast__close:hover {
            color: var(--text);
            background: var(--bg);
        }

        .toast__close:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        @media (prefers-reduced-motion: reduce) {
            .toast {
                transition: opacity 0.15s ease;
                transform: none;
            }

            .toast.toast--show {
                transform: none;
            }
        }

        .contact-honey {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* Footer — dark, two columns */
        .footer {
            background: #0a0a0a;
            color: #9ca8b8;
            padding: 3rem 1.25rem 2.5rem;
            text-align: left;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem 3.5rem;
            align-items: start;
        }

        .footer-col--brand {
            max-width: 26rem;
        }

        .footer a {
            color: #5eead4;
            font-weight: 500;
        }

        .footer a:hover {
            color: #99f6e4;
            text-decoration: underline;
        }

        .footer p {
            margin: 0.35rem 0;
            font-size: 0.92rem;
        }

        .footer .brand {
            font-family: var(--display);
            font-weight: 600;
            color: #f1f5f9;
            font-size: 1.15rem;
            margin: 0 0 0.5rem;
        }

        .footer-brand-accent {
            color: #2dd4bf;
        }

        .footer-tagline {
            margin: 0 0 1rem;
            line-height: 1.5;
            color: #94a3b8;
        }

        .footer-nav {
            margin: 0 0 1.25rem;
            font-size: 0.95rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.35rem 0.55rem;
        }

        .footer-nav .sep {
            color: #475569;
            user-select: none;
        }

        .footer-copy {
            margin: 0 !important;
            font-size: 0.85rem !important;
            color: #64748b !important;
        }

        @media (max-width: 720px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-col--compliance .fssai-license {
                margin-top: 0;
            }
        }

        .pkg-disclaimer {
            max-width: 42rem;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.55;
        }

        .fssai-license {
            display: flex; 
            align-items: center;
            justify-content: flex-start;
            gap: 1rem 1.25rem;
            margin: 1.75rem auto 0;
            max-width: 28rem;
            padding: 1rem 1.25rem;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            text-align: left;
        }

        .footer .fssai-license {
            margin: 0;
            max-width: none;
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.12);
            flex-wrap: nowrap;
            align-items: center;
        }

        .fssai-license > a:first-of-type {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.6rem 1rem;
            background: #ffffff;
            border-radius: 10px;
            border: 1px solid rgba(15, 23, 42, 0.08);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            line-height: 0;
            flex-shrink: 0;
        }

        .fssai-license > a:first-of-type:hover {
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
        }

        .footer .fssai-license > a:first-of-type {
            border-color: rgba(255, 255, 255, 0.25);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
        }

        .fssai-license img {
            height: auto;
            width: auto;
            max-height: 52px;
            max-width: 150px;
            object-fit: contain;
            display: block;
        }

        .fssai-license .fssai-text {
            margin: 0;
            font-size: 0.88rem;
            line-height: 1.45;
            color: var(--muted);
        }

        .footer .fssai-license .fssai-text {
            flex: 1 1 0;
            min-width: 0;
            color: #94a3b8;
        }

        .fssai-license .fssai-text strong {
            color: var(--text);
            letter-spacing: 0.02em;
        }

        .footer .fssai-license .fssai-text strong {
            color: #f1f5f9;
        }

        /* Floating actions — share, Instagram, WhatsApp (right edge, vertically centred) */
        .fab-contact {
            position: fixed;
            right: max(1rem, env(safe-area-inset-right, 0px));
            top: 50%;
            bottom: auto;
            transform: translateY(-50%);
            z-index: 60;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: center;
            gap: 0.65rem;
        }

        .fab-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 3.35rem;
            height: 3.35rem;
            border: none;
            padding: 0;
            margin: 0;
            font: inherit;
            border-radius: 0;
            box-shadow: 0 4px 18px rgba(27, 36, 48, 0.18);
            text-decoration: none;
            color: #fff;
            cursor: pointer;
            transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease,
                border-color 0.18s ease;
        }

        .fab-btn:hover {
            transform: scale(1.07);
            text-decoration: none;
            box-shadow: 0 6px 22px rgba(27, 36, 48, 0.22);
        }

        .fab-btn--ig:hover,
        .fab-btn--wa:hover {
            color: #fff;
        }

        .fab-btn:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 3px;
        }

        .fab-btn svg {
            width: 1.5rem;
            height: 1.5rem;
            fill: currentColor;
        }

        .fab-btn--share {
            background: #fff;
            color: var(--accent);
            border: 1px solid rgba(15, 118, 110, 0.35);
            box-shadow: 0 4px 18px rgba(27, 36, 48, 0.14);
        }

        .fab-btn--share:hover {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
        }

        .fab-btn--wa {
            background: #25d366;
            color: #fff;
        }

        .fab-btn--ig {
            background: linear-gradient(43deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            color: #fff;
        }

        @media (prefers-reduced-motion: reduce) {
            .fab-btn:hover {
                transform: none;
            }

            .reveal-on-scroll {
                opacity: 1;
                transform: none;
                transition: none;
            }

            .section-head.reveal-on-scroll h2::after,
            .section-head.reveal-on-scroll.is-visible h2::after {
                width: 3.25rem;
                transition: none;
            }

            .hero-slide .hero-slide-content--intro,
            .hero-slide .hero-slide-aside {
                transition: none !important;
                opacity: 1 !important;
                transform: none !important;
            }

            .hero-slide-badge,
            .hero-package {
                animation: none !important;
            }

            .btn-primary:hover,
            .btn-outline:hover,
            .nav .cta:hover {
                transform: none;
            }

            .pkg-viewport:hover,
            .testimonial-viewport:hover,
            .about-highlights .about-highlight:hover {
                transform: none;
            }

            .btn-book--wa:hover,
            .btn-book--ig:hover {
                transform: none;
                box-shadow: none;
            }
        }
