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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        overflow-x: hidden;
        background: #F5F5F3;
    }

    section {
        scroll-margin-top: 80px;
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: #F5F5F3;
    }

    ::-webkit-scrollbar-thumb {
        background: #B89B5E;
        border-radius: 5px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #9A7D47;
    }

    /* Selection */
    ::selection {
        background-color: #B89B5E;
        color: white;
    }

    /* Header */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 50;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .header-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 80px;
    }

    .logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: #2F2F2F;
        cursor: pointer;
        transition: color 0.3s;
        border: none;
        background: none;
    }

    .logo:hover {
        color: #B89B5E;
    }

    .logo-accent {
        color: #B89B5E;
    }

    .nav {
        display: none;
        gap: 2rem;
    }

    .nav-link {
        font-size: 0.875rem;
        font-weight: 500;
        color: #2F2F2F;
        cursor: pointer;
        transition: color 0.3s;
        background: none;
        border: none;
        position: relative;
        padding-bottom: 0.25rem;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #B89B5E;
    }

    .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        right: 0;
        height: 2px;
        background: #B89B5E;
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        color: #2F2F2F;
        cursor: pointer;
        padding: 0.5rem;
    }

    .mobile-menu {
        display: none;
        background: white;
        border-top: 1px solid #e5e7eb;
        padding: 1rem;
    }

    .mobile-menu.open {
        display: block;
    }

    .mobile-nav-link {
        display: block;
        width: 100%;
        text-align: left;
        padding: 0.75rem 1rem;
        margin-bottom: 0.75rem;
        border-radius: 0.5rem;
        color: #2F2F2F;
        background: none;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s;
        font-size: 0.875rem;
        font-weight: 500;
    }

    .mobile-nav-link:hover {
        background: #E6D8C3;
    }

    .mobile-nav-link.active {
        background: #B89B5E;
        color: white;
    }

    @media (min-width: 768px) {
        .nav {
            display: flex;
        }

        .mobile-menu-btn {
            display: none;
        }
    }

    /* Hero Section */
    .hero {
        padding-top: 80px;
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

    .hero-bg {
        position: absolute;
        inset: 0;
        opacity: 0.05;
        background-image: linear-gradient(30deg, #2F2F2F 12%, transparent 12.5%, transparent 87%, #2F2F2F 87.5%, #2F2F2F),
            linear-gradient(150deg, #2F2F2F 12%, transparent 12.5%, transparent 87%, #2F2F2F 87.5%, #2F2F2F),
            linear-gradient(30deg, #2F2F2F 12%, transparent 12.5%, transparent 87%, #2F2F2F 87.5%, #2F2F2F),
            linear-gradient(150deg, #2F2F2F 12%, transparent 12.5%, transparent 87%, #2F2F2F 87.5%, #2F2F2F);
        background-size: 80px 140px;
        background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    }

    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 5rem 1rem;
        position: relative;
        z-index: 10;
    }

    .grid {
        display: grid;
        gap: 3rem;
        align-items: center;
    }

    @media (min-width: 1024px) {
        .grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .badge {
        display: inline-flex;
        align-items: center;
        padding: 0.5rem 1rem;
        border-radius: 9999px;
        background: #E6D8C3;
        color: #2F2F2F;
        font-size: 0.875rem;
        font-weight: 500;
        margin-bottom: 1rem;
    }

    .badge svg {
        margin-right: 0.5rem;
    }

    h1 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #2F2F2F;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    @media (min-width: 640px) {
        h1 {
            font-size: 3rem;
        }
    }

    @media (min-width: 1024px) {
        h1 {
            font-size: 3.75rem;
        }
    }

    .hero-accent {
        color: #B89B5E;
    }

    .hero-text {
        font-size: 1.125rem;
        color: #6b7280;
        line-height: 1.75;
        margin-bottom: 2rem;
    }

    .btn-group {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 1.125rem;
        font-weight: 600;
        border-radius: 0.5rem;
        cursor: pointer;
        transition: all 0.3s;
        border: none;
    }

    .btn-primary {
        background: #B89B5E;
        color: white;
    }

    .btn-primary:hover {
        background: #9A7D47;
        transform: translateY(-2px);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }

    .btn-outline {
        background: transparent;
        color: #2F2F2F;
        border: 2px solid #2F2F2F;
    }

    .btn-outline:hover {
        background: #2F2F2F;
        color: white;
    }

    .hero-image {
        position: relative;
    }

    .hero-card {
        position: relative;
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    .hero-placeholder {
        aspect-ratio: 4/3;
        background: linear-gradient(135deg, #E6D8C3 0%, #B89B5E 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        padding: 2rem;
    }

    .hero-placeholder svg {
        width: 6rem;
        height: 6rem;
        opacity: 0.3;
        margin: 0 auto 1rem;
    }

    .hero-placeholder p {
        font-size: 1.125rem;
        font-weight: 500;
        opacity: 0.7;
    }

    /* Services Section */
    .section {
        padding: 5rem 0;
    }

    .bg-white {
        background: white;
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    h2 {
        font-size: 2rem;
        font-weight: 700;
        color: #2F2F2F;
        margin-bottom: 1rem;
    }

    @media (min-width: 640px) {
        h2 {
            font-size: 2.5rem;
        }
    }

    .divider {
        width: 6rem;
        height: 0.25rem;
        background: #B89B5E;
        margin: 0 auto;
        border-radius: 9999px;
    }

    .services-grid {
        display: grid;
        gap: 2rem;
        grid-template-columns: 1fr;
    }

    @media (min-width: 768px) {
        .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 1024px) {
        .services-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    .service-card {
        padding: 2rem;
        background: white;
        border: 2px solid #e5e7eb;
        border-radius: 0.5rem;
        transition: all 0.3s;
        cursor: pointer;
    }

    .service-card:hover {
        border-color: #B89B5E;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        transform: translateY(-4px);
    }

    .service-icon {
        width: 4rem;
        height: 4rem;
        border-radius: 0.75rem;
        background: #E6D8C3;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        transition: background-color 0.3s;
    }

    .service-card:hover .service-icon {
        background: #B89B5E;
    }

    .service-icon svg {
        width: 2rem;
        height: 2rem;
        color: #2F2F2F;
        transition: color 0.3s;
    }

    .service-card:hover .service-icon svg {
        color: white;
    }

    h3 {
        font-size: 1.25rem;
        font-weight: 700;
        color: #2F2F2F;
        margin-bottom: 0.75rem;
        transition: color 0.3s;
    }

    .service-card:hover h3 {
        color: #B89B5E;
    }

    .service-desc {
        color: #6b7280;
        line-height: 1.75;
    }

    /* Gallery Section */
    .gallery-grid {
        display: grid;
        gap: 2rem;
        grid-template-columns: 1fr;
        margin-bottom: 3rem;
    }

    @media (min-width: 768px) {
        .gallery-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .video-card {
        position: relative;
        border-radius: 0.75rem;
        overflow: hidden;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s;
        cursor: pointer;
    }

    .video-card:hover {
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    .video-thumbnail {
        aspect-ratio: 16/9;
        background: #d1d5db;
        position: relative;
    }

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

    .video-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s;
    }

    .video-card:hover .video-overlay {
        background: rgba(0, 0, 0, 0.6);
    }

    .play-btn {
        width: 4rem;
        height: 4rem;
        border-radius: 9999px;
        background: #B89B5E;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s;
    }

    .video-card:hover .play-btn {
        transform: scale(1.1);
    }

    .play-btn svg {
        width: 2rem;
        height: 2rem;
        color: white;
    }

    .video-title {
        padding: 1rem;
        background: white;
    }

    .video-title h3 {
        font-size: 1rem;
        margin: 0;
        transition: color 0.3s;
    }

    .video-card:hover .video-title h3 {
        color: #B89B5E;
    }

    .text-center {
        text-align: center;
    }

    .section-text {
        color: #6b7280;
        max-width: 42rem;
        margin: 1rem auto 0;
    }

    /* About Section */
    .about-content {
        margin-bottom: 1.5rem;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding-top: 1.5rem;
    }

    .stat-card {
        text-align: center;
        padding: 1.5rem;
        background: #F5F5F3;
        border-radius: 0.75rem;
    }

    .stat-number {
        font-size: 2rem;
        font-weight: 700;
        color: #B89B5E;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 0.875rem;
        color: #6b7280;
        font-weight: 500;
    }

    /* Contact Section */
    .contact-grid {
        display: grid;
        gap: 3rem;
        grid-template-columns: 1fr;
    }

    @media (min-width: 1024px) {
        .contact-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .contact-card {
        padding: 2rem;
        background: white;
        border: 2px solid #e5e7eb;
        border-radius: 0.5rem;
        transition: border-color 0.3s;
    }

    .contact-card:hover {
        border-color: #B89B5E;
    }

    .contact-item {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .contact-item:last-child {
        margin-bottom: 0;
    }

    .contact-icon {
        width: 3rem;
        height: 3rem;
        background: #E6D8C3;
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .contact-icon svg {
        width: 1.5rem;
        height: 1.5rem;
        color: #2F2F2F;
    }

    .contact-info h4 {
        font-size: 1rem;
        font-weight: 600;
        color: #2F2F2F;
        margin-bottom: 0.25rem;
    }

    .contact-info p,
    .contact-info a {
        color: #6b7280;
        text-decoration: none;
    }

    .contact-info a:hover {
        color: #B89B5E;
        text-decoration: underline;
    }

    .divider-line {
        height: 1px;
        background: #e5e7eb;
        margin: 1.5rem 0;
    }

    .social-links {
        display: flex;
        gap: 1rem;
    }

    .social-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 1rem 1.5rem;
        background: white;
        border: 2px solid #e5e7eb;
        border-radius: 0.5rem;
        color: #2F2F2F;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s;
    }

    .social-btn:hover {
        background: #B89B5E;
        border-color: #B89B5E;
        color: white;
    }

    .social-btn svg {
        width: 1.25rem;
        height: 1.25rem;
    }

    .map-container {
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    }

    .map-container iframe {
        width: 100%;
        height: 450px;
        border: 0;
    }

    /* Footer */
    .footer {
        background: #2F2F2F;
        color: white;
        padding: 3rem 0;
    }

    .footer-grid {
        display: grid;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    @media (min-width: 768px) {
        .footer-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    .footer h3 {
        color: white;
        margin-bottom: 1rem;
    }

    .footer h4 {
        color: #B89B5E;
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .footer p {
        color: #9ca3af;
        line-height: 1.75;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-link {
        color: #9ca3af;
        background: none;
        border: none;
        text-align: left;
        cursor: pointer;
        transition: color 0.3s;
        padding: 0;
        font-size: 1rem;
    }

    .footer-link:hover {
        color: #B89B5E;
    }

    .footer-social {
        display: flex;
        gap: 1rem;
    }

    .footer-social-btn {
        width: 2.5rem;
        height: 2.5rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s;
        text-decoration: none;
        color: white;
    }

    .footer-social-btn:hover {
        background: #B89B5E;
    }

    .footer-social-btn svg {
        width: 1.25rem;
        height: 1.25rem;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 2rem;
        text-align: center;
        color: #9ca3af;
    }

    .footer-bottom p {
        margin-bottom: 0.5rem;
    }