        :root {
            --gold: #C2A256;
            --gold-hover: #C9A76D;
            --black: #000000;
            --cream: #F5F0E8;
            --white: #FFFFFF;
            --text-dark: #222222;
            --text-gray: #666666;
            --star-gold: #F5C518;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-dark);
        }
        
        /* ========== HEADER ========== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--black);
            z-index: 1000;
            padding: 55px 20px;
        }
        
        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .tagline {
            color: var(--gold);
            font-size: 0.8rem;
            font-style: italic;
            margin-top: -8px;
            background: linear-gradient(90deg, var(--gold) 0%, #E8D5A3 50%, var(--gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .menu-toggle {
            display: flex;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 5px;
        }
        
        .menu-toggle span {
            width: 28px;
            height: 2px;
            background: var(--white);
        }
        
        .header-rating {
            position: absolute;
            top: -6px;
            left: 100px;
        }

        .header-widget {
            transform: scale(1.2);
        }
   
        .header-logo {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
        }
        
        .header-logo img {
            height: 102px;
        }
        
        .header-logo-text {
            color: var(--gold);
            font-family: 'Alata', sans-serif;
            font-size: 0.9rem;
            letter-spacing: 3px;
            margin-top: 2px;
        }
        
        .header-spacer {
            width: 100px;
        }

        @media (max-width: 768px) {
            .header-rating {
                position: static;
                left: auto;
                top: auto;
            }
        }
        
        /* ========== HERO ========== */
        .hero {
            min-height: calc(118vh - 43px);
            position: relative;
            top: 60px;    
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 120px 20px 60px;
            background-size: cover;
            background-position: center;
            background-image: url('images/hero-1.jpg');
            transition: background-image 1s ease-in-out;
        }
        
        .hero h1 {
            margin-top: -40px;
            font-family: 'Roboto', sans-serif;
            font-size: 3.25rem;
            font-weight: 300;
            font-style: Normal;
            color: var(--white);
            margin-bottom: -15px;
        }

        .hero h1 strong {
            font-weight: 500;
        }
        
    @media (max-width: 768px) {
        .hero h1 {
            font-size: 6vw !important; 
            white-space: nowrap !important;
        }
        .hero-tagline {
            font-size: 5vw !important;
            white-space: nowrap !important;
            margin-top: 15px;
            margin-bottom: 45px;
        }
    } 
        
        .hero-tagline {
            color: var(--white);
            font-size: 1.8rem;
            font-style: italic;
            margin-bottom: 40px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-top: -25px;
        }
        
        .btn {
            display: inline-block;
            padding: 4px 20px;
            font-size: 1.1rem;
            font-weight: 500;
            text-decoration: none;
            border-radius: 25px;
            transition: background 0.3s;
            min-width: 200px;
    	    text-align: center;
    	}
        
        .btn-gold {
            background: var(--gold);
            color: var(--white);
        }
        
        .btn-gold:hover {
            background: var(--gold-hover);
        }
        
        /* ========== CONTACT BAR ========== */
        .contact-bar {
            background: var(--gold);
            padding: 20px;
            text-align: center;
            position: relative;
            top: 40px;
        }
        
        .contact-bar-content {
            color: var(--white);
            font-size: 1.05rem;
        }
        
        .contact-bar-content a {
            color: var(--white);
            text-decoration: none;
        }
        
        .contact-bar-content span {
            margin: 0 10px;
        }
        
        /* ========== SECTIONS ========== */
        section {
            padding: 50px 20px;
        }
        
        .section-cream {
            background: var(--cream);
        }
        
        .section-white {
            background: var(--white);
        }
        
        .section-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .section-title {
            font-family: 'Alata';
            font-size: 2.1rem;
            font-weight: 600;
            color: var(--text-dark);
            text-align: center;
            margin-bottom: 10px;
        }
        
        .section-divider {
            text-align: center;
            margin-bottom: -10px;
            color: #ccc;
            letter-spacing: 2.5px;
        }

/* ========== CTA ========== */
.cta-section {
    background: var(--black);
    text-align: center;
    padding: 40px 20px;
}

.cta-tagline {
    color: #f0c845;
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 20px;
}

.cta-section .btn {
    font-size: 1.1rem;
}
        
        /* ========== ABOUT ========== */
        #about p {
            font-family: 'Roboto', sans-serif;
            text-align: center;
            font-size: 10px !important;
            line-height: 1.45;
            color: var(--text-dark);
            max-width: 700px;
            margin: 0 auto;
        }
        #about {
            padding-bottom: 0.5px;
}
        
        /* ========== WHAT WE OFFER ========== */
        #services {
            border-top: none;
        }
        
        .services-list {
            list-style: none;
            text-align: center;
        }
        
        .services-list li {
            font-size: 1.15rem;
            padding: 3px 0;
            color: var(--text-dark);
        }
        
        /* ========== GALLERY ========== */
        #gallery {
            border-top: 4px solid var(--gold);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }
        
        .gallery-item {
            aspect-ratio: 4/3;
            overflow: hidden;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* ========== CUSTOMER REVIEWS ========== */
        #reviews {
            border-top: 4px solid var(--gold);
        }
        
        .reviews-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .reviews-rating {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .reviews-rating .stars {
            color: var(--star-gold);
            font-size: 2rem;
        }
        
        .reviews-rating .rating-text {
            font-size: 1.2rem;
            color: var(--text-dark);
        }
        
        .reviews-rating .rating-text span {
            color: var(--gold);
            font-weight: 600;
        }
        
        .btn-write-review {
            background: var(--gold);
            color: var(--white);
            padding: 12px 24px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
        }
        
        .reviews-tabs {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .reviews-tabs button {
            padding: 10px 20px;
            border: 1px solid #ddd;
            border-radius: 25px;
            background: var(--white);
            cursor: pointer;
            font-size: 0.95rem;
        }
        
        .reviews-tabs button.active {
            border-color: var(--text-dark);
        }
        
        .reviews-intro {
            font-family: 'Alata', sans-serif;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 25px;
        }
        
        .review-item {
            padding: 25px 0;
            border-bottom: 1px solid #eee;
        }
        
        .review-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 10px;
        }
        
        .review-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #4285F4;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
        }
        
        .review-stars {
            color: var(--star-gold);
        }
        
        .review-text {
            font-size: 1rem;
            line-height: 1.5;
            margin-bottom: 10px;
        }
        
        .review-date {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .review-reply {
            background: #f5f5f5;
            padding: 20px;
            border-radius: 8px;
            margin-top: 15px;
        }
        
        .review-reply-label {
            color: var(--text-gray);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }
        
        .btn-load-more {
            background: var(--gold);
            color: var(--white);
            padding: 14px 30px;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            cursor: pointer;
            margin-top: 20px;
        }
        
        /* ========== PROFILE ========== */
        #profile {
            border-top: 4px solid var(--gold);
        }
        
        .profile-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 40px;
        }
        
        .profile-section h3 {
            font-family: 'Alata', sans-serif;
            font-size: 1.7rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-dark);
        }
        
        .profile-section p {
            font-size: 0.95rem;
            line-height: 1.5;
            color: var(--text-dark);
        }
        
        .profile-section ul {
            list-style: disc;
            padding-left: 20px;
        }
        
        .profile-section ul li {
            padding: 3px 0;
            font-size: 0.95rem;
        }
        
        .hours-table {
            width: 100%;
        }
        
        .hours-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
        }
        
        .profile-note {
            font-weight: 600;
            margin-top: 15px;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        /* ========== CONTACT US ========== */
        #contact {
            padding: 0;
            margin: 0;
            background: var(--cream);
        }
        
        .contact-map {
            width: 100%;
            height: 350px;
            border: none;
            display: block;
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }
        
        .contact-form-section {
            padding: 50px 40px;
            padding-top: 40px;
            background: var(--white);
        }
        
        .contact-form-section h3 {
            font-family: 'Alata', ans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .contact-form-section .form-intro {
            color: var(--text-gray);
            margin-bottom: 25px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 3px;
            color: var(--text-dark);
        }

        .form-group > small {
            display: block;
            margin-top: 0.25rem;
            font-size: 12px;
            font-style: italic;
            line-height: 1.3;
            color: #777;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 8px;
            border: none;
            border-bottom: 1px solid #ccc;
            font-size: 1rem;
            font-family: inherit;
            background: transparent;
        }
        .form-group textarea::placeholder,
        .form-group textarea:disabled::placeholder {
            font-family: inherit;
            font-size: inherit;
            color: #888;
        }
        .form-group textarea::-webkit-input-placeholder {
            font-family: inherit;
            font-size: inherit;
            color: #888;
        }


        .form-group select {
            width: 100%;
            padding: 0.6rem 0.7rem;
            font-size: 1rem;
            font-family: inherit;
            border: 1px solid #ccc;
            border-radius: 4px;
            background-color: #fff;
            box-sizing: border-box;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-bottom-color: var(--gold);
        }
        .form-group select:focus {
            outline: none;
            border-color: #666;
        }
        
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        
        .form-group-full {
            margin-bottom: 10px;
        }
        
        .btn-submit {
            background: var(--gold);
            color: var(--white);
            padding: 16px 50px;
            border: none;
            border-radius: 4px;
            font-size: 1.1rem;
            cursor: pointer;
            width: 100%;
            max-width: 300px;
        }
        
        .contact-info-section {
            padding: 40px 40px;
            padding-top: 47px;
            background: var(--black);
            color: var(--white);
        }
        
        .contact-info-section .btn-gold {
            display: inline-block;
            margin-bottom: 30px;
        }
        
        .contact-info-section h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .contact-info-section address {
            font-style: normal;
            line-height: 1.5;
            margin-bottom: 25px;
        }
        
        .contact-hours .hours-row {
            color: var(--white);
        }
        
        .contact-info-section .profile-note {
            color: var(--white);
        }
        
        .contact-info-section .email-line {
            margin-top: 20px;
        }
        
        .contact-info-section .email-line a {
            color: var(--white);
        }
        
        .payment-icons {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
        }
        
        .payment-icons img {
            height: 35px;
        }
        
        .social-icon {
            display: inline-flex;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--gold);
            vertical-align: middle;
            align-items: center;
            justify-content: center;
            color: var(--white);
            margin-top: 20px;
            text-decoration: none;
            font-size: 1.2rem;
        }
        
        /* ========== FOOTER ========== */
        .footer-main {
            background: var(--gold);
            padding: 50px 20px;
        }
        
        .footer-grid {
            max-width: 800px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 40px;
            color: var(--white);
        }
        
        .footer-section h4 {
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--white);
        }
        
        .footer-section address {
            font-style: normal;
            line-height: 1.5;
        }
        
        .footer-section .btn {
            background: rgba(255,255,255,0.15);
            border: 1px solid var(--white);
            color: var(--white);
            padding: 4px 25px;
            margin-top: 15px;
        }
        
        .footer-section a {
            color: var(--white);
            text-decoration: none;
        }
        
        .footer-social {
            color: rgba(255,255,255,0.7);
            font-size: 1.3rem;
            margin-top: 15px;
        }

        .footer-section:nth-child(2) .btn {
            margin-top: 2px;
        }

        .footer-section:nth-child(2) .social-icon {
            margin: 1px 0;
        }

        .footer-social svg {
            fill: currentColor;
            vertical-align: middle;
        }
        
        .footer-hours .hours-row {
            color: var(--white);
            font-size: 0.95rem;
            padding: 2px 0;
        }
        
        .footer-badge {
            background: var(--gold);
            text-align: center;
            padding: 15px;
        }

        .footer-bottom {
            background: var(--cream);
            padding: 20px;
            text-align: center;
            font-size: 0.85rem;
            color: var(--text-gray);
            border-top: 4px solid var(--gold);
        }
        
        .footer-bottom a {
            color: var(--text-gray);
            text-decoration: none;
            margin: 0 5px;
        }
        
        /* ========== MOBILE NAV ========== */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            max-width: 350px;
            height: 100vh;
            background: var(--black);
            z-index: 2000;
            transition: left 0.3s;
            padding: 20px;
            overflow-y: auto;
        }
        
        .mobile-nav.active {
            left: 0;
        }
        
        .mobile-nav-close {
            color: var(--white);
            font-size: 2rem;
            cursor: pointer;
            margin-bottom: 20px;
        }
        
        .mobile-nav ul {
            list-style: none;
        }
        
        .mobile-nav ul li {
            border-bottom: 1px solid #333;
        }
        
        .mobile-nav ul li a {
            display: block;
            padding: 15px 0;
            color: var(--white);
            text-decoration: none;
            font-size: 1rem;
        }
        
        .mobile-nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 1999;
            display: none;
        }
        
        .mobile-nav-overlay.active {
            display: block;
        }

        #about, #services, #gallery, #reviews, #profile, #contact {
            scroll-margin-top: 100px;
        }

        #location, #hours {
            scroll-margin-top: 150px;
        }
        
        /* ========== RESPONSIVE ========== */
        @media (max-width: 900px) {
            .profile-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .contact-content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .header-rating {
                display: none;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                width: 100%;
                padding: 0 20px;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .reviews-header {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        
        .has-submenu .submenu {
            display: none;
            list-style: none;
            padding-left: 20px;
        }

        .has-submenu.open .submenu {
            display: block;
        }

        .has-submenu .arrow {
            font-size: 0.7rem;
            margin-left: 10px;
            transition: transform 0.3s;
            display: inline-block;
        }
        
        .has-submenu.open > a .arrow {
            transform: rotate(90deg);
        }
        
        .submenu li {
            border-bottom: none;
        }
        
        .submenu li a {
            padding: 10px 0;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .hero {
                background-size: contain;
                background-repeat: no-repeat;
                background-color: var(--black);
            }
        }
