@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* --- DESIGN TOKENS --- */
:root {
    --bg-dark: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #fcfcfc;
    --bg-beige: #ffffff;
    --bg-charcoal: #fafafa;
    --primary-gold: #c5a059; /* Bright gold from user mockup screenshot */
    --primary-gold-rgb: 197, 160, 89;
    --secondary-bronze: #b89553;
    --text-light: #1c1c1c;
    --text-muted: #666666;
    --border-gold: rgba(197, 160, 89, 0.25);
    --border-gold-focus: rgba(197, 160, 89, 0.6);
    --glow-gold: 0 10px 30px rgba(197, 160, 89, 0.08);
    --glow-gold-intense: 0 16px 40px rgba(197, 160, 89, 0.15);
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
}

/* --- RESET & GLOBAL STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    overflow-x: hidden;
    cursor: none; /* Hide default cursor for custom cursor experience */
}

/* --- CUSTOM CURSOR --- */
.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-gold);
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
}

.custom-cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-gold);
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
}

/* Cursor hover effect */
body.hovered .custom-cursor-outline {
    width: 60px;
    height: 60px;
    border-color: transparent;
    background-color: rgba(197, 168, 128, 0.1);
    box-shadow: var(--glow-gold);
}

body.hovered .custom-cursor-dot {
    width: 10px;
    height: 10px;
    background-color: var(--text-light);
}

/* Hide custom cursor on mobile touch devices */
@media (max-width: 1024px) {
    body {
        cursor: auto;
    }
    .custom-cursor-dot, .custom-cursor-outline {
        display: none !important;
    }
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold);
}

/* --- SELECTION --- */
::selection {
    background-color: var(--primary-gold);
    color: var(--bg-dark);
}

/* --- REUSABLE UTILITIES & LAYOUTS --- */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

.section-padding {
    padding: 140px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 100px 0;
    }
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    font-weight: 500;
}

p {
    line-height: 1.85;
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Decorative Gold Divider */
.divider-gold {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    margin: 30px auto;
}

.divider-gold.left {
    margin: 30px 0;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

/* Gold Glow Accent Text */
.gold-text {
    color: var(--primary-gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

/* Main headings */
.section-title {
    font-size: 2.8rem;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-title.left {
    text-align: left;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.1rem;
    }
}

/* Background overlay textures */
.bg-overlay-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 10002; /* Float above content to add texture to all layout blocks */
}

/* --- NAVIGATION BAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(163, 122, 62, 0.15);
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    height: 75px;
    background-color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(163, 122, 62, 0.25);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.navbar .nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 0.15em;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo span {
    font-size: 0.6rem;
    letter-spacing: 0.5em;
    color: var(--primary-gold);
    margin-top: 4px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    padding: 10px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-gold);
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary-gold);
}

.nav-links a.active::after {
    width: 100%;
}

/* Navigation Call to Action */
.nav-cta {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.nav-cta span {
    position: relative;
    z-index: 2;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: var(--primary-gold);
    transition: var(--transition-smooth);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 1;
}

.nav-cta:hover {
    color: var(--bg-dark);
    box-shadow: var(--glow-gold);
}

.nav-cta:hover::before {
    width: 250px;
    height: 250px;
    border-radius: 0;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition-smooth);
}

@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.5s ease-in-out;
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }

    .nav-cta {
        display: none; /* Hide top-bar CTA on mobile, incorporate in nav links list or hero */
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
        background-color: var(--primary-gold);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
        background-color: var(--primary-gold);
    }
}

/* --- PREMIUM HERO SECTION --- */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 90px;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.9;
    transform: scale(1.05);
    filter: grayscale(10%) contrast(102%) brightness(98%);
}

.hero-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 20%, rgba(255, 255, 255, 0.6) 80%, var(--bg-dark) 100%),
                linear-gradient(to bottom, transparent 70%, var(--bg-dark) 100%);
    z-index: 2;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 3;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 1.1rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 25px;
    font-weight: 500;
    animation: fadeInDown 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.15;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(180deg, #111111 0%, #222222 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-description {
    font-size: 1.15rem;
    color: #222222;
    max-width: 650px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
    animation: fadeInUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Button styles */
.btn-premium {
    display: inline-block;
    padding: 16px 40px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-smooth);
    border-radius: 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
}

.btn-premium:hover {
    transform: translateY(-3px);
}

.btn-solid {
    background-color: var(--primary-gold);
    color: var(--bg-dark);
    border: 1px solid var(--primary-gold);
}

.btn-solid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: var(--bg-dark);
    transition: var(--transition-smooth);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
}

.btn-solid:hover {
    color: var(--primary-gold);
    box-shadow: 0 10px 25px rgba(197, 168, 128, 0.35);
}

.btn-solid:hover::before {
    width: 350px;
    height: 350px;
    border-radius: 0;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: var(--text-light);
    transition: var(--transition-smooth);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
}

.btn-outline:hover {
    color: var(--bg-dark);
    border-color: var(--text-light);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.btn-outline:hover::before {
    width: 350px;
    height: 350px;
    border-radius: 0;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.scroll-indicator:hover {
    opacity: 1;
    color: var(--primary-gold);
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 2px solid var(--text-muted);
    border-radius: 10px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 6px;
    background-color: var(--primary-gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollAnimation 1.8s ease-in-out infinite;
}

/* Keyframes for animations */
@keyframes scrollAnimation {
    0% { top: 6px; opacity: 1; }
    50% { top: 16px; opacity: 0; }
    100% { top: 6px; opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- THE PHILOSOPHY SECTION (HOME) --- */
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 991px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.philosophy-text-content {
    display: flex;
    flex-direction: column;
}

.philosophy-paragraph {
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 576px) {
    .features-list {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-left: 2px solid var(--primary-gold);
    padding-left: 20px;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-light);
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.philosophy-badge-container {
    display: flex;
    justify-content: center;
    position: relative;
}

.philosophy-badge {
    width: 320px;
    height: 320px;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: rotateSlow 25s linear infinite;
}

.philosophy-badge::before {
    content: '';
    position: absolute;
    width: 85%;
    height: 85%;
    border: 1px dashed rgba(197, 168, 128, 0.4);
    border-radius: 50%;
}

.philosophy-badge-inner {
    width: 70%;
    height: 70%;
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--primary-gold);
    text-align: center;
    box-shadow: var(--glow-gold);
}

.philosophy-badge-inner span.gold-year {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
}

.philosophy-badge-inner span.gold-label {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: 10px;
    color: var(--text-light);
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --- SERVICES & CAROUSEL (HOME) --- */
.services-highlight {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

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

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-gold);
    border-radius: 24px;
    padding: 0;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03), 0 1px 8px rgba(163, 122, 62, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-gold);
    transform: scaleX(0);
    transition: var(--transition-smooth);
    transform-origin: center;
    z-index: 3;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(163, 122, 62, 0.12), var(--glow-gold-intense);
    border-color: var(--primary-gold);
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Image Wrapper and Image */
.service-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-img {
    transform: scale(1.08);
}

/* Content Body */
.service-card-body {
    padding: 0 24px 35px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

/* Icon Badge Overlapping the Image */
.service-icon-badge {
    width: 70px;
    height: 70px;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -35px; /* Overlap image bottom border */
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-badge {
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(163, 122, 62, 0.2);
}

.service-icon {
    width: 38px;
    height: 38px;
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--text-light);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: auto;
}

/* Slide-in Premium CTA Button */
.service-btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    border-radius: 30px;
    background: transparent;
    text-decoration: none;
    opacity: 0;
    max-height: 0;
    transform: translateY(15px);
    margin-top: 0;
    overflow: hidden;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                margin-top 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.3s ease,
                color 0.3s ease,
                border-color 0.3s ease,
                box-shadow 0.3s ease;
    pointer-events: none;
    visibility: hidden;
}

.service-card:hover .service-btn {
    opacity: 1;
    max-height: 50px;
    margin-top: 25px;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
}

.service-btn:hover {
    background-color: var(--primary-gold);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(163, 122, 62, 0.3);
}

/* Testimonial slider */
.testimonials-section {
    position: relative;
}

.testimonials-slider-container {
    max-width: 850px;
    margin: 40px auto 0 auto;
    position: relative;
    padding: 10px;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.8s ease forwards;
}

.testimonial-slide.active {
    display: block;
}

.review-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03), 0 1px 10px rgba(163, 122, 62, 0.04);
    text-align: left;
    transition: var(--transition-smooth);
}

.review-card:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--glow-gold);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-bronze));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 2px;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.verified-tag {
    font-size: 0.75rem;
    color: #34a853;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
}

.review-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.google-logo-badge {
    opacity: 0.85;
}

.review-stars {
    font-size: 1.2rem;
    color: #fbbc05;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.review-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-style: italic;
    font-weight: 300;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #333;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.testimonial-dot.active {
    background-color: var(--primary-gold);
    transform: scale(1.3);
    box-shadow: var(--glow-gold);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- GALLERY PAGE STYLES --- */
.gallery-filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 60px;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--text-muted);
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    color: var(--text-light);
    border-color: var(--primary-gold);
}

.filter-btn.active {
    color: var(--bg-dark);
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    box-shadow: var(--glow-gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .gallery-item {
        max-height: 60vh;
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    background-color: var(--bg-card);
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: none;
}

.gallery-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 35%);
    opacity: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 25px;
    transition: var(--transition-smooth);
    z-index: 2;
    pointer-events: none;
}

.gallery-item:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--glow-gold);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-item-overlay,
.artist-slide:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-category {
    font-size: 0.75rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 8px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

.gallery-item-title {
    font-size: 1.5rem;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.4);
}

.gallery-item-artist {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

/* Ensure text is readable against the dark linear gradient overlay */
.gallery-item-overlay .gallery-item-title {
    color: #ffffff !important;
}

.gallery-item-overlay .gallery-item-artist {
    color: rgba(255, 255, 255, 0.75) !important;
}

@media (max-width: 768px) {
    .gallery-item-overlay {
        padding: 15px 20px;
    }
    .gallery-item-title {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }
    .gallery-item-category {
        font-size: 0.65rem;
        margin-bottom: 4px;
    }
    .gallery-item-artist {
        font-size: 0.75rem;
    }
}

/* Lightbox styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 7, 7, 0.98);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 1px solid var(--border-gold);
    box-shadow: var(--glow-gold-intense);
    transform: scale(0.95);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-caption {
    margin-top: 25px;
    text-align: center;
    color: #ffffff;
}

.lightbox-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: #ffffff;
}

.lightbox-artist {
    font-size: 0.9rem;
    color: var(--primary-gold);
    letter-spacing: 0.1em;
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--primary-gold);
    transform: rotate(90deg);
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 20px;
}

.lightbox-btn:hover {
    color: var(--primary-gold);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 20px;
    }
    .lightbox-btn {
        font-size: 2rem;
        padding: 10px;
    }
    .lightbox-prev {
        left: 5px;
    }
    .lightbox-next {
        right: 5px;
    }
}

/* --- ARTISTS PAGE STYLES --- */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

@media (max-width: 650px) {
    .artists-grid {
        grid-template-columns: 1fr;
    }
}

.artist-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03), 0 1px 8px rgba(163, 122, 62, 0.04);
}

.artist-card:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--glow-gold);
    transform: translateY(-10px);
}

.artist-image-container {
    position: relative;
    aspect-ratio: 1 / 1.15;
    overflow: hidden;
}

.artist-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(10%) contrast(105%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.artist-card:hover .artist-image-container img {
    transform: scale(1.06);
}

.artist-card-info {
    padding: 30px;
    text-align: center;
}

.artist-card-name {
    font-size: 1.6rem;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.artist-card-specialty {
    font-size: 0.85rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.artist-card-bio {
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.artist-socials {
    display: flex;
    justify-content: center;
    gap: 10px 20px;
    list-style: none;
    flex-wrap: wrap;
}

.artist-socials a {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.artist-socials a:hover {
    color: var(--primary-gold);
    text-shadow: var(--glow-gold);
}

/* --- BOOKING PAGE STYLES --- */
.booking-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
}

@media (max-width: 991px) {
    .booking-split {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* Form Styling */
.booking-form-wrapper {
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    padding: 35px;
    border-radius: 16px;
}

@media (max-width: 576px) {
    .booking-form-wrapper {
        padding: 30px 20px;
    }
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

.form-step-title {
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.form-step-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--text-light);
}

/* Custom size/slider styles */
.size-slider-container {
    position: relative;
    padding: 10px 0;
}

.size-range {
    -webkit-appearance: none;
    width: 100%;
    height: 3px;
    background: #2a2a2a;
    outline: none;
    transition: background 0.3s;
}

.size-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 3px;
    cursor: pointer;
    background: #2a2a2a;
}

.size-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: var(--primary-gold);
    cursor: pointer;
    margin-top: -8px;
    box-shadow: var(--glow-gold);
    transition: var(--transition-smooth);
}

.size-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: var(--text-light);
}

.size-value-display {
    text-align: right;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-gold);
    margin-top: 10px;
}

/* Inputs styling */
.form-input, .form-textarea, .form-select {
    width: 100%;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    color: var(--text-light);
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    transition: var(--transition-smooth);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: var(--glow-gold);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Radio Cards styling */
.style-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (max-width: 480px) {
    .style-cards-grid {
        grid-template-columns: 1fr;
    }
}

.style-radio-card {
    position: relative;
}

.style-radio-card input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.style-radio-label {
    display: block;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-gold);
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.style-radio-card input:checked + .style-radio-label {
    border-color: var(--primary-gold);
    background-color: var(--primary-gold);
    color: #ffffff;
    box-shadow: var(--glow-gold-intense);
}

/* Date/time row */
.datetime-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
}

@media (max-width: 480px) {
    .datetime-row {
        grid-template-columns: 1fr;
    }
}

/* Image uploader area */
.image-upload-zone {
    border: 1px dashed rgba(197, 168, 128, 0.3);
    background-color: var(--bg-dark);
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.image-upload-zone:hover {
    border-color: var(--primary-gold);
    background-color: rgba(197, 168, 128, 0.02);
}

.upload-icon {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.upload-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.upload-text span {
    color: var(--primary-gold);
    font-weight: 500;
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-preview-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.upload-preview-item {
    aspect-ratio: 1/1;
    border: 1px solid var(--border-gold);
    position: relative;
    overflow: hidden;
}

.upload-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-preview-remove {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background-color: rgba(7, 7, 7, 0.8);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.upload-preview-remove:hover {
    background-color: red;
    border-color: red;
}

/* Steps Progress bar */
.steps-progress {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 50px;
}

.steps-progress::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #2a2a2a;
    z-index: 1;
}

.progress-line {
    position: absolute;
    top: 15px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--primary-gold);
    z-index: 2;
    transition: var(--transition-smooth);
}

.progress-step {
    width: 30px;
    height: 30px;
    background-color: var(--bg-dark);
    border: 1px solid #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    position: relative;
    z-index: 3;
    transition: var(--transition-smooth);
}

.progress-step.active {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    box-shadow: var(--glow-gold);
    background-color: var(--bg-card);
}

.progress-step.completed {
    border-color: var(--primary-gold);
    background-color: var(--primary-gold);
    color: var(--bg-dark);
}

/* Form navigation buttons row */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.form-navigation button:disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* Booking FAQ / Details card column */
.booking-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    padding: 40px;
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-gold);
    padding-bottom: 15px;
}

.info-card-item {
    margin-bottom: 25px;
}

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

.info-card-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--primary-gold);
}

.info-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- ABOUT & AFTERCARE PAGE STYLES --- */
.about-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 991px) {
    .about-split {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.about-studio-image-container {
    position: relative;
    border: 1px solid var(--border-gold);
    box-shadow: var(--glow-gold);
}

.about-studio-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    filter: brightness(85%) contrast(105%);
}

.about-narrative h3 {
    font-size: 1.6rem;
    margin-top: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Hygiene & safety */
.hygiene-highlight {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.hygiene-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

@media (max-width: 991px) {
    .hygiene-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.hygiene-card {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-gold);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.hygiene-card:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--glow-gold);
    transform: translateY(-5px);
}

.hygiene-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-weight: 700;
}

.hygiene-card h3 {
    font-size: 1.15rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hygiene-card p {
    font-size: 0.9rem;
}

/* Aftercare accordion styling */
.aftercare-container {
    max-width: 900px;
    margin: 60px auto 0 auto;
}

.accordion-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-item:hover {
    border-color: rgba(197, 168, 128, 0.4);
}

.accordion-item.active {
    border-color: var(--primary-gold);
    box-shadow: var(--glow-gold);
}

.accordion-header {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.accordion-title-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.accordion-day {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-gold);
    font-weight: 700;
    min-width: 80px;
}

.accordion-header h3 {
    font-size: 1.15rem;
    text-transform: uppercase;
}

.accordion-icon {
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: transform 0.4s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: var(--primary-gold);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 30px;
}

.accordion-content-inner {
    padding-bottom: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.accordion-content p {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.accordion-content ul {
    list-style: none;
}

.accordion-content li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.accordion-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
}

/* --- FOOTER STYLES --- */
.footer {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-gold);
    padding-top: 100px;
    padding-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-desc {
    font-size: 0.9rem;
    margin-bottom: 30px;
    max-width: 320px;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    list-style: none;
}

.footer-social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.footer-social-icons a:hover {
    color: var(--bg-dark);
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    box-shadow: var(--glow-gold);
}

.footer-col h3 {
    font-size: 1.15rem;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 0.15em;
    color: var(--primary-gold);
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--primary-gold);
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    border-bottom: 1px dashed var(--border-gold);
    padding-bottom: 6px;
}

.hours-list li span:first-child {
    font-weight: 500;
    color: var(--text-light);
}

.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-info-list li strong {
    color: var(--text-light);
    display: block;
    margin-bottom: 4px;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.footer-bottom {
    border-top: 1px solid var(--border-gold);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 576px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

/* --- SCROLL PROGRESS INDICATOR --- */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 10001; /* Above mobile menu and navbar */
    pointer-events: none;
    background: transparent;
}

.scroll-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-bronze));
    transition: width 0.15s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 8px rgba(163, 122, 62, 0.5);
}

/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.97);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}



/* Hero elements specific anim overlays */
.hero-overlay-animate {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    transform: scaleY(1);
    transform-origin: bottom;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 5;
    pointer-events: none;
}

body.loaded .hero-overlay-animate {
    transform: scaleY(0);
}

/* --- SUCCESS MODAL STYLES --- */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 3000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.success-modal.active {
    display: flex;
    opacity: 1;
}

.success-modal-content {
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    max-width: 500px;
    width: 90%;
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--glow-gold-intense);
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-modal.active .success-modal-content {
    transform: scale(1);
}

.success-icon {
    width: 80px;
    height: 80px;
    border: 1px solid var(--primary-gold);
    border-radius: 50%;
    color: var(--primary-gold);
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
    box-shadow: var(--glow-gold);
    animation: pulseGold 2s infinite;
}

@keyframes pulseGold {
    0% { box-shadow: 0 0 0 0 rgba(197, 168, 128, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(197, 168, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(197, 168, 128, 0); }
}

.success-modal-title {
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.success-modal-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* --- FOUNDER & CEO SECTION STYLES --- */
.founder-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: start;
}

@media (max-width: 991px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .founder-image-container {
        width: 100% !important;
        aspect-ratio: 1.3 / 1 !important;
        max-height: 350px;
    }
}

@media (max-width: 576px) {
    .founder-image-container {
        aspect-ratio: 1.45 / 1 !important;
        max-height: 250px;
    }
}

.founder-image-container {
    position: relative;
    border: 1px solid rgba(163, 122, 62, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), var(--glow-gold);
    overflow: hidden;
    aspect-ratio: 1 / 1.15;
    width: 90%;
}

.founder-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 15%;
    filter: brightness(108%) sepia(10%) contrast(102%);
    transition: var(--transition-smooth);
}

.founder-image-container:hover .founder-image {
    transform: scale(1.04);
}

.founder-paragraph {
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.founder-signature-box {
    margin-top: 40px;
    border-left: 2px solid var(--primary-gold);
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.founder-signature {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

.founder-title {
    font-size: 0.85rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Founder full-width Banner style */
.founder-banner-container {
    max-width: 1300px;
}

.founder-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: var(--glow-gold);
}

.founder-banner-img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 1;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.founder-banner:hover .founder-banner-img {
    transform: scale(1.02);
}

.founder-banner-overlay {
    display: none; /* Hide the text overlay since text is in the banner itself */
}

/* Homepage Featured Grid */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .featured-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* --- PREMIUM UNIQUE CTA STYLES --- *//* Floating WhatsApp booking button in bottom-right corner */
.floating-whatsapp-cta {
    position: fixed;
    bottom: 35px;
    right: 25px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-bronze) 100%);
    color: #ffffff;
    padding: 11px 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(163, 122, 62, 0.12);
    z-index: 1000;
    border: 1px solid rgba(163, 122, 62, 0.4);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

.floating-whatsapp-cta.whatsapp-hidden {
    opacity: 0;
    transform: translateY(100px) scale(0.9) !important;
    pointer-events: none;
}

.floating-whatsapp-cta:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--glow-gold-intense);
}

.floating-whatsapp-cta svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .floating-whatsapp-cta {
        bottom: 30px;
        right: 20px;
        padding: 8px 14px;
        font-size: 0.65rem;
        gap: 6px;
        box-shadow: 0 6px 16px rgba(163, 122, 62, 0.1);
    }
}}
    .floating-whatsapp-cta svg {
        width: 16px;
        height: 16px;
    }
}

/* --- RESPONSIVE FULL-WIDTH HERO BANNER --- */
.hero-banner-section {
    position: relative;
    width: 100%;
    margin-top: 90px; /* Offset the 90px fixed navbar height */
    background-color: #070707; /* Match the banner black background */
    overflow: hidden;
}

.hero-banner-link {
    display: block;
    width: 100%;
    text-decoration: none;
    line-height: 0;
}

.hero-banner-img-responsive {
    width: 100%;
    height: auto;
    display: block;
    max-height: calc(100vh - 90px); /* Limit height to remaining viewport height */
    object-fit: contain; /* Do not crop any part of the banner graphic/text */
    background-color: #070707;
}

@media (max-width: 991px) {
    .hero-banner-section {
        margin-top: 90px;
    }
}

/* --- NEW PROFESSIONAL SECTIONS STYLES --- */

/* --- PHILOSOPHY STATS GRID --- */
.philosophy-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-gold);
    border-color: var(--primary-gold);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    font-weight: 600;
}

@media (max-width: 768px) {
    .philosophy-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .philosophy-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* --- GOOGLE RATING BADGE & STARS --- */
.google-rating-badge {
    text-align: center;
    margin: 40px auto 20px auto;
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    padding: 25px 35px;
    max-width: 450px;
    box-shadow: var(--glow-gold);
    transition: var(--transition-smooth);
}

.google-rating-badge:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--glow-gold-intense);
}

.google-rating-badge .badge-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: var(--text-light);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.rating-stars {
    color: var(--primary-gold);
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.rating-value {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.testimonial-stars {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-align: center;
}

/* Testimonial Slider Styles */
.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-block;
}

.testimonial-dot.active {
    background-color: #000000 !important;
}

/* --- FAQ ACCORDION --- */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid var(--border-gold);
    background-color: var(--bg-card);
    transition: var(--transition-smooth);
    border-radius: 4px;
}

.faq-item:hover {
    border-color: rgba(163, 122, 62, 0.5);
}

.faq-item.active {
    border-color: var(--primary-gold);
    box-shadow: var(--glow-gold);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 30px;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-gold);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 24px 30px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* --- THE GALLERY SECTION SLIDERS --- */
.slider-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-gold);
}

.slider-section:first-of-type {
    border-top: none;
    padding-top: 20px;
}

.slider-header {
    margin-bottom: 40px;
    text-align: center;
}

.slider-wrapper {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px; /* Space for absolute navigation arrows */
}

@media (max-width: 768px) {
    .slider-wrapper {
        padding: 0 10px;
    }
}

.slider-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    padding: 10px 0;
}

.slider-track::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari/Edge */
}

.slider-slide {
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: start;
    transition: var(--transition-smooth);
}

@media (max-width: 991px) {
    .slider-slide {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .slider-slide {
        flex: 0 0 100%;
    }
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.slider-arrow:hover {
    background-color: var(--primary-gold);
    color: var(--bg-dark);
    border-color: var(--primary-gold);
    box-shadow: var(--glow-gold);
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

@media (max-width: 768px) {
    .slider-arrow {
        display: none; /* Hide arrows on mobile touch screens */
    }
}

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

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background-color: var(--primary-gold);
    width: 20px;
    border-radius: 10px;
}

/* --- GALLERY VIEW TOGGLE SWITCHER --- */
.gallery-view-toggle {
    display: inline-flex;
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 30px;
    padding: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    margin: 0 auto;
}

.view-toggle-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.view-toggle-btn:hover {
    color: var(--text-light);
}

.view-toggle-btn.active {
    background-color: var(--primary-gold);
    color: #ffffff; /* Explicit white text */
    box-shadow: var(--glow-gold);
}

/* --- TIME SLOT GRID & PILLS --- */
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.time-slot-option {
    position: relative;
}

.time-slot-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.time-slot-pill {
    display: block;
    text-align: center;
    padding: 12px 16px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.time-slot-pill:hover {
    border-color: var(--primary-gold);
    background-color: var(--bg-card-hover);
}

.time-slot-option input[type="radio"]:checked + .time-slot-pill {
    background-color: var(--primary-gold);
    color: #ffffff;
    border-color: var(--primary-gold);
    box-shadow: var(--glow-gold);
}

.time-slot-option input[type="radio"]:focus + .time-slot-pill {
    border-color: var(--border-gold-focus);
}

/* --- BODY PIERCING PAGE STYLES --- */
.piercings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.piercing-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03), 0 1px 8px rgba(163, 122, 62, 0.04);
}

.piercing-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-gold);
    box-shadow: var(--glow-gold);
}

.piercing-card-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
    background-color: #f0f0f0;
}

.piercing-card-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.piercing-card:hover .piercing-card-img-wrapper img {
    transform: scale(1.05);
}

.piercing-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.piercing-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.piercing-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.piercing-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(163, 122, 62, 0.1);
}

.piercing-card-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-gold);
}

.piercing-card-btn {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-gold);
    padding-bottom: 2px;
    transition: var(--transition-smooth);
}

.piercing-card-btn:hover {
    color: var(--primary-gold);
    border-bottom-color: transparent;
}

/* --- ANATOMY SECTION STYLES --- */
.anatomy-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 60px;
    margin-bottom: 100px;
}

.anatomy-image-wrapper {
    border: none;
    border-radius: 16px;
    padding: 0;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: none;
}

.anatomy-image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.anatomy-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.anatomy-title-main {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.anatomy-intro {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.anatomy-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.anatomy-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 10px 15px;
    background-color: var(--bg-card);
    border: 1px solid rgba(163, 122, 62, 0.1);
    border-radius: 4px;
}

.anatomy-item-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-gold);
    border-radius: 50%;
}

@media (max-width: 992px) {
    .anatomy-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* --- STUDIO GALLERY STYLES --- */
.studio-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.studio-gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--border-gold);
    cursor: pointer;
    background-color: var(--bg-card);
}

.studio-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.studio-gallery-item:hover img {
    transform: scale(1.05);
}

.studio-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 70%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: opacity 0.3s ease;
}

.studio-gallery-item:hover .studio-gallery-overlay {
    opacity: 1;
}

.studio-gallery-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.05em;
}

/* --- LUXURIOUS STUDIO GALLERY PORTFOLIO --- */
.gallery-hero {
    position: relative;
    padding: 180px 0 100px 0;
    text-align: center;
    background-image: url('assets/images/hero_banner.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-bottom: 1px solid var(--border-gold);
}

.gallery-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.75) 0%, rgba(17, 17, 17, 0.9) 100%);
    z-index: 1;
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .gallery-hero-title {
        font-size: 2.5rem;
    }
}

.gallery-hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-top: 20px;
}

/* Background Texture/Gradient for Gallery Section */
.gallery-main-section {
    background-color: var(--bg-beige);
    background-image: radial-gradient(circle at 50% 50%, rgba(163, 122, 62, 0.03) 0%, transparent 80%),
                      url('data:image/svg+xml,%3Csvg width="80" height="80" viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M40 0l40 40-40 40L0 40z" fill="%23a37a3e" fill-opacity="0.015" fill-rule="evenodd"/%3E%3C/svg%3E');
    padding-bottom: 120px;
    border-bottom: 1px solid var(--border-gold);
}

/* Premium Filter Layout */
.gallery-filter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    margin-bottom: 60px;
    text-align: center;
}

/* Type Toggle Toggles (Category vs Artist) */
.filter-type-selector {
    display: flex;
    background-color: rgba(163, 122, 62, 0.05);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    padding: 6px;
    gap: 5px;
}

.filter-type-btn {
    border: none;
    background: transparent;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    border-radius: 40px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-type-btn.active {
    background-color: var(--primary-gold);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(163, 122, 62, 0.25);
}

/* Category Filter Pills */
.category-filter-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    transition: all 0.4s ease;
}

.filter-pill {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-gold);
    color: var(--text-light);
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 40px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.filter-pill:hover, .filter-pill.active {
    border-color: var(--primary-gold);
    background-color: var(--primary-gold);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(163, 122, 62, 0.15);
    transform: translateY(-2px);
}

/* Artist Circular Avatar Filter Buttons */
.artist-filter-avatars {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
}

.artist-avatar-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.artist-avatar-btn .avatar-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-gold);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.artist-avatar-btn .avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-avatar-btn .avatar-wrapper.all-works-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(163, 122, 62, 0.15);
    color: var(--primary-gold);
}

.artist-avatar-btn:hover .avatar-wrapper.all-works-avatar,
.artist-avatar-btn.active .avatar-wrapper.all-works-avatar {
    background-color: var(--primary-gold);
    color: #ffffff;
}

.artist-btn-info {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.artist-btn-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.artist-btn-role {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 3px;
}

.artist-avatar-btn:hover, .artist-avatar-btn.active {
    border-color: var(--border-gold);
    background-color: var(--bg-dark);
    box-shadow: 0 10px 25px rgba(163, 122, 62, 0.08);
    transform: translateY(-3px);
}

.artist-avatar-btn:hover .avatar-wrapper, .artist-avatar-btn.active .avatar-wrapper {
    border-color: var(--primary-gold);
    box-shadow: 0 0 12px rgba(163, 122, 62, 0.3);
    transform: scale(1.05);
}

/* Pinterest-style Masonry Grid */
.portfolio-masonry {
    column-count: 3;
    column-gap: 30px;
    width: 100%;
    transition: all 0.4s ease;
}

@media (max-width: 991px) {
    .portfolio-masonry {
        column-count: 2;
        column-gap: 20px;
    }
}

@media (max-width: 576px) {
    .portfolio-masonry {
        column-count: 1;
        column-gap: 0;
    }
}

.portfolio-item {
    break-inside: avoid;
    margin-bottom: 30px;
    border-radius: 24px;
    border: 1px solid var(--border-gold);
    overflow: hidden;
    background-color: var(--bg-dark);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.3s ease, 
                box-shadow 0.3s ease;
    position: relative;
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-6px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 35px rgba(163, 122, 62, 0.12), var(--glow-gold-intense);
}

.portfolio-item img {
    display: block;
    width: 100%;
    height: auto;
    transition: var(--transition-smooth);
}

.portfolio-item:hover img {
    transform: scale(1.06);
}

.portfolio-item.hidden-item {
    pointer-events: none;
}

/* --- SECTION DIVIDER ACCENTS --- */
section:not(.hero-banner-section):not(.gallery-hero):not(.artists-hero):not(.about-hero):not(.booking-hero) {
    border-bottom: 1px solid var(--border-gold);
}

/* --- SHIMMER SKELETON LOADER --- */
@keyframes skeleton-shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.skeleton-loading {
    background: linear-gradient(90deg, #FAF7F2 25%, #f3ede2 50%, #FAF7F2 75%) !important;
    background-size: 200% 100% !important;
    animation: skeleton-shimmer 1.6s infinite linear !important;
}

/* Image fades in once loaded */
.lazy-img-fade {
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.lazy-img-fade.loaded {
    opacity: 1;
}

/* --- CURATED ARTIST CAROUSEL CARDS --- */
#curated-artists-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 100%;
    margin-top: 20px;
    transition: var(--transition-smooth);
}

@media (max-width: 991px) {
    #curated-artists-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.artist-card-curated {
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 28px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.artist-card-curated:hover {
    transform: translateY(-8px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(163, 122, 62, 0.06), var(--glow-gold-intense);
}

/* Square Image Slider */
.artist-slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #070707;
}

.artist-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.artist-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.artist-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.artist-slide img:hover {
    transform: scale(1.04);
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(7, 7, 7, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    opacity: 0;
}

.artist-slider-wrapper:hover .slider-arrow {
    opacity: 1;
}

.slider-arrow:hover {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #ffffff;
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    background-color: rgba(7, 7, 7, 0.4);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.slider-dots .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dots .dot.active {
    background-color: var(--primary-gold);
    width: 18px;
    border-radius: 10px;
}

/* Artist Info Bar */
.artist-info-bar {
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-gold);
}

.artist-meta-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.artist-avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-gold);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.artist-avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-details-text {
    display: flex;
    flex-direction: column;
}

.artist-card-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.artist-location {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.artist-meta-right {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.artist-meta-right .tag {
    font-size: 0.7rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-gold);
    border: 1px solid rgba(163, 122, 62, 0.3);
    padding: 4px 10px;
    border-radius: 40px;
    background-color: rgba(163, 122, 62, 0.04);
}

/* ==========================================================================
   MOCKUP REDESIGN EXTENSIONS: EDITORIAL SPLIT THEMES & LAYOUTS
   ========================================================================== */

/* --- SECTION THEMES --- */
.section-dark,
section[style*="var(--bg-dark)"] {
    background-color: #ffffff !important;
    color: #111111 !important;
}

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4, .section-dark h5, .section-dark h6,
.section-dark .section-title, .section-dark .gold-text,
section[style*="var(--bg-dark)"] h1, section[style*="var(--bg-dark)"] h2, section[style*="var(--bg-dark)"] h3,
section[style*="var(--bg-dark)"] .section-title {
    color: #111111 !important;
}

.section-dark p, .section-dark .section-subtitle, .section-dark .feature-desc,
section[style*="var(--bg-dark)"] p, section[style*="var(--bg-dark)"] .section-subtitle {
    color: #555555 !important;
}

.section-dark .divider-gold,
section[style*="var(--bg-dark)"] .divider-gold {
    background-color: rgba(197, 160, 89, 0.4) !important;
}

.section-light,
section[style*="var(--bg-beige)"] {
    background-color: #ffffff !important;
    color: #111111 !important;
}

.section-light h1, .section-light h2, .section-light h3, .section-light h4, .section-light h5, .section-light h6,
.section-light .section-title, .section-light .gold-text,
section[style*="var(--bg-beige)"] h1, section[style*="var(--bg-beige)"] h2, section[style*="var(--bg-beige)"] h3,
section[style*="var(--bg-beige)"] .section-title {
    color: #111111 !important;
}

.section-light p, .section-light .section-subtitle, .section-light .feature-desc,
section[style*="var(--bg-beige)"] p, section[style*="var(--bg-beige)"] .section-subtitle, section[style*="var(--bg-beige)"] .feature-desc {
    color: #555555 !important;
}

.section-light .divider-gold,
section[style*="var(--bg-beige)"] .divider-gold {
    background-color: rgba(197, 160, 89, 0.25) !important;
}

/* --- EDITORIAL NAV OVERHAUL --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    transition: var(--transition-smooth);
    padding: 15px 0;
    height: auto !important; /* Allow dynamic two-row height */
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(197, 160, 89, 0.05);
    border-bottom: 1px solid rgba(197, 160, 89, 0.25);
}

.nav-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.nav-row-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

.nav-socials {
    display: flex;
    gap: 15px;
    align-items: center;
    width: 250px;
}

.nav-socials a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-socials a:hover {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #ffffff;
}

.navbar .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.logo-image {
    height: 56px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.footer-logo-image {
    height: 65px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
    transition: var(--transition-smooth);
}

.navbar .nav-cta {
    width: 250px;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

.navbar .nav-cta span {
    background-color: #111111;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    display: inline-block;
}

.navbar .nav-cta:hover span {
    background-color: var(--primary-gold);
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    justify-content: center;
    width: 100%;
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    padding-top: 10px;
}

.nav-links a {
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    padding: 5px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-gold);
}

/* --- IMAGE HOVER EFFECTS (ALL COLORFUL) --- */
.grayscale-media img,
.gallery-item img,
.testimonial-split-image-wrapper img,
.about-split-image-wrapper img,
.service-item-box img {
    filter: none;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.grayscale-media:hover img,
.gallery-item:hover img,
.style-portrait-image-wrapper:hover img,
.testimonial-split-image-wrapper:hover img,
.about-split-image-wrapper:hover img,
.service-item-box:hover img {
    filter: none;
    transform: scale(1.04);
}

/* --- RESPONSIVE NAVIGATION --- */
@media (max-width: 991px) {
    .navbar {
        padding: 12px 0;
        height: 70px !important;
        display: flex;
        align-items: center;
    }
    
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .nav-row-top {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-socials, .navbar .nav-cta {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
        display: flex !important;
        border-top: none;
        padding-top: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        width: 100%;
        text-align: center;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.35s; }
}

/* --- EDITORIAL HOME SECTIONS LAYOUTS --- */
.hero-split-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
    background-color: var(--bg-dark);
}

.hero-split-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-split-tag {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-gold);
    font-weight: 600;
}

.hero-split-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-split-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 580px;
}

.hero-split-image {
    width: 100%;
    height: auto;
    max-height: 72vh;
    object-fit: cover;
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.services-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.service-item-box {
    border: 1px solid var(--border-gold);
    border-bottom: 4px solid var(--primary-gold);
    padding: 0;
    border-radius: 12px;
    background-color: var(--bg-card);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.service-box-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-bottom: 1px solid var(--border-gold);
}

.service-box-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-box-content {
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-item-box .style-list-link {
    display: inline-block;
    text-align: center;
    padding: 12px 28px;
    border: 1px solid var(--primary-gold);
    border-radius: 50px;
    background-color: transparent;
    color: var(--primary-gold) !important;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: fit-content;
    align-self: flex-start;
}

.service-item-box .style-list-link:hover {
    background-color: var(--primary-gold);
    color: #ffffff !important;
    box-shadow: var(--glow-gold-intense);
    transform: translateY(-2px);
}

.service-item-box:hover {
    border-color: var(--primary-gold);
    transform: translateY(-8px);
    box-shadow: var(--glow-gold-intense);
}

.service-box-icon {
    font-size: 2.2rem;
    color: var(--primary-gold);
}

.service-box-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    text-transform: uppercase;
    color: #000000;
    font-weight: 700;
}

.service-box-desc {
    font-size: 0.85rem;
    color: #555555;
    line-height: 1.6;
}

.about-split-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.about-split-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-split-image {
    width: 100%;
    height: auto;
    display: block;
}

.about-split-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.styles-showcase-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.styles-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.style-list-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    padding: 30px;
    border-radius: 16px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.style-list-item:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: var(--glow-gold);
}

.style-list-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 12px;
    font-weight: 700;
}

.style-list-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

.style-list-link {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.style-list-link:hover {
    color: var(--primary-gold);
}

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

.style-portrait-image-wrapper {
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.style-portrait-image {
    width: 100%;
    height: auto;
    display: block;
}

.style-portrait-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-light);
    margin-top: 15px;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.style-portrait-role {
    font-size: 0.75rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

/* --- PREMIUM CENTERED TESTIMONIAL CARD SLIDER --- */
.testimonials-section {
    padding: 140px 0;
    background-color: var(--bg-beige);
    border-bottom: 1px solid var(--border-gold);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

.testimonial-card-wrapper {
    position: relative;
    background-color: #ffffff;
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    overflow: hidden;
    margin-bottom: 40px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testimonial-card-wrapper:hover {
    border-color: var(--primary-gold);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.1);
}

.testimonial-quote-bg {
    position: absolute;
    font-size: 15rem;
    font-family: serif;
    color: rgba(197, 160, 89, 0.05);
    line-height: 1;
    top: -20px;
    left: 20px;
    user-select: none;
    z-index: 1;
}

.testimonial-card-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.testimonial-slides-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    color: var(--primary-gold);
    font-size: 1.4rem;
    margin-bottom: 25px;
}

.testimonial-slide.active .testimonial-stars span {
    display: inline-block;
    animation: starFadeIn 0.3s ease forwards;
    opacity: 0;
}
.testimonial-slide.active .testimonial-stars span:nth-child(1) { animation-delay: 0.1s; }
.testimonial-slide.active .testimonial-stars span:nth-child(2) { animation-delay: 0.2s; }
.testimonial-slide.active .testimonial-stars span:nth-child(3) { animation-delay: 0.3s; }
.testimonial-slide.active .testimonial-stars span:nth-child(4) { animation-delay: 0.4s; }
.testimonial-slide.active .testimonial-stars span:nth-child(5) { animation-delay: 0.5s; }

@keyframes starFadeIn {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 30px;
    font-weight: 500;
}

.testimonial-user-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bg-beige);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-gold);
    font-size: 1.1rem;
    overflow: hidden;
}

.testimonial-user-info {
    text-align: left;
}

.testimonial-author-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
}

.testimonial-badge {
    font-size: 0.72rem;
    color: #107c41;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 15px;
}

.testimonial-arrow {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 5px 10px;
}

.testimonial-arrow:hover {
    color: var(--primary-gold);
}

.testimonial-dots-bar {
    display: flex;
    gap: 10px;
}

.testimonial-dot-btn {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition-smooth);
}

.testimonial-dot-btn.active {
    background-color: var(--primary-gold);
    transform: scale(1.3);
}

.google-review-cta {
    margin-top: 50px;
    border-top: 1px dashed var(--border-gold);
    padding-top: 30px;
}

.google-review-cta-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

@media (max-width: 991px) {
    .hero-split-container,
    .about-split-container,
    .testimonial-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-split-title {
        font-size: 2.8rem;
    }
    
    .hero-split-desc,
    .hero-split-text {
        align-items: center;
    }

    .styles-showcase-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .style-center-portrait {
        order: -1;
        max-width: 320px;
        margin: 0 auto;
    }
}

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

/* --- LASER SECTION & BEFORE/AFTER SLIDER --- */
.laser-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .laser-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Slider Container Box */
.slider-container-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--border-gold);
    box-shadow: var(--glow-gold);
    user-select: none;
    cursor: ew-resize;
}

.slider-container-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.before-image-wrapper {
    z-index: 1;
}

.after-image-wrapper {
    z-index: 2;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

/* Image Labels */
.image-label {
    position: absolute;
    bottom: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.before-label {
    left: 15px;
}

.after-label {
    right: 15px;
}

/* Slider Drag Handle */
.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: var(--primary-gold);
    z-index: 10;
    transform: translateX(-50%);
    cursor: ew-resize;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.handle-line {
    width: 2px;
    height: 100%;
    background-color: var(--primary-gold);
}

.handle-button {
    width: 44px;
    height: 44px;
    background-color: var(--bg-dark);
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    z-index: 11;
    color: var(--primary-gold);
    font-size: 0.8rem;
}

.handle-button span {
    pointer-events: none;
}

.slider-container-box:hover .handle-button {
    background-color: var(--primary-gold);
    color: var(--bg-dark);
    transform: scale(1.05);
    transition: all 0.3s;
}

/* Studio tour video styling */
.video-player-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Responsive mobile layout for dedicated founder section */
@media (max-width: 991px) {
    #founder-vision .container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center !important;
    }
    #founder-vision .reveal-right {
        text-align: center !important;
    }
    #founder-vision .divider-gold {
        margin: 15px auto 25px auto !important;
    }
    #founder-vision blockquote {
        border-left: none !important;
        border-top: 2px solid var(--primary-gold) !important;
        border-bottom: 2px solid var(--primary-gold) !important;
        padding: 15px 0 !important;
        margin-top: 25px !important;
    }
}

/* Curated Portfolio Grid Layout */
.gallery-grid-curated {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.gallery-item-card {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

@media (max-width: 991px) {
    .gallery-grid-curated {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .gallery-grid-curated {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Before & After Grid Layout */
.before-after-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .before-after-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
    }
}

/* Founder Split Layout */
.founder-split-layout {
    display: flex;
    align-items: center;
    gap: 50px;
}

@media (max-width: 991px) {
    .founder-split-layout {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .founder-image-col {
        flex: 0 0 auto !important;
    }
    .founder-text-col {
        text-align: center !important;
    }
    .founder-text-col .divider-gold.left {
        margin: 15px auto 25px auto !important;
    }
}

/* Footer Social Icons Contrast Fix */
.footer-social-icons a {
    color: #111111 !important;
    border: 1px solid var(--primary-gold) !important;
    background-color: transparent !important;
}

.footer-social-icons a:hover {
    color: #ffffff !important;
    background-color: var(--primary-gold) !important;
    border-color: var(--primary-gold) !important;
}

/* Masterpiece Split Layout */
.masterpiece-split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

@media (max-width: 991px) {
    .masterpiece-split-layout {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .masterpiece-image-col {
        flex: 0 0 auto !important;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .masterpiece-text-col {
        text-align: center !important;
    }
    .masterpiece-text-col .divider-gold.left {
        margin: 15px auto 35px auto !important;
    }
    .masterpiece-text-col blockquote {
        border-left: none !important;
        padding-left: 0 !important;
        border-top: 1px solid var(--border-gold);
        border-bottom: 1px solid var(--border-gold);
        padding: 20px 0 !important;
    }
}

/* Piercing Option Cards */
.piercing-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

@media (max-width: 576px) {
    .piercing-options-grid {
        grid-template-columns: 1fr;
    }
}

.piercing-option-card {
    position: relative;
}

.piercing-option-card input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.piercing-label {
    display: block;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 15px 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.piercing-label strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 5px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.piercing-label span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Checked states for Piercing Cards */
.piercing-option-card input:checked + .piercing-label {
    border-color: var(--primary-gold);
    background-color: var(--primary-gold);
    box-shadow: var(--glow-gold-intense);
}

.piercing-option-card input:checked + .piercing-label strong {
    color: #ffffff;
}

.piercing-option-card input:checked + .piercing-label span {
    color: rgba(255, 255, 255, 0.85);
}

/* Premium Booking Enhancements */
.booking-section-card {
    background-color: #ffffff;
    border: 1px solid rgba(197, 168, 128, 0.25);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.booking-section-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.08);
}

/* Custom Scrollbar for Piercing Grid */
.piercing-options-grid::-webkit-scrollbar {
    width: 6px;
}
.piercing-options-grid::-webkit-scrollbar-track {
    background: #fafafa;
    border-radius: 10px;
}
.piercing-options-grid::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 10px;
}

/* Guidelines Text Contrast */
.piercing-guidelines-box {
    background-color: #fafafa !important;
    border: 1px solid rgba(197, 168, 128, 0.3) !important;
}
.piercing-guidelines-box h4 {
    color: var(--secondary-bronze) !important;
    font-weight: 700 !important;
}
.piercing-guidelines-box p {
    color: #444444 !important;
}

.booking-section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
    padding-bottom: 15px;
}

.booking-section-number {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--primary-gold);
    border: 1.5px solid var(--primary-gold);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0;
}

.booking-section-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
    font-weight: 600;
}

.time-slot-pill {
    display: block;
    background-color: var(--bg-dark);
    border: 1px solid rgba(197, 168, 128, 0.2);
    border-radius: 6px;
    padding: 12px 5px;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.time-slot-option input:checked + .time-slot-pill {
    border-color: var(--primary-gold);
    background-color: var(--primary-gold);
    color: var(--bg-dark);
    font-weight: 600;
    box-shadow: var(--glow-gold);
}

/* Academy Promo Grid Styles */
.academy-promo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    text-align: left;
    margin-bottom: 60px;
}

.academy-promo-card {
    background-color: #ffffff;
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.academy-promo-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 12px 30px rgba(197, 160, 89, 0.1);
}

.academy-promo-img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}

.academy-promo-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.academy-promo-card:hover .academy-promo-img-wrapper img {
    transform: scale(1.06);
}

.academy-promo-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

@media (max-width: 991px) {
    .academy-promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .academy-promo-grid {
        grid-template-columns: 1fr;
    }
}
