/* PAUL THE PIANOMAN — GLOBAL STYLESHEET*/

:root {
    --gold: #DCB450;
    --gold-dark: #B8942E;
    --bg-deep: #0A0A0A;        /* was #050505, slightly lighter */
    --bg-surface: #111111;     /* was #0A0A0A, more distinct from deep */
    --bg-card: #1A1A1A;        /* was #0F0F0F, more visible separation */
    --bg-card-hover: #222222;  /* was #151515 */
    --bg-input: #1E1E1E;       /* was #141414 */
    --text-primary: #F0EFEA;
    --text-muted: rgba(240, 239, 234, 0.6);
    --text-dim: rgba(240, 239, 234, 0.35);
    --border-subtle: rgba(220, 180, 80, 0.15);  /* slightly stronger */
    --border-gold: rgba(220, 180, 80, 0.3);    /* more visible */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-quint: cubic-bezier(0.83, 0, 0.17, 1);
    --bg-card-secondary: #222222;
}

/* RESET */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #DCB450 #0A0A0A;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0A0A0A; }
::-webkit-scrollbar-thumb { background: #DCB450; border-radius: 3px; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, .logo-text, .artist-font {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

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

/*  3D CANVAS BACKGROUND  */
#canvas-bg {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0; pointer-events: none;
}

/*  PRELOADER (index values, overridden where needed)  */
.preloader {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background: #050505;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    z-index: 100000;
    transition: opacity 1.4s var(--ease-out-expo), visibility 1.4s;
    will-change: opacity;
}
.preloader-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-text-wrap { overflow: hidden; margin-bottom: 30px; }
.preloader-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 4.5rem);
    letter-spacing: 10px;
    color: #DCB450;
    display: inline-block;
    animation: preloaderReveal 2s var(--ease-in-out-quint) forwards;
}
@keyframes preloaderReveal {
    0% { transform: translateY(120%); opacity: 0; }
    40% { opacity: 1; }
    100% { transform: translateY(0%); opacity: 1; }
}
.preloader-bar-outer {
    width: 280px; height: 2px;
    background: rgba(220, 180, 80, 0.15);
    border-radius: 2px; overflow: hidden;
}
.preloader-bar-inner {
    height: 100%; background: #DCB450;
    border-radius: 2px;
    animation: barProgress 2.2s var(--ease-in-out-quint) forwards;
    transform-origin: left;
}
@keyframes barProgress {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}
.preloader-keys { display: flex; gap: 6px; margin-top: 28px; }
.preloader-key {
    width: 10px; height: 32px;
    background: #DCB450; border-radius: 3px;
    animation: keyDance 0.7s var(--ease-in-out-quint) infinite alternate;
}
.preloader-key:nth-child(1) { animation-delay: 0s; }
.preloader-key:nth-child(2) { animation-delay: 0.1s; height: 26px; }
.preloader-key:nth-child(3) { animation-delay: 0.2s; height: 38px; }
.preloader-key:nth-child(4) { animation-delay: 0.3s; height: 22px; }
.preloader-key:nth-child(5) { animation-delay: 0.4s; height: 34px; }
.preloader-key:nth-child(6) { animation-delay: 0.5s; height: 28px; }
.preloader-key:nth-child(7) { animation-delay: 0.6s; height: 30px; }
.preloader-key:nth-child(8) { animation-delay: 0.7s; height: 24px; }
@keyframes keyDance {
    0% { transform: translateY(0); opacity: 0.5; }
    100% { transform: translateY(-18px); opacity: 1; }
}

/*  HEADER (enhanced)  */
.header {
    position: fixed; top: 0; width: 100%;
    padding: 22px 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s var(--ease-out-expo);
    border-bottom: 1px solid rgba(220, 180, 80, 0.08);
    will-change: padding, border-color;
    box-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.header.scrolled {
    padding: 12px 0;
    background: rgba(5, 5, 5, 0.94);
    border-bottom: 1px solid rgba(220, 180, 80, 0.25);
    box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.container { max-width: 1400px; margin: 0 auto; padding: 0 48px; }
.nav-container { display: flex; justify-content: space-between !important; align-items: center; flex-wrap: nowrap; gap: 20px; }
.logo-group {
    text-decoration: none;
    display: flex;              /* changed from block */
    align-items: center;
    gap: 12px;
}
.logo-img {
    height: 40px;
    width: auto;
    display: block;
    border-radius: 4px;        /* optional */
    transition: opacity 0.3s;
}
.logo-text-group {
    display: flex;
    flex-direction: column;
}
.logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 3vw, 35px) !important;
    font-weight: 500; letter-spacing: 2px;
    color: #DCB450; transition: color 0.3s;
}
.logo-group:hover .logo-main { color: #E8C960; }
.logo-sub { font-size: 9px; letter-spacing: 3.5px; color: rgba(220, 180, 80, 0.6); margin-top: 4px; transition: color 0.3s; }
.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a {
    color: var(--text-primary); text-decoration: none;
    font-size: 13px; font-weight: 400; letter-spacing: 2.5px;
    transition: all 0.35s var(--ease-out-expo);
    position: relative; padding: 4px 0;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 1px; background: #DCB450;
    transition: width 0.4s var(--ease-out-expo);
}
.nav-links a:hover,
.nav-links a.active { color: #DCB450; letter-spacing: 3.5px; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.book-now-nav {
    background: #DCB450 !important; color: #0A0A0A !important;
    padding: 10px 26px !important; border-radius: 40px !important;
    font-weight: 600 !important; letter-spacing: 1.5px !important;
    transition: all 0.4s var(--ease-out-expo) !important;
    position: relative; overflow: hidden;
}
.book-now-nav::after { display: none !important; }
.book-now-nav:hover {
    background: #C9A23A !important; transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(220, 180, 80, 0.35);
}
/* ========== MOBILE NAVIGATION – CIRCULAR REVEAL ========== */

/* Show hamburger only on mobile */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #DCB450;
    font-size: 26px;
    cursor: pointer;
    z-index: 1100;
    position: relative;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Menu panel – hidden by default as a dot */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(5, 5, 5, 0.96);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        text-align: center;
        z-index: 1090;
        clip-path: circle(0% at 50% 0%);
        transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        pointer-events: none; /* not interactable when hidden */
    }

    .nav-links.open {
        clip-path: circle(150% at 50% 0%);
        pointer-events: auto;
    }

    .nav-links a {
        font-size: 1.6rem;
        letter-spacing: 3px;
        color: var(--text-primary);
        text-decoration: none;
        font-weight: 300;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.35s ease, transform 0.35s ease;
        transition-delay: 0s;
    }

    .nav-links.open a {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered fade‑in for links */
    .nav-links.open a:nth-child(1) { transition-delay: 0.15s; }
    .nav-links.open a:nth-child(2) { transition-delay: 0.25s; }
    .nav-links.open a:nth-child(3) { transition-delay: 0.35s; }
    .nav-links.open a:nth-child(4) { transition-delay: 0.45s; }
    .nav-links.open a:nth-child(5) { transition-delay: 0.55s; }
    .nav-links.open a:nth-child(6) { transition-delay: 0.65s; }
}
/*  BUTTONS  */
.btn-primary {
    background: #DCB450; color: #0A0A0A;
    padding: 16px 44px; text-decoration: none;
    font-weight: 600; letter-spacing: 1px;
    transition: all 0.45s var(--ease-out-expo);
    position: relative; overflow: hidden;
    border-radius: 50px; font-size: 15px;
    display: inline-block; border: none; cursor: pointer; z-index: 1;
}
.btn-primary::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.7s ease, height 0.7s ease;
    z-index: -1;
}
.btn-primary:hover::before { width: 500px; height: 500px; }
.btn-primary:hover { background: #C9A23A; transform: translateY(-4px); box-shadow: 0 16px 35px rgba(220, 180, 80, 0.3); }
.btn-outline,
.btn-outline-sm {
    border: 1.5px solid #DCB450; padding: 16px 44px;
    text-decoration: none; color: #DCB450;
    transition: all 0.45s var(--ease-out-expo);
    border-radius: 50px; font-weight: 500;
    display: inline-block; position: relative; overflow: hidden; z-index: 1;
}
.btn-outline::before,
.btn-outline-sm::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; background: #DCB450;
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.45s var(--ease-out-expo);
    z-index: -1; border-radius: 50px;
}
.btn-outline:hover::before,
.btn-outline-sm:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-outline:hover,
.btn-outline-sm:hover { color: #0A0A0A; transform: translateY(-4px); border-color: transparent; }
.btn-primary-sm {
    background: #DCB450; color: #0A0A0A;
    padding: 12px 24px; border-radius: 40px;
    font-size: 0.85rem; font-weight: 600;
    letter-spacing: 1px; transition: all 0.4s;
    display: inline-block;
}
.btn-primary-sm:hover { background: #C9A23A; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(220, 180, 80, 0.3); }

/*  HERO (index)  */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; z-index: 2; padding: 160px 0 80px; overflow: hidden;
}
.hero-parallax-bg {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 130%;
    z-index: -1; pointer-events: none;
    opacity: 0.04;
    background: radial-gradient(ellipse at 30% 50%, #DCB450 0%, transparent 70%),
                radial-gradient(ellipse at 70% 30%, #DCB450 0%, transparent 60%);
    will-change: transform;
}
.hero-content { max-width: 780px; }
.hero-badge {
    font-size: 11px; letter-spacing: 7px; color: #DCB450;
    margin-bottom: 24px; text-transform: uppercase;
    display: inline-block; padding: 8px 18px;
    border: 1px solid rgba(220, 180, 80, 0.3);
    border-radius: 30px;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.9s var(--ease-out-expo);
}
.hero-badge.revealed { clip-path: inset(0 0% 0 0); }
.hero-content h1,
.hero-title {
    font-size: clamp(2.8rem, 6vw, 5.8rem);
    line-height: 1.08; margin-bottom: 28px;
    font-weight: 500; overflow: hidden;
}
.hero-content h1 .line,
.hero-title .line { display: block; overflow: hidden; }
.hero-content h1 .line-inner,
.hero-title .line-inner {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 1.2s var(--ease-in-out-quint);
}
.hero-content h1 .line-inner.revealed,
.hero-title .line-inner.revealed { transform: translateY(0%); }
.hero-content h1 span.gold { color: #DCB450 !important; }
.page-hero-content h1 span.gold { color: #DCB450 !important; }

.hero-content p,
.hero-sub {
    font-size: 1.15rem; color: var(--text-muted);
    margin-bottom: 48px; max-width: 550px;
    line-height: 1.7;
    opacity: 0; transform: translateY(30px);
    transition: all 1s var(--ease-out-expo);
}
.hero-content p.revealed,
.hero-sub.revealed { opacity: 1; transform: translateY(0); }
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; opacity: 0; transform: translateY(30px); transition: all 1s var(--ease-out-expo); }
.hero-buttons.revealed { opacity: 1; transform: translateY(0); }

/*  SCROLL INDICATOR  */
.scroll-indicator {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    z-index: 3;
    animation: floatDown 2.5s ease-in-out infinite;
    opacity: 0; transition: opacity 1s;
}
.scroll-indicator.visible { opacity: 1; }
.scroll-indicator span {
    font-size: 9px; letter-spacing: 4px;
    color: rgba(220, 180, 80, 0.7); text-transform: uppercase;
}
.scroll-indicator .scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, #DCB450, transparent);
    animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes floatDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(12px); }
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; height: 40px; }
    50% { opacity: 1; height: 55px; }
}

/*  PAGE HERO (shared by about, services, booking, contact, shop)  */
.page-hero,
.booking-hero {
    min-height: 50vh; display: flex; align-items: center;
    position: relative; z-index: 2;
    padding: 160px 0 70px; overflow: hidden;
}
.page-hero-bg {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1; pointer-events: none;
    opacity: 0.05;
    background: radial-gradient(ellipse at 30% 50%, #DCB450 0%, transparent 70%),
                radial-gradient(ellipse at 70% 25%, #DCB450 0%, transparent 55%);
    will-change: transform;
}
.page-hero-badge {
    font-size: 10px; letter-spacing: 7px; color: #DCB450;
    margin-bottom: 20px; text-transform: uppercase;
    display: inline-block; padding: 7px 16px;
    border: 1px solid rgba(220, 180, 80, 0.3);
    border-radius: 30px;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.9s var(--ease-out-expo);
}
.page-hero-badge.revealed { clip-path: inset(0 0% 0 0); }
.page-hero-content h1 { font-size: clamp(2.4rem, 5vw, 4.8rem); line-height: 1.1; margin-bottom: 22px; font-weight: 500; overflow: hidden; }
.page-hero-content h1 .line { display: block; overflow: hidden; }
.page-hero-content h1 .line-inner { display: inline-block; transform: translateY(110%); transition: transform 1.2s var(--ease-in-out-quint); }
.page-hero-content h1 .line-inner.revealed { transform: translateY(0%); }
.page-hero-content p { font-size: 1.1rem; color: var(--text-muted); max-width: 520px; line-height: 1.7; opacity: 0; transform: translateY(30px); transition: all 1s var(--ease-out-expo); }
.page-hero-content p.revealed { opacity: 1; transform: translateY(0); }

/*  SECTIONS  */
.section-title {
    text-align: center;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    margin-bottom: 16px; font-weight: 500;
    letter-spacing: -0.01em;
}
.section-title .char { display: inline-block; opacity: 0; transform: translateY(30px); transition: all 0.6s var(--ease-out-expo); }
.section-title .char.revealed { opacity: 1; transform: translateY(0); }
.section-sub { text-align: center; max-width: 600px; margin: 0 auto 70px; color: var(--text-muted); font-size: 1rem; letter-spacing: 1px; }

/*  RATINGS (index)  */
.ratings {
    padding: 50px 0; background: var(--bg-card);
    position: relative; z-index: 2;
}
.ratings-grid { display: flex; justify-content: center; gap: clamp(40px, 8vw, 90px); flex-wrap: wrap; text-align: center; }
.rating-item { text-align: center; opacity: 0; transform: translateY(40px); transition: all 0.8s var(--ease-out-expo); }
.rating-item.revealed { opacity: 1; transform: translateY(0); }
.stars { color: #DCB450; font-size: 20px; letter-spacing: 3px; margin-bottom: 10px; }
.rating-number { font-size: 3.8rem; font-family: 'Cormorant Garamond', serif; font-weight: 400; color: #E8C960; letter-spacing: -1px; display: inline-block; }
.rating-label { font-size: 12px; letter-spacing: 3px; color: var(--text-muted); margin-top: 6px; text-transform: uppercase; }
.rating-source { font-size: 10px; color: rgba(240, 239, 234, 0.35); margin-top: 4px; }

/*  SERVICES GRID (index)  */
.services { padding: 130px 0; background: var(--bg-surface); position: relative; z-index: 2; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1px; background: #1A1A1A; border-radius: 20px; overflow: hidden; }
.service-card {
    background: var(--bg-card-secondary); padding: 55px 38px;
    transition: all 0.6s var(--ease-out-expo);
    cursor: pointer; position: relative; z-index: 1; overflow: hidden;
    opacity: 0; transform: translateY(60px);
}
.service-card.revealed { opacity: 1; transform: translateY(0); }
.service-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 120%, rgba(220, 180, 80, 0.08) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.5s;
}
.service-card:hover::before { opacity: 1; }
.service-card::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 3px; background: #DCB450;
    transition: width 0.5s var(--ease-out-expo);
}
.service-card:hover::after { width: 100%; }
.service-card:hover { background: #151515; transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.service-icon { font-size: 2.8rem; margin-bottom: 22px; display: inline-block; transition: transform 0.5s var(--ease-out-expo); }
.service-card:hover .service-icon { transform: scale(1.15) rotate(-5deg); }
.service-card h3 { font-size: 1.7rem; margin-bottom: 12px; transition: color 0.4s; }
.service-card:hover h3 { color: #DCB450; }
.service-card p { color: var(--text-muted); line-height: 1.6; font-size: 0.95rem; }

/*  PROCESS SECTION (services page)  */
.process-section {
    padding: 100px 0;
    background: var(--bg-deep);
    position: relative;
    z-index: 2;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.process-step {
    text-align: center;
    padding: 40px 28px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    transition: all 0.5s var(--ease-out-expo);
    opacity: 0;
    transform: translateY(50px);
}
.process-step.revealed { opacity: 1; transform: translateY(0); }
.process-step:hover { border-color: var(--gold); transform: translateY(-8px) !important; box-shadow: 0 20px 45px rgba(0,0,0,0.5); }
.process-step-number { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; color: #DCB450; line-height: 1; margin-bottom: 12px; font-weight: 700; }
.process-step h4 { font-size: 1.2rem; margin-bottom: 10px; color: var(--text-primary); letter-spacing: 0.5px; }
.process-step p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/*  CTA BANNER (about, services, booking, shop, contact)  */
.cta-banner {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, #0A0A0A, #0D0D0D);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 180, 80, 0.06) 0%, transparent 70%);
    top: -120px;
    right: -180px;
    pointer-events: none;
}
.cta-banner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 14px;
    font-weight: 500;
}
.cta-banner p {
    color: var(--text-muted);
    margin-top: 12px;
    font-size: 1.05rem;
}
.cta-banner .btn-primary {
    margin-top: 28px;
    display: inline-block;
}

/*  SERVICE ICON EXTRA ANIMATION (services page)  */
.service-detail-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    border: 1px solid transparent;
    transition: all 0.5s var(--ease-out-expo);
}
.service-detail-card:hover .service-detail-icon::after {
    border-color: rgba(220, 180, 80, 0.3);
    inset: -6px;
    border-radius: 34px;
}
.service-detail-card:hover .service-detail-info h3 {
    letter-spacing: 1px;
}

/*  TESTIMONIALS (index)  */
.testimonials { padding: 110px 0; background: #050505; position: relative; z-index: 2; }
.testimonial-grid {
    display: flex; gap: 28px; overflow-x: auto; padding: 25px 0;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #DCB450 #0A0A0A;   /* Firefox */
}
.testimonial-grid::-webkit-scrollbar { height: 6px; }                /* show it */
.testimonial-grid::-webkit-scrollbar-track { background: #0A0A0A; }
.testimonial-grid::-webkit-scrollbar-thumb {
    background: #DCB450;
    border-radius: 3px;
}
.testimonial-card {
    min-width: 350px; max-width: 420px; background: var(--bg-card);
    padding: 38px 32px; border-radius: 20px;
    scroll-snap-align: start; border: 1px solid var(--border-subtle);
    transition: all 0.5s var(--ease-out-expo);
    opacity: 0; transform: translateX(40px); flex-shrink: 0;
}
.testimonial-card.revealed { opacity: 1; transform: translateX(0); }
.testimonial-card:hover { border-color: #DCB450; transform: translateY(-8px) !important; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.testimonial-stars { color: #DCB450; margin-bottom: 18px; font-size: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; line-height: 1.7; margin-bottom: 22px; font-style: italic; color: rgba(240,239,234,0.8); }
.testimonial-name { font-weight: 600; color: #DCB450; font-size: 0.9rem; letter-spacing: 1px; }

/*  ART GALLERY (index)  */
.art-showcase { padding: 110px 0; background: var(--bg-surface); position: relative; z-index: 2; }
.art-grid {
    display: flex; gap: 22px; overflow-x: auto;
    padding: 45px 0; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.art-grid::-webkit-scrollbar { display: none; }

.art-grid::after {
    content: '';
    flex: 0 0 48px;
}

.art-piece {
    min-width: 340px; height: 440px; background-size: cover; background-position: center;
    scroll-snap-align: start;
    filter: grayscale(0.5) brightness(0.7) saturate(2);
    transition: all 0.6s var(--ease-out-expo);
    position: relative; border-radius: 18px; flex-shrink: 0; overflow: hidden; cursor: pointer;
    opacity: 0; transform: scale(0.9) translateX(60px);
}
.art-piece.revealed { opacity: 1; transform: scale(1) translateX(0); }
.art-piece::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    transition: opacity 0.5s;
}
.art-piece:hover {
    filter: grayscale(0) brightness(1);
    transform: scale(1.03);
    box-shadow: 0 25px 55px rgba(0,0,0,0.5);
}
.art-piece:hover::after { opacity: 0.5; }
.art-caption {
    position: absolute; bottom: 20px; left: 20px; color: #fff;
    font-size: 11px; letter-spacing: 2.5px;
    background: rgba(0,0,0,0.55); padding: 7px 16px;
    border-radius: 30px; z-index: 2;
    backdrop-filter: blur(4px); text-transform: uppercase;
}

/* scroll buttons */
.art-scroll-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(10,10,10,0.6); backdrop-filter: blur(8px);
    border: 1px solid rgba(220,180,80,0.4); color: #DCB450;
    font-size: 1.2rem; cursor: pointer; z-index: 5;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s var(--ease-out-expo);
}
.art-scroll-btn:hover {
    background: rgba(220,180,80,0.2); border-color: #DCB450;
    color: #E8C960; transform: translateY(-50%) scale(1.05);
}
.art-scroll-left { left: 0; }
.art-scroll-right { right: 0; }

@media (max-width: 768px) {
    .art-grid::after { flex: 0 0 20px; }
    .art-scroll-btn { width: 40px; height: 40px; font-size: 1rem; }
}

/*  CINEMATIC QUOTE (index)  */
.cinematic-quote {
    min-height: 55vh; display: flex; align-items: center; justify-content: center;
    text-align: center; background: var(--bg-card); position: relative; z-index: 2; overflow: hidden;
}
.cinematic-quote::before {
    content: ''; position: absolute; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(220, 180, 80, 0.18) 0%, transparent 70%);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    animation: quoteGlow 8s ease-in-out infinite;
}
@keyframes quoteGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 1; }
}
.quote-text {
    font-size: clamp(1.6rem, 3.5vw, 3.2rem); font-family: 'Cormorant Garamond', serif;
    font-style: italic; max-width: 900px; margin: 0 auto; color: #DCB450;
    line-height: 1.5; position: relative; z-index: 1; padding: 0 20px;
}

/*  FINAL CTA (index)  */
.final-cta {
    padding: 110px 0; text-align: center;
    background: linear-gradient(180deg, #0A0A0A 0%, #0D0D0D 100%);
    position: relative; z-index: 2; overflow: hidden;
}
.final-cta::before {
    content: ''; position: absolute; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(220,180,80,0.05) 0%, transparent 70%);
    top: -100px; right: -150px; pointer-events: none;
}
.final-cta h2 { font-size: clamp(2rem, 4vw, 3.4rem); margin-bottom: 18px; }
.final-cta .btn-primary { margin-top: 32px; display: inline-block; font-size: 16px; padding: 18px 50px; }

/*  ABOUT PAGE  */
.story-section { padding: 100px 0; background: var(--bg-surface); position: relative; z-index: 2; }
.story-grid { display: flex; gap: 80px; align-items: center; }
.story-image { flex: 1; min-height: 450px; background-size: cover; background-position: center; border-radius: 24px; filter: grayscale(0.4) brightness(0.8); transition: all 0.6s var(--ease-out-expo); border: 1px solid var(--border-subtle); }
.story-image:hover { filter: grayscale(0) brightness(1); box-shadow: 0 20px 45px rgba(0,0,0,0.5); transform: scale(1.01); }
.story-text { flex: 1; }
.story-text h2 { font-size: 2.6rem; margin-bottom: 24px; color: #DCB450; }
.story-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; font-size: 1rem; }
.signature { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: #DCB450; margin-top: 30px; font-style: italic; }
.timeline-section { padding: 100px 0; background: var(--bg-deep); position: relative; z-index: 2; }
.timeline { position: relative; max-width: 800px; margin: 60px auto 0; }
.timeline::before { content: ''; position: absolute; left: 50%; transform: translateX(-50%); width: 1px; height: 100%; background: linear-gradient(to bottom, transparent, var(--gold), transparent); opacity: 0.4; }
.timeline-item { display: flex; gap: 30px; margin-bottom: 60px; opacity: 0; transform: translateY(40px); transition: all 0.8s var(--ease-out-expo); }
.timeline-item.revealed { opacity: 1; transform: translateY(0); }
.timeline-item:nth-child(odd) { flex-direction: row-reverse; }
.timeline-dot { width: 16px; height: 16px; background: #DCB450; border-radius: 50%; position: absolute; left: 50%; transform: translateX(-50%); z-index: 2; box-shadow: 0 0 15px rgba(220,180,80,0.6); }
.timeline-content { width: 45%; background: var(--bg-card); padding: 24px; border-radius: 16px; border: 1px solid var(--border-subtle); }
.timeline-year { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: #DCB450; margin-bottom: 8px; }
.values-section { padding: 100px 0; position: relative; z-index: 2; background: var(--bg-surface); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; margin-top: 50px; }
.value-card { background: var(--bg-card); padding: 40px 28px; border-radius: 20px; border: 1px solid var(--border-subtle); text-align: center; transition: all 0.5s var(--ease-out-expo); opacity: 0; transform: translateY(40px); }
.value-card.revealed { opacity: 1; transform: translateY(0); }
.value-card:hover { border-color: var(--gold); transform: translateY(-8px); }
.value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-card h4 { font-size: 1.3rem; margin-bottom: 10px; color: var(--text-primary); }
.value-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/*  SERVICES DETAIL PAGE  */
.services-detail { padding: 100px 0; background: var(--bg-surface); position: relative; z-index: 2; }
.service-detail-card { display: flex; gap: 60px; align-items: center; margin-bottom: 80px; padding: 50px 0; border-bottom: 1px solid var(--border-subtle); opacity: 0; transform: translateY(60px); transition: all 0.9s var(--ease-out-expo); }
.service-detail-card.revealed { opacity: 1; transform: translateY(0); }
.service-detail-card:last-child { border-bottom: none; margin-bottom: 0; }
.service-detail-card.reverse { flex-direction: row-reverse; }
.service-detail-icon { flex-shrink: 0; font-size: 5rem; width: 120px; height: 120px; display: flex; align-items: center; justify-content: center; background: var(--bg-card); border-radius: 28px; border: 1px solid var(--border-subtle); transition: all 0.5s var(--ease-out-expo); position: relative; }
.service-detail-card:hover .service-detail-icon { border-color: var(--gold); box-shadow: 0 0 40px rgba(220,180,80,0.15); transform: scale(1.05); }
.service-detail-info h3 { font-size: 2rem; margin-bottom: 12px; color: #DCB450; }
.service-detail-info .service-tagline { font-size: 0.85rem; letter-spacing: 3px; color: var(--text-dim); text-transform: uppercase; margin-bottom: 18px; }
.service-detail-info p { color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; font-size: 1rem; }
.service-features { display: flex; flex-wrap: wrap; gap: 12px; list-style: none; padding: 0; }
.service-features li { font-size: 0.85rem; color: var(--text-muted); padding: 8px 16px; background: var(--bg-card); border-radius: 30px; border: 1px solid var(--border-subtle); transition: all 0.35s var(--ease-out-expo); letter-spacing: 0.5px; }
.service-features li:hover { border-color: var(--gold); color: #DCB450; background: #141414; }
.service-detail-cta { display: inline-block; margin-top: 8px; color: #DCB450; text-decoration: none; font-weight: 500; letter-spacing: 1px; font-size: 0.9rem; transition: all 0.35s var(--ease-out-expo); position: relative; }
.service-detail-cta::after { content: ' →'; transition: margin-left 0.35s var(--ease-out-expo); }
.service-detail-cta:hover::after { margin-left: 8px; }
.service-detail-cta:hover { color: #E8C960; }

/*  SHOP PAGE  */
.filter-bar { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; padding: 20px 0 40px; position: relative; z-index: 2; }
.filter-btn { background: transparent; border: 1px solid var(--border-gold); color: var(--text-muted); padding: 10px 24px; border-radius: 30px; font-size: 0.85rem; letter-spacing: 1.5px; cursor: pointer; transition: all 0.35s var(--ease-out-expo); font-family: 'Inter', sans-serif; }
.filter-btn.active, .filter-btn:hover { background: var(--gold); color: #0A0A0A; border-color: var(--gold); font-weight: 500; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 30px; padding: 0 0 80px; position: relative; z-index: 2; }
.product-card { background: var(--bg-card); border-radius: 20px; overflow: hidden; border: 1px solid var(--border-subtle); transition: all 0.5s var(--ease-out-expo); opacity: 0; transform: translateY(50px); cursor: pointer; display: flex; flex-direction: column; }
.product-card.revealed { opacity: 1; transform: translateY(0); }
.product-card:hover { border-color: var(--gold); transform: translateY(-10px); box-shadow: 0 25px 50px rgba(0,0,0,0.5); background: var(--bg-card-hover); }
.product-image { height: 260px; background-size: cover; background-position: center; position: relative; transition: transform 0.6s var(--ease-out-expo); filter: brightness(0.8) grayscale(0.3); }
.product-card:hover .product-image { transform: scale(1.04); filter: brightness(1) grayscale(0); }
.product-badge { position: absolute; top: 16px; right: 16px; background: var(--gold); color: #0A0A0A; padding: 5px 12px; border-radius: 20px; font-size: 0.7rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.product-details { padding: 28px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.product-name { font-size: 1.6rem; font-family: 'Cormorant Garamond', serif; font-weight: 600; font-variant-numeric: lining-nums; margin-bottom: 6px; color: var(--text-primary); transition: color 0.3s; }
.product-card:hover .product-name { color: #DCB450; }
.product-type { font-size: 0.8rem; letter-spacing: 2px; color: var(--text-dim); text-transform: uppercase; margin-bottom: 14px; }
.product-description { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 18px; flex: 1; }
.product-price { font-size: 1.4rem; font-weight: 1000; color: #DCB450; margin-bottom: 16px; font-family: 'Cormorant Garamond', serif; font-variant-numeric: lining-nums; }
.product-actions { display: flex; flex-direction:row; gap: 12px;}
/* ========== PRODUCT DETAIL MODAL ========== */
.product-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s;
}
.product-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.product-modal {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    max-width: 700px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 24px;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.35s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}
.product-modal-overlay.show .product-modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 5;
    transition: color 0.3s;
}
.modal-close:hover { color: #DCB450; }

/* Carousel */
.modal-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 8px;
    border-radius: 12px;
    margin-bottom: 12px;
    scrollbar-width: thin;
    scrollbar-color: #DCB450 #0A0A0A;
}
.modal-carousel::-webkit-scrollbar { height: 4px; }
.modal-carousel::-webkit-scrollbar-track { background: #0A0A0A; }
.modal-carousel::-webkit-scrollbar-thumb { background: #DCB450; border-radius: 2px; }

.modal-carousel img {
    scroll-snap-align: start;
    width: 100%;
    flex-shrink: 0;
    max-height: 400px;
    object-fit: contain;          /* show full image */
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    transition: transform 0.3s;
    cursor: zoom-in;
}
.modal-carousel img:hover {
    transform: scale(1.02);
}

/* Carousel nav buttons */
.modal-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}
.carousel-prev,
.carousel-next {
    background: rgba(10,10,10,0.8);
    border: 1px solid var(--border-gold);
    color: #DCB450;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
.carousel-prev:hover,
.carousel-next:hover {
    background: var(--gold);
    color: #0A0A0A;
    border-color: var(--gold);
}

/* Modal details */
.modal-details {
    text-align: left;
}
.modal-badge {
    display: inline-block;
    background: var(--gold);
    color: #0A0A0A;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.modal-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.modal-type {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-bottom: 14px;
}
.modal-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #DCB450;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 16px;
}
.modal-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}
.modal-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.modal-add-to-cart {
    flex: 1;
    min-width: 140px;
}
.modal-inquire {
    flex: 1;
    min-width: 140px;
}

/* Hide rental "Add to Cart" in modal */
.modal-actions .modal-add-to-cart.hidden {
    display: none;
}

/* ========== IMAGE ZOOM LIGHTBOX ========== */
.zoom-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(12px);
    z-index: 30000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
    cursor: zoom-out;
}
.zoom-overlay.show {
    opacity: 1;
    visibility: visible;
}

.zoom-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    border: 2px solid var(--border-gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.7);
    cursor: default;
}

.zoom-close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 5;
    transition: color 0.3s;
}
.zoom-close:hover { color: #DCB450; }


/*  BOOKING PAGE  */
.booking-form-section { padding: 80px 0 100px; background: var(--bg-surface); position: relative; z-index: 2; }
.form-card { max-width: 800px; margin: 0 auto; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 24px; padding: 50px 48px; transition: all 0.4s var(--ease-out-expo); opacity: 0; transform: translateY(30px); }
.form-card.revealed { opacity: 1; transform: translateY(0); }
.form-card:hover { border-color: var(--gold); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.form-card h2 { font-size: 2.2rem; margin-bottom: 8px; color: #DCB450; }
.form-card .form-subtitle { color: var(--text-muted); margin-bottom: 36px; font-size: 0.95rem; }
.form-row { display: flex; gap: 20px; margin-bottom: 24px; flex-wrap: wrap; }
.form-group { flex: 1 1 200px; display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.8rem; letter-spacing: 2px; color: var(--text-dim); text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea { background: var(--bg-input); border: 1px solid var(--border-subtle); border-radius: 12px; padding: 14px 18px; color: var(--text-primary); font-family: 'Inter', sans-serif; font-size: 1rem; transition: all 0.3s var(--ease-out-expo); outline: none; resize: vertical; }
.form-group textarea { min-height: 110px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(220,180,80,0.1); }
.btn-submit { background: #DCB450; color: #0A0A0A; border: none; padding: 14px 40px; border-radius: 40px; font-weight: 600; letter-spacing: 1px; font-size: 1rem; cursor: pointer; transition: all 0.4s var(--ease-out-expo); position: relative; overflow: hidden; display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; }
.btn-submit::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: rgba(255,255,255,0.25); border-radius: 50%; transform: translate(-50%,-50%); transition: width 0.7s, height 0.7s; z-index: 0; }
.btn-submit:hover::before { width: 500px; height: 500px; }
.btn-submit:hover { background: #C9A23A; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(220,180,80,0.3); }
.btn-submit span { position: relative; z-index: 1; }
.form-success { display: none; text-align: center; padding: 40px; opacity: 0; transition: opacity 0.5s; }
.form-success.show { display: block; opacity: 1; }
.form-success i { font-size: 3rem; color: #DCB450; margin-bottom: 20px; }
.form-success h3 { font-size: 2rem; margin-bottom: 10px; }
.steps-section {
    padding: 60px 0 80px;
    background: var(--bg-deep);
    text-align: center;
    position: relative;
    z-index: 2;
}
.steps-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.step-card {
    background: var(--bg-card);
    padding: 30px 24px;
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    max-width: 220px;
    transition: all 0.4s;
    opacity: 0;
    transform: translateY(30px);
}
.step-card.revealed {
    opacity: 1;
    transform: translateY(0);
}
.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #DCB450;
    margin-bottom: 8px;
}
.step-card h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}
.step-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

/*  FORM SUCCESS MESSAGE (contact page variant)  */
.form-success-message { display: none; text-align: center; padding: 30px; }
.form-success-message.show { display: block; }
.form-success-message i { font-size: 2.5rem; color: #DCB450; margin-bottom: 15px; }

/*  CONTACT PAGE  */
.contact-section { padding: 80px 0 100px; background: var(--bg-surface); position: relative; z-index: 2; }
.contact-grid { display: flex; gap: 60px; flex-wrap: wrap; }
.contact-info { flex: 1 1 300px; opacity: 0; transform: translateY(40px); transition: all 0.9s var(--ease-out-expo); }
.contact-info.revealed { opacity: 1; transform: translateY(0); }
.contact-form-wrap { flex: 1 1 400px; opacity: 0; transform: translateY(40px); transition: all 0.9s var(--ease-out-expo); }
.contact-form-wrap.revealed { opacity: 1; transform: translateY(0); }
.contact-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 20px; padding: 30px; margin-bottom: 24px; transition: all 0.4s; }
.contact-card:hover { border-color: var(--gold); box-shadow: 0 15px 35px rgba(0,0,0,0.4); transform: translateY(-4px); }
.contact-card i { color: #DCB450; font-size: 1.8rem; margin-bottom: 12px; }
.contact-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.contact-card p, .contact-card a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; transition: color 0.3s; }
.contact-card a:hover { color: #DCB450; }
.map-wrapper { width: 100%; margin-top: 60px; border-radius: 20px; overflow: hidden; border: 1px solid var(--border-subtle); transition: all 0.4s; }
.map-wrapper:hover { border-color: var(--gold); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.map-wrapper iframe { display: block; filter: grayscale(0.6) brightness(0.7); transition: filter 0.4s; }
.map-wrapper:hover iframe { filter: grayscale(0) brightness(1); }

/*  SUCCESS / CANCEL PAGES  */
.success-section,
.cancel-section { min-height: 85vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 140px 0 80px; position: relative; z-index: 2; }
.success-card,
.cancel-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 24px; padding: 60px 50px; max-width: 600px; margin: 0 auto; opacity: 0; transform: translateY(40px); transition: all 0.9s var(--ease-out-expo); }
.success-card.revealed,
.cancel-card.revealed { opacity: 1; transform: translateY(0); }
.success-icon,
.cancel-icon { font-size: 5rem; color: #DCB450; margin-bottom: 20px; display: inline-block; animation: pulseGlow 2s infinite; }
@keyframes pulseGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(220,180,80,0.4); transform: scale(1); }
    50% { text-shadow: 0 0 40px rgba(220,180,80,0.8); transform: scale(1.05); }
}
.success-card h1,
.cancel-card h1 { font-size: 2.8rem; margin-bottom: 16px; color: #DCB450; }
.button-group { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 32px; }

/*  FOOTER (enhanced)  */
.footer {
    background: #050505;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(220, 180, 80, 0.18);
    position: relative; z-index: 2;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #DCB450;
    opacity: 0.6;
}
.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}
.footer-contact {
    font-size: 1.25rem;
    color: #DCB450;
    font-family: 'Lora', serif;
    font-weight: 400;
    letter-spacing: 2.5px;
    transition: color 0.3s;
}
.footer-contact:hover {
    color: #E8C960;
}
.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    transition: color 0.3s, transform 0.2s;
    display: inline-block;
}
.footer-links a:hover {
    color: #DCB450;
    transform: translateX(3px);
}
.copyright {
    text-align: center;
    margin-top: 50px;
    font-size: 11px;
    font-weight: 400;
    color: #686868;
    letter-spacing: 2px;
}
/*  FLOATING NOTES  */
.floating-note { position: fixed; pointer-events: none; z-index: 1; color: rgba(220,180,80,0.25); font-size: 18px; animation: noteRise 8s linear infinite; }
@keyframes noteRise {
    0% { transform: translateY(0) rotate(0deg) scale(0); opacity: 0; }
    10% { opacity: 0.7; transform: scale(1); }
    90% { opacity: 0.4; }
    100% { transform: translateY(-100vh) rotate(360deg) scale(0.3); opacity: 0; }
}

/*  RESPONSIVE  */
@media (max-width: 968px) {
    .story-grid { flex-direction: column; gap: 40px; }
    .story-image { min-width: 300px; }
    .timeline {
    max-width: 100%;
    padding: 0 10px;
}
.timeline::before {
    left: 50%;
    transform: translateX(-50%);
}
.timeline-item {
    gap: 12px;
    margin-bottom: 32px;
}
.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;   /* alternating left/right */
}
.timeline-item:nth-child(even) {
    flex-direction: row;
}
.timeline-dot {
    width: 12px;
    height: 12px;
    left: 50%;
    transform: translateX(-50%);
}
.timeline-content {
    width: 44%;
    padding: 12px 14px;
    border-radius: 12px;
}
.timeline-year {
    font-size: 1.3rem;
    margin-bottom: 4px;
}
.timeline-content h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}
.timeline-content p {
    font-size: 0.72rem;
    line-height: 1.4;
}
}
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .nav-links { gap: 16px; }
    .nav-links a { font-size: 10px; letter-spacing: 1.5px; }
    .book-now-nav { padding: 7px 16px !important; font-size: 10px !important; }
    .hero { padding: 130px 0 60px; }
    .hero-buttons { flex-direction: column; gap: 12px; }
    .btn-primary, .btn-outline { text-align: center; padding: 14px 30px; font-size: 14px; }
    .ratings-grid { gap: 30px; }
    .rating-number { font-size: 32px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 35px 24px; }
    .testimonial-card { min-width: 270px; padding: 28px 22px; }
    .art-piece { min-width: 260px; height: 340px; }
    .quote-text { font-size: 1.4rem; }
    .section-title { font-size: 2rem; }
    .footer-grid { flex-direction: column; text-align: center; }
    .form-card { padding: 30px 20px; }
    .form-row { flex-direction: column; }
    .product-grid { grid-template-columns: 1fr; }
    .filter-btn { padding: 8px 16px; font-size: 0.75rem; }
    .page-hero, .booking-hero { min-height: 45vh; padding: 130px 0 50px; }
    .hero-title, .page-hero-content h1 { font-size: 2.2rem; }
    .button-group { flex-direction: column; align-items: center; }
    /* Ensure two‑column layout on mobile */
.contact-section .contact-grid {
    flex-direction: row !important;
    flex-wrap: nowrap;
    gap: 16px;
    align-items: flex-start;
}
.contact-info {
    flex: 0 0 35%;
    min-width: 0;
}
.contact-form-wrap {
    flex: 1;
    min-width: 0;
}
.contact-card {
    padding: 14px 12px;
    margin-bottom: 12px;
}
.contact-card i {
    font-size: 1.2rem;
    margin-bottom: 6px;
}
.contact-card h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}
.contact-card p,
.contact-card a {
    overflow-wrap: break-word;
    word-break: break-all;
    font-size: 0.72rem;        /* slightly smaller so it fits */
}
/* Contact form card – visible and scaled */
.contact-section .form-card {
    padding: 20px 16px;
    border-radius: 16px;
    opacity: 1;
    transform: none;
}
.form-group label {
    font-size: 0.68rem;
}
.form-group input,
.form-group textarea {
    padding: 10px 12px;
    font-size: 0.82rem;
}
.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.9rem;
}
}

/* Cart-specific styles (everything else is in style.css) */
        .cart-icon-wrapper {
            position: relative;
            cursor: pointer;
            color: #DCB450;
            font-size: 1.3rem;
            margin-left: 10px;
            display: flex;
            align-items: center;
        }
        .cart-badge {
            position: absolute;
            top: -8px;
            right: -12px;
            background: #C9A23A;
            color: #0A0A0A;
            font-size: 0.7rem;
            font-weight: 700;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
        }
        .cart-panel {
            position: fixed;
            top: 0;
            right: -420px;
            width: 400px;
            max-width: 90vw;
            height: 100vh;
            background: var(--bg-card);
            border-left: 1px solid var(--border-subtle);
            z-index: 10000;
            transition: right 0.4s var(--ease-out-expo);
            display: flex;
            flex-direction: column;
            padding: 0;
            overflow-y: auto;
        }
        .cart-panel.open {
            right: 0;
        }
        .cart-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s;
        }
        .cart-overlay.show {
            opacity: 1;
            visibility: visible;
        }
        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;
            border-bottom: 1px solid var(--border-subtle);
        }
        .cart-header h3 {
            font-size: 1.5rem;
            color: #DCB450;
        }
        .cart-close {
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.3s;
        }
        .cart-close:hover { color: #DCB450; }
        .cart-items {
            flex: 1;
            padding: 20px 24px;
            overflow-y: auto;
        }
        .cart-item {
            display: flex;
            gap: 16px;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border-subtle);
        }
        .cart-item-img {
            width: 70px;
            height: 70px;
            border-radius: 12px;
            background-size: cover;
            background-position: center;
            flex-shrink: 0;
        }
        .cart-item-info {
            flex: 1;
        }
        .cart-item-name {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-primary);
            margin-bottom: 4px;
        }
        .cart-item-price {
            font-size: 0.9rem;
            color: #DCB450;
            font-weight: 500;
        }
        .cart-item-quantity {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 8px;
        }
        .cart-item-quantity button {
            background: var(--bg-input);
            border: 1px solid var(--border-subtle);
            color: var(--text-primary);
            width: 28px;
            height: 28px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s;
        }
        .cart-item-quantity button:hover {
            border-color: #DCB450;
            color: #DCB450;
        }
        .cart-item-remove {
            background: none;
            border: none;
            color: var(--text-muted);
            cursor: pointer;
            font-size: 0.9rem;
            transition: color 0.3s;
            margin-left: auto;
        }
        .cart-item-remove:hover { color: #e74c3c; }
        .cart-footer {
            padding: 20px 24px;
            border-top: 1px solid var(--border-subtle);
        }
        .cart-total {
            display: flex;
            justify-content: space-between;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 16px;
            color: #DCB450;
        }
        .btn-checkout {
            width: 100%;
            padding: 14px;
            font-size: 1rem;
        }
        .add-to-cart-btn {
            background: transparent;
            border: 1.5px solid #DCB450;
            color: #DCB450;
            padding: 10px 18px;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.4s var(--ease-out-expo);
        }
        .add-to-cart-btn:hover {
            background: #DCB450;
            color: #0A0A0A;
        }