        :root {
            --gold: #DFB94F;
            --gold-light: #DFB94F;
            --gold-dark: #A88A2D;
            --img-radius: 10px;
            --dark: #0D0D0B;
            --dark2: #141410;
            --dark3: #1C1C17;
            --light: #F5F3EE;
            --light2: #ECEAE4;
            --muted: #8A8578;
            --white: #FFFFFF;
            --serif: 'Cormorant Garamond', Georgia, serif;
            --sans: 'Jost', system-ui, sans-serif;
        }
        
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        html {
            overflow-x: hidden;
            max-width: 100%;
        }

        img {
            max-width: 100%;
        }

        body {
            font-family: var(--sans);
            background: var(--dark);
            color: var(--light);
            overflow-x: hidden;
            max-width: 100%;
            position: relative;
            line-height: 1.6;
        }

        #nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 900;
            padding: 24px 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: transparent;
            transition: all 0.4s;
        }
        
        #nav.scrolled {
            background: rgb(13, 13, 11);
            padding: 14px 60px;
            border-bottom: 1px solid rgba(223, 185, 79, 0.12);
        }
        
        .nav-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            opacity: .9;
            transition: opacity .2s;
        }
        
        .nav-logo:hover {
            opacity: 1;
        }
        
        .nav-links {
            display: flex;
            gap: 36px;
            list-style: none;
            align-items: center;
        }
        
        .nav-links a {
            color: rgba(255, 255, 255, .9);
            text-decoration: none;
            font-size: 13px;
            letter-spacing: .08em;
            text-transform: uppercase;
            transition: color .3s;
            position: relative;
            padding-bottom: 3px;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--gold);
            transform: scaleX(0);
            transition: transform .3s ease, opacity .3s;
            opacity: 0;
        }
        
        .nav-links a:hover {
            color: var(--gold);
        }
        
        .nav-links a:hover::after {
            transform: scaleX(1);
            opacity: 1;
        }
        
        .nav-cta {
            border: 1px solid var(--gold) !important;
            color: var(--gold) !important;
            padding: 10px 24px;
        }
        
        .nav-cta:hover {
            background: var(--gold) !important;
            color: var(--dark) !important;
        }
        
        .nav-phone {
            display: flex !important;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, .9) !important;
            font-size: 13px !important;
            letter-spacing: .06em !important;
        }
        
        .nav-phone i {
            font-size: 13px;
        }
        
        .nav-phone:hover {
            color: var(--gold) !important;
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px;
        }
        
        .hamburger span {
            display: block;
            width: 26px;
            height: 1.5px;
            background: #FFFFFF;
            transition: all .3s;
        }

        #nav.scrolled .hamburger span {
            background: var(--gold);
        }
        
        #mmenu {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 999;
            background: var(--dark);
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
        }
        
        #mmenu.open {
            display: flex;
        }
        
        #mmenu a {
            color: var(--white);
            text-decoration: none;
            font-family: var(--serif);
            font-size: 32px;
            font-weight: 300;
            transition: color .2s;
        }
        
        #mmenu a:hover {
            color: var(--gold);
        }
        
        #mmclose {
            position: absolute;
            top: 24px;
            right: 32px;
            font-size: 28px;
            cursor: pointer;
            background: none;
            border: none;
            color: var(--gold);
        }

        #hero {
            position: relative;
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .hero-bg {
            position: absolute;
            inset: 0;
            background: url('images/header.png') center/cover;
            transform: scale(1.08);
            transition: transform 8s ease-out;
        }
        
        .hero-bg.ready {
            transform: scale(1);
        }
        
        .hero-ov {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 720px 380px at 50% 56%, rgba(13, 13, 11, .55) 0%, rgba(13, 13, 11, .35) 45%, rgba(13, 13, 11, 0) 75%),
                linear-gradient(to bottom, rgba(13, 13, 11, .65) 0%, rgba(13, 13, 11, .25) 12%, rgba(13, 13, 11, 0) 22%);
            pointer-events: none;
        }
        
        .hero-body {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 820px;
            padding: 0 24px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s ease .5s;
        }
        
        .hero-body.ready {
            opacity: 1;
            transform: translateY(0);
        }
        
        .hero-eye {
            font-size: 11px;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .92);
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }
        
        .hero-eye::before,
        .hero-eye::after {
            content: '';
            flex: 0 0 60px;
            height: 1px;
            background: rgba(255, 255, 255, .55);
            opacity: 1;
        }
        
        .hero-h1 {
            font-family: var(--serif);
            font-size: clamp(42px, 6vw, 78px);
            font-weight: 300;
            line-height: 1.1;
            margin-bottom: 24px;
            color: var(--white);
            text-shadow: 0 2px 24px rgba(13, 13, 11, .5);
        }
        
        .hero-h1 em {
            font-style: italic;
            color: rgba(255, 255, 255, .85);
        }
        
        .hero-sub {
            font-size: 17px;
            font-weight: 300;
            color: rgba(245, 243, 238, .85);
            margin-bottom: 48px;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
            text-shadow: 0 1px 12px rgba(13, 13, 11, .55);
        }
        
        .hero-ctas {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-gold {
            background: var(--gold);
            color: var(--dark);
            border: none;
            padding: 16px 40px;
            font-family: var(--sans);
            font-size: 13px;
            font-weight: 500;
            letter-spacing: .08em;
            text-transform: uppercase;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all .3s;
        }
        
        .btn-gold:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
        }
        
        .btn-ghost {
            background: rgba(13, 13, 11, .25);
            color: var(--white);
            border: 1px solid rgba(245, 243, 238, .55);
            padding: 16px 40px;
            font-family: var(--sans);
            font-size: 13px;
            font-weight: 400;
            letter-spacing: .08em;
            text-transform: uppercase;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all .3s;
        }
        
        .btn-ghost:hover {
            border-color: var(--gold);
            color: var(--gold);
            transform: translateY(-2px);
        }
        
        .hero-scroll {
            display: none;
        }
        
        .hero-scroll-line {
            width: 1px;
            height: 50px;
            background: linear-gradient(to bottom, var(--gold), transparent);
        }
        
        @keyframes bounce {
            0%,
            100% {
                transform: translateX(-50%) translateY(0)
            }
            50% {
                transform: translateX(-50%) translateY(8px)
            }
        }

        .sec {
            padding: 120px 0;
        }
        
        .sec-light {
            background: var(--light);
            color: var(--dark);
        }

        .sec-light .eye,
        .sec-light .h2 em,
        .sec-light em {
            color: var(--gold-dark);
        }
        
        .sec-light .eye::after,
        .sec-light .eye::before {
            background: var(--gold-dark);
        }
        
        .sec-mid {
            background: var(--dark3);
        }
        
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 60px;
        }
        
        .eye {
            font-size: 11px;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .eye::after {
            content: '';
            flex: 0 0 40px;
            height: 1px;
            background: var(--gold);
            opacity: .5;
        }
        
        .eye-c {
            justify-content: center;
            color: var(--gold-dark);
        }
        
        .eye-c::before {
            content: '';
            flex: 0 0 40px;
            height: 1px;
            background: var(--gold-dark);
            opacity: .5;
        }
        
        .eye-c::after {
            background: var(--gold-dark);
        }
        
        .h2 {
            font-family: var(--serif);
            font-size: clamp(36px, 4vw, 56px);
            font-weight: 300;
            line-height: 1.15;
            margin-bottom: 24px;
        }
        
        .h2 em {
            font-style: italic;
            color: var(--gold);
        }
        
        .h2-light em {
            color: var(--gold-dark);
        }
        
        .h2-dark {
            color: var(--dark);
        }
        
        .h2-light {
            color: var(--white);
        }
        
        .sub {
            font-size: 16px;
            font-weight: 300;
            line-height: 1.8;
            color: var(--muted);
            max-width: 560px;
        }
        
        .sub-dark {
            color: #5A5750;
        }

        .reveal {
            opacity: 0;
            translate: 0 40px;
            transition: opacity .7s ease, translate .7s ease;
        }
        
        .reveal.on {
            opacity: 1;
            translate: 0 0;
        }
        
        .reveal-l {
            opacity: 0;
            translate: -40px 0;
            transition: opacity .7s ease, translate .7s ease;
        }
        
        .reveal-l.on {
            opacity: 1;
            translate: 0 0;
        }
        
        .reveal-r {
            opacity: 0;
            translate: 40px 0;
            transition: opacity .7s ease, translate .7s ease;
        }
        
        .reveal-r.on {
            opacity: 1;
            translate: 0 0;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .about-img {
            position: relative;
        }
        
        .about-img img {
            width: 100%;
            aspect-ratio: 4/5;
            object-fit: cover;
            display: block;
            border-radius: var(--img-radius);
        }
        
        .about-badge {
            position: absolute;
            top: 30px;
            left: -30px;
            background: var(--gold);
            color: var(--dark);
            padding: 20px 24px;
            text-align: center;
        }
        
        .about-badge-n {
            font-family: var(--serif);
            font-size: 40px;
            font-weight: 300;
            line-height: 1;
        }
        
        .about-badge-l {
            font-size: 11px;
            letter-spacing: .1em;
            text-transform: uppercase;
            opacity: .8;
        }
        
        .about-img-acc {
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 200px;
            height: 200px;
            background: url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?w=400&q=80') center/cover;
        }
        
        .about-p {
            color: var(--light2);
            font-size: 16px;
            font-weight: 300;
            line-height: 1.85;
            margin-bottom: 20px;
        }
        
        .stats {
            display: flex;
            align-items: center;
            justify-content: space-around;
            margin-top: 80px;
            padding: 8px 0;
            border-top: 1px solid rgba(223, 185, 79, .18);
            border-bottom: 1px solid rgba(223, 185, 79, .18);
        }
        
        .stat {
            text-align: center;
            flex: 1;
            padding: 36px 16px;
        }
        
        .stat-sep {
            width: 1px;
            height: 64px;
            background: rgba(223, 185, 79, .18);
            flex: 0 0 auto;
        }
        
        .stat-n {
            font-family: var(--sans);
            font-size: 58px;
            font-weight: 200;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 14px;
            letter-spacing: -.02em;
        }
        
        .stat-l {
            font-size: 11px;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--muted);
        }

        
        .filter-strip {
            display: flex;
            align-items: stretch;
            border-bottom: 1px solid #D0CEC7;
            margin-bottom: 48px;
            flex-wrap: wrap;
            position: relative;
            z-index: 10;
        }
        
        .fs-item {
            position: relative;
            display: flex;
            align-items: stretch;
        }
        
        .fs-sep {
            width: 1px;
            background: #D0CEC7;
            flex-shrink: 0;
            align-self: stretch;
        }
        
        .fs-trigger {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 18px 32px 16px;
            background: none;
            border: none;
            border-bottom: 2px solid transparent;
            margin-bottom: -1px;
            cursor: pointer;
            text-align: left;
            transition: border-color .2s;
            min-width: 140px;
            width: 100%;
            box-sizing: border-box;
        }
        
        .fs-trigger:hover .fs-label {
            color: var(--dark);
        }
        
        .fs-trigger.active {
            border-bottom-color: var(--dark);
        }
        
        .fs-label {
            font-family: var(--sans);
            font-size: 9px;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 4px;
            display: block;
            transition: color .2s;
        }
        
        .fs-value {
            font-family: var(--serif);
            font-size: 18px;
            font-weight: 400;
            color: var(--dark);
            line-height: 1;
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }
        
        .fs-value.filtered {
            color: var(--gold-dark);
        }
        
        .fs-arrow {
            font-size: 7px;
            color: var(--muted);
            transition: transform .2s;
            flex-shrink: 0;
        }
        
        .fs-trigger.active .fs-arrow {
            transform: rotate(180deg);
        }
        
        .fs-item {
            position: relative;
            display: flex;
            align-items: stretch;
        }
        
        .fs-dropdown {
            display: none;
            position: absolute;
            top: calc(100% + 1px);
            left: 0;
            right: 0;
            z-index: 9999;
            background: #F5F2EC;
            border: 1px solid #D0CEC7;
            border-top: none;
            box-shadow: 0 16px 48px rgba(0, 0, 0, .14);
        }
        
        .fs-dropdown.open {
            display: block;
        }
        
        .fs-opt {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 13px 20px;
            cursor: pointer;
            font-family: var(--sans);
            font-size: 12px;
            color: #6A6560;
            border-bottom: 1px solid #E8E4DC;
            transition: background .15s;
        }
        
        .fs-opt:last-child {
            border-bottom: none;
        }
        
        .fs-opt:hover {
            background: #EDE9E0;
            color: var(--dark);
        }
        
        .fs-opt.sel {
            color: var(--dark);
            background: #EDE9E0;
        }
        
        .fs-chk {
            width: 14px;
            height: 14px;
            border: 1px solid #C0BCB4;
            border-radius: 2px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all .15s;
        }
        
        .fs-opt.sel .fs-chk {
            background: var(--dark);
            border-color: var(--dark);
        }
        
        .fs-opt.sel .fs-chk::after {
            content: '';
            width: 6px;
            height: 3.5px;
            border-left: 1.5px solid var(--gold);
            border-bottom: 1.5px solid var(--gold);
            transform: rotate(-45deg) translateY(-1px);
            display: block;
        }
        
        .fs-reset {
            margin-left: auto;
            padding: 16px 28px;
            font-family: var(--sans);
            font-size: 9px;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: var(--muted);
            background: none;
            border: none;
            border-left: 1px solid #D0CEC7;
            cursor: pointer;
            transition: color .2s;
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }
        
        .fs-reset:hover {
            color: var(--dark);
        }
        
        .fs-count {
            font-family: var(--sans);
            font-size: 12px;
            color: var(--muted);
            margin-bottom: 32px;
        }
        
        .fs-count strong {
            color: var(--dark);
            font-weight: 500;
        }
        
        .cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        
        .card {
            cursor: pointer;
            position: relative;
        }
        
        .card-inner {
            background: var(--white);
            border-radius: var(--img-radius);
            box-shadow: 0 2px 16px rgba(0, 0, 0, .07);
            transition: transform .35s ease, box-shadow .35s ease;
            overflow: hidden;
        }
        
        .card:hover .card-inner {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
        }
        
        .card-img {
            position: relative;
            aspect-ratio: 16/10;
            overflow: hidden;
            border-radius: var(--img-radius) var(--img-radius) 0 0;
        }
        
        .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .7s ease;
            display: block;
        }
        
        .card:hover .card-img img {
            transform: scale(1.07);
        }
        
        .card-img::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(13, 13, 11, .65) 0%, rgba(13, 13, 11, .1) 50%, transparent 100%);
        }
        
        .badge {
            position: absolute;
            top: 14px;
            left: 14px;
            z-index: 3;
            padding: 4px 12px;
            font-family: var(--sans);
            font-size: 10px;
            letter-spacing: .1em;
            text-transform: uppercase;
            font-weight: 500;
            border-radius: 3px;
        }
        
        .ba {
            background: var(--gold);
            color: var(--dark);
        }
        
        .br {
            background: rgba(139, 107, 61, .92);
            color: var(--white);
        }
        
        .bs {
            background: rgba(30, 30, 22, .88);
            color: rgba(255, 255, 255, .5);
        }
        
        .card-body {
            padding: 20px 20px 18px;
            border-top: 2px solid var(--gold);
        }
        
        .card-meta {
            font-family: var(--sans);
            font-size: 10px;
            letter-spacing: .15em;
            text-transform: uppercase;
            color: var(--gold-dark);
            margin-bottom: 5px;
        }
        
        .card-name {
            font-family: var(--sans);
            font-size: 17px;
            font-weight: 500;
            color: var(--dark);
            margin-bottom: 16px;
            line-height: 1.2;
        }
        
        .specs {
            display: flex;
            gap: 0;
            padding: 10px 0;
            margin-bottom: 14px;
        }
        
        .spec {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            padding: 0 4px;
        }
        
        .spec + .spec {
            border-left: none;
        }
        
        .spec i,
        .spec svg {
            color: var(--gold-dark);
            stroke: var(--gold-dark);
            width: 18px;
            height: 18px;
            font-size: 16px;
            flex-shrink: 0;
        }
        
        .spec svg {
            stroke-width: 2;
        }
        
        .spec svg * {
            stroke-width: inherit;
        }
        
        .spec-v {
            font-family: var(--sans);
            font-size: 15px;
            font-weight: 400;
            color: var(--dark);
            line-height: 1;
        }
        
        .spec-u {
            font-family: var(--sans);
            font-size: 10px;
            color: #8A8578;
        }
        
        .lucide-ic {
            display: block;
        }
        
        .card-foot {
            display: flex;
            justify-content: flex-end;
        }
        
        .btn-detail {
            font-family: var(--sans);
            font-size: 10px;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--gold-dark);
            background: none;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 7px;
            transition: gap .2s, color .2s;
            padding: 0;
        }
        
        .btn-detail:hover {
            color: var(--dark);
            gap: 12px;
        }

        .fac-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 2px;
        }
        
        .fac {
            background: var(--dark3);
            padding: 36px 24px;
            text-align: center;
        }
        
        .fac i {
            font-size: 28px;
            color: var(--gold);
            display: block;
            margin-bottom: 16px;
        }
        
        .fac-n {
            font-size: 13px;
            font-weight: 400;
            color: var(--light);
        }
        
        .fac-d {
            font-size: 12px;
            color: var(--muted);
            margin-top: 6px;
            line-height: 1.5;
        }

        .fac-grid.on .fac {
            animation: facIn .6s cubic-bezier(.2, .7, .3, 1) backwards;
        }

        .fac-grid.on .fac:nth-child(1) { animation-delay: .05s; }
        .fac-grid.on .fac:nth-child(2) { animation-delay: .12s; }
        .fac-grid.on .fac:nth-child(3) { animation-delay: .19s; }
        .fac-grid.on .fac:nth-child(4) { animation-delay: .26s; }
        .fac-grid.on .fac:nth-child(5) { animation-delay: .33s; }
        .fac-grid.on .fac:nth-child(6) { animation-delay: .40s; }
        .fac-grid.on .fac:nth-child(7) { animation-delay: .47s; }
        .fac-grid.on .fac:nth-child(8) { animation-delay: .54s; }
        .fac-grid.on .fac:nth-child(9) { animation-delay: .61s; }
        .fac-grid.on .fac:nth-child(10) { animation-delay: .68s; }

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

        .fac-grid.on .fac i {
            animation: facIcon .6s cubic-bezier(.34, 1.56, .64, 1) backwards;
            animation-delay: inherit;
        }

        .fac-grid.on .fac:nth-child(1) i { animation-delay: .15s; }
        .fac-grid.on .fac:nth-child(2) i { animation-delay: .22s; }
        .fac-grid.on .fac:nth-child(3) i { animation-delay: .29s; }
        .fac-grid.on .fac:nth-child(4) i { animation-delay: .36s; }
        .fac-grid.on .fac:nth-child(5) i { animation-delay: .43s; }
        .fac-grid.on .fac:nth-child(6) i { animation-delay: .50s; }
        .fac-grid.on .fac:nth-child(7) i { animation-delay: .57s; }
        .fac-grid.on .fac:nth-child(8) i { animation-delay: .64s; }
        .fac-grid.on .fac:nth-child(9) i { animation-delay: .71s; }
        .fac-grid.on .fac:nth-child(10) i { animation-delay: .78s; }

        @keyframes facIcon {
            0% { opacity: 0; transform: scale(.3) rotate(-12deg); }
            100% { opacity: 1; transform: scale(1) rotate(0); }
        }

        .fac i {
            transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), color .3s;
        }

        .fac:hover i {
            transform: scale(1.18) translateY(-2px);
            color: var(--gold);
        }

        .loc-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: stretch;
        }
        
        .map-wrap {
            position: relative;
            overflow: hidden;
        }
        
        .map-wrap iframe {
            width: 100%;
            height: 100%;
            border: none;
            position: absolute;
            inset: 0;
        }
        
        .map-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--dark);
            color: var(--gold);
            padding: 10px 16px;
            font-size: 12px;
            letter-spacing: .1em;
            text-transform: uppercase;
        }
        
        .poi {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 0;
            border-bottom: 1px solid #E8E6E0;
            pointer-events: none;
        }
        
        .poi-ico {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            flex-shrink: 0;
            color: var(--gold-dark);
        }
        
        .poi-name {
            font-size: 14px;
            font-weight: 500;
            color: var(--dark);
        }
        
        .poi-det {
            font-size: 12px;
            color: #8A8578;
            margin-top: 2px;
        }
        
        .poi-time {
            margin-left: auto;
            font-family: var(--sans);
            font-size: 18px;
            font-weight: 400;
            letter-spacing: -.01em;
            color: var(--gold-dark);
            flex-shrink: 0;
        }
        
        .poi-u {
            font-size: 11px;
            color: #8A8578;
        }

        .loc-grid.on .poi {
            animation: poiIn .6s cubic-bezier(.2, .7, .3, 1) backwards;
        }

        .loc-grid.on .poi:nth-child(1) { animation-delay: .10s; }
        .loc-grid.on .poi:nth-child(2) { animation-delay: .18s; }
        .loc-grid.on .poi:nth-child(3) { animation-delay: .26s; }
        .loc-grid.on .poi:nth-child(4) { animation-delay: .34s; }
        .loc-grid.on .poi:nth-child(5) { animation-delay: .42s; }
        .loc-grid.on .poi:nth-child(6) { animation-delay: .50s; }
        .loc-grid.on .poi:nth-child(7) { animation-delay: .58s; }

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

        .gallery {
            column-count: 3;
            column-gap: 8px;
        }
        
        .gi {
            overflow: hidden;
            cursor: pointer;
            position: relative;
            break-inside: avoid;
            margin-bottom: 8px;
            display: block;
            border-radius: var(--img-radius);
        }
        
        .gi img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s ease;
            display: block;
        }
        
        .gi:hover img {
            transform: scale(1.04);
        }
        
        .gi-ov {
            position: absolute;
            inset: 0;
            background: rgba(13, 13, 11, 0);
            transition: background .3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .gi:hover .gi-ov {
            background: rgba(13, 13, 11, .35);
        }
        
        .gi-zoom {
            opacity: 0;
            transform: scale(.8);
            transition: opacity .3s, transform .3s;
            width: 46px;
            height: 46px;
            border: 1px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 19px;
            background: rgba(13, 13, 11, .25);
        }
        
        .gi:hover .gi-zoom {
            opacity: 1;
            transform: scale(1);
        }

        .gallery.on .gi {
            animation: giIn .7s cubic-bezier(.2, .7, .3, 1) backwards;
        }

        .gallery.on .gi:nth-child(1) { animation-delay: .05s; }
        .gallery.on .gi:nth-child(2) { animation-delay: .12s; }
        .gallery.on .gi:nth-child(3) { animation-delay: .19s; }
        .gallery.on .gi:nth-child(4) { animation-delay: .26s; }
        .gallery.on .gi:nth-child(5) { animation-delay: .33s; }
        .gallery.on .gi:nth-child(6) { animation-delay: .40s; }
        .gallery.on .gi:nth-child(7) { animation-delay: .47s; }
        .gallery.on .gi:nth-child(8) { animation-delay: .54s; }
        .gallery.on .gi:nth-child(9) { animation-delay: .61s; }
        .gallery.on .gi:nth-child(10) { animation-delay: .68s; }
        .gallery.on .gi:nth-child(11) { animation-delay: .75s; }

        @keyframes giIn {
            from { opacity: 0; transform: translateY(28px) scale(.96); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        #lb {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: rgba(0, 0, 0, .95);
            align-items: center;
            justify-content: center;
            padding: 40px;
        }
        
        #lb.open {
            display: flex;
        }
        
        #lb img {
            max-width: 90vw;
            max-height: 85vh;
            object-fit: contain;
            border-radius: var(--img-radius);
        }
        
        #lb-close {
            position: absolute;
            top: 24px;
            right: 32px;
            color: var(--white);
            font-size: 30px;
            cursor: pointer;
            background: none;
            border: none;
            transition: color .2s;
        }
        
        #lb-close:hover {
            color: var(--gold);
        }
        
        #lb-prev,
        #lb-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: 1px solid rgba(255, 255, 255, .2);
            color: var(--white);
            font-size: 20px;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all .2s;
        }
        
        #lb-prev {
            left: 24px;
        }
        
        #lb-next {
            right: 24px;
        }
        
        #lb-prev:hover,
        #lb-next:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        .dev-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        #developer .eye::before,
        #developer .eye::after {
            display: none;
        }
        
        .dev-img img {
            width: 100%;
            aspect-ratio: 3/2;
            object-fit: cover;
            border-radius: var(--img-radius);
            display: block;
        }
        
        .dev-vals {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
            margin-top: 60px;
        }
        
        .dev-val {
            background: var(--dark3);
            padding: 28px 24px;
            text-align: center;
        }
        
        .dev-val i {
            font-size: 24px;
            color: var(--gold);
            margin-bottom: 12px;
            display: block;
        }
        
        .dev-val-t {
            font-family: var(--serif);
            font-size: 18px;
            color: var(--white);
            margin-bottom: 8px;
        }
        
        .dev-val-d {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.6;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
        }
        
        .ci {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 20px 0;
            border-bottom: 1px solid #E8E6E0;
        }
        
        .ci i {
            font-size: 20px;
            color: var(--gold-dark);
            margin-top: 2px;
            width: 24px;
            text-align: center;
        }
        
        .ci-l {
            font-size: 11px;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: #8A8578;
        }
        
        .ci-v {
            font-size: 16px;
            color: var(--dark);
            margin-top: 4px;
        }
        
        .ci-v a {
            color: var(--dark);
            text-decoration: none;
        }
        
        .ci-v a:hover {
            color: var(--gold-dark);
        }
        
        .form-g {
            margin-bottom: 20px;
        }
        
        .form-l {
            display: block;
            font-size: 11px;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: #5A5750;
            margin-bottom: 8px;
        }
        
        .form-i {
            width: 100%;
            border: 1px solid #D0CEC7;
            background: var(--white);
            padding: 14px 16px;
            font-family: var(--sans);
            font-size: 15px;
            color: var(--dark);
            outline: none;
            transition: border-color .2s;
        }
        
        .form-i:focus {
            border-color: var(--gold-dark);
        }
        
        .form-i::placeholder {
            color: #B8B6B0;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        
        .form-sub {
            width: 100%;
            background: var(--dark);
            color: var(--gold);
            border: none;
            padding: 18px;
            font-family: var(--sans);
            font-size: 13px;
            font-weight: 500;
            letter-spacing: .1em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all .3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .form-sub:hover {
            background: var(--gold);
            color: var(--dark);
        }
        
        .btn-wa {
            background: #25D366;
            color: var(--white);
            border: none;
            padding: 14px 32px;
            font-family: var(--sans);
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            transition: all .3s;
            width: fit-content;
        }
        
        .btn-wa:hover {
            background: #1ea855;
        }
        
        .btn-br {
            background: transparent;
            color: var(--dark);
            border: 1px solid var(--dark);
            padding: 14px 32px;
            font-family: var(--sans);
            font-size: 13px;
            letter-spacing: .08em;
            text-transform: uppercase;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all .3s;
            width: fit-content;
        }
        
        .btn-br:hover {
            background: var(--dark);
            color: var(--gold);
        }
        
        .ctaBtns {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 32px;
        }

        .contact-grid.on .ci {
            animation: ciIn .6s cubic-bezier(.2, .7, .3, 1) backwards;
        }

        .contact-grid.on .ci:nth-child(1) { animation-delay: .10s; }
        .contact-grid.on .ci:nth-child(2) { animation-delay: .18s; }
        .contact-grid.on .ci:nth-child(3) { animation-delay: .26s; }
        .contact-grid.on .ci:nth-child(4) { animation-delay: .34s; }
        .contact-grid.on .ctaBtns { animation: ciIn .6s cubic-bezier(.2, .7, .3, 1) .42s backwards; }
        .contact-grid.on form { animation: ciFade .7s ease .30s backwards; }

        @keyframes ciIn {
            from { opacity: 0; transform: translateX(-24px); }
            to { opacity: 1; transform: translateX(0); }
        }

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

        .contact-head {
            opacity: 1 !important;
            translate: 0 0 !important;
        }

        .contact-head .eye,
        .contact-head .h2 {
            opacity: 0;
        }

        .contact-head.on .eye {
            animation: ciFade .6s ease both;
        }

        .contact-head.on .h2 {
            animation: ciFade .7s ease .15s both;
        }

        footer {
            background: #080807;
            padding: 60px 0 30px;
            border-top: 1px solid rgba(223, 185, 79, .15);
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 48px;
        }
        
        .footer-tag {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.7;
            max-width: 280px;
            margin-top: 16px;
        }
        
        .footer-h {
            font-size: 11px;
            letter-spacing: .15em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .footer-links a {
            color: var(--muted);
            text-decoration: none;
            font-size: 14px;
            transition: color .2s;
        }
        
        .footer-links span {
            color: var(--muted);
            font-size: 14px;
        }
        
        .footer-links a:hover {
            color: var(--white);
        }
        
        .footer-bot {
            border-top: 1px solid rgba(255, 255, 255, .07);
            padding-top: 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 12px;
            color: var(--muted);
        }

        #modal {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 2000;
            background: rgba(8, 8, 7, .88);
            overflow-y: auto;
        }
        
        #modal.open {
            display: block;
        }
        
        .modal-wrap {
            min-height: 100vh;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding: 40px 20px;
        }
        
        .modal-box {
            background: var(--white);
            width: 100%;
            max-width: 1000px;
            position: relative;
            box-shadow: 0 40px 120px rgba(0, 0, 0, .4);
        }
        
        .modal-x {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 10;
            background: rgba(13, 13, 11, .7);
            color: var(--white);
            border: none;
            width: 40px;
            height: 40px;
            font-size: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all .25s;
            border-radius: 50%;
            backdrop-filter: blur(8px);
        }
        
        .modal-x:hover {
            background: var(--gold);
            color: var(--dark);
            transform: rotate(90deg);
        }

        .modal-hero {
            position: relative;
            height: 58vh;
            min-height: 320px;
            overflow: hidden;
        }
        
        .modal-hero img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .modal-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(8, 8, 7, .78) 0%, rgba(8, 8, 7, 0) 50%, transparent 100%);
            pointer-events: none;
        }
        
        .modal-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 2;
            padding: 32px 48px 40px;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }
        
        .modal-badge-txt {
            font-family: var(--sans);
            font-size: 11px;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 10px;
        }
        
        .modal-title {
            font-family: var(--serif);
            font-size: clamp(28px, 4vw, 52px);
            font-weight: 300;
            color: var(--white);
            line-height: 1;
            letter-spacing: -.01em;
            font-variant-numeric: lining-nums;
        }
        
        .modal-pr {
            text-align: right;
        }
        
        .modal-pr-l {
            font-family: var(--sans);
            font-size: 11px;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .4);
            margin-bottom: 6px;
        }
        
        .modal-pr-v {
            font-family: var(--serif);
            font-size: clamp(22px, 3vw, 38px);
            font-weight: 300;
            color: var(--gold-light);
            line-height: 1;
            font-variant-numeric: lining-nums;
        }
        
        .modal-status-badge {
            position: absolute;
            top: 24px;
            left: 48px;
            z-index: 3;
            padding: 5px 14px;
            font-family: var(--sans);
            font-size: 11px;
            letter-spacing: .16em;
            text-transform: uppercase;
            font-weight: 500;
        }

        .modal-specs {
            background: var(--dark);
            display: flex;
            padding: 0;
        }
        
        .ms {
            flex: 1;
            padding: 28px 16px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            position: relative;
        }
        
        .ms + .ms::before {
            content: '';
            position: absolute;
            left: 0;
            top: 28px;
            bottom: 28px;
            width: 1px;
            background: rgba(255, 255, 255, .06);
        }
        
        .ms i,
        .ms svg {
            color: var(--gold);
            stroke: var(--gold);
            width: 22px;
            height: 22px;
            font-size: 20px;
        }
        
        .ms svg {
            stroke-width: 2;
        }
        
        .ms svg * {
            stroke-width: inherit;
        }
        
        .ms-v {
            font-family: var(--serif);
            font-size: 22px;
            font-weight: 300;
            color: var(--white);
            line-height: 1;
            font-variant-numeric: lining-nums;
        }
        
        .ms-k {
            font-family: var(--sans);
            font-size: 11px;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .45);
        }

        .modal-cols {
            display: block;
        }
        
        .modal-main {
            padding: 48px 48px 0;
            background: var(--white);
        }
        
        .modal-side {
            display: none;
        }

        .m-sec {
            font-family: var(--sans);
            font-size: 13px;
            font-weight: 500;
            color: var(--gold-dark);
            letter-spacing: .12em;
            text-transform: uppercase;
            margin-bottom: 28px;
        }
        
        .m-sec-l {
            font-family: var(--sans);
            font-size: 13px;
            font-weight: 500;
            color: rgba(223, 185, 79, .8);
            letter-spacing: .12em;
            text-transform: uppercase;
            margin-bottom: 24px;
        }

        .plan-tabs {
            display: flex;
            justify-content: center;
            gap: 56px;
            margin-bottom: 0;
            border-bottom: 1px solid #ECE9E2;
            padding: 0 0 18px;
            position: relative;
        }
        
        .plan-tab {
            background: transparent;
            border: none;
            color: #B0ACA4;
            padding: 0 0 18px;
            margin-bottom: -19px;
            font-family: var(--serif);
            font-style: italic;
            font-size: 22px;
            font-weight: 400;
            letter-spacing: .01em;
            cursor: pointer;
            transition: color .2s;
            position: relative;
        }
        
        .plan-tab::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--gold);
            transform: scaleX(0);
            transition: transform .25s ease;
        }
        
        .plan-tab:hover {
            color: var(--dark);
        }
        
        .plan-tab.on {
            color: var(--dark) !important;
        }
        
        .plan-tab.on::after {
            transform: scaleX(1);
        }
        
        .plan-panel {
            display: none;
            padding-top: 36px;
            min-height: 528px;
        }
        
        .plan-panel.on {
            display: block;
        }

        .plan-layout {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 48px;
            align-items: start;
        }
        
        .plan-layout.plan-layout-solo {
            display: block;
        }
        
        .plan-layout-solo .plan-img {
            justify-content: center;
        }
        
        .plan-layout-solo .plan-img img {
            max-height: 56vh;
        }
        
        .plan-img {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            overflow: hidden;
        }
        
        .plan-img img {
            max-width: 100%;
            max-height: 48vh;
            object-fit: contain;
            display: block;
            border-radius: var(--img-radius);
        }
        
        .plan-ph {
            min-height: 280px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .plan-ph-t {
            font-family: var(--sans);
            font-size: 14px;
            font-weight: 500;
            color: var(--dark);
            letter-spacing: .08em;
            text-transform: uppercase;
        }
        
        .plan-ph-s {
            font-size: 11px;
            color: #B0ACA4;
            letter-spacing: .1em;
        }

        .plan-rooms-h {
            font-size: 10px;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: #8A8578;
            margin-bottom: 14px;
            padding-bottom: 12px;
            border-bottom: 1px solid #ECE9E2;
        }
        
        .plan-rooms {
            display: block;
        }
        
        .plan-room {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            gap: 16px;
            padding: 11px 0;
            border-bottom: 1px solid #F2EFE8;
        }
        
        .plan-room:last-of-type {
            border-bottom: none;
        }
        
        .plan-room-n {
            font-family: var(--sans);
            font-size: 13px;
            font-weight: 400;
            color: var(--dark);
            letter-spacing: .01em;
        }
        
        .plan-room-a {
            font-family: var(--sans);
            font-size: 13px;
            font-weight: 500;
            color: var(--dark);
            letter-spacing: .01em;
            white-space: nowrap;
            font-variant-numeric: tabular-nums;
        }
        
        .plan-total {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            gap: 16px;
            padding: 16px 0 6px;
            margin-top: 8px;
            border-top: 1px solid var(--gold);
        }
        
        .plan-total-n {
            font-family: var(--serif);
            font-size: 17px;
            font-style: italic;
            font-weight: 400;
            color: var(--dark);
            letter-spacing: .01em;
        }
        
        .plan-total-a {
            font-family: var(--sans);
            font-size: 16px;
            font-weight: 500;
            color: var(--gold-dark);
            letter-spacing: .02em;
            font-variant-numeric: tabular-nums;
        }

        .dotari-block {
            background: var(--dark);
            margin: 48px -48px 0;
            padding: 44px 48px 48px;
        }
        
        .contact-block {
            background: var(--dark);
            margin: 0 -48px;
            padding: 8px 48px 56px;
            border-top: 1px solid rgba(255, 255, 255, .06);
        }
        
        .contact-block .m-sec-l {
            margin-bottom: 20px;
            padding-top: 32px;
        }
        
        .dotari-block .m-sec-l {
            margin-bottom: 24px;
        }
        
        .dotari {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 0;
        }
        
        .contact-block .cta-col {
            max-width: 420px;
        }
        
        .dot {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-family: var(--sans);
            font-size: 12px;
            color: rgba(245, 243, 238, .65);
            line-height: 1.5;
            pointer-events: none;
        }
        
        .dot::before {
            content: '';
            width: 4px;
            height: 4px;
            background: var(--gold);
            flex-shrink: 0;
            border-radius: 50%;
            margin-top: 6px;
        }
        
        .dot i {
            display: none;
        }

        .cta-col {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .btn-viz {
            background: var(--gold);
            color: var(--dark);
            border: none;
            padding: 16px 24px;
            font-family: var(--sans);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: .1em;
            text-transform: uppercase;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
            transition: all .3s;
        }
        
        .btn-viz:hover {
            background: var(--gold-light);
        }
        
        .btn-wam {
            background: transparent;
            color: #25D366;
            border: 1px solid rgba(37, 211, 102, .3);
            padding: 14px 24px;
            font-family: var(--sans);
            font-size: 11px;
            letter-spacing: .08em;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
            transition: all .3s;
        }
        
        .btn-wam:hover {
            background: rgba(37, 211, 102, .08);
            border-color: #25D366;
        }
        
        .btn-back {
            background: transparent;
            color: rgba(245, 243, 238, .3);
            border: none;
            padding: 12px 0;
            font-family: var(--sans);
            font-size: 11px;
            letter-spacing: .1em;
            text-transform: uppercase;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: color .2s;
        }
        
        .btn-back:hover {
            color: rgba(245, 243, 238, .7);
        }
        
        @media(max-width:1100px) {
            .container {
                padding: 0 40px;
            }
            .cards {
                grid-template-columns: repeat(2, 1fr);
            }
            .fac-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media(max-width:900px) {
            #nav {
                padding: 20px 40px;
            }
            .nav-links {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .about-grid,
            .dev-grid,
            .loc-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }
            .stats {
                flex-wrap: wrap;
                gap: 32px 0;
                padding: 40px 20px;
            }
            .stat {
                flex: 0 0 50%;
            }
            .stat-sep {
                display: none;
            }
            .stat-n {
                font-size: 48px;
            }
            .gallery {
                column-count: 2;
                column-gap: 8px;
            }
            .gi {
                margin-bottom: 8px;
            }
            .fac-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .modal-cols {
                grid-template-columns: 1fr;
            }
            .modal-side {
                border-top: 1px solid rgba(255, 255, 255, .06);
            }
            .modal-hero {
                height: 42vh;
            }
            .modal-info {
                padding: 20px 24px 28px;
            }
            .modal-status-badge {
                left: 24px;
                top: 20px;
            }
            .ms {
                padding: 20px 8px;
            }
            .ms-v {
                font-size: 18px;
            }
            .modal-main {
                padding: 32px 24px 0;
            }
            .modal-side {
                padding: 32px 24px 40px;
            }
            .plan-layout {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .plan-tabs {
                gap: 28px;
                overflow-x: auto;
                justify-content: flex-start;
                -webkit-overflow-scrolling: touch;
            }
            .plan-tab {
                font-size: 14px;
                white-space: nowrap;
                flex-shrink: 0;
            }
            .dotari-block {
                margin: 40px -24px 0;
                padding: 36px 24px 36px;
            }
            .contact-block {
                margin: 0 -24px;
                padding: 0 24px 40px;
            }
        }
        
        @media(max-width:640px) {
            .container {
                padding: 0 24px;
            }
            #nav {
                padding: 16px 24px;
            }
            .cards {
                grid-template-columns: 1fr;
            }
            .dev-vals {
                grid-template-columns: 1fr;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .about-badge {
                display: none;
            }
            .modal-specs {
                flex-wrap: wrap;
            }
            .ms {
                flex: 0 0 33.333%;
            }
        }
