/* fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

:root {
    --bg: #111;
    --bg-soft: #1a1a1a;
    --text: #ffffff;
    --muted: #dddddd;
    --gold: #c59d5f;
    --gold-soft: #e6b97c;
    --gold-dark: #a07d3f;
    --gold-light: #f5e6d3;
    --border-soft: #2a2a2a;
    --accent: #c59d5f;
    --shadow: rgba(197, 157, 95, 0.2);
    
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
}

body.light-theme {
    --bg: #f5f5f5;
    --bg-soft: #ffffff;
    --text: #111111;
    --muted: #444444;
    --gold: #c59d5f;
    --gold-soft: #e6b97c;
    --border-soft: #dddddd;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: var(--bg);
    color: var(--text);
    cursor: none;
    overflow-x: hidden;
}

/* skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--gold);
    color: #000;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 9999;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid var(--gold);
}

/* custom cursor */
.cursor-glow {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(197,157,95,0.7) 0%, rgba(197,157,95,0) 70%);
    mix-blend-mode: screen;
    transform: translate(-50%, -50%);
    z-index: 1500;
    opacity: 0.7;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 1200;
    background: transparent;
}

.scroll-progress-bar {
    height: 100%;
    width: 0;
    background: var(--gold);
    transition: width 0.1s linear;
}

.page-transition {
    position: fixed;
    inset: 0;
    background: #000;
    opacity: 0;
    pointer-events: none;
    z-index: 1150;
    transition: opacity 0.4s ease;
}

body.transitioning .page-transition {
    opacity: 1;
    pointer-events: auto;
}

/* header w/ glassmorphism */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1100;
}

body.light-theme .top-nav {
    background: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.top-nav.scrolled {
    background: rgba(0,0,0,0.85);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

body.light-theme .top-nav.scrolled {
    background: rgba(255,255,255,0.95);
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(197,157,95,0.4);
    opacity: 0;
    animation: logoFade 1.2s ease-out forwards;
}

@keyframes logoFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
        text-shadow: 0 0 0 rgba(197,157,95,0);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        text-shadow: 0 0 12px rgba(197,157,95,0.7);
    }
}

.top-nav nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    margin: 0 8px;
    transition: 0.3s;
    font-size: 0.9rem;
}

.top-nav nav a:visited,
.top-nav nav a:focus,
.top-nav nav a:active {
    color: var(--text);
}

.top-nav nav a:hover {
    color: var(--gold);
    text-shadow: 0 0 8px rgba(197,157,95,0.6);
}

.top-nav nav a:focus {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-left: 10px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text);
    border-radius: 5px;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 0 20px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.35s ease;
    z-index: 900;
}

.mobile-menu.open {
    max-height: 400px;
    opacity: 1;
}

.mobile-menu a {
    display: block;
    padding: 12px 0;
    color: var(--text);
    font-size: 1.1rem;
    text-decoration: none;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu a:hover {
    color: var(--gold);
}

.mobile-menu a:focus {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.page-wrapper {
    margin-top: 60px;
}

/* hero section w/ parallax bg */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background: #000;
}

.hero-fire {
    position: absolute;
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    background: radial-gradient(circle at center,
        rgba(255, 200, 100, 0.35),
        rgba(255, 150, 50, 0.15),
        rgba(0, 0, 0, 0.9) 70%
    );
    filter: blur(80px);
    animation: fireMove 6s infinite alternate ease-in-out;
}

@keyframes fireMove {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.2) translate(40px, -40px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--gold);
    margin-bottom: 10px;
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: #f0f0f0;
    opacity: 0.9;
    margin-bottom: 25px;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.7;
    box-shadow: 0 0 10px rgba(197,157,95,0.8);
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    from {
        transform: translateY(0);
        opacity: 0.9;
    }
    to {
        transform: translateY(-80px);
        opacity: 0;
    }
}

/* cta buttons */
.cta, .btn-reserve {
    display: inline-block;
    padding: 15px 25px;
    background: var(--gold);
    color: #111;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 0 0 rgba(197,157,95,0.0);
    animation: pulseGold 2s infinite;
    position: relative;
    overflow: hidden;
}

.cta::before, .btn-reserve::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta:hover::before, .btn-reserve:hover::before {
    width: 300px;
    height: 300px;
}

.cta:hover, .btn-reserve:hover {
    background: var(--gold-soft);
    transform: translateY(-3px);
}

.cta:focus, .btn-reserve:focus {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

@keyframes pulseGold {
    0% {
        box-shadow: 0 0 0 rgba(197,157,95,0.0);
    }
    50% {
        box-shadow: 0 0 18px rgba(197,157,95,0.7);
    }
    100% {
        box-shadow: 0 0 0 rgba(197,157,95,0.0);
    }
}

.about {
    padding: var(--spacing-xl) var(--spacing-sm);
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: 30px;
    align-items: center;
}

.about-photo {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    border: 4px solid var(--gold);
    box-shadow: 0 0 25px rgba(197,157,95,0.4);
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text h2 {
    color: var(--gold);
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    margin-bottom: 15px;
}

.about-text p {
    color: #f0f0f0;
    line-height: 1.7;
    max-width: 65ch;
}

.hours-box {
    margin-top: 30px;
    padding: 20px;
    background: var(--bg-soft);
    border-radius: 12px;
    border: 1px solid var(--border-soft);
}

.hours-box h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.hours-box p {
    margin: 5px 0;
    font-size: 0.95rem;
}

.hours-note {
    margin-top: 15px !important;
    font-size: 0.85rem !important;
    color: #aaa !important;
}

.intro, .questions, .portfolio, .faq, .testimonials {
    padding: 50px 20px;
    text-align: center;
    max-width: 900px;
    margin: auto;
    color: var(--muted);
    line-height: 1.7;
    font-size: 1.1rem;
}

.intro p, .questions p, .portfolio p, .faq-intro, .testimonials-intro {
    opacity: 0.9;
    max-width: 65ch;
    margin-left: auto;
    margin-right: auto;
}

.questions h2, .portfolio h2, .faq h2, .testimonials h2 {
    color: var(--gold);
    font-size: clamp(1.8rem, 4vw, 2rem);
    margin-bottom: 20px;
}

/* stats counter */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: var(--spacing-xl) var(--spacing-sm);
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(197,157,95,0.4);
}

.stat-item p {
    color: var(--muted);
    font-size: 1rem;
}

/* services grid */
.services {
    padding: var(--spacing-xl) var(--spacing-sm);
    text-align: center;
}

.services h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 40px;
    color: var(--gold);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(145deg, var(--bg-soft), var(--bg));
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    transition: 0.3s ease;
    transform-style: preserve-3d;
    position: relative;
}

.service-card.featured {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(197,157,95,0.3);
}

.service-card .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: #111;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: bold;
}

.service-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 25px rgba(197,157,95,0.4);
}

.service-card h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: 12px;
    color: var(--gold);
}

.service-card p {
    opacity: 0.85;
    line-height: 1.5;
}

.price {
    display: block;
    margin-top: 15px;
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: bold;
}

/* portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 30px auto 20px;
}

.portfolio-item {
    border-radius: 12px;
    height: 280px;
    overflow: hidden;
    filter: grayscale(20%);
    transition: 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
    cursor: pointer;
    transform-style: preserve-3d;
    position: relative;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-item:hover {
    filter: grayscale(0%);
    transform: translateY(-4px) scale(1.02);
}

.portfolio-item:nth-child(4) {
    grid-column: 1 / 2;
    justify-self: end;
    width: 100%;
}

.portfolio-item:nth-child(5) {
    grid-column: 3 / 4;
    justify-self: start;
    width: 100%;
}

.portfolio-item:nth-child(n+4) {
    max-width: 280px;
}

/* testimonials */
.testimonials {
    padding: var(--spacing-xl) var(--spacing-sm);
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.testimonials h2 {
    color: var(--gold);
    font-size: clamp(1.8rem, 4vw, 2rem);
    margin-bottom: 10px;
}

.testimonials-intro {
    color: var(--muted);
    margin-bottom: 40px;
}

.testimonials-slider {
    position: relative;
    max-width: 700px;
    margin: 30px auto 20px;
    min-height: 200px;
}

.testimonial {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.testimonial.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.testimonial .stars {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.testimonial .quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text);
    line-height: 1.6;
}

.testimonial .name {
    font-weight: 600;
    color: var(--gold);
    font-size: 0.95rem;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.testimonials-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #444;
    cursor: pointer;
    transition: 0.3s;
}

.testimonials-dots .dot:hover {
    background: var(--gold-soft);
}

.testimonials-dots .dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* faq accordion */
.faq-list {
    max-width: 800px;
    margin: 30px auto 0;
    text-align: left;
}

.faq-item {
    border-radius: 10px;
    border: 1px solid var(--border-soft);
    background: var(--bg-soft);
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text);
    padding: 15px 18px;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    min-height: 44px;
}

.faq-question:focus {
    outline: 2px solid var(--gold);
    outline-offset: -2px;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 18px;
    color: #f0f0f0;
    line-height: 1.6;
    transition: max-height 0.3s ease, padding-bottom 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding-bottom: 15px;
}

/* lightbox modal */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1400;
}

.lightbox.open {
    display: flex;
}

.lightbox-inner {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0,0,0,0.8);
}

.lightbox-close {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--gold);
    color: #000;
}

.contact {
    padding: 50px 20px;
    text-align: center;
    max-width: 800px;
    margin: auto;
    color: var(--muted);
}

.contact h2 {
    color: var(--gold);
    font-size: clamp(1.8rem, 4vw, 2rem);
    margin-bottom: 10px;
}

.contact-content {
    max-width: 500px;
    margin: 30px auto;
}

.map-container {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.footer {
    text-align: center;
    padding: 30px 20px 20px;
    background: #000;
    color: #777;
    margin-top: 40px;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.social-links a {
    color: var(--gold);
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--gold-soft);
    transform: translateY(-2px);
}

/* scroll animations */
.fade-in, .fade-up {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

#scrollTopBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--gold);
    color: #000;
    border: none;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    z-index: 2000;
    transition: 0.3s ease;
}

#scrollTopBtn:hover {
    background: var(--gold-soft);
    transform: translateY(-3px);
}

#scrollTopBtn:focus {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* responsive */
@media (max-width: 900px) {
    .about {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-photo {
        order: -1;
    }
}

@media (max-width: 768px) {
    body {
        cursor: default !important;
        font-size: 16px;
    }
    .cursor-glow {
        display: none !important;
    }
    .top-nav nav {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    
    .hero {
        height: 65vh;
        padding: 0 15px;
    }
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    .hero p {
        font-size: 1rem;
        margin-bottom: 18px;
    }
    .cta, .btn-reserve {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .about {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 15px;
    }
    .about-photo {
        width: 200px;
        height: 200px;
    }
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .service-card {
        padding: 22px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .portfolio-item {
        height: 250px !important;
        width: 100% !important;
        max-width: 100% !important;
        grid-column: auto !important;
        justify-self: center !important;
    }
    
    .portfolio-item:nth-child(n+4) {
        max-width: 100% !important;
    }
    
    .faq-item {
        font-size: 0.95rem;
    }
    
    .contact {
        padding: 40px 15px;
    }
    
    .footer {
        font-size: 0.8rem;
    }
    
    .social-links {
        flex-direction: column;
        gap: 10px;
    }
    
    #scrollTopBtn {
        bottom: 15px !important;
        right: 15px !important;
        padding: 10px 14px !important;
        font-size: 18px !important;
    }
}