/* ============================================
   ELECTRIC LADY TATTOOS — Design System
   Vintage Rock & Roll • Curiosity Cabinet
   Jimi Hendrix-inspired aesthetic
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Custom Properties --- */
:root {
    /* Warm dark palette — gentleman's parlour */
    --black-deep: #0b0907;
    --black: #110e0a;
    --black-warm: #171310;
    --charcoal: #1e1a15;
    --charcoal-light: #262019;
    --brown-dark: #2e2720;
    --brown-mid: #3d332a;
    --brown-light: #554839;
    --cream-dark: #a09080;
    --cream: #c4b5a0;
    --cream-light: #d8cbb8;
    --ivory: #ede6d9;
    --white: #f5f0e8;

    /* Accent — gold from the logo */
    --gold: #c9a84c;
    --gold-light: #ddc06a;
    --gold-bright: #f0d878;
    --gold-glow: rgba(201, 168, 76, 0.4);
    --gold-subtle: rgba(201, 168, 76, 0.1);
    --gold-dark: #a0842e;

    /* Silver accent — from the silver logo */
    --silver: #b8b0a8;
    --silver-light: #d0cac0;

    /* Deep red accent — for warmth */
    --blood: #7a2c2c;
    --blood-subtle: rgba(122, 44, 44, 0.15);

    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    /* Sizing */
    --container-max: 1200px;
    --container-wide: 1400px;
    --nav-height: 80px;

    /* Effects */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.15);
    --shadow-warm: 0 8px 40px rgba(11, 9, 7, 0.6);
    --transition-fast: 0.2s ease;
    --transition-med: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Glass with warm tint */
    --glass-bg: rgba(30, 26, 21, 0.85);
    --glass-border: rgba(201, 168, 76, 0.12);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--gold-light);
}

::selection {
    background: var(--gold);
    color: var(--black-deep);
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.2;
    color: var(--ivory);
}

h1 {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    letter-spacing: 0.06em;
}

h4 {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.accent-text {
    font-family: var(--font-accent);
    font-style: italic;
    text-transform: none;
    letter-spacing: 0.02em;
}

.section-subtitle {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: var(--space-xs);
    letter-spacing: 0.04em;
    font-weight: 300;
}

.gradient-text {
    color: var(--gold);
}

p {
    color: var(--cream);
    margin-bottom: var(--space-sm);
}

/* --- Layout --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-3xl) 0;
    position: relative;
}

.section-dark {
    background-color: var(--black-warm);
}

.section-gradient {
    background: linear-gradient(180deg, var(--black) 0%, var(--charcoal) 50%, var(--black) 100%);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-center {
    text-align: center;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: all var(--transition-med);
    background: transparent;
}

.nav.scrolled {
    background: rgba(11, 9, 7, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: var(--space-xs) 0;
}

.nav-inner {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 50px;
    width: auto;
    transition: opacity var(--transition-fast);
}

.nav-logo:hover img {
    opacity: 0.85;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
    align-items: center;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    padding: var(--space-xs) 0;
    font-weight: 400;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition-med);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--gold);
}

/* Nav CTA button — override link defaults */
.nav-cta.btn-primary {
    color: var(--black-deep) !important;
    background: var(--gold);
    padding: 0.65rem 1.6rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    letter-spacing: 0.15em;
}

.nav-cta.btn-primary::after {
    display: none;
}

.nav-cta.btn-primary:hover {
    background: var(--gold-light);
    color: var(--black-deep) !important;
    box-shadow: var(--shadow-gold);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 1px;
    background: var(--gold);
    transition: all var(--transition-fast);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: var(--black-deep);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-lg);
        padding: var(--space-xl);
        transition: right var(--transition-med);
        border-left: 1px solid var(--glass-border);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0.85rem 2rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-med);
    position: relative;
    font-weight: 500;
}

.btn-primary {
    background: var(--gold);
    color: var(--black-deep);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--black-deep);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold-dark);
}

.btn-outline:hover {
    border-color: var(--gold);
    background: var(--gold-subtle);
    transform: translateY(-2px);
    color: var(--gold-light);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(11, 9, 7, 0.75) 0%,
            rgba(11, 9, 7, 0.45) 35%,
            rgba(11, 9, 7, 0.55) 65%,
            rgba(11, 9, 7, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 var(--space-md);
}

.hero-logo {
    max-width: 420px;
    margin: 0 auto var(--space-lg);
}

.hero-tagline {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--gold);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.06em;
    font-weight: 300;
}

.hero h1 {
    margin-bottom: var(--space-md);
}

.hero-description {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--cream);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    line-height: 1.8;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    opacity: 0.4;
    animation: float 2.5s ease-in-out infinite;
}

.scroll-indicator span {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--cream-dark);
}

.scroll-indicator .arrow {
    width: 16px;
    height: 16px;
    border-right: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    transform: rotate(45deg);
}

@keyframes float {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header h2 {
    margin-bottom: var(--space-sm);
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--cream-dark);
}

/* Ornamental divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: var(--space-sm) auto var(--space-md);
    max-width: 200px;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark));
}

.section-divider::after {
    background: linear-gradient(90deg, var(--gold-dark), transparent);
}

.section-divider .diamond {
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* --- Artist Cards --- */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.artist-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3 / 4;
    border: 1px solid var(--brown-mid);
    transition: transform var(--transition-med), border-color var(--transition-med), box-shadow var(--transition-med);
}

.artist-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-dark);
    box-shadow: var(--shadow-gold);
}

.artist-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.artist-card:hover .artist-card-image {
    transform: scale(1.05);
}

.artist-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            transparent 40%,
            rgba(11, 9, 7, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-lg);
    transition: background var(--transition-med);
}

.artist-card:hover .artist-card-overlay {
    background: linear-gradient(180deg,
            rgba(201, 168, 76, 0.05) 0%,
            rgba(11, 9, 7, 0.95) 100%);
}

.artist-card-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ivory);
    margin-bottom: 4px;
}

.artist-card-specialty {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 300;
}

.artist-card-cta {
    margin-top: var(--space-sm);
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition-med);
}

.artist-card:hover .artist-card-cta {
    opacity: 1;
    transform: translateY(0);
}

/* --- Artist Profile (Single View) --- */
.artist-profile {
    padding-top: calc(var(--nav-height) + var(--space-xl));
}

.artist-profile-header {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: var(--space-xl);
    align-items: start;
    margin-bottom: var(--space-xl);
}

.artist-profile-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1px solid var(--brown-mid);
    transition: border-color var(--transition-med);
}

.artist-profile-photo:hover {
    border-color: var(--gold-dark);
    box-shadow: var(--shadow-gold);
}

.artist-profile-info h1 {
    margin-bottom: var(--space-sm);
}

.artist-profile-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.specialty-tag {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 16px;
    border: 1px solid var(--gold-dark);
    border-radius: var(--radius-sm);
    color: var(--gold);
    background: var(--gold-subtle);
}

.artist-profile-bio {
    color: var(--cream);
    font-family: var(--font-accent);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: var(--space-lg);
    font-weight: 300;
}

.artist-profile-links {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

/* --- Tattoo Styles Section --- */
.styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-md);
}

.style-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    border: 1px solid var(--brown-mid);
    transition: transform var(--transition-med), border-color var(--transition-med), box-shadow var(--transition-med);
}

.style-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-dark);
    box-shadow: var(--shadow-gold);
}

.style-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    filter: brightness(0.6) sepia(0.2);
}

.style-card:hover .style-card-image {
    transform: scale(1.06);
    filter: brightness(0.4) sepia(0.1);
}

.style-card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--space-md);
    z-index: 2;
}

.style-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: var(--space-sm);
    opacity: 0.7;
    color: var(--gold);
}

.style-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-xs);
    transition: color var(--transition-fast);
    letter-spacing: 0.1em;
}

.style-card:hover h3 {
    color: var(--gold);
}

.style-card p {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    color: var(--cream);
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition-med);
    max-width: 280px;
    font-weight: 300;
}

.style-card:hover p {
    opacity: 1;
    transform: translateY(0);
}

/* --- Gallery / Portfolio --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 6px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(201, 168, 76, 0.1);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(11, 9, 7, 0.97);
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    cursor: pointer;
    opacity: 0;
    transition: opacity var(--transition-med);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    border: 1px solid var(--brown-mid);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 1.5rem;
    color: var(--cream);
    cursor: pointer;
    font-family: var(--font-heading);
    letter-spacing: 0.2em;
    transition: color var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--gold);
}

/* --- FAQ Accordion --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: var(--space-lg);
}

.faq-category-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-xs);
    border-bottom: 1px solid var(--brown-mid);
}

.faq-item {
    border-bottom: 1px solid var(--brown-dark);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--ivory);
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 400;
    text-align: left;
    padding: var(--space-md) 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm);
    transition: color var(--transition-fast);
    line-height: 1.5;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question .faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 1px solid var(--brown-mid);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
    color: var(--cream-dark);
    transform: rotate(0deg);
}

.faq-item.active .faq-icon {
    border-color: var(--gold);
    color: var(--gold);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-med), padding var(--transition-med);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: var(--space-md);
}

.faq-answer p {
    color: var(--cream);
    line-height: 1.8;
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 300;
}

/* --- Contact Form --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream-dark);
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--charcoal);
    border: 1px solid var(--brown-mid);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--ivory);
    font-family: var(--font-accent);
    font-size: 1rem;
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px var(--gold-subtle);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a84c' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--brown-light);
}

/* --- Contact Info Panel --- */
.contact-info-panel {
    background: var(--charcoal);
    border: 1px solid var(--brown-mid);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
}

.contact-info-item {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    align-items: start;
}

.contact-info-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 1rem;
}

.contact-info-details h4 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    margin-bottom: 4px;
}

.contact-info-details p {
    color: var(--cream);
    font-family: var(--font-accent);
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: 300;
}

/* --- Map --- */
.map-container {
    width: 100%;
    height: 280px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--brown-mid);
    margin-top: var(--space-lg);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(90%) invert(92%) contrast(85%) sepia(10%);
}

/* --- Footer --- */
.footer {
    background-color: var(--black-deep);
    border-top: 1px solid var(--brown-dark);
    padding: var(--space-xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-brand p {
    font-family: var(--font-accent);
    font-size: 1rem;
    margin-top: var(--space-sm);
    color: var(--cream-dark);
    font-weight: 300;
}

.footer h4 {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-md);
    color: var(--ivory);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-xs);
    font-family: var(--font-accent);
    color: var(--cream-dark);
    font-weight: 300;
}

.footer-links a {
    color: var(--cream-dark);
    font-family: var(--font-accent);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--brown-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream-dark);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-subtle);
}

.footer-bottom {
    border-top: 1px solid var(--brown-dark);
    padding-top: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-bottom p {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    color: var(--brown-light);
    margin: 0;
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.97);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) {
    transition-delay: 0.06s;
}

.stagger-children .reveal:nth-child(2) {
    transition-delay: 0.12s;
}

.stagger-children .reveal:nth-child(3) {
    transition-delay: 0.18s;
}

.stagger-children .reveal:nth-child(4) {
    transition-delay: 0.24s;
}

.stagger-children .reveal:nth-child(5) {
    transition-delay: 0.3s;
}

.stagger-children .reveal:nth-child(6) {
    transition-delay: 0.36s;
}

.stagger-children .reveal:nth-child(7) {
    transition-delay: 0.42s;
}

.stagger-children .reveal:nth-child(8) {
    transition-delay: 0.48s;
}

.stagger-children .reveal:nth-child(9) {
    transition-delay: 0.54s;
}

/* --- Film Grain Overlay (vintage feel) --- */
.grain-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    mix-blend-mode: overlay;
}

/* --- Decorative Elements --- */
.glow-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
    margin: var(--space-xl) 0;
}

.ornament {
    text-align: center;
    color: var(--gold-dark);
    font-size: 1.5rem;
    letter-spacing: 0.5em;
    margin: var(--space-md) 0;
    opacity: 0.5;
}

/* --- Instagram Section --- */
.instagram-section {
    background: var(--black-warm);
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--brown-dark);
    border-bottom: 1px solid var(--brown-dark);
}

.instagram-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
}

.instagram-grid .gallery-item {
    aspect-ratio: 1;
    border-radius: 0;
}

/* --- Testimonials --- */
.testimonials-track {
    display: flex;
    gap: var(--space-lg);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: var(--space-sm) 0 var(--space-lg);
    scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 400px;
    scroll-snap-align: start;
    background: var(--charcoal);
    border: 1px solid var(--brown-mid);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-accent);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.2;
    position: absolute;
    top: 8px;
    left: 20px;
    line-height: 1;
}

.testimonial-text {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--cream);
    line-height: 1.8;
    margin-bottom: var(--space-md);
    font-style: italic;
    font-weight: 300;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--cream-dark);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.8rem;
    margin-top: 4px;
    letter-spacing: 2px;
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--gold-dark);
    background: var(--charcoal);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-med);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--black-deep);
    transform: translateY(-3px);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .artist-profile-header {
        grid-template-columns: 280px 1fr;
    }
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .artist-profile-header {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .artist-profile-photo {
        max-width: 280px;
        margin: 0 auto;
    }

    .artist-profile-specialties {
        justify-content: center;
    }

    .artist-profile-links {
        justify-content: center;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonial-card {
        flex: 0 0 85vw;
    }

    .styles-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.featured {
        grid-column: span 1;
        grid-row: span 1;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-logo {
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section {
        padding: var(--space-xl) 0;
    }
}

/* --- Utilities --- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.no-scroll {
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}