*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #b8860b;
    --gold-light: #d4a843;
    --gold-dark: #8b6508;
    --black: #0a0a0a;
    --black-light: #1a1a1a;
    --charcoal: #2a2a2a;
    --gray-dark: #3a3a3a;
    --gray: #888;
    --gray-light: #c0c0c0;
    --cream: #f5f0e8;
    --white: #ffffff;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== HEADER ========== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

#header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.logo-icon {
    font-size: 28px;
    color: var(--gold);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-sub {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
}

.nav-desktop {
    display: flex;
    gap: 32px;
}

.nav-desktop a {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-desktop a:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-social {
    color: var(--white);
    display: flex;
    align-items: center;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
}

.header-social:hover {
    color: var(--gold);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid var(--gold);
    padding: 10px 20px;
    border-radius: 0;
}

.header-cta:hover {
    background: var(--gold);
    color: var(--black);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.burger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* MOBILE NAV */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transition: var(--transition);
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav a {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.mobile-nav a:hover {
    color: var(--gold);
}

.mobile-phone {
    margin-top: 20px;
    color: var(--gold) !important;
    font-family: var(--font-body) !important;
    font-size: 18px !important;
    border: 1px solid var(--gold);
    padding: 14px 28px;
}

.mobile-instagram {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-light) !important;
    font-family: var(--font-body) !important;
    font-size: 15px !important;
}

.mobile-instagram:hover {
    color: var(--gold) !important;
}

/* ========== HERO ========== */
#hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1920&h=1080&fit=crop') center/cover no-repeat;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-tagline {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s 0.3s forwards;
}

#hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: 2px;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s 0.5s forwards;
}

#hero h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray-light);
    max-width: 550px;
    margin: 0 auto 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s 0.7s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s 0.9s forwards;
}

.hero-rating {
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    animation: fadeUp 1s 1.1s forwards;
}

.hero-rating .stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 2px;
}

.hero-rating span {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray-light);
    letter-spacing: 1px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 1s 1.3s forwards;
}

.hero-scroll span {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-white {
    background: var(--white);
    color: var(--black);
    font-size: 15px;
    padding: 18px 36px;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

.btn-white-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-white-outline:hover {
    background: var(--white);
    color: var(--black);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== SECTIONS COMMON ========== */
.section {
    padding: 120px 0;
}

.section-dark {
    background: var(--black-light);
    color: var(--white);
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-header h2 em {
    font-style: italic;
    color: var(--gold);
}

.section-header p {
    font-size: 16px;
    font-weight: 300;
    color: var(--gray);
    max-width: 550px;
    margin: 0 auto;
}

h2 em {
    font-style: italic;
    color: var(--gold);
}

/* ========== ABOUT ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s;
}

.about-img-main:hover img {
    transform: scale(1.03);
}

.about-img-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    border-radius: 4px;
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-img-accent img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.about-text .section-label {
    margin-bottom: 12px;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 28px;
}

.about-text p {
    font-size: 15px;
    font-weight: 300;
    color: var(--gray-dark);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    color: var(--gold-dark);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 8px;
}

/* ========== SERVICES ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 48px 36px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-icon {
    margin-bottom: 24px;
    color: var(--gold);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.service-card p {
    font-size: 14px;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.7;
}

.services-cta {
    text-align: center;
    margin-top: 56px;
}

/* ========== GALLERY ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 16px;
}

.gallery-item {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0);
    transition: var(--transition);
}

.gallery-item:hover::after {
    background: rgba(10, 10, 10, 0.15);
}

.gallery-item-lg {
    grid-column: span 2;
}

/* ========== REVIEWS ========== */
.reviews-summary {
    margin-top: 16px;
}

.stars-lg {
    font-size: 28px;
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 8px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.review-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    transition: var(--transition);
}

.review-card:hover {
    border-color: rgba(184, 134, 11, 0.3);
}

.review-stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.review-card p {
    font-size: 15px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 24px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.review-author strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.review-author span {
    font-size: 12px;
    color: var(--gray);
}

/* ========== CTA BANNER ========== */
.cta-banner {
    background: var(--gold);
    padding: 80px 0;
}

.cta-inner {
    text-align: center;
}

.cta-inner h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 300;
    color: var(--black);
    margin-bottom: 16px;
}

.cta-inner h2 em {
    color: var(--white);
}

.cta-inner p {
    font-size: 16px;
    font-weight: 300;
    color: var(--black-light);
    margin-bottom: 32px;
}

/* ========== CONTACT ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-card {
    margin-bottom: 36px;
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--black);
}

.contact-card p {
    font-size: 15px;
    font-weight: 300;
    color: var(--gray-dark);
    line-height: 1.7;
}

.contact-phone {
    font-size: 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--gold-dark);
    letter-spacing: 1px;
}

.contact-phone:hover {
    color: var(--gold);
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    font-weight: 300;
}

.hours-list li span:first-child {
    font-weight: 500;
}

.contact-map {
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}

/* ========== FOOTER ========== */
#footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-footer {
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.7;
    max-width: 350px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    font-weight: 300;
    color: var(--gray);
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact p,
.footer-contact a {
    font-size: 14px;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.7;
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-instagram {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.footer-instagram:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    font-weight: 300;
    color: var(--gray-dark);
}

/* ========== FIXED PHONE ========== */
.fixed-phone {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
    z-index: 900;
    animation: phonePulse 2s infinite;
}

@keyframes phonePulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4); }
    50% { box-shadow: 0 6px 30px rgba(184, 134, 11, 0.7); }
}

/* ========== REVEAL ANIMATION ========== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s, transform 0.8s;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }
    .gallery-item-lg {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .nav-desktop,
    .header-right {
        display: none;
    }

    .burger {
        display: flex;
    }

    .fixed-phone {
        display: flex;
    }

    .section {
        padding: 80px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-img-accent {
        position: relative;
        bottom: auto;
        right: auto;
        width: 70%;
        margin-top: -60px;
        margin-left: auto;
    }

    .about-stats {
        gap: 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        height: 300px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
    }

    .cta-banner {
        padding: 60px 0;
    }

    .hero-scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}
