        @font-face {
            font-family: 'Gymbox Monument';
            src: url('../../fonts/gymbox-monument-regular.woff2') format('woff2');
            font-style: normal;
            font-weight: 400;
            font-display: swap;
        }

        @font-face {
            font-family: 'Gymbox Monument';
            src: url('../../fonts/gymbox-monument-medium.woff2') format('woff2');
            font-style: normal;
            font-weight: 500;
            font-display: swap;
        }

        @font-face {
            font-family: 'Gymbox Monument';
            src: url('../../fonts/gymbox-monument-bold.woff2') format('woff2');
            font-style: normal;
            font-weight: 700;
            font-display: swap;
        }

        @font-face {
            font-family: 'Gymbox Monument';
            src: url('../../fonts/gymbox-monument-black.woff2') format('woff2');
            font-style: normal;
            font-weight: 900;
            font-display: swap;
        }

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

        :root {
            --canvas: #efe9dc;
            --paper: #fffaf0;
            --paper-2: #f8f2e6;
            --ink: #1f2a36;
            --ink-soft: #4e5f72;
            --muted: #79889a;
            --line: #d8cfbd;
            --bronze: #bb7d3a;
            --bronze-deep: #8e5c2a;
            --evergreen: #1f5d53;
            --night: #1d2731;
            --radius-xl: 30px;
            --radius-lg: 22px;
            --radius-md: 16px;
            --shadow-soft: 0 14px 38px rgba(31, 42, 54, 0.12);
            --shadow-deep: 0 20px 50px rgba(31, 42, 54, 0.22);
            --font-display: 'Gymbox Monument', sans-serif;
            --font-body: 'Gymbox Monument', sans-serif;
            --font-serif: 'Gymbox Monument', sans-serif;

            /* Legacy token aliases for inline styles across pages */
            --gold: var(--bronze);
            --gold-light: #d89c5b;
            --gold-pale: #f2ddbf;
            --black: var(--night);
            --dark: #25303c;
            --dark2: #212b36;
            --dark3: #2e3947;
            --mid: #556476;
            --grey: var(--muted);
            --white: #fffaf0;
        }

        :root[data-theme='dark'] {
            --canvas: #111923;
            --paper: #1a2430;
            --paper-2: #202d3a;
            --ink: #d8e1eb;
            --ink-soft: #becbd9;
            --muted: #9caec0;
            --line: #334355;
            --bronze: #c88e4f;
            --bronze-deep: #9f6937;
            --evergreen: #4ca592;
            --night: #0d131b;

            --gold: var(--bronze);
            --gold-light: #d7a066;
            --gold-pale: #e3c39f;
            --black: #0d131b;
            --dark: #131d28;
            --dark2: #172330;
            --dark3: #1f2e3d;
            --mid: #33475d;
            --grey: var(--muted);
            --white: #d8e1eb;
        }

        html { 
            scroll-behavior: smooth; 
            overflow-x: hidden;
            width: 100vw;
        }

        body {
            background:
                radial-gradient(1400px 620px at 0% 0%, #fbf6eb 0%, transparent 60%),
                radial-gradient(1000px 520px at 100% 10%, #e4ddd0 0%, transparent 55%),
                var(--canvas);
            color: var(--ink);
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.62;
            overflow-x: hidden;
            width: 100%;
            min-height: 100vh;
        }

        :root[data-theme='dark'] body {
            background:
                radial-gradient(1200px 600px at 0% 0%, #172536 0%, transparent 55%),
                radial-gradient(900px 500px at 100% 10%, #1d2e40 0%, transparent 52%),
                var(--canvas);
        }

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

        #cursor {
            position: fixed;
            top: 0;
            left: 0;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(187, 125, 58, 0.9);
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            transition: transform 0.1s ease, width 0.22s ease, height 0.22s ease, opacity 0.22s ease;
            box-shadow: 0 0 0 8px rgba(187, 125, 58, 0.16);
            opacity: 0.9;
        }

        #cursor.expand {
            width: 26px;
            height: 26px;
            opacity: 0.8;
        }

        nav {
            position: fixed;
            top: 14px;
            left: 24px;
            right: 24px;
            z-index: 1100;
            padding: 14px 18px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            border-radius: 18px;
            border: 1px solid rgba(216, 207, 189, 0.85);
            background: rgba(255, 250, 240, 0.88);
            backdrop-filter: blur(14px);
            box-shadow: var(--shadow-soft);
            transition: top 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }

        nav.scrolled {
            top: 10px;
            box-shadow: var(--shadow-deep);
            border-color: rgba(187, 125, 58, 0.35);
        }

        :root[data-theme='dark'] nav {
            background: rgba(20, 30, 41, 0.9);
            border-color: rgba(66, 86, 110, 0.78);
        }

        .nav-logo {
            font-family: var(--font-display);
            font-size: 21px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--ink);
            white-space: nowrap;
            padding: 6px 8px;
        }

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

        .nav-links {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 6px;
            margin: 0;
            padding: 0;
        }

        .nav-links a {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--ink-soft);
            border-radius: 999px;
            padding: 10px 14px;
            transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
        }

        .nav-links a:hover {
            color: var(--ink);
            background: rgba(31, 42, 54, 0.06);
            transform: translateY(-1px);
        }

        .nav-links a.active {
            color: var(--paper);
            background: var(--night);
        }

        :root[data-theme='dark'] .nav-links a {
            color: #b9c7d7;
        }

        :root[data-theme='dark'] .nav-links a:hover {
            color: #f1f6fb;
            background: rgba(234, 240, 246, 0.08);
        }

        :root[data-theme='dark'] .nav-links a.active {
            background: linear-gradient(120deg, #35506b, #25364a);
            color: #f6fbff;
        }

        .nav-tools {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .theme-toggle {
            --toggle-w: 72px;
            --toggle-h: 40px;
            --thumb-size: 30px;
            width: var(--toggle-w);
            height: var(--toggle-h);
            padding: 0;
            border-radius: 999px;
            border: 1px solid rgba(216, 207, 189, 0.9);
            background: linear-gradient(135deg, #f9d496, #f0b65e);
            color: var(--ink);
            position: relative;
            overflow: hidden;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
            transition: transform 0.2s ease, border-color 0.2s ease, background 0.32s ease;
        }

        .theme-toggle:hover {
            transform: translateY(-1px);
            border-color: rgba(187, 125, 58, 0.7);
            box-shadow: 0 8px 18px rgba(187, 125, 58, 0.22);
        }

        .theme-toggle:focus-visible {
            outline: 3px solid rgba(187, 125, 58, 0.28);
            outline-offset: 2px;
        }

        .theme-toggle-icon {
            position: absolute;
            top: 50%;
            width: 14px;
            height: 14px;
            transform: translateY(-50%);
            transition: opacity 0.25s ease, transform 0.35s ease;
            pointer-events: none;
        }

        .theme-toggle-icon.sun {
            left: 10px;
            color: #8c4f1f;
            opacity: 1;
        }

        .theme-toggle-icon.moon {
            right: 10px;
            color: rgba(255, 255, 255, 0.92);
            opacity: 0.5;
        }

        .theme-toggle-thumb {
            position: absolute;
            top: 4px;
            left: 4px;
            width: var(--thumb-size);
            height: var(--thumb-size);
            border-radius: 50%;
            background: #fff8ea;
            box-shadow: 0 4px 10px rgba(31, 42, 54, 0.25);
            display: grid;
            place-items: center;
            transition: transform 0.36s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.28s ease, box-shadow 0.28s ease;
        }

        .theme-toggle-glyph {
            width: 14px;
            height: 14px;
            position: absolute;
            transition: opacity 0.25s ease, transform 0.35s ease;
            color: #c1732c;
        }

        .theme-toggle-glyph.sun {
            opacity: 1;
            transform: scale(1) rotate(0deg);
        }

        .theme-toggle-glyph.moon {
            opacity: 0;
            transform: scale(0.45) rotate(-45deg);
        }

        :root[data-theme='dark'] .theme-toggle {
            border-color: rgba(66, 86, 110, 0.9);
            background: linear-gradient(135deg, #182738, #0e1a27);
            color: #e9f0f8;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
        }

        :root[data-theme='dark'] .theme-toggle-thumb {
            transform: translateX(32px);
            background: #1f2f40;
            box-shadow: 0 4px 12px rgba(5, 10, 16, 0.55);
        }

        :root[data-theme='dark'] .theme-toggle-icon.sun {
            opacity: 0.45;
            transform: translateY(-50%) scale(0.8);
        }

        :root[data-theme='dark'] .theme-toggle-icon.moon {
            opacity: 1;
            transform: translateY(-50%) scale(1);
        }

        :root[data-theme='dark'] .theme-toggle-glyph.sun {
            opacity: 0;
            transform: scale(0.45) rotate(45deg);
        }

        :root[data-theme='dark'] .theme-toggle-glyph.moon {
            opacity: 1;
            transform: scale(1) rotate(0deg);
            color: #f3ddb5;
        }

        .nav-cta {
            background: linear-gradient(130deg, var(--bronze), var(--bronze-deep));
            color: #fff !important;
            border: 1px solid rgba(142, 92, 42, 0.65);
            box-shadow: 0 10px 24px rgba(142, 92, 42, 0.28);
        }

        .nav-cta:hover {
            background: linear-gradient(130deg, var(--bronze-deep), var(--bronze));
            transform: translateY(-2px);
        }

        .hamburger {
            display: none;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            border: 1px solid rgba(216, 207, 189, 0.9);
            background: rgba(255, 255, 255, 0.6);
            align-items: center;
            justify-content: center;
            gap: 5px;
            flex-direction: column;
        }

        .hamburger span {
            display: block;
            width: 20px;
            height: 2px;
            border-radius: 2px;
            background: var(--ink);
            transition: transform 0.2s ease, opacity 0.2s ease;
        }

        nav.open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        nav.open .hamburger span:nth-child(2) { opacity: 0; }
        nav.open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        .hero {
            position: relative;
            min-height: min(92vh, 860px);
            margin: 94px 24px 24px;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow-deep);
            display: flex;
            align-items: center;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background-image: url('../../images/hero-bg.jpg');
            background-size: cover;
            background-position: center;
            filter: brightness(0.72) saturate(1.08);
            transform: scale(1.04);
            animation: heroDrift 22s ease-in-out infinite alternate;
        }

        @keyframes heroDrift {
            0% { transform: scale(1.04) translateX(0); }
            100% { transform: scale(1.09) translateX(-1.5%); }
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(120deg, rgba(29, 39, 49, 0.7) 0%, rgba(29, 39, 49, 0.2) 45%, rgba(29, 39, 49, 0.65) 100%),
                linear-gradient(to top, rgba(29, 39, 49, 0.58), transparent 45%);
        }

        .hero-gold-line {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 4px;
            background: linear-gradient(to right, transparent, var(--bronze), transparent);
            animation: lineGlow 3.2s ease-in-out infinite;
        }

        @keyframes lineGlow {
            0%, 100% { opacity: 0.4; }
            50% { opacity: 1; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            width: min(920px, 100%);
            padding: 84px 74px;
            color: #f6f2e8;
        }

        :root[data-theme='dark'] .hero-content { color: #e4d8c6; }

        .hero-eyebrow {
            font-size: 11px;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: #ead7bf;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 14px;
            opacity: 0;
            animation: fadeUp 0.7s 0.2s forwards;
        }

        :root[data-theme='dark'] .hero-eyebrow { color: #c9ae88; }

        .hero-eyebrow::before {
            content: '';
            width: 44px;
            height: 1px;
            background: rgba(234, 215, 191, 0.9);
        }

        :root[data-theme='dark'] .hero-eyebrow::before { background: rgba(201, 174, 136, 0.78); }

        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(58px, 9vw, 128px);
            line-height: 0.9;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            opacity: 0;
            animation: fadeUp 0.75s 0.35s forwards;
        }

        .hero-title .gold { color: #f0cb97; }

        :root[data-theme='dark'] .hero-title .gold { color: #d8ac76; }

        .hero-subtitle {
            margin: 26px 0 36px;
            width: min(560px, 100%);
            font-family: var(--font-serif);
            font-size: clamp(22px, 2.3vw, 31px);
            line-height: 1.35;
            color: #efe2cd;
            opacity: 0;
            animation: fadeUp 0.75s 0.55s forwards;
        }

        :root[data-theme='dark'] .hero-subtitle { color: #c8b79f; }

        .hero-actions {
            display: flex;
            align-items: center;
            gap: 14px;
            opacity: 0;
            animation: fadeUp 0.75s 0.75s forwards;
        }

        .btn-primary,
        .btn-outline,
        .btn-pricing,
        .form-submit {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.17em;
            text-transform: uppercase;
            padding: 15px 30px;
            transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
        }

        .btn-primary {
            background: linear-gradient(120deg, var(--bronze), var(--bronze-deep));
            color: #fff;
            border: 1px solid rgba(142, 92, 42, 0.68);
            box-shadow: 0 12px 28px rgba(142, 92, 42, 0.35);
        }

        .btn-primary:hover { transform: translateY(-2px); }

        .btn-outline {
            border: 1px solid rgba(255, 255, 255, 0.42);
            color: #fff;
            background: rgba(255, 255, 255, 0.09);
            backdrop-filter: blur(4px);
        }

        .btn-outline:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.22);
            transform: translateY(-2px);
        }

        .hero-scroll {
            position: absolute;
            left: 64px;
            bottom: 34px;
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(246, 242, 232, 0.82);
            font-size: 10px;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            opacity: 0;
            animation: fadeUp 0.9s 0.95s forwards;
        }

        :root[data-theme='dark'] .hero-scroll { color: rgba(214, 197, 175, 0.82); }

        .scroll-line {
            width: 1px;
            height: 46px;
            background: linear-gradient(to bottom, #e7c89f, transparent);
            animation: scrollPulse 2s ease-in-out infinite;
        }

        @keyframes scrollPulse {
            0%, 100% { opacity: 0.4; transform: scaleY(0.5); transform-origin: top; }
            50% { opacity: 1; transform: scaleY(1); }
        }

        .hero-stats {
            position: absolute;
            right: 36px;
            bottom: 30px;
            display: flex;
            gap: 12px;
            opacity: 0;
            animation: fadeUp 0.9s 0.95s forwards;
        }

        .stat {
            min-width: 140px;
            padding: 12px 14px;
            border-radius: 16px;
            background: rgba(246, 242, 232, 0.13);
            border: 1px solid rgba(246, 242, 232, 0.28);
            backdrop-filter: blur(8px);
            text-align: right;
        }

        :root[data-theme='dark'] .stat {
            background: rgba(18, 30, 45, 0.52);
            border-color: rgba(167, 185, 205, 0.24);
        }

        .stat-num {
            font-family: var(--font-display);
            font-size: 30px;
            color: #f4d4a8;
            line-height: 1;
        }

        :root[data-theme='dark'] .stat-num { color: #d8ad78; }

        .stat-label {
            margin-top: 5px;
            font-size: 10px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: #f0e1cd;
        }

        :root[data-theme='dark'] .stat-label { color: #c8b59a; }

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

        section { padding: 104px 7vw; }

        .section-eyebrow {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--bronze-deep);
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }

        .section-eyebrow::before {
            content: '';
            width: 34px;
            height: 1px;
            background: var(--bronze);
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(38px, 6vw, 82px);
            line-height: 0.92;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            color: var(--night);
        }

        :root[data-theme='dark'] .section-title {
            color: #d5e0ec;
            text-shadow: 0 1px 0 rgba(9, 16, 24, 0.35);
        }

        :root[data-theme='dark'] .section-eyebrow {
            color: #d8aa76;
        }

        :root[data-theme='dark'] .section-eyebrow::before {
            background: #d8aa76;
        }

        .marquee-wrap {
            margin: 0 24px;
            border-radius: var(--radius-lg);
            background: linear-gradient(120deg, var(--night), #2a3744);
            color: #f4eee4;
            overflow: hidden;
            white-space: nowrap;
            box-shadow: var(--shadow-soft);
        }

        .marquee-track {
            display: inline-block;
            animation: marquee 25s linear infinite;
            padding: 18px 0;
        }

        .marquee-track span {
            font-family: var(--font-display);
            font-size: 16px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            padding: 0 34px;
        }

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

        .about {
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 64px;
            align-items: center;
        }

        .about-visual {
            position: relative;
            min-height: 560px;
        }

        .about-img-main {
            position: absolute;
            left: 0;
            top: 0;
            width: 72%;
            height: 88%;
            object-fit: cover;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(216, 207, 189, 0.72);
        }

        .about-img-accent {
            position: absolute;
            right: 0;
            bottom: 0;
            width: 50%;
            height: 52%;
            object-fit: cover;
            border-radius: var(--radius-lg);
            border: 6px solid var(--paper);
            box-shadow: var(--shadow-soft);
        }

        .about-badge {
            position: absolute;
            top: 24px;
            right: 58px;
            width: 118px;
            height: 118px;
            border-radius: 50%;
            background: linear-gradient(145deg, #f2d8b3, var(--bronze));
            color: #fff;
            font-family: var(--font-display);
            font-size: 13px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            line-height: 1.2;
            box-shadow: 0 14px 34px rgba(142, 92, 42, 0.3);
            animation: badgeFloat 4s ease-in-out infinite;
        }

        @keyframes badgeFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-7px); }
        }

        .about-text p {
            color: var(--ink-soft);
            margin-bottom: 18px;
            font-size: 16px;
            line-height: 1.82;
        }

        .about-text p strong { color: var(--night); font-weight: 700; }

        :root[data-theme='dark'] .about-text p strong { color: #e2eaf4; }

        :root[data-theme='dark'] .about-text p { color: #c3d0de; }

        .founders {
            margin-top: 30px;
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        .founder {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 12px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.6);
            border: 1px solid var(--line);
        }

        .founder-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(130deg, var(--bronze), var(--bronze-deep));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            letter-spacing: 0.07em;
            font-size: 18px;
            box-shadow: 0 8px 18px rgba(142, 92, 42, 0.26);
        }

        .founder-name { font-size: 14px; font-weight: 800; color: var(--ink); }

        .founder-role {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--bronze-deep);
        }

        .services {
            background: linear-gradient(160deg, var(--paper), #f7f0e2);
            border-top: 1px solid rgba(216, 207, 189, 0.65);
            border-bottom: 1px solid rgba(216, 207, 189, 0.65);
        }

        :root[data-theme='dark'] .services {
            background: linear-gradient(160deg, #162230, #1e2d3d);
            border-top-color: rgba(66, 86, 110, 0.65);
            border-bottom-color: rgba(66, 86, 110, 0.65);
        }

        .services-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 24px;
            margin-bottom: 56px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 20px;
        }

        .service-card {
            position: relative;
            min-height: 380px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid rgba(216, 207, 189, 0.7);
            box-shadow: var(--shadow-soft);
            background: #ddd;
            transform: translateY(0);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-deep);
        }

        .service-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.02);
            transition: transform 0.45s ease;
        }

        .service-card:hover .service-img { transform: scale(1.08); }

        .service-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(29, 39, 49, 0.78), rgba(29, 39, 49, 0.12) 62%);
        }

        .service-content {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 24px;
            color: #f4eee3;
        }

        .service-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 44px;
            height: 32px;
            padding: 0 10px;
            border-radius: 10px;
            margin-bottom: 10px;
            font-family: var(--font-display);
            font-size: 12px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            background: rgba(255, 255, 255, 0.88);
            color: var(--night);
        }

        .service-bar {
            width: 44px;
            height: 2px;
            background: linear-gradient(to right, #f4d5ad, transparent);
            margin-bottom: 12px;
        }

        .service-title {
            font-family: var(--font-display);
            font-size: 27px;
            line-height: 1;
            margin-bottom: 10px;
        }

        .service-desc {
            font-size: 13px;
            line-height: 1.65;
            color: rgba(244, 238, 227, 0.95);
        }

        .inbody {
            margin: 24px 7vw 0;
            border-radius: var(--radius-xl);
            overflow: hidden;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            min-height: 600px;
            border: 1px solid rgba(216, 207, 189, 0.72);
            box-shadow: var(--shadow-soft);
            background: var(--paper);
        }

        .inbody-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .inbody-content {
            position: relative;
            padding: 72px 56px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: linear-gradient(160deg, #f0e7d8, #e2d6c2);
        }

        .inbody-content::before {
            content: '770';
            position: absolute;
            top: 18px;
            right: 26px;
            font-family: var(--font-display);
            font-size: 120px;
            line-height: 1;
            color: rgba(187, 125, 58, 0.09);
            pointer-events: none;
        }

        .inbody-stats {
            margin-top: 28px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .inbody-stat {
            border: 1px solid rgba(187, 125, 58, 0.2);
            background: rgba(255, 255, 255, 0.65);
            border-radius: 12px;
            padding: 14px;
        }

        .inbody-stat-val {
            font-family: var(--font-display);
            font-size: 30px;
            line-height: 1;
            color: var(--bronze-deep);
        }

        .inbody-stat-label {
            margin-top: 6px;
            font-size: 10px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--muted);
        }

        .schedule-grid {
            margin-top: 38px;
            display: grid;
            grid-template-columns: repeat(7, minmax(0, 1fr));
            gap: 10px;
        }

        .day-card {
            border-radius: 14px;
            border: 1px solid var(--line);
            background: var(--paper);
            min-height: 132px;
            padding: 18px 10px;
            text-align: center;
            transition: transform 0.22s ease, box-shadow 0.22s ease;
        }

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

        .day-card.active {
            background: linear-gradient(160deg, #f3d8b4, #ebb874);
            border-color: rgba(142, 92, 42, 0.28);
        }

        .day-name {
            font-family: var(--font-display);
            font-size: 18px;
            letter-spacing: 0.1em;
            color: var(--night);
        }

        .day-class {
            margin-top: 8px;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--bronze-deep);
        }

        .day-time { margin-top: 6px; font-size: 12px; color: var(--ink-soft); }

        .day-rest {
            margin-top: 16px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--muted);
        }

        .membership {
            text-align: center;
            background: linear-gradient(160deg, #f7f1e4, #ede6d8);
            border-top: 1px solid rgba(216, 207, 189, 0.65);
            border-bottom: 1px solid rgba(216, 207, 189, 0.65);
        }

        :root[data-theme='dark'] .membership {
            background: linear-gradient(160deg, #162230, #1d2d3c);
            border-top-color: rgba(66, 86, 110, 0.65);
            border-bottom-color: rgba(66, 86, 110, 0.65);
        }

        .membership .section-eyebrow { justify-content: center; }
        .membership .section-eyebrow::before { display: none; }

        .pricing-grid {
            margin: 52px auto 0;
            max-width: 1060px;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }

        .pricing-card {
            position: relative;
            border-radius: 20px;
            border: 1px solid var(--line);
            background: var(--paper);
            padding: 40px 28px;
            text-align: left;
            box-shadow: var(--shadow-soft);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-deep);
        }

        .pricing-card.highlight {
            background: linear-gradient(160deg, #1d2731, #2a3743);
            border-color: rgba(29, 39, 49, 0.8);
        }

        .pricing-card.highlight * { color: #f7f0e3 !important; }

        .pricing-badge {
            position: absolute;
            top: -12px;
            left: 22px;
            border-radius: 999px;
            padding: 6px 14px;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: #fff !important;
            background: linear-gradient(130deg, var(--bronze), var(--bronze-deep));
        }

        .pricing-name {
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--muted);
        }

        .pricing-price {
            margin-top: 14px;
            font-family: var(--font-display);
            font-size: 58px;
            line-height: 1;
            color: var(--night);
        }

        .pricing-price span {
            font-size: 19px;
            vertical-align: top;
            margin-top: 10px;
            display: inline-block;
        }

        .pricing-period {
            margin-top: 6px;
            display: block;
            font-size: 12px;
            color: var(--muted);
        }

        .pricing-features {
            list-style: none;
            margin: 30px 0;
            padding: 0;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 0;
            border-bottom: 1px solid rgba(121, 136, 154, 0.22);
            font-size: 14px;
            color: var(--ink-soft);
        }

        .pricing-features li::before {
            content: '+';
            color: var(--evergreen);
            font-weight: 800;
        }

        .pricing-card.highlight .pricing-features li::before { color: #f4d2a6; }

        .btn-pricing {
            width: 100%;
            border: 1px solid rgba(31, 93, 83, 0.5);
            background: rgba(31, 93, 83, 0.08);
            color: var(--evergreen);
        }

        .btn-pricing:hover {
            transform: translateY(-2px);
            background: var(--evergreen);
            color: #fff;
        }

        .pricing-card.highlight .btn-pricing {
            background: rgba(244, 210, 166, 0.14);
            color: #f8e1c3;
            border-color: rgba(244, 210, 166, 0.38);
        }

        .testimonials {
            margin: 0 24px;
            border-radius: var(--radius-xl);
            background: linear-gradient(150deg, #212d39, #2f3e4d);
            color: #f5efe3;
            overflow: hidden;
            box-shadow: var(--shadow-deep);
        }

        .testimonials .section-title,
        .testimonials .section-eyebrow,
        .testimonials .testi-text,
        .testimonials .testi-author,
        .testimonials .testi-stars { color: #f6eee2; }

        :root[data-theme='dark'] .testimonials .section-title,
        :root[data-theme='dark'] .testimonials .section-eyebrow,
        :root[data-theme='dark'] .testimonials .testi-text,
        :root[data-theme='dark'] .testimonials .testi-author,
        :root[data-theme='dark'] .testimonials .testi-stars { color: #ded1bf; }

        .testimonials .section-eyebrow::before { background: #f0cf9f; }

        :root[data-theme='dark'] .testimonials .section-eyebrow::before { background: #cfab7d; }

        .testimonials-header { margin-bottom: 46px; }

        .testimonials-track {
            display: flex;
            gap: 16px;
            width: max-content;
            animation: slideLeft 40s linear infinite;
            padding-bottom: 8px;
        }

        .testimonials-track:hover { animation-play-state: paused; }

        @keyframes slideLeft {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .testi-card {
            width: 360px;
            border-radius: 18px;
            border: 1px solid rgba(245, 239, 227, 0.2);
            background: rgba(255, 255, 255, 0.08);
            padding: 28px;
            flex-shrink: 0;
        }

        .testi-quote {
            font-family: var(--font-display);
            font-size: 48px;
            line-height: 1;
            color: rgba(240, 207, 159, 0.7);
        }

        .testi-stars {
            margin-top: 6px;
            font-size: 13px;
            letter-spacing: 0.2em;
            color: #f2cea2;
        }

        .testi-text {
            margin-top: 12px;
            font-family: var(--font-serif);
            font-size: 25px;
            line-height: 1.38;
            color: #f6efe3;
        }

        .testi-author {
            margin-top: 16px;
            font-size: 11px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: #e0c39e;
        }

        .gallery {
            background: transparent;
            padding-bottom: 54px;
        }

        :root[data-theme='dark'] .gallery-overlay {
            background: linear-gradient(to top, rgba(13, 19, 27, 0.76), transparent 65%);
        }

        .gallery-grid {
            margin-top: 34px;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            grid-template-rows: 260px 260px;
            gap: 10px;
        }

        .gallery-item {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(216, 207, 189, 0.7);
            box-shadow: var(--shadow-soft);
            background: #ddd;
        }

        .gallery-item:first-child {
            grid-column: span 2;
            grid-row: span 2;
        }

        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.35s ease, filter 0.35s ease;
            filter: saturate(0.92);
        }

        .gallery-item:hover .gallery-img {
            transform: scale(1.05);
            filter: saturate(1.08);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(to top, rgba(29, 39, 49, 0.68), transparent 65%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay { opacity: 1; }

        .gallery-overlay-text {
            color: #f6efe2;
            font-family: var(--font-display);
            font-size: 16px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
        }

        .hours-strip {
            margin: 10px 24px 0;
            border-radius: 18px;
            background: linear-gradient(130deg, #24313e, #2f404f);
            color: #f5f0e3;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 48px;
            padding: 18px 20px;
            box-shadow: var(--shadow-soft);
        }

        .hours-item { display: flex; align-items: center; gap: 10px; }

        .hours-day {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: rgba(245, 240, 227, 0.72);
        }

        .hours-time {
            font-family: var(--font-display);
            font-size: 18px;
            letter-spacing: 0.06em;
            color: #f8d4a7;
        }

        .contact {
            margin: 18px 24px 24px;
            border-radius: var(--radius-xl);
            overflow: hidden;
            border: 1px solid rgba(216, 207, 189, 0.76);
            box-shadow: var(--shadow-soft);
            display: grid;
            grid-template-columns: 1fr 1fr;
            background: var(--paper);
        }

        :root[data-theme='dark'] .contact {
            border-color: rgba(66, 86, 110, 0.76);
        }

        .contact-form-wrap { padding: 70px 54px; }

        .contact-map-wrap {
            display: flex;
            flex-direction: column;
            background: linear-gradient(180deg, #f7f1e4, #efe8d9);
        }

        :root[data-theme='dark'] .contact-map-wrap {
            background: linear-gradient(180deg, #1d2c3b, #182533);
        }

        .contact-info { padding: 34px; }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 22px;
        }

        .contact-info-icon {
            min-width: 40px;
            height: 32px;
            padding: 0 9px;
            border-radius: 10px;
            background: linear-gradient(130deg, var(--bronze), var(--bronze-deep));
            color: #fff;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.12em;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-transform: uppercase;
            box-shadow: 0 8px 16px rgba(142, 92, 42, 0.28);
        }

        .contact-info-label {
            font-size: 10px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--bronze-deep);
            font-weight: 800;
        }

        .contact-info-val {
            margin-top: 3px;
            font-size: 16px;
            color: var(--ink);
        }

        .map-embed {
            flex: 1;
            width: 100%;
            min-height: 300px;
            border: 0;
            filter: saturate(0.82) contrast(0.95);
        }

        .form-group { margin-bottom: 18px; }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--muted);
        }

        .form-input,
        .form-textarea {
            width: 100%;
            border-radius: 12px;
            border: 1px solid var(--line);
            background: #fff;
            color: var(--ink);
            padding: 14px 14px;
            font-family: var(--font-body);
            font-size: 15px;
            outline: none;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .form-input:focus,
        .form-textarea:focus {
            border-color: rgba(187, 125, 58, 0.6);
            box-shadow: 0 0 0 3px rgba(187, 125, 58, 0.12);
        }

        :root[data-theme='dark'] .form-input,
        :root[data-theme='dark'] .form-textarea {
            background: #12202d;
            border-color: #2f4358;
            color: #eaf1f8;
        }

        :root[data-theme='dark'] .form-input::placeholder,
        :root[data-theme='dark'] .form-textarea::placeholder {
            color: #90a2b7;
        }

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

        .form-submit {
            width: 100%;
            border: 0;
            background: linear-gradient(130deg, var(--night), #2f3f4f);
            color: #fff;
            margin-top: 8px;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-soft);
        }

        footer {
            background: linear-gradient(160deg, #1b2530, #24313e);
            padding: 74px 7vw 34px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            color: #f5efe2;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 42px;
            margin-bottom: 44px;
        }

        .footer-logo {
            font-family: var(--font-display);
            font-size: 36px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #fff;
        }

        .footer-logo span { color: #f3ca93; }

        .footer-tagline {
            margin-top: 14px;
            max-width: 310px;
            font-size: 14px;
            line-height: 1.7;
            color: rgba(245, 239, 226, 0.82);
        }

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

        .social-link {
            min-width: 38px;
            height: 38px;
            padding: 0 10px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.22);
            color: rgba(245, 239, 226, 0.9);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            transition: transform 0.2s ease, border-color 0.2s ease;
        }

        .social-link:hover {
            transform: translateY(-2px);
            border-color: #f3ca93;
        }

        .footer-col h4 {
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: #f3ca93;
            margin-bottom: 14px;
        }

        .footer-links { list-style: none; }

        .footer-links li { margin-bottom: 9px; }

        .footer-links a {
            font-size: 14px;
            color: rgba(245, 239, 226, 0.8);
            transition: color 0.2s ease;
        }

        .footer-links a:hover { color: #fff; }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding-top: 18px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
        }

        .footer-copy {
            font-size: 12px;
            color: rgba(245, 239, 226, 0.72);
        }

        .footer-copy span { color: #f3ca93; }

        :root[data-theme='dark'] .service-desc,
        :root[data-theme='dark'] .pricing-features li,
        :root[data-theme='dark'] .pricing-period,
        :root[data-theme='dark'] .day-time,
        :root[data-theme='dark'] .day-rest,
        :root[data-theme='dark'] .contact-info-val,
        :root[data-theme='dark'] .form-label {
            color: #c1cfdd;
        }

        :root[data-theme='dark'] .founder-name {
            color: #dbe5f1;
        }

        :root[data-theme='dark'] .founder-role,
        :root[data-theme='dark'] .contact-info-label {
            color: #d8aa76;
        }

        :root[data-theme='dark'] .footer-tagline,
        :root[data-theme='dark'] .footer-links a {
            color: #c0cfde;
        }

        :root[data-theme='dark'] .footer-copy {
            color: #b2c3d5;
        }

        :root[data-theme='dark'] .hours-day {
            color: rgba(208, 220, 234, 0.76);
        }

        :root[data-theme='dark'] .inbody,
        :root[data-theme='dark'] .service-card,
        :root[data-theme='dark'] .pricing-card,
        :root[data-theme='dark'] .day-card,
        :root[data-theme='dark'] .gallery-item,
        :root[data-theme='dark'] .about-img-main {
            border-color: #314457;
        }

        :root[data-theme='dark'] .inbody-content,
        :root[data-theme='dark'] .pricing-card,
        :root[data-theme='dark'] .day-card,
        :root[data-theme='dark'] .founder,
        :root[data-theme='dark'] .inbody-stat {
            background-color: #1a2735;
        }

        :root[data-theme='dark'] .pricing-card.highlight {
            background: linear-gradient(160deg, #0d131b, #15202c);
        }

        :root[data-theme='dark'] .testimonials {
            background: linear-gradient(150deg, #0f1822, #1a2735);
        }

        :root[data-theme='dark'] .hours-strip {
            background: linear-gradient(130deg, #121d28, #1c2a38);
        }

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

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

        @media (max-width: 1180px) {
            .hero-content { padding: 72px 48px; }
            .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .inbody { grid-template-columns: 1fr; }
            .inbody-img { min-height: 320px; }
            .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .footer-top { grid-template-columns: 2fr 1fr 1fr; }
        }

        @media (max-width: 980px) {
            nav {
                left: 14px;
                right: 14px;
                top: 10px;
                padding: 12px;
                border-radius: 14px;
            }

            .hamburger { display: inline-flex; }

            .nav-links {
                position: absolute;
                top: calc(100% + 8px);
                left: 0;
                right: 0;
                display: grid;
                gap: 8px;
                padding: 10px;
                border-radius: 14px;
                border: 1px solid rgba(216, 207, 189, 0.92);
                background: rgba(255, 250, 240, 0.98);
                box-shadow: var(--shadow-soft);
                transform: translateY(-10px);
                opacity: 0;
                pointer-events: none;
                transition: opacity 0.2s ease, transform 0.2s ease;
            }

            nav.open .nav-links {
                opacity: 1;
                pointer-events: auto;
                transform: translateY(0);
            }

            :root[data-theme='dark'] .nav-links {
                border-color: rgba(66, 86, 110, 0.9);
                background: rgba(20, 31, 43, 0.98);
            }

            .nav-links a,
            .nav-cta {
                width: 100%;
                justify-content: center;
            }

            .theme-toggle {
                --toggle-w: 66px;
                --toggle-h: 36px;
                --thumb-size: 28px;
            }

            :root[data-theme='dark'] .theme-toggle-thumb {
                transform: translateX(30px);
            }

            section { padding: 84px 24px; }

            .hero {
                margin: 82px 14px 14px;
                min-height: 78vh;
            }

            .hero-content { padding: 48px 24px 118px; }
            .hero-eyebrow { letter-spacing: 0.2em; }
            .hero-actions { flex-wrap: wrap; }
            .hero-scroll { left: 24px; bottom: 20px; }
            .hero-stats {
                left: 24px;
                right: 24px;
                bottom: 24px;
                justify-content: space-between;
                gap: 8px;
            }

            .stat {
                min-width: 0;
                width: 100%;
                padding: 10px;
            }

            .about {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .about-visual { min-height: 390px; }

            .about-img-main {
                position: relative;
                width: 100%;
                height: 300px;
            }

            .about-img-accent {
                width: 48%;
                height: 160px;
                right: 12px;
                bottom: 8px;
            }

            .about-badge {
                width: 95px;
                height: 95px;
                right: 18px;
                top: 16px;
                font-size: 11px;
            }

            .services-grid,
            .pricing-grid { grid-template-columns: 1fr; }

            .service-card { min-height: 332px; }

            .schedule-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

            .testimonials {
                margin: 0 14px;
                border-radius: 20px;
            }

            .testi-card { width: 300px; }

            .gallery-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                grid-template-rows: auto;
            }

            .gallery-item:first-child {
                grid-column: span 2;
                grid-row: auto;
            }

            .hours-strip {
                margin: 0 14px;
                flex-wrap: wrap;
                justify-content: flex-start;
                gap: 12px;
                padding: 14px;
            }

            .contact {
                margin: 14px;
                grid-template-columns: 1fr;
            }

            .contact-form-wrap,
            .contact-info { padding: 30px 20px; }

            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 640px) {
            #cursor { display: none; }

            .hero-title { font-size: clamp(42px, 15vw, 74px); }
            .hero-subtitle { font-size: clamp(18px, 6vw, 24px); }

            .stat-num { font-size: 22px; }
            .stat-label { letter-spacing: 0.11em; }

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

            .footer-top { grid-template-columns: 1fr; }
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }
    

        :root {
            --canvas: #e9e5db;
            --paper: #f9f5eb;
            --paper-2: #f3ecde;
            --ink: #101826;
            --ink-soft: #2f3b50;
            --muted: #5d6d86;
            --line: #c7cfdb;
            --bronze: #ef9a45;
            --bronze-deep: #c86a15;
            --accent-cool: #7eb8ff;
            --evergreen: #1f6a62;
            --night: #090f18;
            --radius-xl: 34px;
            --radius-lg: 24px;
            --radius-md: 16px;
            --shadow-soft: 0 20px 45px rgba(9, 15, 24, 0.14);
            --shadow-deep: 0 28px 72px rgba(9, 15, 24, 0.28);
            --focus-ring: rgba(248, 162, 79, 0.34);
            --font-display: 'Gymbox Monument', sans-serif;
            --font-body: 'Gymbox Monument', sans-serif;

            --gold: var(--bronze);
            --gold-light: #f4ad63;
            --gold-pale: #ffddbb;
            --black: var(--night);
            --dark: #151f2e;
            --dark2: #121b2a;
            --dark3: #1c2a3c;
            --mid: #43546d;
            --grey: var(--muted);
            --white: #f9f9f9;
        }

        :root[data-theme='dark'] {
            --canvas: #050a12;
            --paper: #0c131e;
            --paper-2: #101927;
            --ink: #f3f7ff;
            --ink-soft: #dde7f8;
            --muted: #afbdd3;
            --line: #233247;
            --bronze: #f8a24f;
            --bronze-deep: #d3771f;
            --accent-cool: #8fc2ff;
            --evergreen: #49a898;
            --night: #040912;
            --shadow-soft: 0 20px 46px rgba(2, 6, 12, 0.58);
            --shadow-deep: 0 30px 86px rgba(0, 0, 0, 0.78);
            --focus-ring: rgba(248, 162, 79, 0.42);

            --gold: var(--bronze);
            --gold-light: #ffba70;
            --gold-pale: #f5cb9c;
            --black: #040912;
            --dark: #0f1723;
            --dark2: #111c2a;
            --dark3: #182638;
            --mid: #2d3f56;
            --grey: var(--muted);
            --white: #f5f8ff;
        }

        html,
        body {
            width: 100%;
        }

        body {
            font-family: var(--font-body);
            letter-spacing: 0.01em;
            text-rendering: optimizeLegibility;
            -webkit-font-smoothing: antialiased;
            background:
                radial-gradient(1700px 720px at 0% -14%, rgba(255, 208, 134, 0.32) 0%, transparent 62%),
                radial-gradient(1100px 560px at 100% 0%, rgba(58, 86, 121, 0.16) 0%, transparent 58%),
                linear-gradient(180deg, #f3efe6 0%, #ece6d8 44%, #e6dfd2 100%);
            color: var(--ink);
        }

        :root[data-theme='dark'] body {
            background:
                radial-gradient(1100px 620px at 0% -8%, rgba(248, 162, 79, 0.14) 0%, transparent 62%),
                radial-gradient(1000px 520px at 100% 0%, rgba(60, 95, 150, 0.12) 0%, transparent 58%),
                linear-gradient(180deg, #050a12 0%, #050c15 48%, #060d17 100%);
        }

        body::before {
            content: '';
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: -1;
            opacity: 0.2;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
            background-size: 52px 52px;
        }

        :root[data-theme='dark'] body::before {
            opacity: 0.28;
        }

        body::after {
            content: '';
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: -1;
            background:
                radial-gradient(1200px 380px at 50% -12%, rgba(248, 162, 79, 0.13) 0%, transparent 68%),
                radial-gradient(1400px 780px at 50% 120%, rgba(111, 161, 224, 0.16) 0%, transparent 72%),
                linear-gradient(180deg, rgba(3, 6, 10, 0.06), rgba(3, 6, 10, 0.18));
            mix-blend-mode: soft-light;
        }

        :root[data-theme='dark'] body::after {
            background:
                radial-gradient(1200px 420px at 50% -12%, rgba(248, 162, 79, 0.2) 0%, transparent 70%),
                radial-gradient(1400px 780px at 50% 120%, rgba(124, 171, 235, 0.22) 0%, transparent 72%),
                linear-gradient(180deg, rgba(1, 3, 7, 0.14), rgba(1, 3, 7, 0.44));
            opacity: 0.95;
        }

        a {
            transition: color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
        }

        #cursor {
            background: rgba(248, 162, 79, 0.88);
            box-shadow: 0 0 0 9px rgba(248, 162, 79, 0.15);
        }

        nav {
            top: 12px;
            left: 18px;
            right: 18px;
            padding: 14px 18px;
            border-radius: 20px;
            border: 1px solid rgba(129, 150, 175, 0.34);
            background:
                linear-gradient(115deg, rgba(7, 14, 23, 0.97), rgba(12, 21, 34, 0.95));
            backdrop-filter: blur(14px);
            box-shadow:
                0 16px 44px rgba(0, 0, 0, 0.56),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }

        nav::before {
            content: '';
            position: absolute;
            top: 9px;
            left: 120px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(248, 162, 79, 0.72);
            box-shadow: 0 0 18px rgba(248, 162, 79, 0.4);
            pointer-events: none;
        }

        nav::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            pointer-events: none;
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.14),
                inset 0 -1px 0 rgba(143, 181, 233, 0.16);
        }

        nav.scrolled {
            top: 8px;
            border-color: rgba(248, 162, 79, 0.46);
            box-shadow:
                0 20px 58px rgba(0, 0, 0, 0.64),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }

        :root[data-theme='dark'] nav {
            border-color: rgba(129, 150, 175, 0.34);
            background:
                linear-gradient(115deg, rgba(7, 14, 23, 0.97), rgba(12, 21, 34, 0.95));
        }

        .nav-logo {
            font-family: var(--font-body);
            font-size: 34px;
            font-weight: 800;
            letter-spacing: 0.09em;
            line-height: 0.9;
            color: #f4f8ff;
            text-transform: uppercase;
            transition: transform 0.26s ease, text-shadow 0.26s ease;
        }

        :root[data-theme='dark'] .nav-logo {
            color: #f4f8ff;
        }

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

        .nav-tools {
            margin-left: auto;
            z-index: 2;
        }

        .nav-links {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
            margin: 0;
            padding: 0;
            z-index: 1;
        }

        .nav-links a {
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.14em;
            color: #bfcee2;
            padding: 8px 0;
            position: relative;
            text-transform: uppercase;
            border-radius: 0;
            white-space: nowrap;
            background: transparent;
            transition: color 0.22s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: -4px;
            height: 2px;
            border-radius: 2px;
            background: linear-gradient(90deg, rgba(248, 162, 79, 0), rgba(248, 162, 79, 0.98), rgba(248, 162, 79, 0));
            transform: scaleX(0);
            transform-origin: center;
            transition: transform 0.22s ease;
        }

        .nav-links a:hover {
            color: #f4f8ff;
            background: transparent;
            transform: none;
        }

        .nav-links a.active {
            color: #f4f8ff;
            background: transparent;
            box-shadow: none;
            transform: none;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            transform: scaleX(1);
        }

        :root[data-theme='dark'] .nav-links a {
            color: #bfcee2;
        }

        :root[data-theme='dark'] .nav-links a:hover {
            color: #f4f8ff;
            background: transparent;
        }

        :root[data-theme='dark'] .nav-links a.active {
            color: #f4f8ff;
            background: transparent;
            box-shadow: none;
        }

        .nav-links .nav-cta,
        :root[data-theme='dark'] .nav-links .nav-cta {
            padding: 12px 24px;
            border-radius: 999px;
            border: 1px solid rgba(255, 208, 153, 0.62);
            background: linear-gradient(115deg, #f3ae65, #d27a27);
            color: #0e1521 !important;
            box-shadow: 0 12px 22px rgba(210, 122, 39, 0.35);
        }

        .nav-links .nav-cta::after {
            display: none;
        }

        .nav-links .nav-cta:hover,
        .nav-links .nav-cta.active {
            color: #0e1521 !important;
            background: linear-gradient(115deg, #f6bb79, #dc8533);
            transform: translateY(-1px);
            box-shadow: 0 14px 24px rgba(220, 133, 51, 0.4);
        }

        .theme-toggle {
            display: none !important;
        }

        .hamburger {
            background: rgba(13, 23, 36, 0.65);
            border-color: rgba(158, 180, 208, 0.28);
        }

        .hamburger span {
            background: #e8f1ff;
        }

        @media (max-width: 980px) {
            nav::before {
                left: auto;
                right: 66px;
            }

            .hamburger {
                display: inline-flex;
            }

            .nav-links {
                position: absolute;
                top: calc(100% + 10px);
                left: 0;
                right: 0;
                transform: translateY(-10px);
                display: grid;
                gap: 8px;
                padding: 12px;
                border-radius: 16px;
                border: 1px solid rgba(129, 150, 175, 0.34);
                background: linear-gradient(165deg, rgba(10, 18, 30, 0.98), rgba(12, 22, 35, 0.98));
                box-shadow: 0 16px 34px rgba(0, 0, 0, 0.56);
                opacity: 0;
                pointer-events: none;
                z-index: 20;
            }

            nav.open .nav-links {
                opacity: 1;
                pointer-events: auto;
                transform: translateY(0);
            }

            .nav-links a {
                width: 100%;
                padding: 11px 14px;
                border-radius: 10px;
                background: rgba(255, 255, 255, 0.02);
                color: #dbe7f9;
            }

            .nav-links a::after {
                display: none;
            }

            .nav-links a:hover,
            .nav-links a.active {
                background: rgba(248, 162, 79, 0.18);
                color: #f8fbff;
            }

            .nav-links .nav-cta,
            .nav-links .nav-cta.active,
            .nav-links .nav-cta:hover {
                text-align: center;
                justify-content: center;
                margin-top: 4px;
                color: #0e1521 !important;
                background: linear-gradient(115deg, #f3ae65, #d27a27);
            }
        }

        .hero {
            margin: 98px 20px 20px;
            min-height: calc(100vh - 130px);
            border-radius: 34px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.18);
            background: #070d16;
            box-shadow: var(--shadow-deep);
        }

        .hero-video,
        .hero-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

        .hero-video {
            object-fit: cover;
            object-position: center center;
            z-index: 0;
            filter: saturate(1.08) contrast(1.06) brightness(0.66);
            transform: scale(1.08);
        }

        .hero-bg {
            z-index: 0;
            opacity: 0.18;
            background-position: center;
            background-size: cover;
        }

        .hero-overlay {
            z-index: 1;
            background:
                linear-gradient(90deg, rgba(5, 9, 15, 0.9) 0%, rgba(5, 9, 15, 0.65) 42%, rgba(5, 9, 15, 0.84) 100%),
                radial-gradient(900px 420px at 18% 12%, rgba(248, 162, 79, 0.26) 0%, transparent 72%);
        }

        .hero-gold-line {
            background: linear-gradient(90deg, rgba(248, 162, 79, 0), rgba(248, 162, 79, 0.82), rgba(248, 162, 79, 0));
            opacity: 0.75;
            z-index: 2;
        }

        .hero-content {
            z-index: 3;
            max-width: 820px;
            padding: 104px 72px 162px;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 8px 16px;
            border-radius: 999px;
            border: 1px solid rgba(248, 162, 79, 0.42);
            font-weight: 700;
            letter-spacing: 0.18em;
            color: #f2d8bc;
            text-transform: uppercase;
            background:
                linear-gradient(110deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.18) 45%, rgba(255, 255, 255, 0) 90%) -180% 0 / 42% 100% no-repeat,
                rgba(12, 18, 29, 0.62);
            position: relative;
            overflow: hidden;
            opacity: 0;
            animation:
                heroTextEnter 0.72s cubic-bezier(0.22, 0.61, 0.36, 1) 0.08s forwards,
                heroEyebrowBreath 5.2s ease-in-out 1.05s infinite;
        }

        .hero-eyebrow::before {
            content: '';
            width: 26px;
            height: 1px;
            background: rgba(242, 216, 188, 0.86);
            flex: 0 0 auto;
            animation: heroEyebrowLinePulse 3s ease-in-out infinite;
        }

        .hero-eyebrow-text {
            display: inline-block;
            overflow: hidden;
            padding-right: 4px;
            border-right: 1px solid currentColor;
            clip-path: inset(0 100% 0 0);
            animation:
                heroEyebrowTypeErase 6.6s steps(34, end) 1.1s infinite,
                heroCaretBlink 0.82s step-end 1.1s infinite;
        }

        .hero-title {
            margin-top: 20px;
            font-family: var(--font-display);
            font-size: clamp(64px, 11vw, 156px);
            line-height: 0.84;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: #f7fbff;
            text-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
            opacity: 0;
            animation:
                heroTextEnter 0.82s cubic-bezier(0.22, 0.61, 0.36, 1) 0.22s forwards,
                heroTitleGlow 6.4s ease-in-out 1.2s infinite;
        }

        .hero-title .gold {
            color: var(--gold);
            text-shadow: 0 0 36px rgba(248, 162, 79, 0.35);
            animation: heroGoldPulse 4.8s ease-in-out 1.1s infinite;
        }

        .hero-subtitle {
            margin-top: 24px;
            max-width: 640px;
            color: #dbe6f8;
            font-size: clamp(14px, 1.55vw, 18px);
            line-height: 1.75;
            opacity: 0;
            animation:
                heroTextEnter 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.42s forwards,
                heroSubtitlePulse 5.6s ease-in-out 1.4s infinite;
        }

        .hero-actions {
            margin-top: 34px;
            gap: 14px;
            opacity: 0;
            animation: heroTextEnter 0.72s cubic-bezier(0.22, 0.61, 0.36, 1) 0.64s forwards;
        }

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

        @keyframes heroEyebrowBreath {
            0%, 100% {
                box-shadow: 0 0 0 rgba(248, 162, 79, 0);
            }
            50% {
                box-shadow: 0 0 18px rgba(248, 162, 79, 0.32);
            }
        }

        @keyframes heroEyebrowLinePulse {
            0%, 100% {
                opacity: 0.7;
                transform: scaleX(0.9);
                transform-origin: left center;
            }
            50% {
                opacity: 1;
                transform: scaleX(1.15);
                transform-origin: left center;
            }
        }

        @keyframes heroEyebrowTypeErase {
            0%, 8% {
                clip-path: inset(0 100% 0 0);
            }
            42%, 58% {
                clip-path: inset(0 0 0 0);
            }
            92%, 100% {
                clip-path: inset(0 100% 0 0);
            }
        }

        @keyframes heroCaretBlink {
            0%, 49% {
                border-right-color: currentColor;
            }
            50%, 100% {
                border-right-color: transparent;
            }
        }

        @keyframes heroTitleGlow {
            0%, 100% {
                text-shadow: 0 12px 32px rgba(0, 0, 0, 0.45), 0 0 0 rgba(248, 162, 79, 0);
            }
            50% {
                text-shadow: 0 12px 32px rgba(0, 0, 0, 0.45), 0 0 16px rgba(248, 162, 79, 0.24);
            }
        }

        @keyframes heroGoldPulse {
            0%, 100% {
                text-shadow: 0 0 30px rgba(248, 162, 79, 0.34);
            }
            50% {
                text-shadow: 0 0 46px rgba(248, 162, 79, 0.56);
            }
        }

        @keyframes heroSubtitlePulse {
            0%, 100% {
                opacity: 0.92;
            }
            50% {
                opacity: 1;
            }
        }

        .btn-primary,
        .btn-outline,
        .btn-pricing,
        .form-submit {
            border-radius: 14px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            font-size: 11px;
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }

        .btn-primary {
            background: linear-gradient(115deg, #f7af63, #d6781f);
            color: #111822;
            border: 1px solid rgba(255, 204, 148, 0.7);
            box-shadow: 0 16px 28px rgba(215, 120, 31, 0.32);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 30px rgba(215, 120, 31, 0.38);
        }

        .btn-primary::after,
        .btn-outline::after,
        .btn-pricing::after,
        .form-submit::after {
            content: '';
            position: absolute;
            top: 0;
            left: -140%;
            width: 64%;
            height: 100%;
            background: linear-gradient(110deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
            transform: skewX(-22deg);
            pointer-events: none;
            z-index: 1;
            transition: left 0.64s cubic-bezier(0.22, 0.61, 0.36, 1);
        }

        .btn-primary:hover::after,
        .btn-outline:hover::after,
        .btn-pricing:hover::after,
        .form-submit:hover::after {
            left: 150%;
        }

        .btn-primary:focus-visible,
        .btn-outline:focus-visible,
        .btn-pricing:focus-visible,
        .form-submit:focus-visible,
        .nav-links a:focus-visible,
        .pricing-nav:focus-visible,
        .social-link:focus-visible {
            outline: 2px solid var(--focus-ring);
            outline-offset: 2px;
        }

        .btn-outline {
            color: #f5f8ff;
            border: 1px solid rgba(221, 233, 248, 0.44);
            background: rgba(12, 18, 29, 0.45);
        }

        .btn-outline:hover {
            background: rgba(221, 233, 248, 0.12);
            transform: translateY(-2px);
        }

        .hero-scroll {
            left: 32px;
            color: #d0dced;
            letter-spacing: 0.14em;
        }

        .scroll-line {
            background: linear-gradient(180deg, rgba(248, 162, 79, 0.9), rgba(248, 162, 79, 0.1));
        }

        .hero-stats {
            z-index: 3;
            left: 40px;
            right: 40px;
            bottom: 30px;
            gap: 14px;
        }

        .stat {
            background: rgba(12, 19, 31, 0.58);
            border: 1px solid rgba(220, 232, 247, 0.16);
            border-radius: 14px;
            min-width: 154px;
            backdrop-filter: blur(8px);
        }

        .stat-num {
            color: #f5f9ff;
            font-family: var(--font-display);
            letter-spacing: 0.04em;
            font-size: 36px;
            line-height: 0.95;
        }

        .stat-label {
            color: #d1dfef;
            letter-spacing: 0.12em;
        }

        .marquee-wrap {
            margin: 0 20px 8px;
            border-radius: 14px;
            border: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
            background: color-mix(in srgb, var(--paper) 86%, transparent);
        }

        :root[data-theme='dark'] .marquee-wrap {
            background: rgba(13, 20, 31, 0.78);
            border-color: rgba(162, 185, 216, 0.18);
        }

        .marquee-track span {
            font-family: var(--font-display);
            font-size: clamp(16px, 2vw, 22px);
            letter-spacing: 0.08em;
            color: var(--ink-soft);
        }

        .marquee-track span:nth-child(odd) {
            color: var(--gold);
        }

        section {
            padding: 102px clamp(20px, 5vw, 72px);
        }

        .section-eyebrow {
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.26em;
            text-transform: uppercase;
            color: var(--gold);
            text-shadow: 0 1px 0 rgba(5, 10, 16, 0.15);
        }

        .section-title {
            margin-top: 14px;
            font-family: var(--font-display);
            font-size: clamp(46px, 6.8vw, 92px);
            line-height: 0.84;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--ink);
            text-wrap: balance;
            text-shadow: 0 1px 0 rgba(6, 11, 18, 0.18);
        }

        .about,
        .services,
        .schedule,
        .membership,
        .gallery,
        .contact {
            margin: 0 20px;
            border-radius: var(--radius-xl);
            border: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
            background: color-mix(in srgb, var(--paper) 91%, transparent);
            box-shadow: var(--shadow-soft);
            position: relative;
            isolation: isolate;
        }

        .about::before,
        .services::before,
        .schedule::before,
        .membership::before,
        .gallery::before,
        .contact::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            pointer-events: none;
            z-index: 0;
            background:
                radial-gradient(900px 180px at 50% 0%, rgba(248, 162, 79, 0.1) 0%, transparent 72%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 28%);
        }

        .about > *,
        .services > *,
        .schedule > *,
        .membership > *,
        .gallery > *,
        .contact > * {
            position: relative;
            z-index: 1;
        }

        :root[data-theme='dark'] .about,
        :root[data-theme='dark'] .services,
        :root[data-theme='dark'] .schedule,
        :root[data-theme='dark'] .membership,
        :root[data-theme='dark'] .gallery,
        :root[data-theme='dark'] .contact {
            background: linear-gradient(160deg, rgba(11, 18, 29, 0.95), rgba(14, 23, 36, 0.96));
            border-color: rgba(169, 190, 217, 0.2);
        }

        .about {
            gap: 56px;
            align-items: center;
        }

        .about-visual {
            min-height: 540px;
        }

        .about-img-main,
        .about-img-accent,
        .inbody-img,
        .service-img,
        .gallery-img {
            filter: saturate(1.04) contrast(1.04);
        }

        .about-img-main,
        .about-img-accent {
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 44px rgba(9, 15, 24, 0.3);
        }

        .about-badge {
            border: 2px solid rgba(17, 24, 37, 0.18);
            background: linear-gradient(135deg, #f7c082, #e28a33);
            color: #111723;
            font-family: var(--font-display);
            font-size: 17px;
            line-height: 0.9;
            letter-spacing: 0.08em;
            box-shadow: 0 15px 30px rgba(226, 138, 51, 0.36);
        }

        .about-text p {
            margin-top: 18px;
            color: var(--ink-soft);
            font-size: 15px;
            line-height: 1.85;
            max-width: 64ch;
        }

        :root[data-theme='dark'] .about-text p strong {
            color: #f5f9ff;
        }

        .founder {
            border-radius: 14px;
            border: 1px solid color-mix(in srgb, var(--line) 85%, transparent);
            background: color-mix(in srgb, var(--paper-2) 93%, transparent);
        }

        :root[data-theme='dark'] .founder {
            border-color: rgba(160, 182, 214, 0.22);
            background: rgba(16, 25, 39, 0.9);
        }

        .founder-avatar {
            background: linear-gradient(120deg, #f8b66e, #cf7520);
            color: #111723;
            font-family: var(--font-display);
            font-size: 24px;
        }

        .founder-name {
            color: var(--ink);
            font-weight: 700;
        }

        :root[data-theme='dark'] .founder-name {
            color: #f3f8ff;
        }

        .founder-role {
            color: var(--gold);
            letter-spacing: 0.15em;
        }

        .services {
            padding-top: 96px;
        }

        .services-header {
            align-items: end;
            gap: 30px;
        }

        .services-header p {
            color: var(--ink-soft) !important;
            font-size: 14px !important;
        }

        .services-grid {
            margin-top: 36px;
            gap: 20px;
        }

        .service-card {
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(9, 15, 24, 0.28);
            transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
            will-change: transform;
        }

        .service-card:hover {
            transform: translateY(-6px);
            border-color: rgba(248, 162, 79, 0.34);
            box-shadow: 0 28px 52px rgba(8, 14, 24, 0.42);
        }

        .service-overlay {
            background:
                linear-gradient(180deg, rgba(7, 12, 20, 0.12) 0%, rgba(5, 9, 15, 0.88) 96%),
                radial-gradient(540px 220px at 50% 10%, rgba(248, 162, 79, 0.26) 0%, transparent 68%);
        }

        .service-content {
            padding: 24px;
            justify-content: flex-end;
            gap: 12px;
        }

        .service-icon {
            color: rgba(255, 255, 255, 0.85);
            font-family: var(--font-display);
            font-size: 38px;
            line-height: 0.9;
            letter-spacing: 0.05em;
        }

        .service-bar {
            width: 52px;
            height: 4px;
            border-radius: 999px;
            background: var(--gold);
        }

        .service-title {
            color: #f8fbff;
            font-family: var(--font-display);
            font-size: 30px;
            letter-spacing: 0.04em;
            line-height: 0.88;
            text-transform: uppercase;
        }

        .service-desc {
            color: #dce7f7;
            font-size: 13px;
            line-height: 1.7;
        }

        .inbody {
            margin: 26px 20px 0;
            border-radius: var(--radius-xl);
            border: 1px solid rgba(255, 255, 255, 0.16);
            background: linear-gradient(135deg, #0a111c, #0d1624);
            box-shadow: var(--shadow-deep);
        }

        .inbody::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(7, 13, 20, 0.2), rgba(7, 13, 20, 0.82));
            pointer-events: none;
        }

        .inbody-content {
            z-index: 2;
            background: linear-gradient(155deg, #101a2a 0%, #172438 100%);
        }

        .inbody .section-title,
        .inbody .section-eyebrow,
        .inbody p {
            color: #f5f9ff;
            text-shadow: 0 1px 0 rgba(5, 10, 16, 0.3);
        }

        .inbody p {
            color: #d5e2f2 !important;
        }

        .inbody-stats {
            gap: 12px;
        }

        .inbody-stat {
            border-radius: 14px;
            border: 1px solid rgba(220, 232, 247, 0.28);
            background: rgba(10, 16, 27, 0.82);
            backdrop-filter: blur(6px);
        }

        .inbody-stat-val {
            color: #f8b468;
            font-family: var(--font-display);
            font-size: 36px;
            line-height: 0.88;
            letter-spacing: 0.04em;
        }

        .inbody-stat-label {
            color: #e3ecf8;
            letter-spacing: 0.11em;
        }

        .schedule p {
            color: var(--ink-soft) !important;
            font-size: 15px !important;
        }

        .schedule-grid {
            margin-top: 30px;
            gap: 12px;
        }

        .day-card {
            border-radius: 14px;
            border: 1px solid color-mix(in srgb, var(--line) 85%, transparent);
            background: color-mix(in srgb, var(--paper-2) 92%, transparent);
            min-height: 148px;
        }

        :root[data-theme='dark'] .day-card {
            border-color: rgba(163, 184, 215, 0.24);
            background: rgba(15, 24, 37, 0.92);
        }

        .day-card.active {
            background: linear-gradient(145deg, #f6b468, #da7f27);
            border-color: rgba(208, 118, 28, 0.64);
            color: #111723;
            box-shadow: 0 16px 28px rgba(215, 120, 31, 0.32);
        }

        .day-name {
            font-family: var(--font-display);
            font-size: 32px;
            letter-spacing: 0.05em;
            line-height: 0.9;
        }

        .day-class,
        .day-time {
            letter-spacing: 0.09em;
            font-weight: 700;
        }

        .day-rest {
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.14em;
        }

        .membership {
            margin-top: 26px;
        }

        .membership .section-eyebrow {
            font-size: 9px;
            letter-spacing: 0.22em;
        }

        .membership .section-title {
            font-size: clamp(39px, 5.8vw, 78px);
            letter-spacing: 0.04em;
        }

        .pricing-slider {
            position: relative;
            margin-top: 34px;
            padding: 0 42px;
        }

        .pricing-grid {
            margin: 0;
            max-width: none;
            width: 100%;
            display: flex;
            gap: 18px;
            overflow-x: auto;
            padding: 2px 0 10px;
            scroll-snap-type: none;
            scroll-behavior: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .pricing-grid::-webkit-scrollbar {
            display: none;
        }

        .pricing-nav {
            position: absolute;
            top: 50%;
            z-index: 3;
            width: 36px;
            height: 36px;
            border-radius: 999px;
            border: 1px solid color-mix(in srgb, var(--line) 88%, transparent);
            background: color-mix(in srgb, var(--paper) 92%, transparent);
            color: var(--ink);
            font-size: 24px;
            line-height: 1;
            display: grid;
            place-items: center;
            cursor: pointer;
            transform: translateY(-50%);
            transition: opacity 0.2s ease, transform 0.2s ease;
            backdrop-filter: blur(8px);
        }

        .pricing-nav.prev { left: 0; }
        .pricing-nav.next { right: 0; }

        .pricing-nav:hover {
            transform: translateY(-50%) scale(1.04);
        }

        .pricing-nav:disabled {
            opacity: 0.35;
            cursor: default;
            transform: translateY(-50%);
        }

        .pricing-slider.is-static .pricing-nav {
            opacity: 0;
            pointer-events: none;
        }

        :root[data-theme='dark'] .pricing-nav {
            border-color: rgba(170, 191, 219, 0.34);
            background: rgba(10, 17, 29, 0.9);
            color: #ebf2fe;
        }

        .pricing-card {
            flex: 0 0 calc((100% - 54px) / 4);
            min-width: 0;
            border-radius: 24px;
            border: 1px solid color-mix(in srgb, var(--line) 84%, transparent);
            background: color-mix(in srgb, var(--paper-2) 94%, transparent);
            box-shadow: var(--shadow-soft);
            padding: 30px 22px 24px;
            backdrop-filter: blur(8px);
            transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
        }

        .pricing-card:hover {
            transform: translateY(-4px);
            border-color: rgba(248, 162, 79, 0.48);
            box-shadow: 0 26px 44px rgba(8, 14, 24, 0.42);
        }

        :root[data-theme='dark'] .pricing-card {
            border-color: rgba(162, 184, 216, 0.24);
            background: rgba(15, 24, 37, 0.95);
        }

        .pricing-card.highlight {
            border-color: rgba(248, 162, 79, 0.74);
            background:
                radial-gradient(640px 260px at 50% 0%, rgba(248, 162, 79, 0.21) 0%, transparent 72%),
                color-mix(in srgb, var(--paper-2) 96%, transparent);
        }

        :root[data-theme='dark'] .pricing-card.highlight {
            background:
                radial-gradient(640px 260px at 50% 0%, rgba(248, 162, 79, 0.24) 0%, transparent 72%),
                rgba(14, 22, 34, 0.98);
        }

        .pricing-badge {
            background: linear-gradient(115deg, #f8b76d, #cf7521);
            color: #121a27;
            letter-spacing: 0.13em;
        }

        .pricing-name {
            font-family: var(--font-display);
            font-size: clamp(15px, 1.45vw, 19px);
            letter-spacing: 0.05em;
            line-height: 0.98;
        }

        .pricing-price {
            font-family: var(--font-display);
            font-size: clamp(29px, 2.72vw, 37px);
            line-height: 0.9;
            letter-spacing: 0.02em;
            color: var(--ink);
        }

        .pricing-price span {
            font-size: 12px;
            font-family: var(--font-body);
            letter-spacing: 0.09em;
        }

        :root[data-theme='dark'] .pricing-price {
            color: #f4f8ff;
        }

        .pricing-period {
            font-size: 9px;
            color: var(--muted);
            letter-spacing: 0.11em;
            text-transform: uppercase;
        }

        .pricing-features li {
            font-size: 11px;
            color: var(--ink-soft);
            border-top: 1px solid color-mix(in srgb, var(--line) 84%, transparent);
            padding: 10px 0;
        }

        .pricing-features li::before {
            color: var(--gold);
        }

        .btn-pricing {
            width: 100%;
            text-align: center;
            color: #121a27;
            background: linear-gradient(115deg, #f8b66c, #d37922);
            border: 1px solid rgba(255, 211, 160, 0.7);
            box-shadow: 0 14px 24px rgba(215, 120, 31, 0.26);
        }

        .btn-pricing:hover {
            transform: translateY(-2px);
            box-shadow: 0 18px 30px rgba(215, 120, 31, 0.32);
        }

        .testimonials {
            margin: 26px 20px 0;
            border-radius: var(--radius-xl);
            border: 1px solid rgba(255, 255, 255, 0.16);
            background: linear-gradient(140deg, #0a111c, #0f1b2b);
            box-shadow: var(--shadow-deep);
        }

        .testimonials .section-title,
        .testimonials .section-eyebrow {
            color: #f5f9ff;
        }

        .testimonials-track {
            margin-top: 28px;
            gap: 14px;
        }

        .testi-card {
            width: 340px;
            border-radius: 18px;
            border: 1px solid rgba(220, 232, 247, 0.18);
            background: rgba(11, 18, 30, 0.68);
            backdrop-filter: blur(6px);
            transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
        }

        .testi-card:hover {
            transform: translateY(-4px);
            border-color: rgba(248, 162, 79, 0.4);
            box-shadow: 0 18px 30px rgba(4, 9, 16, 0.45);
        }

        .testi-quote {
            color: #f8a44f;
            font-family: var(--font-display);
            font-size: 38px;
            line-height: 0.7;
        }

        .testi-stars {
            color: #f7ba70;
            font-size: 10px;
            letter-spacing: 0.2em;
        }

        .testi-text {
            color: #dee8f7;
            font-size: 20px;
            line-height: 1.8;
        }

        .testi-author {
            color: #f4f8ff;
            font-size: 9px;
            letter-spacing: 0.08em;
            font-weight: 700;
            text-transform: uppercase;
        }

        .gallery {
            margin-top: 26px;
        }

        .gallery-grid {
            margin-top: 28px;
            gap: 14px;
        }

        .gallery-item {
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(9, 15, 24, 0.3);
            transition: transform 0.34s ease, border-color 0.34s ease, box-shadow 0.34s ease;
        }

        .gallery-item:hover {
            transform: translateY(-4px);
            border-color: rgba(248, 162, 79, 0.38);
            box-shadow: 0 28px 52px rgba(5, 10, 17, 0.46);
        }

        .gallery-overlay {
            background:
                linear-gradient(180deg, rgba(7, 12, 20, 0) 24%, rgba(6, 11, 17, 0.87) 100%);
        }

        .gallery-overlay-text {
            font-family: var(--font-display);
            color: #f7fbff;
            font-size: 30px;
            letter-spacing: 0.07em;
            line-height: 0.9;
        }

        .hours-strip {
            margin: 14px 20px;
            border-radius: 16px;
            border: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
            background: color-mix(in srgb, var(--paper) 89%, transparent);
            box-shadow: var(--shadow-soft);
            position: relative;
            overflow: hidden;
        }

        .hours-strip::before {
            content: '';
            position: absolute;
            top: 0;
            left: -120%;
            width: 52%;
            height: 100%;
            pointer-events: none;
            background: linear-gradient(110deg, rgba(255, 255, 255, 0), rgba(248, 162, 79, 0.16), rgba(255, 255, 255, 0));
            transform: skewX(-20deg);
            animation: ambientSweep 9s linear infinite;
            opacity: 0.35;
        }

        :root[data-theme='dark'] .hours-strip {
            border-color: rgba(165, 186, 216, 0.2);
            background: rgba(13, 20, 32, 0.92);
        }

        .hours-day {
            color: var(--gold);
            letter-spacing: 0.14em;
            text-transform: uppercase;
            font-size: 11px;
            font-weight: 800;
        }

        .hours-time {
            color: var(--ink);
            font-family: var(--font-display);
            font-size: 28px;
            line-height: 0.9;
            letter-spacing: 0.04em;
            transition: color 0.28s ease, transform 0.28s ease;
        }

        :root[data-theme='dark'] .hours-time {
            color: #f4f8ff;
        }

        .contact {
            margin-top: 0;
            overflow: hidden;
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
            align-items: stretch;
        }

        .contact-form-wrap,
        .contact-info {
            background: transparent;
        }

        .contact-form-wrap {
            padding: 52px 44px;
        }

        .contact-info {
            padding: 30px 28px;
        }

        .contact-map-wrap {
            min-height: 100%;
        }

        .form-label {
            color: var(--ink-soft);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        .form-input,
        .form-textarea {
            border-radius: 12px;
            border: 1px solid color-mix(in srgb, var(--line) 84%, transparent);
            background: color-mix(in srgb, var(--paper-2) 92%, transparent);
            color: var(--ink);
            font-family: var(--font-body);
            font-size: 14px;
            line-height: 1.4;
            min-height: 48px;
            width: 100%;
            padding: 14px;
            transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
        }

        select.form-input {
            appearance: none;
            -webkit-appearance: none;
            padding-right: 46px;
            background-position: right 16px center !important;
            background-size: 12px 12px;
        }

        :root[data-theme='dark'] .form-input,
        :root[data-theme='dark'] .form-textarea {
            border-color: rgba(162, 184, 216, 0.28);
            background: rgba(16, 25, 39, 0.92);
            color: #f4f8ff;
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: color-mix(in srgb, var(--muted) 86%, transparent);
        }

        .form-input:focus,
        .form-textarea:focus {
            border-color: rgba(248, 162, 79, 0.74);
            box-shadow: 0 0 0 4px rgba(248, 162, 79, 0.16);
            outline: none;
        }

        .form-submit {
            width: 100%;
            background: linear-gradient(115deg, #f8b66c, #d37922);
            color: #111a27;
            border: 1px solid rgba(255, 211, 160, 0.74);
            box-shadow: 0 16px 28px rgba(215, 120, 31, 0.3);
            min-height: 50px;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 30px rgba(215, 120, 31, 0.38);
        }

        .contact-info-item {
            border-radius: 12px;
            border: 1px solid color-mix(in srgb, var(--line) 84%, transparent);
            background: color-mix(in srgb, var(--paper-2) 90%, transparent);
            transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
        }

        :root[data-theme='dark'] .contact-info-item {
            border-color: rgba(160, 182, 214, 0.23);
            background: rgba(15, 24, 37, 0.9);
        }

        .contact-info-icon {
            border-radius: 10px;
            background: linear-gradient(120deg, #f8b66d, #ce7320);
            color: #111723;
            font-family: var(--font-display);
            font-size: 20px;
            letter-spacing: 0.05em;
            transition: transform 0.28s ease, box-shadow 0.28s ease;
        }

        .contact-info-label {
            color: var(--muted);
            letter-spacing: 0.14em;
            font-size: 11px;
            text-transform: uppercase;
            font-weight: 700;
        }

        .contact-info-val {
            color: var(--ink);
            font-weight: 600;
        }

        :root[data-theme='dark'] .contact-info-val {
            color: #f4f8ff;
        }

        .map-embed {
            border-left: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
            filter: saturate(0.8) contrast(1.02);
            transition: filter 0.35s ease, transform 0.35s ease;
            min-height: 320px;
        }

        :root[data-theme='dark'] .map-embed {
            border-left-color: rgba(162, 184, 216, 0.2);
            filter: saturate(0.7) contrast(1.05) brightness(0.86);
        }

        footer {
            margin: 28px 20px 20px;
            border-radius: 26px;
            border: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
            background: color-mix(in srgb, var(--paper) 90%, transparent);
            box-shadow: var(--shadow-soft);
        }

        :root[data-theme='dark'] footer {
            border-color: rgba(164, 186, 216, 0.2);
            background: linear-gradient(160deg, rgba(10, 17, 28, 0.96), rgba(13, 21, 34, 0.98));
        }

        .footer-logo {
            font-family: var(--font-display);
            font-size: 40px;
            letter-spacing: 0.07em;
            line-height: 0.9;
        }

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

        .footer-tagline {
            color: var(--ink-soft);
            max-width: 38ch;
        }

        .footer-col h4 {
            color: var(--ink);
            font-size: 11px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        :root[data-theme='dark'] .footer-col h4 {
            color: #f5f9ff;
        }

        .footer-links a {
            color: var(--ink-soft);
            position: relative;
            transition: color 0.26s ease, transform 0.26s ease;
        }

        .footer-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, rgba(248, 162, 79, 0), rgba(248, 162, 79, 0.92), rgba(248, 162, 79, 0));
            transform: scaleX(0);
            transform-origin: left center;
            transition: transform 0.25s ease;
        }

        .footer-links a:hover {
            color: var(--gold);
            transform: translateX(2px);
        }

        .footer-links a:hover::after {
            transform: scaleX(1);
        }

        .social-link {
            border: 1px solid color-mix(in srgb, var(--line) 84%, transparent);
            background: color-mix(in srgb, var(--paper-2) 92%, transparent);
            color: var(--ink);
            font-size: 10px;
            letter-spacing: 0.15em;
            font-weight: 700;
            text-transform: uppercase;
            transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease;
        }

        :root[data-theme='dark'] .social-link {
            border-color: rgba(162, 184, 216, 0.28);
            background: rgba(16, 25, 39, 0.9);
            color: #eff5ff;
        }

        .social-link:hover {
            border-color: rgba(248, 162, 79, 0.62);
            color: #111723;
            background: linear-gradient(115deg, #f8b66c, #ce7420);
            transform: translateY(-2px);
            box-shadow: 0 14px 24px rgba(206, 116, 32, 0.28);
        }

        @keyframes statFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        @keyframes ambientSweep {
            0% { transform: translateX(-130%); opacity: 0; }
            20% { opacity: 0.4; }
            100% { transform: translateX(160%); opacity: 0; }
        }

        .hero-stats .stat {
            animation: statFloat 6.2s ease-in-out infinite;
        }

        .hero-stats .stat:nth-child(2) { animation-delay: 0.9s; }
        .hero-stats .stat:nth-child(3) { animation-delay: 1.8s; }

        .founder,
        .day-card,
        .hours-item,
        .contact-info-item {
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }

        .founder,
        .day-card,
        .hours-item,
        .footer-col {
            transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
        }

        .hours-item {
            border: 1px solid transparent;
            border-radius: 12px;
            padding: 10px 12px;
        }

        .founder::after,
        .day-card::after,
        .hours-item::after,
        .contact-info-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: -150%;
            width: 62%;
            height: 100%;
            pointer-events: none;
            background: linear-gradient(110deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
            transform: skewX(-18deg);
            opacity: 0;
        }

        @media (hover: hover) {
            .founder:hover,
            .day-card:hover,
            .hours-item:hover,
            .contact-info-item:hover {
                transform: translateY(-3px);
                border-color: rgba(248, 162, 79, 0.38);
                box-shadow: 0 14px 26px rgba(7, 13, 22, 0.28);
            }

            .founder:hover::after,
            .day-card:hover::after,
            .hours-item:hover::after,
            .contact-info-item:hover::after {
                animation: ambientSweep 0.9s ease forwards;
            }

            .contact-info-item:hover .contact-info-icon {
                transform: scale(1.06) rotate(-2deg);
                box-shadow: 0 8px 16px rgba(206, 116, 32, 0.3);
            }

            .hours-item:hover .hours-time {
                color: var(--gold-light);
                transform: translateY(-1px);
            }

            .map-embed:hover {
                filter: saturate(0.92) contrast(1.05);
                transform: scale(1.01);
            }

            .form-input:hover,
            .form-textarea:hover {
                border-color: rgba(248, 162, 79, 0.44);
                box-shadow: 0 0 0 3px rgba(248, 162, 79, 0.1);
            }

            .footer-col:hover {
                transform: translateY(-2px);
            }

            .nav-logo:hover {
                transform: translateY(-1px) scale(1.02);
                text-shadow: 0 0 18px rgba(248, 162, 79, 0.36);
            }
        }

        .footer-bottom {
            border-top: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
        }

        :root[data-theme='dark'] .footer-bottom {
            border-top-color: rgba(164, 186, 216, 0.2);
        }

        .footer-copy {
            color: var(--muted);
            font-size: 11px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .footer-copy span {
            color: var(--gold);
        }

        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.55s ease, transform 0.55s ease;
        }

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

        @media (max-width: 1180px) {
            .hero-content {
                padding: 92px 42px 154px;
            }

            .hero-stats {
                left: 26px;
                right: 26px;
            }

            .about,
            .services,
            .schedule,
            .membership,
            .gallery,
            .contact,
            .testimonials,
            .inbody,
            footer,
            .hours-strip {
                margin-left: 14px;
                margin-right: 14px;
            }

            .pricing-slider {
                padding: 0 34px;
            }

            .pricing-card {
                flex-basis: calc((100% - 36px) / 3);
            }
        }

        @media (max-width: 1024px) {
            .hero {
                margin-top: 90px;
                min-height: 82vh;
            }

            .hero-content {
                padding: 76px 28px 148px;
            }

            .hero-title {
                font-size: clamp(60px, 14vw, 126px);
            }

            nav {
                left: 14px;
                right: 14px;
                padding: 12px 14px;
            }

            .nav-logo {
                font-size: 26px;
            }
        }

        @media (max-width: 880px) {
            .hero {
                min-height: 76vh;
            }

            .hero-video {
                transform: scale(1.03);
            }

            .hero-content {
                padding: 76px 24px 142px;
            }

            .hero-title {
                font-size: clamp(56px, 16vw, 112px);
                line-height: 0.88;
            }

            .hero-subtitle {
                max-width: 48ch;
                font-size: 15px;
            }

            .hero-stats {
                flex-wrap: wrap;
                gap: 10px;
            }

            .stat {
                min-width: calc(50% - 6px);
            }

            .services-header {
                align-items: start;
            }

            .map-embed {
                border-left: none;
                border-top: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
            }

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

            .contact-form-wrap {
                padding: 34px 22px 24px;
            }

            .contact-map-wrap {
                border-top: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
            }

            .contact-info {
                padding: 22px 20px;
            }

            .contact-info-item {
                margin-bottom: 14px;
            }

            .map-embed {
                min-height: 240px;
            }

            .form-label {
                margin-bottom: 6px;
                letter-spacing: 0.12em;
            }

            .form-input,
            .form-textarea {
                font-size: 16px;
                min-height: 48px;
                padding: 13px;
            }

            .form-textarea {
                min-height: 118px;
            }

            .form-submit {
                min-height: 48px;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 78px 20px;
            }

            .hero {
                margin: 84px 14px 14px;
                border-radius: 24px;
            }

            .hero-content {
                padding: 68px 18px 150px;
            }

            .hero-title {
                font-size: clamp(52px, 16vw, 96px);
            }

            .hero-eyebrow {
                font-size: 9px;
                letter-spacing: 0.15em;
            }

            .hero-scroll {
                left: 18px;
                bottom: 18px;
            }

            .hero-stats {
                left: 18px;
                right: 18px;
                bottom: 18px;
            }

            .stat {
                min-width: 100%;
            }

            .testi-card {
                width: 300px;
            }

            .hours-time {
                font-size: 24px;
            }

            .hours-day {
                font-size: 10px;
                letter-spacing: 0.12em;
            }

            .contact .section-eyebrow {
                font-size: 9px;
                letter-spacing: 0.16em;
            }

            .contact .section-title {
                font-size: clamp(30px, 9vw, 42px);
                line-height: 0.9;
            }

            .contact-info-label {
                font-size: 10px;
            }

            .contact-info-val {
                font-size: 14px;
            }

            .pricing-slider {
                padding: 0;
            }

            .pricing-grid {
                gap: 14px;
            }

            .pricing-card {
                flex: 0 0 calc((100% - 14px) / 1.75);
                min-width: 0;
            }

            .pricing-nav {
                display: none;
            }

            .membership .section-title {
                font-size: clamp(27px, 9.4vw, 52px);
            }

            .pricing-badge {
                top: -10px;
                left: 14px;
                padding: 5px 10px;
                font-size: 9px;
            }

            .pricing-name {
                font-size: 14px;
                letter-spacing: 0.04em;
            }

            .pricing-price {
                font-size: 26px;
            }

            .pricing-price span {
                font-size: 10px;
            }

            .pricing-period {
                font-size: 8px;
                letter-spacing: 0.1em;
            }

            .pricing-features li {
                font-size: 10px;
                line-height: 1.25;
                padding: 8px 0;
            }

            .btn-pricing {
                font-size: 11px;
                letter-spacing: 0.14em;
                padding: 13px 12px;
            }
        }

        @media (max-width: 640px) {
            .nav-logo {
                font-size: 20px;
            }

            .section-title {
                font-size: clamp(32px, 11vw, 60px);
                word-wrap: break-word;
                overflow-wrap: break-word;
                hyphens: auto;
            }

            .service-title {
                font-size: 26px;
            }

            .contact-form-wrap {
                padding: 24px 16px 18px;
            }

            .hours-day {
                font-size: 9px;
                letter-spacing: 0.1em;
            }

            .hours-time {
                font-size: 19px;
                letter-spacing: 0.03em;
            }

            .contact-info {
                padding: 18px 14px;
            }

            .contact-info-item {
                gap: 10px;
                margin-bottom: 10px;
            }

            .contact-info-icon {
                min-width: 34px;
                height: 28px;
                font-size: 10px;
            }

            .contact-info-label {
                font-size: 9px;
                letter-spacing: 0.11em;
            }

            .contact-info-val {
                font-size: 13px;
                line-height: 1.35;
            }

            .form-group {
                margin-bottom: 12px;
            }

            .form-label {
                font-size: 9px;
                margin-bottom: 5px;
                letter-spacing: 0.11em;
            }

            .contact .section-eyebrow {
                font-size: 8px;
                letter-spacing: 0.14em;
            }

            .contact .section-title {
                font-size: clamp(24px, 8.4vw, 34px);
                line-height: 0.9;
            }

            .form-input,
            .form-textarea {
                font-size: 16px;
                min-height: 46px;
                padding: 12px;
            }

            .form-textarea {
                min-height: 104px;
            }

            select.form-input {
                padding-right: 40px;
                background-position: right 12px center !important;
            }

            .form-submit {
                min-height: 46px;
                padding: 10px 12px;
                font-size: 10px;
                letter-spacing: 0.12em;
            }

            .map-embed {
                min-height: 210px;
            }

            .pricing-name {
                font-size: 13px;
            }

            .pricing-price {
                font-size: 24px;
            }

            .pricing-price span {
                font-size: 9px;
            }

            .pricing-period {
                font-size: 7px;
            }

            .pricing-features li {
                font-size: 9px;
                line-height: 1.25;
                padding: 7px 0;
            }

            .pricing-card {
                padding: 20px 14px 16px;
            }

            .btn-pricing {
                font-size: 10px;
                padding: 11px 10px;
            }

            .footer-logo {
                font-size: 34px;
            }
        }
    

