/* ═══════════════════════════════════════════════════════════
   L'Atelier du Tatouage — Tattoo Portfolio
   Dark Theme with Gold Accent
   ═══════════════════════════════════════════════════════════ */

/* ─── Variables ───────────────────────────────────────────── */
:root {
    --bg: #0a0a0a;
    --bg-light: #1a1a1a;
    --bg-card: #161616;
    --bg-card-hover: #1e1e1e;
    --text: #f0ece6;
    --text-muted: #888;
    --gold: #c9a227;
    --gold-hover: #d4ad2e;
    --gold-dark: #a88420;
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.12);
    --shadow: rgba(0, 0, 0, 0.4);
    --font-heading: 'Bebas Neue', cursive;
    --font-body: 'Inter', sans-serif;
    --transition: 0.3s ease;
    --container-max: 1200px;
}

/* ─── Font Fallbacks (reduce CLS) ─────────────────────────── */
@font-face {
    font-family: 'Bebas Neue Fallback';
    src: local('Arial');
    size-adjust: 140%;
    ascent-override: 100%;
    descent-override: 22%;
    line-gap-override: 0%;
}

@font-face {
    font-family: 'Inter Fallback';
    src: local('Arial');
    size-adjust: 107%;
    ascent-override: 90%;
    descent-override: 22%;
    line-gap-override: 0%;
}

/* ═══════════════════════════════════════════════════════════
   1. RESET & BASE
   ═══════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    color-scheme: dark;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading), 'Bebas Neue Fallback', cursive;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 2px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ═══════════════════════════════════════════════════════════
   2. UTILITY
   ═══════════════════════════════════════════════════════════ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: var(--font-heading), 'Bebas Neue Fallback', cursive;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.section-title.centered {
    display: block;
    text-align: center;
}

.section-title.centered::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .section-title {
    display: block;
    text-align: center;
}

.section-header .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-header .section-subtitle {
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* ═══════════════════════════════════════════════════════════
   3. SKIP LINK & ACCESSIBILITY
   ═══════════════════════════════════════════════════════════ */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--bg);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    z-index: 9999;
    border-radius: 0 0 8px 8px;
    transition: top 0.3s ease;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.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;
}

/* ═══════════════════════════════════════════════════════════
   4. NAVBAR
   ═══════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: background 0.5s ease, backdrop-filter 0.5s ease, box-shadow 0.5s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    transition: padding 0.3s ease;
}

.navbar.scrolled .nav-content {
    padding: 1rem 0;
}

.logo {
    font-family: var(--font-heading), 'Bebas Neue Fallback', cursive;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: opacity var(--transition);
}

.logo:hover {
    opacity: 0.8;
}

.logo-ink {
    color: var(--text);
}

.logo-master {
    color: var(--gold);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: rgba(240, 236, 230, 0.6);
    font-family: var(--font-body), sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ─── Burger Menu ─────────────────────────────────────────── */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s ease;
    position: relative;
    z-index: 1001;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.05);
}

.menu-toggle span {
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.menu-toggle span:nth-child(1) { transform: translateY(-7px); }
.menu-toggle span:nth-child(2) { width: 16px; }
.menu-toggle span:nth-child(3) { transform: translateY(7px); }

.menu-toggle.active span { background: var(--gold); }
.menu-toggle.active span:nth-child(1) { transform: translateY(0) rotate(45deg); width: 26px; }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(0) rotate(-45deg); width: 26px; }

/* ═══════════════════════════════════════════════════════════
   5. HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(10, 10, 10, 0.7) 40%,
        rgba(10, 10, 10, 0.4) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 2rem;
}

.hero-subtitle {
    font-family: var(--font-body), sans-serif;
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-heading), 'Bebas Neue Fallback', cursive;
    font-size: clamp(3.5rem, 9vw, 6rem);
    line-height: 0.95;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.1rem;
    color: rgba(240, 236, 230, 0.7);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════
   6. BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.5rem;
    background: var(--gold);
    color: var(--bg);
    font-family: var(--font-body), sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.25);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.5rem;
    background: transparent;
    color: var(--gold);
    font-family: var(--font-body), sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.25);
}

.btn-large {
    padding: 1.1rem 3rem;
    font-size: 0.9rem;
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════════════════
   7. STYLES SECTION
   ═══════════════════════════════════════════════════════════ */
.styles-section {
    padding: 7rem 0;
    background: var(--bg);
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.style-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: all var(--transition);
}

.style-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.style-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.style-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.style-text {
    padding: 1.25rem 1rem;
}

.style-card h3 {
    font-family: var(--font-heading), 'Bebas Neue Fallback', cursive;
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.style-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   8. ABOUT PREVIEW
   ═══════════════════════════════════════════════════════════ */
.about-preview,
.about-section {
    padding: 7rem 0;
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    filter: brightness(0.9);
    transition: filter 0.5s ease;
}

.about-image:hover img {
    filter: brightness(1);
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-hover) 50%, var(--bg-card) 100%);
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(201, 162, 39, 0.05) 0%, transparent 50%);
}

.about-image-placeholder::after {
    content: '';
    width: 80px;
    height: 80px;
    border: 2px solid rgba(201, 162, 39, 0.2);
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: -2rem;
    bottom: -2rem;
    border: 2px solid var(--gold);
    opacity: 0.3;
    z-index: -1;
    transition: opacity var(--transition);
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading), 'Bebas Neue Fallback', cursive;
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   9. PROCESS SECTION
   ═══════════════════════════════════════════════════════════ */
.process-section {
    padding: 7rem 0;
    background: var(--bg);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-heading), 'Bebas Neue Fallback', cursive;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all var(--transition);
}

.process-step:hover .process-number {
    background: var(--gold);
    color: var(--bg);
}

.process-step h3 {
    font-family: var(--font-heading), 'Bebas Neue Fallback', cursive;
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.flash-process .process-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* ═══════════════════════════════════════════════════════════
   10. FLASH PREVIEW / FLASH SECTION
   ═══════════════════════════════════════════════════════════ */
.flash-preview,
.flash-section {
    padding: 7rem 0;
    background: var(--bg-light);
}

.flash-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.flash-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: all var(--transition);
}

.flash-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.flash-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.flash-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.flash-card:hover .flash-image img {
    transform: scale(1.05);
}

.flash-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.flash-badge.available {
    background: rgba(34, 197, 94, 0.9);
    color: #fff;
}

.flash-badge.reserved {
    background: rgba(100, 100, 100, 0.9);
    color: rgba(255, 255, 255, 0.6);
}

.flash-info {
    padding: 1.25rem;
}

.flash-name {
    font-family: var(--font-heading), 'Bebas Neue Fallback', cursive;
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.flash-size {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.flash-price {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ─── Flash Info Bar ──────────────────────────────────────── */
.flash-info-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
}

.flash-info-item {
    text-align: center;
    padding: 1rem;
}

.flash-info-item svg {
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.flash-info-item h4 {
    font-family: var(--font-heading), 'Bebas Neue Fallback', cursive;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.flash-info-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   11. TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.testimonials-section {
    padding: 7rem 0;
    background: var(--bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2rem;
    transition: all var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(201, 162, 39, 0.3);
    background: var(--bg-card-hover);
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
    color: var(--gold);
}

.testimonial-text {
    color: rgba(240, 236, 230, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 2rem;
    color: var(--gold);
    font-style: normal;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.testimonial-author-info h4 {
    font-family: var(--font-body), sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

.testimonial-author-info p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ═══════════════════════════════════════════════════════════
   12. CTA SECTION
   ═══════════════════════════════════════════════════════════ */
.cta-section {
    padding: 6rem 0;
    background: var(--bg-light);
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-heading), 'Bebas Neue Fallback', cursive;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ═══════════════════════════════════════════════════════════
   13. GALLERY PAGE
   ═══════════════════════════════════════════════════════════ */
.gallery-section {
    padding: 4rem 0 7rem;
    background: var(--bg);
}

.filters,
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.8rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-family: var(--font-body), sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition);
}

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

.filter-btn.active {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 2px;
    aspect-ratio: 4 / 5;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0, 0.25, 1), filter 0.5s ease;
    filter: brightness(0.8);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(10, 10, 10, 0.3) 40%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    color: white;
}

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

.gallery-overlay h3 {
    font-family: var(--font-heading), 'Bebas Neue Fallback', cursive;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
    transform: translateY(10px);
    transition: transform 0.4s ease 0.05s;
}

.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0);
}

.gallery-overlay p {
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: translateY(10px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   14. LIGHTBOX
   ═══════════════════════════════════════════════════════════ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 85%;
    max-height: 82vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all var(--transition);
    z-index: 10001;
    line-height: 1;
}

.lightbox-close:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.3rem;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all var(--transition);
    z-index: 10001;
}

.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 162, 39, 0.08);
}

.lightbox-caption {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
}

.lightbox-caption h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.lightbox-caption p {
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.lightbox-counter {
    position: absolute;
    top: 1.8rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
    letter-spacing: 3px;
}

/* ═══════════════════════════════════════════════════════════
   15. ABOUT PAGE
   ═══════════════════════════════════════════════════════════ */
.about-full-section {
    padding: 4rem 0 7rem;
    background: var(--bg);
}

.about-full-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-full-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.about-full-image img {
    width: 100%;
    height: auto;
    filter: brightness(0.9);
}

.about-full-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.about-full-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Philosophy Cards */
.philosophy-section {
    margin-bottom: 5rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.philosophy-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition);
}

.philosophy-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.philosophy-card svg {
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.philosophy-card h3 {
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.philosophy-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Studio Section */
.studio-section {
    margin-bottom: 5rem;
}

.studio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.studio-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--border);
}

.studio-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 800px;
}

/* ═══════════════════════════════════════════════════════════
   16. FAQ ACCORDION
   ═══════════════════════════════════════════════════════════ */
.faq-section {
    padding: 5rem 0;
    background: var(--bg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    background: none;
    border: none;
    color: var(--text);
    font-family: var(--font-body), sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

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

/* ═══════════════════════════════════════════════════════════
   17. CONTACT PAGE
   ═══════════════════════════════════════════════════════════ */
.contact-section {
    padding: 4rem 0 7rem;
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 2px;
}

.contact-item h4 {
    font-family: var(--font-body), sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0.3rem;
}

.contact-item p,
.contact-item a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-item a:hover {
    color: var(--gold);
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: rgba(240, 236, 230, 0.6);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
    font-weight: 300;
}

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

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-status {
    margin-top: 1rem;
    padding: 0;
    text-align: center;
    font-size: 0.9rem;
    min-height: 1.5em;
    transition: all var(--transition);
}

.form-status.success {
    color: #6fcf97;
    padding: 1rem;
    background: rgba(111, 207, 151, 0.08);
    border: 1px solid rgba(111, 207, 151, 0.15);
    border-radius: 4px;
}

.form-status.error {
    color: #eb5757;
    padding: 1rem;
    background: rgba(235, 87, 87, 0.08);
    border: 1px solid rgba(235, 87, 87, 0.15);
    border-radius: 4px;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    margin-top: 0.5rem;
    background: var(--gold);
    color: var(--bg);
    border: 2px solid var(--gold);
    font-family: var(--font-body), sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-submit:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.2);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ═══════════════════════════════════════════════════════════
   18. PAGE HERO
   ═══════════════════════════════════════════════════════════ */
.page-hero {
    padding: 10rem 0 4rem;
    background: var(--bg-light);
    text-align: center;
    position: relative;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.page-hero h1 {
    font-family: var(--font-heading), 'Bebas Neue Fallback', cursive;
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: 5px;
    margin-bottom: 1rem;
}

.page-hero p {
    color: var(--text-muted);
    font-size: 1rem;
    letter-spacing: 1px;
    max-width: 500px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   18b. ERROR PAGES
   ═══════════════════════════════════════════════════════════ */
.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 0 4rem;
}

.error-page .container {
    max-width: 600px;
}

.error-code {
    display: block;
    font-family: var(--font-heading), 'Bebas Neue Fallback', cursive;
    font-size: clamp(6rem, 15vw, 10rem);
    line-height: 1;
    color: var(--gold);
    letter-spacing: 8px;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.error-title {
    font-family: var(--font-heading), 'Bebas Neue Fallback', cursive;
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.error-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════
   19. FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
    background: var(--bg-light);
    color: var(--text);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-heading {
    font-family: var(--font-heading), 'Bebas Neue Fallback', cursive;
    color: var(--gold);
    margin-bottom: 1.25rem;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-section a {
    color: var(--text-muted);
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-brand .footer-logo-text {
    font-family: var(--font-heading), 'Bebas Neue Fallback', cursive;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.footer-brand .footer-logo-text .logo-ink {
    color: var(--text);
}

.footer-brand .footer-logo-text .logo-master {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.footer-credit {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    vertical-align: middle;
}

.footer-credit:hover {
    color: var(--gold-hover);
}

.footer-credit-logo {
    height: 36px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-credit:hover .footer-credit-logo {
    transform: scale(1.1);
}

.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    font-size: 0.85rem;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--gold);
}

.footer-legal .separator {
    color: rgba(240, 236, 230, 0.3);
}

/* ═══════════════════════════════════════════════════════════
   20. DEMO BANNER
   ═══════════════════════════════════════════════════════════ */
.demo-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-top: 1px solid rgba(201, 162, 39, 0.3);
    padding: 0.65rem 1.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.demo-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.demo-banner-badge {
    background: var(--gold);
    color: #0a0a0a;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 2px;
    flex-shrink: 0;
}

.demo-banner p {
    color: rgba(240, 236, 230, 0.7);
    font-size: 0.8rem;
    margin: 0;
}

.demo-banner p a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.demo-banner p a:hover {
    color: var(--gold-hover);
}

.demo-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--gold);
    color: #0a0a0a;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.demo-banner-btn:hover {
    background: var(--gold-hover);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(201, 162, 39, 0.3);
}

.demo-banner-btn svg {
    flex-shrink: 0;
}

/* Offset footer so it's not hidden behind banner */
.footer {
    padding-bottom: 5rem;
}

/* ═══════════════════════════════════════════════════════════
   21. LEGAL PAGES
   ═══════════════════════════════════════════════════════════ */
.legal-section {
    padding: 8rem 0 4rem;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-header h1 {
    font-family: var(--font-heading), 'Bebas Neue Fallback', cursive;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content article {
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    font-family: var(--font-heading), 'Bebas Neue Fallback', cursive;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.legal-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.legal-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.legal-content li {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
}

.legal-content li::before {
    content: '\2014';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.legal-content a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--gold-hover);
}

.legal-content strong {
    color: var(--text);
}

.legal-back {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════════════════
   22. RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* ─── Tablet (768px) ─────────────────────────────────────── */
@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    /* Burger menu visible */
    .menu-toggle {
        display: flex;
    }

    /* Mobile menu */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: 1rem;
        z-index: 999;
        overflow-y: auto;
        clip-path: circle(0% at calc(100% - 44px) 36px);
        transition: clip-path 0.7s cubic-bezier(0.65, 0, 0.35, 1);
        visibility: hidden;
    }

    .nav-menu.active {
        clip-path: circle(150% at calc(100% - 44px) 36px);
        visibility: visible;
    }

    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.35s; }

    .nav-menu .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        color: rgba(255, 255, 255, 0.8);
        display: block;
        text-align: center;
        letter-spacing: 3px;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: var(--gold);
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    /* Hero */
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Grids to 3 columns for 5 style cards */
    .styles-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .about-full-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image::after {
        display: none;
    }

    .philosophy-grid {
        grid-template-columns: 1fr 1fr;
    }

    .studio-grid {
        grid-template-columns: 1fr;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Flash info bar */
    .flash-info-bar {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-legal .separator {
        display: none;
    }

    /* Flash process 3-col to 2-col */
    .flash-process .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Sections padding */
    .styles-section,
    .about-section,
    .about-preview,
    .about-full-section,
    .process-section,
    .flash-section,
    .flash-preview,
    .testimonials-section,
    .cta-section,
    .gallery-section,
    .contact-section {
        padding: 5rem 0;
    }

    /* Lightbox mobile */
    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .lightbox-prev { left: 0.75rem; }
    .lightbox-next { right: 0.75rem; }

    .lightbox img {
        max-width: 95%;
    }

    /* Demo banner */
    .demo-banner-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* ─── Small Mobile (480px) ────────────────────────────────── */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    /* All grids single column */
    .styles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid,
    .flash-process .process-grid,
    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .filters {
        gap: 0.3rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   23. ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

/* ─── Accessibility: Reduced Motion ───────────────────────── */
@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;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .gallery-item:hover img {
        transform: none;
    }

    .lightbox,
    .nav-menu {
        transition: none;
    }

    .nav-menu li {
        transition: none;
        opacity: 1;
        transform: none;
    }

    .flash-card:hover,
    .style-card:hover,
    .philosophy-card:hover,
    .testimonial-card:hover {
        transform: none;
    }
}
