
:root {
    --bg-dark: hsl(0, 0%, 4%);
    --bg-card: hsl(0, 0%, 8%);
    --bg-card-hover: hsl(0, 0%, 11%);
    --primary: hsl(355, 75%, 45%);
    --primary-hover: hsl(355, 85%, 52%);
    --primary-glow: rgba(179, 28, 41, 0.4);
    --text-white: hsl(0, 0%, 96%);
    --text-muted: hsl(0, 0%, 68%);
    --border-color: hsl(0, 0%, 14%);
    --gold: hsl(45, 85%, 52%);
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* Base Settings */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    color: var(--text-white);
    background-color: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 5px;
    border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Sticky Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(4, 4, 4, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(4, 4, 4, 0.95);
    padding: 5px 0;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    margin-right: auto;
}

.logo img {
    display: block;
    width: auto;
    height: 60px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-item a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 5px 0;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-item a:hover::after,
.nav-item.active a::after {
    width: 100%;
}

.nav-item a:hover {
    color: var(--primary);
}

/* Mobile Navigation Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-white);
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    left: 50%;
    width: 100vw;
    max-width: none;
    margin-left: -50vw;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.85)), url('images/hero.png') no-repeat center center/cover;
    padding: 0;
    overflow: hidden;
}

.hero-content {
    width: min(100% - 40px, 800px);
    z-index: 10;
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.7);
}

.hero-desc {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 15px 35px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-white);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-color);
    margin-left: 15px;
}

.btn-outline:hover {
    background-color: var(--text-white);
    color: var(--bg-dark);
    border-color: var(--text-white);
    transform: translateY(-2px);
}

/* Sections General Layout */
section {
    padding: 100px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    margin: 20px auto 0 auto;
}

/* About Us Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 300;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.feature-box {
    border-left: 3px solid var(--primary);
    padding-left: 15px;
}

.feature-box h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.feature-box p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    height: 450px;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-image:hover .about-img {
    transform: scale(1.05);
}

/* Artists Section */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
}

.artist-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.artist-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.artist-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.artist-name {
    font-size: 1.6rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.artist-role {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    background-color: rgba(179, 28, 41, 0.1);
    padding: 3px 10px;
    border-radius: 4px;
}

.artist-specialty {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 20px;
}

.artist-prices {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.price-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.price-row strong {
    color: var(--text-white);
}

.artist-btn {
    width: 100%;
    text-align: center;
    padding: 12px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.artist-card:hover .artist-btn {
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 12px var(--primary-glow);
}

/* Laser Removal Section */
.laser-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.laser-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    height: 400px;
}

.laser-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.laser-image:hover .laser-img {
    transform: scale(1.05);
}

.laser-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.laser-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 300;
}

.laser-info-list {
    list-style: none;
    margin-bottom: 30px;
}

.laser-info-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-white);
}

.laser-info-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Gallery Section */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 8px 22px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary);
    color: var(--text-white);
    background-color: var(--primary);
    box-shadow: 0 4px 10px var(--primary-glow);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.gallery-item.hide {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.85));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.gallery-artist {
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.05rem;
}

.faq-question span {
    font-family: var(--font-body);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 25px;
}

/* Contact & Interactive Calculator Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 30px;
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 22px;
}

.detail-icon {
    color: var(--primary);
    font-size: 1.3rem;
    margin-right: 20px;
    margin-top: 3px;
}

.detail-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-white);
}

.detail-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    white-space: pre-line;
}

/* Interactive Calculator Container */
.calculator-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.calculator-card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    text-align: center;
}

.calculator-card p.calc-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text-white);
}

.form-control {
    width: 100%;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    padding: 12px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-radius: 4px;
    outline: none;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 8px var(--primary-glow);
}

/* Range Slider Styling */
.range-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.range-slider {
    flex-grow: 1;
    -webkit-appearance: none;
    height: 6px;
    border-radius: 3px;
    background: var(--border-color);
    outline: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.range-slider::-webkit-slider-thumb:hover {
    background: var(--primary-hover);
    transform: scale(1.2);
}

.range-val {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
    min-width: 60px;
}

/* Price Estimate Display */
.price-display {
    background-color: var(--bg-dark);
    border: 1px dashed var(--border-color);
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 25px;
}

.price-display span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.price-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 5px;
}

/* Footer styling */
.footer {
    background-color: hsl(0, 0%, 2%);
    border-top: 1px solid var(--border-color);
    padding: 50px 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.footer-logo img {
    display: block;
    width: min(220px, 62vw);
    height: auto;
    object-fit: contain;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition-fast);
}

.social-link svg { width: 21px; height: 21px; display: block; }

.social-link:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Reviews Panel */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 8px;
    position: relative;
}

.review-stars {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 20px;
    font-weight: 300;
}

.review-author {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .about-grid, .laser-container, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image, .laser-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--bg-dark);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 1000;
        transition: right 0.4s ease;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .btn-outline {
        margin-left: 0;
        margin-top: 15px;
        display: block;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 480px) {
    .logo img { height: 50px; }
}


/* Responsive hero video: the image background remains the no-video fallback. */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.28) 52%, rgba(0, 0, 0, 0.5)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18) 68%);
}

@media (max-width: 768px) {
    .hero-video {
        object-position: center center;
    }

    .hero::after {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.36));
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-video {
        display: none;
    }
}

/* Artist portraits and intentional image placeholders */
.artist-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    margin: 0;
    overflow: hidden;
    background: #111;
    border-bottom: 1px solid var(--border-color);
}

.artist-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
    filter: grayscale(1) contrast(1.04);
    transition: transform .6s cubic-bezier(.16, 1, .3, 1), filter .35s ease;
}

.artist-card:hover .artist-photo img {
    transform: scale(1.025);
    filter: grayscale(.72) contrast(1.05);
}

.artist-placeholder {
    display: grid;
    place-content: center;
    gap: 12px;
    text-align: center;
    isolation: isolate;
    background:
        radial-gradient(circle at 68% 24%, rgba(179, 28, 41, .24), transparent 32%),
        linear-gradient(145deg, #171717, #090909 70%);
}

.artist-placeholder::before,
.artist-placeholder::after {
    content: '';
    position: absolute;
    inset: 9%;
    border: 1px solid rgba(255,255,255,.08);
    transform: rotate(5deg);
    z-index: -1;
}

.artist-placeholder::after {
    transform: rotate(-5deg);
    border-color: rgba(179, 28, 41, .24);
}

.artist-placeholder span {
    font: 500 clamp(4rem, 8vw, 6.5rem)/1 var(--font-heading);
    letter-spacing: .08em;
    color: rgba(255,255,255,.82);
}

.artist-placeholder small {
    color: var(--text-muted);
    font-size: .68rem;
    letter-spacing: .22em;
    text-transform: uppercase;
}


/* Real artist portfolio presentation */
.section-intro { max-width: 720px; margin: -30px auto 50px; color: var(--text-muted); text-align: center; }
.artist-work-preview { display:grid; grid-template-columns:1.35fr .65fr; grid-template-rows:1fr 1fr; height:340px; gap:3px; background:#050505; overflow:hidden; }
.artist-work-preview a { overflow:hidden; min-width:0; }
.artist-work-preview a:first-child { grid-row:1 / 3; }
.artist-work-preview img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .55s cubic-bezier(.16,1,.3,1), filter .3s ease; }
.artist-work-preview a:hover img { transform:scale(1.045); filter:brightness(1.08); }
.artist-actions { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.artist-btn-secondary { background:rgba(255,255,255,.03); }
.gallery-item { appearance:none; padding:0; color:inherit; font:inherit; text-align:left; background:#111; }
.gallery-overlay { pointer-events:none; }
.portfolio-lightbox { position:fixed; inset:0; margin:auto; width:min(94vw,1100px); max-width:none; height:min(92vh,900px); max-height:92vh; padding:0; border:1px solid rgba(255,255,255,.16); border-radius:8px; background:#070707; color:#fff; overflow:hidden; box-sizing:border-box; }
.portfolio-lightbox::backdrop { background:rgba(0,0,0,.9); backdrop-filter:blur(8px); }
.portfolio-lightbox figure { width:100%; height:100%; display:grid; place-items:center; padding:42px 64px 54px; }
.portfolio-lightbox figure img { max-width:100%; max-height:calc(92vh - 100px); width:auto; height:auto; object-fit:contain; }
.portfolio-lightbox figcaption { position:absolute; left:0; right:0; bottom:15px; text-align:center; color:var(--text-muted); font-size:.8rem; }
.lightbox-close,.lightbox-nav { position:absolute; z-index:3; border:0; color:#fff; background:rgba(0,0,0,.55); cursor:pointer; display:grid; place-items:center; }
.lightbox-close { right:12px; top:12px; width:42px; height:42px; border-radius:50%; font-size:1.7rem; }
.lightbox-nav { top:50%; translate:0 -50%; width:46px; height:72px; font-size:2.4rem; }
.lightbox-prev { left:8px; }.lightbox-next { right:8px; }
.artist-page { padding-top:92px; }
.artist-profile-hero, .artist-portfolio-section, .artist-page-prices { width:100%; max-width:none; }
.artist-page-nav { display:flex; gap:24px; margin-left:auto; text-transform:uppercase; letter-spacing:.1em; font-size:.75rem; }
.artist-profile-hero { min-height:72vh; display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:clamp(35px,7vw,110px); padding:clamp(70px,9vw,130px) max(30px,calc((100vw - 1300px)/2)); background:#090909; }
.artist-profile-copy h1 { font-size:clamp(4rem,9vw,9rem); line-height:.88; margin-bottom:25px; }
.artist-profile-copy p { color:var(--text-muted); max-width:520px; margin-bottom:30px; }
.artist-profile-hero>img { width:100%; height:min(66vh,760px); object-fit:cover; border:1px solid var(--border-color); }
.artist-portfolio-section { padding:clamp(80px,10vw,140px) max(24px,calc((100vw - 1300px)/2)); }
.portfolio-masonry { columns:3 300px; column-gap:18px; }
.portfolio-page-item { display:block; width:100%; padding:0; margin:0 0 18px; break-inside:avoid; border:0; background:#111; cursor:zoom-in; overflow:hidden; }
.portfolio-page-item img { display:block; width:100%; height:auto; transition:transform .45s ease,filter .3s ease; }
.portfolio-page-item:hover img { transform:scale(1.018); filter:brightness(1.07); }
.artist-page-prices { display:grid; grid-template-columns:1fr 1fr; gap:clamp(40px,9vw,120px); padding:clamp(80px,10vw,140px) max(24px,calc((100vw - 1100px)/2)); background:var(--bg-card); }
.artist-page-prices .artist-prices { max-width:520px; width:100%; }
.artist-page-prices .btn { margin-top:28px; }
@media(max-width:760px){.artist-work-preview{height:280px}.artist-actions{grid-template-columns:1fr}.artist-profile-hero,.artist-page-prices{grid-template-columns:1fr}.artist-profile-hero{padding-top:55px}.artist-profile-hero>img{height:55vh}.artist-page-nav{gap:12px}.portfolio-lightbox figure{padding:50px 42px}.lightbox-nav{width:38px}.section-intro{margin-top:-20px}.portfolio-masonry{columns:2 150px;column-gap:10px}.portfolio-page-item{margin-bottom:10px}}

.legal-content{width:min(900px,calc(100% - 40px));margin:auto;padding:150px 0 80px}.legal-content>header{margin-bottom:50px}.legal-content h1{font-family:var(--font-heading);font-size:clamp(2.5rem,7vw,5rem);text-transform:uppercase;line-height:1;margin:10px 0 18px}.legal-content section{padding:28px 0;border-top:1px solid rgba(255,255,255,.12)}.legal-content h2{font-family:var(--font-heading);font-size:1.45rem;text-transform:uppercase;margin-bottom:12px}.legal-content p,.legal-content address{color:var(--text-muted);line-height:1.8;font-style:normal}.legal-content p+p{margin-top:12px}.legal-content a,.legal-links a,.form-privacy-note a{color:var(--primary);text-decoration:underline;text-underline-offset:3px}.legal-links{display:flex;justify-content:center;flex-wrap:wrap;gap:18px;margin:18px 0;font-size:.85rem}.form-privacy-note{margin:16px 0;color:var(--text-muted);font-size:.78rem;line-height:1.55}@media(max-width:700px){.legal-content{width:min(100% - 28px,900px);padding-top:120px}}
.aftercare-page .legal-content>header .btn{display:inline-flex;margin-top:24px}.aftercare-alert{padding:22px 24px;margin:0 0 22px;border:1px solid var(--primary);border-left:5px solid var(--primary);background:rgba(240,122,37,.09)}.aftercare-alert h2{color:var(--primary);margin-bottom:8px}.aftercare-steps{counter-reset:aftercare;list-style:none;padding:0}.aftercare-steps li{position:relative;padding:18px 18px 18px 58px;margin:0;border-top:1px solid rgba(255,255,255,.1);color:var(--text-muted);line-height:1.75}.aftercare-steps li::before{counter-increment:aftercare;content:counter(aftercare);position:absolute;left:10px;top:17px;width:30px;height:30px;display:grid;place-items:center;border:1px solid var(--primary);border-radius:50%;color:var(--primary);font-family:var(--font-heading);font-weight:700}.aftercare-links{display:flex;justify-content:center;flex-wrap:wrap;gap:16px;margin:18px 0}.aftercare-links a{color:var(--primary);text-decoration:underline;text-underline-offset:3px}.form-honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}.form-status{min-height:1.5em;margin-top:14px;font-size:.85rem}.form-status-success{color:#7ee2a8}.form-status-error{color:#ff8f8f}#btn-submit-booking:disabled{opacity:.65;cursor:wait}