* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg: #ffffff;
            --dark: #0a0a0a;
            --text-dark: #0a0a0a;
            --text-light: #68686c;
            --text-on-dark: #ffffff;
            --text-on-dark-dim: rgba(255, 255, 255, 0.6);
            --accent: #7acc00;
            --accent-soft: rgba(122, 204, 0, 0.12);
            --bg-light: #f6f6f4;
            --border: #eaeaea;
            --r-sm: 16px;
            --r-md: 24px;
            --r-lg: 32px;
            --r-pill: 100px;
            --ease: cubic-bezier(0.16, 1, 0.3, 1);
            --shadow-soft: 0 20px 50px -20px rgba(0, 0, 0, 0.15);
            --shadow-lift: 0 30px 70px -25px rgba(0, 0, 0, 0.22);
            --shadow-accent: 0 20px 45px -15px rgba(122, 204, 0, 0.45);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--bg);
            color: var(--text-dark);
            line-height: 1.6;
        }

        section {
            padding: 100px 50px;
        }

        /* ---------- Nav ---------- */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.72);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            padding: 18px 50px;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }

        .nav-left {
            font-size: 1.4em;
            font-weight: 800;
            letter-spacing: -1px;
        }

        .nav-logo {
            position: relative;
            display: inline-flex;
            flex-direction: column;
            text-decoration: none;
            color: inherit;
        }

        .nav-logo-sub {
            position: absolute;
            top: 16px;
            left: 18.9px;
            width: 43.6px;
            text-align: center;
            font-size: 7px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-light);
            white-space: nowrap;
        }

        .nav-logo img {
            height: 17px;
            width: auto;
            display: block;
        }

        .nav-right {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 0.95em;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .language-switcher {
            display: flex;
            gap: 4px;
            padding: 6px;
            background: var(--bg-light);
            border-radius: var(--r-pill);
        }

        .lang-btn {
            background: transparent;
            border: none;
            cursor: pointer;
            font-weight: 700;
            font-size: 0.8em;
            padding: 7px 13px;
            border-radius: var(--r-pill);
            color: var(--text-light);
            transition: all 0.3s var(--ease);
        }

        .lang-btn.active {
            color: var(--dark);
            background: var(--bg);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .book-btn {
            background: var(--dark);
            color: var(--bg);
            padding: 13px 28px;
            border: none;
            border-radius: var(--r-pill);
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s var(--ease);
        }

        .book-btn:hover {
            background: var(--accent);
            color: var(--dark);
            transform: scale(1.05);
            box-shadow: var(--shadow-accent);
        }

        /* ---------- Hero ---------- */
        .hero {
            margin-top: 80px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            background: linear-gradient(180deg, var(--bg) 0%, var(--bg-light) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before,
        .hero::after {
            content: "";
            position: absolute;
            border-radius: 50%;
            filter: blur(90px);
            z-index: 0;
            pointer-events: none;
        }

        .hero::before {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(122, 204, 0, 0.28), transparent 70%);
            top: -120px;
            right: -100px;
        }

        .hero::after {
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, rgba(122, 204, 0, 0.16), transparent 70%);
            bottom: -80px;
            left: -120px;
        }

        .hero > * {
            position: relative;
            z-index: 1;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            padding: 5px;
            border: 1px solid var(--border);
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-radius: var(--r-pill);
            margin-bottom: 30px;
            opacity: 0;
            animation: fadeUp 0.7s var(--ease) forwards;
        }

        .hero-tag-primary {
            display: flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: var(--r-pill);
            background: var(--accent-soft);
            font-size: 0.82em;
            font-weight: 800;
            letter-spacing: 0.5px;
            color: var(--text-dark);
        }

        .hero-tag span.dot {
            display: inline-block;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent);
            margin-right: 7px;
        }

        .hero-tag-divider {
            width: 1px;
            height: 16px;
            background: var(--border);
            margin: 0 4px;
            flex-shrink: 0;
        }

        .hero-tag-secondary {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 14px 8px 12px;
            font-size: 0.82em;
            font-weight: 600;
            color: var(--text-light);
        }

        .hero-tag-secondary svg {
            width: 12px;
            height: 12px;
            opacity: 0.6;
            flex-shrink: 0;
        }

        .hero-tag-secondary .soon-badge {
            font-weight: 700;
            font-size: 0.88em;
            color: var(--text-light);
            background: var(--bg-light);
            padding: 3px 9px;
            border-radius: var(--r-pill);
            margin-left: 2px;
        }

        .hero h1 {
            font-size: 5.5em;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
            letter-spacing: -1px;
            max-width: 1000px;
            opacity: 0;
            animation: fadeUp 0.8s var(--ease) 0.1s forwards;
            font-family: 'Playfair Display', 'Georgia', serif;
        }

        .hero-subtitle {
            font-size: 1.25em;
            color: var(--text-light);
            margin-bottom: 50px;
            max-width: 700px;
            font-weight: 400;
            line-height: 1.7;
            opacity: 0;
            animation: fadeUp 0.8s var(--ease) 0.22s forwards;
        }

        .hero-cta {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 100px;
            opacity: 0;
            animation: fadeUp 0.8s var(--ease) 0.34s forwards;
        }

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

        .cta-primary {
            background: var(--dark);
            color: var(--bg);
            padding: 17px 40px;
            border-radius: var(--r-pill);
            text-decoration: none;
            font-weight: 700;
            font-size: 1em;
            border: none;
            cursor: pointer;
            transition: all 0.4s var(--ease);
        }

        .cta-primary:hover {
            background: var(--accent);
            color: var(--dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow-accent);
        }

        .cta-secondary {
            background: rgba(255, 255, 255, 0.6);
            color: var(--text-dark);
            padding: 15px 38px;
            border: 2px solid var(--text-dark);
            border-radius: var(--r-pill);
            text-decoration: none;
            font-weight: 700;
            font-size: 1em;
            cursor: pointer;
            transition: all 0.4s var(--ease);
        }

        .cta-secondary:hover {
            background: var(--text-dark);
            color: var(--bg);
            transform: translateY(-3px);
        }

        /* ---------- Reveal on scroll ---------- */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
        }

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

        section {
            padding: 100px 50px;
        }

        section h2 {
            font-size: 3.2em;
            font-weight: 800;
            margin-bottom: 45px;
            text-align: center;
            letter-spacing: -1px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-eyebrow {
            display: block;
            text-align: center;
            font-size: 0.85em;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 15px;
        }

        .section-sub {
            text-align: center;
            color: var(--text-light);
            font-size: 1.1em;
            max-width: 650px;
            margin: 0 auto 60px;
        }

        /* ---------- Stats (dark) ---------- */
        .stats {
            background: var(--dark);
            background-image: radial-gradient(circle at 15% 30%, rgba(122, 204, 0, 0.12), transparent 55%),
                               radial-gradient(circle at 85% 70%, rgba(122, 204, 0, 0.08), transparent 55%);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .stat-number {
            font-size: 3.2em;
            font-weight: 800;
            color: var(--accent);
            letter-spacing: -1px;
        }

        .stat-label {
            color: var(--text-on-dark-dim);
            font-size: 0.95em;
            font-weight: 500;
            margin-top: 8px;
        }

        /* ---------- About ---------- */
        .about {
            background: var(--bg);
            max-width: 1000px;
            margin: 0 auto;
        }

        .about p {
            font-size: 1.1em;
            color: var(--text-light);
            margin-bottom: 25px;
            line-height: 1.8;
            text-align: center;
        }

        /* ---------- Work / Gallery ---------- */
        .work {
            background: var(--bg-light);
        }

        .work-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .work-item {
            aspect-ratio: 4 / 5;
            border-radius: var(--r-lg);
            background: linear-gradient(160deg, #ffffff 0%, #f6f6f4 100%);
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 30px;
            cursor: pointer;
            transform: rotate(var(--tilt, 0deg));
            transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s var(--ease);
        }

        .work-grid .work-item:nth-child(6n+1) { --tilt: -0.6deg; }
        .work-grid .work-item:nth-child(6n+2) { --tilt: 0.5deg; }
        .work-grid .work-item:nth-child(6n+3) { --tilt: -0.4deg; }
        .work-grid .work-item:nth-child(6n+4) { --tilt: 0.6deg; }
        .work-grid .work-item:nth-child(6n+5) { --tilt: -0.5deg; }
        .work-grid .work-item:nth-child(6n+6) { --tilt: 0.4deg; }

        .work-item:hover {
            transform: rotate(0deg) translateY(-8px);
            box-shadow: var(--shadow-lift);
            border-color: transparent;
        }

        .work-item-icon {
            width: 76px;
            height: 76px;
            border-radius: var(--r-md);
            background: var(--accent-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2em;
            margin: 0 auto 20px;
            transition: transform 0.5s var(--ease);
        }

        .work-item:hover .work-item-icon {
            transform: scale(1.08) rotate(-4deg);
        }

        .work-item-label {
            position: relative;
            z-index: 1;
        }

        .work-item-category {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--accent);
            background: var(--bg);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            font-size: 0.75em;
            font-weight: 700;
            letter-spacing: 0.5px;
            padding: 7px 14px 7px 10px;
            border-radius: var(--r-pill);
            margin-bottom: 14px;
        }

        .work-item-category::before {
            content: "";
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
            flex-shrink: 0;
        }

        .work-item-title {
            color: var(--text-dark);
            font-size: 1.3em;
            font-weight: 700;
            display: block;
        }

        .work-item-desc-inline {
            color: var(--text-light);
            font-size: 0.88em;
            line-height: 1.6;
            margin-top: 10px;
        }

        .work-item-hint {
            color: var(--accent);
            font-size: 0.85em;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            opacity: 0.9;
            margin-top: 22px;
            transition: gap 0.3s var(--ease);
        }

        .work-item:hover .work-item-hint {
            gap: 10px;
        }

        .work-item.accent {
            background: linear-gradient(155deg, rgba(122, 204, 0, 0.22) 0%, rgba(122, 204, 0, 0.06) 100%);
            border-color: rgba(122, 204, 0, 0.25);
        }

        .work-item.accent .work-item-icon {
            background: var(--accent);
            color: var(--dark);
        }

        .work-item.c-rose {
            background: linear-gradient(155deg, #fbdfe4 0%, #fcecee 100%);
            border-color: rgba(219, 39, 119, 0.12);
        }

        .work-item.c-blue {
            background: linear-gradient(155deg, #d7ecfd 0%, #eaf5fd 100%);
            border-color: rgba(37, 99, 235, 0.12);
        }

        .work-item.c-peach {
            background: linear-gradient(155deg, #fce3cd 0%, #fdf0e3 100%);
            border-color: rgba(234, 88, 12, 0.12);
        }

        .work-item.c-lavender {
            background: linear-gradient(155deg, #e6dcfb 0%, #f2ecfc 100%);
            border-color: rgba(124, 58, 237, 0.12);
        }

        .work-item.c-teal {
            background: linear-gradient(155deg, #cdf1e6 0%, #e6f8f2 100%);
            border-color: rgba(13, 148, 136, 0.12);
        }

        .work-item.c-rose .work-item-icon,
        .work-item.c-blue .work-item-icon,
        .work-item.c-peach .work-item-icon,
        .work-item.c-lavender .work-item-icon,
        .work-item.c-teal .work-item-icon {
            background: rgba(255, 255, 255, 0.6);
        }

        /* ---------- Work Modal ---------- */
        .work-modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(10, 10, 10, 0.65);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            z-index: 2000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.35s var(--ease);
        }

        .work-modal-overlay.open {
            opacity: 1;
            pointer-events: auto;
        }

        .work-modal {
            background: var(--bg);
            border-radius: var(--r-lg);
            padding: 50px;
            max-width: 460px;
            width: 100%;
            position: relative;
            box-shadow: var(--shadow-lift);
            transform: scale(0.92) translateY(20px);
            transition: transform 0.45s var(--ease);
        }

        .work-modal-overlay.open .work-modal {
            transform: scale(1) translateY(0);
        }

        .work-modal-close {
            position: absolute;
            top: 22px;
            right: 22px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--bg-light);
            border: none;
            cursor: pointer;
            font-size: 1em;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }

        .work-modal-close:hover {
            background: var(--accent-soft);
        }

        .work-modal-icon {
            width: 64px;
            height: 64px;
            border-radius: var(--r-md);
            background: var(--accent-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2em;
            margin-bottom: 22px;
        }

        .work-modal h3 {
            font-size: 1.6em;
            font-weight: 800;
            margin-bottom: 14px;
            letter-spacing: -0.5px;
        }

        .work-modal-desc {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 22px;
        }

        .work-modal-best {
            font-size: 0.9em;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 30px;
        }

        .work-modal-best span {
            color: var(--accent);
        }

        /* ---------- Packages ---------- */
        .packages {
            background: var(--bg);
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .package-card {
            background: #ececea;
            padding: 45px 40px;
            border-radius: var(--r-lg);
            border: 1px solid var(--border);
            position: relative;
            transition: all 0.4s var(--ease);
        }

        .package-card:hover {
            border-color: transparent;
            transform: translateY(-8px);
            box-shadow: var(--shadow-lift);
        }

        .package-card.ring {
            border-color: transparent;
            box-shadow: 0 0 0 1.5px var(--accent);
        }

        .package-card.ring:hover {
            box-shadow: 0 0 0 1.5px var(--accent), var(--shadow-lift);
        }

        .package-card--accent {
            background: linear-gradient(150deg, rgba(122, 204, 0, 0.16) 0%, rgba(122, 204, 0, 0.05) 100%);
        }

        .package-card--dark {
            background: linear-gradient(155deg, #1c1c1c 0%, #0a0a0a 75%);
            border-color: transparent;
        }

        .package-card--dark .package-name,
        .package-card--dark .package-price {
            color: var(--text-on-dark);
        }

        .package-card--dark .package-info {
            color: var(--text-on-dark-dim);
            border-bottom-color: rgba(255, 255, 255, 0.12);
        }

        .package-card--dark .package-features li {
            color: var(--text-on-dark);
        }

        .package-name {
            font-size: 1.5em;
            font-weight: 800;
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: -0.5px;
        }

        .package-subname {
            font-size: 0.8em;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 16px;
        }

        .package-price {
            font-size: 2.5em;
            font-weight: 800;
            color: var(--accent);
            margin-bottom: 25px;
        }

        .package-info {
            font-size: 0.95em;
            color: var(--text-light);
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .package-features {
            list-style: none;
            margin: 25px 0;
        }

        .package-features li {
            padding: 10px 0 10px 34px;
            position: relative;
            font-size: 0.95em;
        }

        .package-features li:before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 10px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--accent);
            color: var(--dark);
            font-size: 0.7em;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .package-features li.feature-unique {
            font-weight: 600;
            color: var(--accent);
        }

        /* ---------- Comparison Table ---------- */
        .comparison-table {
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .comparison-table table {
            border-collapse: collapse;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border-radius: var(--r-md);
            overflow: hidden;
        }

        .comparison-table th {
            background: var(--dark);
            color: var(--text-on-dark);
            padding: 25px 20px !important;
            font-weight: 700;
            font-size: 1em;
            text-align: center;
            border: none;
        }

        .comparison-table th div {
            margin: 0;
            line-height: 1.4;
        }

        .comparison-table th div:first-child {
            font-weight: 800;
            font-size: 1.1em;
            margin-bottom: 8px;
        }

        .comparison-table td {
            padding: 18px 20px !important;
            text-align: center;
            border-bottom: 1px solid var(--border);
            font-weight: 500;
            font-size: 0.95em;
        }

        .comparison-table td:first-child {
            text-align: left;
            font-weight: 600;
            color: var(--text-dark);
            background: var(--bg-light);
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .comparison-table tr:hover td:not(:first-child) {
            background: rgba(122, 204, 0, 0.05);
            transition: background 0.3s ease;
        }

        /* ---------- Equipment ---------- */
        .equipment {
            background: var(--bg-light);
        }

        .equipment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 22px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .equipment-card {
            background: var(--bg);
            border-radius: var(--r-md);
            padding: 26px;
            transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
        }

        .equipment-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-soft);
        }

        .equipment-icon {
            display: none;
        }

        .equipment-name {
            font-weight: 700;
            font-size: 1em;
            margin-bottom: 12px;
        }

        .equipment-list {
            list-style: disc;
            margin: 0;
            padding-left: 20px;
            color: var(--text-light);
            font-size: 0.88em;
            line-height: 1.8;
        }

        .equipment-list li {
            margin-bottom: 6px;
        }

        .equipment-list li:last-child {
            margin-bottom: 0;
        }

        /* ---------- Subscription calculator ---------- */
        .subscription {
            background: var(--bg-light);
        }

        .sub-calculator {
            max-width: 540px;
            margin: 0 auto;
            background: var(--bg);
            border-radius: var(--r-lg);
            padding: 45px;
            box-shadow: var(--shadow-soft);
        }

        .sub-calc-row {
            display: flex;
            gap: 24px;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }

        .sub-calc-control {
            flex: 1;
            min-width: 200px;
            text-align: center;
        }

        .sub-calc-control label {
            display: block;
            font-weight: 700;
            font-size: 0.9em;
            margin-bottom: 14px;
        }

        .sub-stepper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .sub-step-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            background: var(--bg-light);
            font-size: 1.3em;
            font-weight: 700;
            font-family: inherit;
            color: var(--text-dark);
            cursor: pointer;
            transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
        }

        .sub-step-btn:hover {
            background: var(--accent);
            color: var(--dark);
            transform: scale(1.08);
        }

        .sub-step-value {
            font-size: 1.8em;
            font-weight: 800;
            min-width: 50px;
            text-align: center;
        }

        .sub-calc-note {
            display: block;
            margin-top: 10px;
            font-size: 0.78em;
            color: var(--text-light);
        }

        .sub-breakdown {
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 20px 0;
            margin-bottom: 20px;
        }

        .sub-breakdown-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            font-size: 0.92em;
            color: var(--text-light);
        }

        .sub-breakdown-row span:last-child {
            font-weight: 700;
            color: var(--text-dark);
        }

        .sub-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .sub-total span:first-child {
            font-weight: 700;
            font-size: 1.05em;
        }

        .sub-total span:last-child {
            font-size: 2em;
            font-weight: 800;
            color: var(--accent);
        }

        .sub-cta {
            width: 100%;
        }

        .sub-toggle-row {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 18px;
            margin-bottom: 24px;
            background: var(--bg-light);
            border-radius: var(--r-sm);
            cursor: pointer;
        }

        .sub-toggle {
            position: relative;
            display: inline-block;
            width: 42px;
            height: 25px;
            flex-shrink: 0;
        }

        .sub-toggle input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .sub-toggle-slider {
            position: absolute;
            inset: 0;
            background: var(--border);
            border-radius: var(--r-pill);
            transition: background 0.25s var(--ease);
        }

        .sub-toggle-slider::before {
            content: "";
            position: absolute;
            width: 19px;
            height: 19px;
            left: 3px;
            top: 3px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
            transition: transform 0.25s var(--ease);
        }

        .sub-toggle input:checked + .sub-toggle-slider {
            background: var(--accent);
        }

        .sub-toggle input:checked + .sub-toggle-slider::before {
            transform: translateX(17px);
        }

        .sub-toggle-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .sub-toggle-text strong {
            font-size: 0.95em;
            font-weight: 700;
        }

        .sub-toggle-price {
            font-size: 0.82em;
            color: var(--text-light);
        }

        /* ---------- Features ---------- */
        .features {
            background: var(--bg);
            max-width: 1200px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
        }

        .feature {
            text-align: center;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: var(--r-md);
            background: var(--accent-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6em;
            margin: 0 auto 20px;
            transition: transform 0.4s var(--ease);
        }

        .feature:hover .feature-icon {
            transform: scale(1.08) rotate(-4deg);
        }

        .feature h3 {
            font-size: 1.3em;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .feature p {
            font-size: 0.95em;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* ---------- FAQ ---------- */
        .faq {
            background: var(--bg-light);
            max-width: 850px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg);
            border-radius: var(--r-md);
            margin-bottom: 14px;
            overflow: hidden;
            box-shadow: 0 4px 20px -8px rgba(0, 0, 0, 0.06);
            transition: box-shadow 0.3s var(--ease);
        }

        .faq-item.open {
            box-shadow: var(--shadow-soft);
        }

        .faq-question {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            padding: 24px 28px;
            font-size: 1.05em;
            font-weight: 700;
            font-family: inherit;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            color: var(--text-dark);
        }

        .faq-icon {
            flex-shrink: 0;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: var(--accent-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            color: var(--accent);
            transition: transform 0.4s var(--ease);
        }

        .faq-item.open .faq-icon {
            transform: rotate(45deg);
            background: var(--accent);
            color: var(--dark);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s var(--ease);
        }

        .faq-answer-inner {
            padding: 0 28px 24px;
            color: var(--text-light);
            font-size: 0.98em;
            line-height: 1.7;
        }

        /* ---------- Privacy ---------- */
        .privacy {
            background: var(--bg-light);
            max-width: 750px;
            margin: 0 auto;
        }

        .privacy-body {
            background: var(--bg);
            border-radius: var(--r-lg);
            padding: 50px;
            box-shadow: var(--shadow-soft);
        }

        .privacy-updated {
            color: var(--text-light);
            font-size: 0.85em;
            margin-bottom: 30px;
        }

        .privacy-body h4 {
            font-size: 1.05em;
            font-weight: 700;
            margin: 28px 0 10px;
        }

        .privacy-body h4:first-of-type {
            margin-top: 0;
        }

        .privacy-body p {
            color: var(--text-light);
            font-size: 0.95em;
            line-height: 1.7;
        }

        /* ---------- Booking ---------- */
        .booking {
            background: var(--bg);
            max-width: 900px;
            margin: 0 auto;
        }

        .form-container {
            background: var(--bg-light);
            padding: 45px;
            border-radius: var(--r-lg);
            box-shadow: var(--shadow-soft);
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin-bottom: 30px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            grid-column: span 1;
        }

        .form-group.full {
            grid-column: 1 / -1;
        }

        label {
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 0.95em;
        }

        input,
        select,
        textarea {
            padding: 14px;
            border: 1px solid var(--border);
            border-radius: var(--r-md);
            font-family: inherit;
            font-size: 0.95em;
            background: var(--bg);
            transition: border-color 0.3s, box-shadow 0.3s;
        }


        input:focus,
        select:focus,
        textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 4px var(--accent-soft);
        }

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

        /* ---------- Custom date picker ---------- */
        .date-picker {
            position: relative;
        }

        .date-picker-trigger {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            padding: 13px 16px;
            border: 1px solid var(--border);
            border-radius: var(--r-sm);
            background: var(--bg);
            font-family: inherit;
            font-size: 0.95em;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .date-picker-trigger:hover {
            border-color: var(--accent);
        }

        .date-picker-trigger.open {
            border-color: var(--accent);
            box-shadow: 0 0 0 4px var(--accent-soft);
        }

        .date-picker-trigger svg {
            width: 16px;
            height: 16px;
            opacity: 0.5;
            flex-shrink: 0;
        }

        .date-picker-placeholder {
            color: var(--text-light);
            font-weight: 500;
        }

        .date-picker-popup {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            width: 300px;
            max-width: 90vw;
            background: var(--bg);
            border-radius: var(--r-md);
            box-shadow: var(--shadow-lift);
            border: 1px solid var(--border);
            padding: 16px;
            z-index: 100;
            opacity: 0;
            pointer-events: none;
            transform: translateY(-8px) scale(0.98);
            transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
        }

        .date-picker-popup.open {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0) scale(1);
        }

        .date-picker-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 14px;
            font-weight: 700;
            font-size: 0.92em;
        }

        .date-picker-nav {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: none;
            background: var(--bg-light);
            cursor: pointer;
            font-size: 1.1em;
            line-height: 1;
            color: var(--text-dark);
            transition: background 0.2s, color 0.2s;
        }

        .date-picker-nav:hover:not(:disabled) {
            background: var(--accent-soft);
            color: var(--accent);
        }

        .date-picker-nav:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .date-picker-weekdays {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            text-align: center;
            font-size: 0.7em;
            font-weight: 700;
            letter-spacing: 0.5px;
            color: var(--text-light);
            margin-bottom: 6px;
            text-transform: uppercase;
        }

        .date-picker-days {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 2px;
        }

        .date-picker-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            background: none;
            border-radius: 50%;
            font-family: inherit;
            font-size: 0.85em;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            transition: background 0.2s, color 0.2s;
        }

        .date-picker-day:hover:not(:disabled):not(.date-picker-day-empty) {
            background: var(--accent-soft);
        }

        .date-picker-day.selected {
            background: var(--accent);
            color: var(--dark);
        }

        .date-picker-day.today:not(.selected) {
            box-shadow: inset 0 0 0 1.5px var(--accent);
        }

        .date-picker-day:disabled {
            color: var(--border);
            cursor: not-allowed;
        }

        .date-picker-day.booked {
            background: #ffebee;
            color: #c62828;
            font-weight: 600;
        }

        .date-picker-day-empty {
            visibility: hidden;
            cursor: default;
        }

        .form-note {
            font-size: 0.85em;
            color: var(--text-light);
            margin-top: 14px;
            text-align: center;
        }

        /* Policy information box */
        .form-policy-box {
            background: rgba(122, 204, 0, 0.08);
            border-left: 4px solid var(--accent);
            padding: 20px;
            border-radius: 8px;
            margin: 32px 0 24px;
        }

        .form-policy-box h4 {
            margin: 0 0 12px 0;
            font-weight: 600;
            font-size: 15px;
            color: var(--text-dark);
        }

        .form-policy-box ul {
            margin: 0;
            padding-left: 20px;
            line-height: 1.6;
            font-size: 14px;
            color: var(--text-secondary);
        }

        .form-policy-box li {
            margin-bottom: 8px;
        }

        .form-policy-box strong {
            color: var(--text-dark);
            font-weight: 600;
        }

        /* Terms checkbox */
        .form-terms-label {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            cursor: pointer;
            font-size: 14px;
            margin: 28px 0 32px;
            padding: 16px;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: var(--r-md);
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .form-terms-label:hover {
            border-color: var(--accent);
        }

        .form-terms-label input[type="checkbox"] {
            width: 20px;
            height: 20px;
            min-width: 20px;
            margin-top: 2px;
            cursor: pointer;
            accent-color: var(--accent);
            border-radius: 4px;
        }

        .form-terms-label input[type="checkbox"]:focus {
            outline: none;
            box-shadow: 0 0 0 3px var(--accent-soft);
        }

        .form-terms-label span {
            color: var(--text-dark);
            line-height: 1.5;
        }

        .submit-btn {
            background: var(--dark);
            color: var(--bg);
            padding: 17px 50px;
            border: none;
            border-radius: var(--r-pill);
            font-weight: 700;
            font-size: 1em;
            cursor: pointer;
            transition: all 0.4s var(--ease);
            width: 100%;
            margin-top: 12px;
        }

        .submit-btn:hover {
            background: var(--accent);
            color: var(--dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow-accent);
        }

        /* ---------- Footer ---------- */
        footer {
            background: var(--dark);
            color: var(--bg);
            padding: 70px 50px 40px;
            margin: 0 20px 24px;
            border-radius: var(--r-lg);
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-chips {
            padding-top: 4px;
        }

        .footer-wordmark {
            position: relative;
            display: inline-flex;
            flex-direction: column;
        }

        .footer-logo-sub {
            position: absolute;
            top: 20px;
            left: 24.5px;
            width: 56.4px;
            text-align: center;
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.45);
            white-space: nowrap;
        }

        .footer-logo-img {
            height: 22px;
            width: auto;
            display: block;
        }

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

        .footer-chip {
            background: rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.78em;
            font-weight: 700;
            letter-spacing: 0.5px;
            padding: 9px 15px;
            border-radius: 10px;
        }

        .footer-chip-soon {
            background: transparent;
            border: 1px dashed rgba(255, 255, 255, 0.25);
            color: rgba(255, 255, 255, 0.4);
        }

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

        .footer-social a {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.08);
            color: var(--bg);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s var(--ease), transform 0.3s var(--ease), color 0.3s var(--ease);
        }

        .footer-social a:hover {
            background: var(--accent);
            color: var(--dark);
            transform: translateY(-3px);
        }

        .footer-social svg {
            width: 17px;
            height: 17px;
        }

        .footer-subtitle {
            max-width: 420px;
            margin: 10px 0 0 48px;
            color: rgba(255, 255, 255, 0.55);
            font-size: 0.95em;
            line-height: 1.6;
        }

        .footer-divider {
            max-width: 1200px;
            margin: 28px auto;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-divider-tight {
            margin-top: 26px;
            margin-bottom: 34px;
        }

        .footer-contact-row {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            gap: 40px;
        }

        .footer-contact-icon {
            color: var(--accent);
            margin-bottom: 12px;
        }

        .footer-contact-icon svg {
            width: 20px;
            height: 20px;
        }

        .footer-contact-value {
            font-weight: 700;
            color: var(--bg);
            font-size: 1.05em;
            margin-bottom: 5px;
        }

        .footer-contact-value a {
            color: inherit;
            text-decoration: none;
        }

        .footer-contact-label {
            font-size: 0.72em;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-bottom-row {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 24px;
        }

        .footer-info-block {
            display: flex;
            gap: 14px;
            align-items: flex-start;
        }

        .footer-icon-box {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.6);
            flex-shrink: 0;
        }

        .footer-icon-box svg {
            width: 18px;
            height: 18px;
        }

        .footer-info-title {
            font-weight: 700;
            color: var(--bg);
            margin-bottom: 4px;
            font-size: 0.98em;
        }

        .footer-info-sub {
            font-size: 0.85em;
            color: rgba(255, 255, 255, 0.45);
            margin-top: 2px;
        }

        .footer-bottom-right {
            text-align: right;
        }

        .footer-nav-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-nav-list a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.95em;
            transition: color 0.3s;
        }

        .footer-nav-list a:hover {
            color: var(--accent);
        }

        .en { display: block; }
        .it { display: none; }
        .fr { display: none; }

        body.italian .en { display: none; }
        body.italian .it { display: block; }
        body.italian .fr { display: none; }

        body.french .en { display: none; }
        body.french .it { display: none; }
        body.french .fr { display: block; }

        @media (max-width: 1024px) {
            section { padding: 80px 40px; }
            nav { padding: 15px 30px; }
            section h2 { font-size: 2.4em; }
            .hero h1 { font-size: 3.5em; }
            .work-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            section { padding: 60px 30px; }
            .nav-links { display: none; }
            .nav-right { gap: 14px; }
            .language-switcher { margin-left: 16px; }
            .hero-cta { flex-direction: column; }
            .cta-primary, .cta-secondary { width: 100%; }
            .form-grid { grid-template-columns: 1fr; }
            .form-group.full { grid-column: 1; }
            .hero h1 { font-size: 2.4em; }
            section h2 { font-size: 1.8em; }
            .work-grid { grid-template-columns: 1fr 1fr; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            footer { margin: 0 12px 16px; padding: 50px 30px 30px; }
            .footer-bottom-right { text-align: left; }
        }

        @media (max-width: 480px) {
            .work-grid { grid-template-columns: 1fr; }
        }
