    :root {
        --color-terracotta: #C05A3D;
        --color-terracotta-dark: #9E4229;
        --color-sand: #F4E8D5;
        --color-sand-light: #FDF9F3;
        --color-dark: #1A1A1A;
        --color-gray: #4A4A4A;
        --color-white: #FFFFFF;
        
        --font-display: 'Space Grotesk', sans-serif;
        --font-body: 'Outfit', sans-serif;
        
        --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-body);
        color: var(--color-dark);
        background-color: var(--color-sand-light);
        line-height: 1.6;
        overflow-x: hidden;
        position: relative;
    }

    /* Geometric Background Shapes */
    .bg-shape {
        position: fixed;
        z-index: -1;
        opacity: 0.4;
    }

    .shape-1 {
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        background: var(--color-terracotta);
        border-radius: 50%;
        filter: blur(80px);
    }

    .shape-2 {
        bottom: 20%;
        left: -150px;
        width: 500px;
        height: 500px;
        background: var(--color-sand);
        border-radius: 50%;
        filter: blur(100px);
    }

    .shape-3 {
        top: 40%;
        right: 10%;
        width: 300px;
        height: 300px;
        background: #E8C4A8;
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        opacity: 0.2;
    }

    /* Typography */
    h1, h2, h3, h4 {
        font-family: var(--font-display);
        font-weight: 700;
        line-height: 1.1;
    }

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

    /* Layout */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .section {
        padding: 100px 0;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .tag {
        display: inline-block;
        font-size: 0.875rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--color-terracotta);
        margin-bottom: 16px;
        background: rgba(192, 90, 61, 0.1);
        padding: 8px 16px;
        border-radius: 50px;
    }

    .section-header h2 {
        font-size: clamp(2rem, 5vw, 3.5rem);
        color: var(--color-dark);
    }

    /* Buttons */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 16px 32px;
        font-family: var(--font-display);
        font-weight: 600;
        font-size: 1rem;
        border-radius: 50px;
        transition: all 0.3s ease;
        cursor: pointer;
        border: 2px solid transparent;
    }

    .btn-primary {
        background: var(--color-terracotta);
        color: var(--color-white);
        box-shadow: 0 10px 20px rgba(192, 90, 61, 0.3);
    }

    .btn-primary:hover {
        background: var(--color-terracotta-dark);
        transform: translateY(-2px);
        box-shadow: 0 15px 30px rgba(192, 90, 61, 0.4);
    }

    .btn-outline {
        background: transparent;
        color: var(--color-dark);
        border-color: var(--color-dark);
    }

    .btn-outline:hover {
        background: var(--color-dark);
        color: var(--color-white);
    }

    .btn-large {
        padding: 20px 40px;
        font-size: 1.125rem;
    }

    /* Navbar */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 20px 0;
        transition: all 0.3s ease;
    }

    .navbar.scrolled {
        background: rgba(253, 249, 243, 0.95);
        backdrop-filter: blur(10px);
        padding: 12px 0;
        box-shadow: var(--shadow-sm);
    }

    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 1.25rem;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .logo-mark {
        width: 32px;
        height: 32px;
        background: var(--color-terracotta);
        clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 40px;
        list-style: none;
    }

    .nav-links a {
        font-weight: 500;
        transition: color 0.3s ease;
    }

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

    .mobile-toggle {
        display: none;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
    }

    .mobile-toggle span {
        width: 24px;
        height: 2px;
        background: var(--color-dark);
        transition: all 0.3s ease;
    }

    /* Hero */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, var(--color-sand) 0%, #E8C4A8 50%, var(--color-terracotta) 100%);
        padding-top: 80px;
    }

    .hero-gradient {
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .hero-geometric {
        position: relative;
        height: 400px;
    }

    .geo-shape {
        position: absolute;
        animation: float 6s ease-in-out infinite;
    }

    .geo-circle {
        width: 200px;
        height: 200px;
        background: var(--color-terracotta);
        border-radius: 50%;
        top: 50px;
        left: 50px;
        opacity: 0.9;
    }

    .geo-square {
        width: 150px;
        height: 150px;
        background: var(--color-sand);
        top: 0;
        right: 50px;
        animation-delay: -2s;
    }

    .geo-triangle {
        width: 0;
        height: 0;
        border-left: 100px solid transparent;
        border-right: 100px solid transparent;
        border-bottom: 173px solid var(--color-dark);
        bottom: 50px;
        right: 100px;
        animation-delay: -4s;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(5deg); }
    }

    .hero-text {
        max-width: 560px;
    }

    .hero-headline {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
        margin-bottom: 24px;
        color: var(--color-dark);
        line-height: 1.05;
    }

    .hero-subheadline {
        font-size: 1.25rem;
        color: var(--color-gray);
        margin-bottom: 40px;
        max-width: 480px;
    }

    .hero-actions {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }

    /* About */
    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .about-image-wrapper {
        position: relative;
    }

    .about-image-wrapper img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 24px;
        box-shadow: var(--shadow-lg);
    }

    .about-accent {
        position: absolute;
        bottom: -30px;
        right: -30px;
        width: 200px;
        height: 200px;
        background: var(--color-terracotta);
        border-radius: 24px;
        z-index: -1;
    }

    .about-content p {
        font-size: 1.125rem;
        color: var(--color-gray);
        margin-bottom: 20px;
    }

    .feature-list {
        list-style: none;
        margin-top: 32px;
        display: grid;
        gap: 16px;
    }

    .feature-list li {
        display: flex;
        align-items: center;
        gap: 16px;
        font-weight: 500;
    }

    .feature-list svg {
        color: var(--color-terracotta);
        flex-shrink: 0;
    }

    /* Rooms */
    .rooms {
        background: var(--color-white);
    }

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

    .room-card {
        background: var(--color-sand-light);
        border-radius: 24px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .room-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

    .room-img {
        overflow: hidden;
        height: 250px;
    }

    .room-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .room-card:hover .room-img img {
        transform: scale(1.05);
    }

    .room-info {
        padding: 32px;
    }

    .room-info h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .room-info p {
        color: var(--color-gray);
        margin-bottom: 24px;
    }

    .link-arrow {
        font-weight: 600;
        color: var(--color-terracotta);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: gap 0.3s ease;
    }

    .link-arrow:hover {
        gap: 12px;
    }

    /* Location */
    .location-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .location-content h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 24px;
    }

    .location-content p {
        font-size: 1.125rem;
        color: var(--color-gray);
        margin-bottom: 40px;
    }

    .location-details {
        display: grid;
        gap: 24px;
    }

    .detail-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
    }

    .detail-item svg {
        color: var(--color-terracotta);
        flex-shrink: 0;
        margin-top: 4px;
    }

    .location-map {
        position: relative;
    }

    .map-frame {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: var(--shadow-lg);
    }

    .map-frame img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        display: block;
    }

    .map-pin {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: var(--color-white);
        padding: 12px;
        border-radius: 50%;
        box-shadow: var(--shadow-lg);
    }

    /* Footer */
    .footer {
        background: var(--color-dark);
        color: var(--color-white);
        padding: 80px 0 40px;
    }

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

    .footer-brand h3 {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .footer-brand p {
        color: rgba(255, 255, 255, 0.7);
        max-width: 300px;
    }

    .footer-info h4,
    .footer-hours h4 {
        font-size: 1rem;
        margin-bottom: 16px;
        color: var(--color-terracotta);
    }

    .footer-info p,
    .footer-hours p {
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 8px;
    }

    .footer-info a {
        color: var(--color-white);
        transition: color 0.3s ease;
    }

    .footer-info a:hover {
        color: var(--color-terracotta);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 40px;
        text-align: center;
        color: rgba(255, 255, 255, 0.5);
    }

    /* Responsive */
    @media (max-width: 968px) {
        .hero-content,
        .about-grid,
        .location-split {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .hero-geometric {
            height: 300px;
            order: -1;
        }

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

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

    @media (max-width: 768px) {
        .nav-links {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            height: 100vh;
            background: var(--color-sand-light);
            flex-direction: column;
            justify-content: center;
            padding: 40px;
            transition: right 0.3s ease;
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        }

        .nav-links.active {
            right: 0;
        }

        .mobile-toggle {
            display: flex;
            z-index: 1001;
        }

        .hero {
            padding-top: 100px;
            padding-bottom: 60px;
        }

        .hero-actions {
            flex-direction: column;
        }

        .btn-large {
            width: 100%;
        }

        .about-accent {
            display: none;
        }
    }
