/* ============================================
   Robyn Lyn Bosch Art & Tattoo
   Public Website Styles
   Colour palette: Robin bird — grey, crimson red, black, amber gold
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --bg-dark: #0c0c0e;
    --bg-surface: #131316;
    --bg-card: #1a1a1f;
    --bg-card-hover: #222228;
    --border: #2c2c34;
    --border-light: rgba(255,255,255,0.06);
    --text: #ebebed;
    --text-secondary: #a8a8b3;
    --text-muted: #6e6e7a;

    /* Robin bird colour palette - Primary brand colors */
    --color-gold: #d4a24d;           /* Primary gold (CTA, accents) */
    --color-gold-hover: #e8b84b;     /* Lighter gold for hovers */
    --color-gold-dark: #c8922e;      /* Darker gold for shadows */
    --color-red: #c62828;            /* Accent red (highlights) */
    --color-red-dark: #a01e1e;       /* Dark red (hover states) */
    --color-crimson: #8b1a1a;        /* Deep crimson */
    --color-grey: #7a7a85;           /* Neutral grey */
    --color-grey-light: #a8a8b3;     /* Light grey for secondary text */

    /* Semantic color mappings */
    --accent-primary: var(--accent-teal, #d4a24d);
    --accent-secondary: var(--accent-coral, #c62828);
    --accent-gold: var(--accent-green, #e8b84b);
    --accent-dark-red: var(--accent-red, #8b1a1a);

    /* Legacy support */
    --color-amber: var(--color-gold-hover);
    --color-warm-gold: var(--color-gold-hover);

    --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --nav-height: 72px;
    --section-pad: 8rem;
    --container-max: 1200px;
    --radius: 12px;
    --radius-sm: 8px;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s var(--ease-out);
}

/* Better focus visibility for accessibility */
*:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* Smooth selection colors */
::selection {
    background: var(--color-gold);
    color: #0c0c0e;
}

::-moz-selection {
    background: var(--color-gold);
    color: #0c0c0e;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 2rem);
}

.section {
    padding: var(--section-pad) 0;
    position: relative;
}

/* ---- Section Headers ---- */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 2rem;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.25rem;
    height: 1px;
    background: var(--color-gold);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    max-width: 640px;
    line-height: 1.8;
}

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

.section-header .section-label { padding-left: 0; }
.section-header .section-label::before { display: none; }
.section-header .section-intro { margin: 0 auto; }

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ---- Navigation ---- */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: all 0.4s var(--ease-out);
    background: transparent;
    will-change: background;
}

.main-nav.scrolled {
    background: rgba(12, 12, 14, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
}

.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text);
    transition: color 0.2s;
    z-index: 1001;
    position: relative;
}

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

.nav-logo-img {
    width: 40px;
    height: 40px;
    color: var(--color-gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-links a {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--text-secondary);
    transition: color 0.2s;
    letter-spacing: 0.02em;
}

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

.nav-cta {
    background: var(--color-red) !important;
    color: #fff !important;
    border-radius: 100px;
    font-weight: 600 !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s, background 0.2s !important;
}

.nav-cta:hover {
    transform: scale(1.03);
    background: var(--color-crimson) !important;
    color: #fff !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1003;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

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

/* Nav backdrop for mobile */
.nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: none;
}

.nav-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Body scroll lock when nav is open */
body.nav-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
}

/* Nav drawer open state */
.main-nav.nav-drawer-open {
    background: rgba(12, 12, 14, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
}

/* ---- Hero Section ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0b0e 0%, #13151a 100%);
}

.hero-texture {
    position: absolute;
    inset: 0;
    background:
        url('../images/hero-background.png') center/cover no-repeat,
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(212, 162, 77, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 30% 60%, rgba(198, 40, 40, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 70% 70%, rgba(232, 184, 75, 0.05) 0%, transparent 60%);
    opacity: 0.5;
    pointer-events: none;
    will-change: opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.hero-texture::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.3;
    mix-blend-mode: soft-light;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    will-change: transform;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

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

.hero-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    color: var(--color-gold);
}

.hero-logo img {
    width: 100%;
    height: 100%;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow:
        0 0 40px rgba(212, 162, 77, 0.6),
        0 0 80px rgba(212, 162, 77, 0.4),
        0 4px 20px rgba(0, 0, 0, 0.9),
        0 2px 8px rgba(0, 0, 0, 1),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    filter: drop-shadow(0 0 20px rgba(212, 162, 77, 0.5));
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #f5f5f5;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-shadow:
        0 0 30px rgba(232, 184, 75, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.95),
        0 2px 6px rgba(0, 0, 0, 1),
        1px 1px 3px rgba(0, 0, 0, 0.9);
    font-weight: 500;
    letter-spacing: 0.01em;
}

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

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-hero-primary {
    background: var(--color-gold);
    color: #0c0c0e;
    box-shadow: 0 2px 8px rgba(212, 162, 77, 0.15);
}

.btn-hero-primary:hover {
    background: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 162, 77, 0.35);
}

.btn-hero-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(212, 162, 77, 0.2);
}

.btn-hero-primary:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

.btn-hero-secondary {
    background: #25D366;
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-hero-secondary:hover {
    background: #1fb855;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.btn-hero-secondary:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-hero-secondary:focus-visible {
    outline: 2px solid #25D366;
    outline-offset: 2px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    z-index: 2;
}

.hero-scroll-indicator span {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-align: center;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

.hero-deco {
    position: absolute;
    width: 150px;
    color: var(--color-gold);
    pointer-events: none;
}

.hero-deco-left { left: 3%; bottom: 10%; }
.hero-deco-right { right: 3%; top: 15%; }

/* ---- Page Hero (sub-pages) ---- */
.page-hero {
    padding: calc(var(--nav-height) + 4rem) 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-texture {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 30%, rgba(212, 162, 77, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.page-hero-subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ---- Buttons ---- */
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.75rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(212, 162, 77, 0.12);
}

.btn-outline:active {
    transform: translateY(0);
}

.btn-outline:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

.btn-outline-lg {
    padding: 0.875rem 2.25rem;
    font-size: 0.9375rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: #25D366;
    color: #fff;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:focus-visible {
    outline: 2px solid #25D366;
    outline-offset: 2px;
}

.btn-whatsapp i { font-size: 1.375rem; }

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
    background: transparent;
}

.btn-instagram:hover {
    border-color: var(--color-red);
    color: var(--color-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(198, 40, 40, 0.15);
}

.btn-instagram:active {
    transform: translateY(0);
}

.btn-instagram:focus-visible {
    outline: 2px solid var(--color-red);
    outline-offset: 2px;
}

.btn-instagram i {
    font-size: 1.25rem;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- About Section ---- */
.about { background: var(--bg-surface); }

.about-grid,
.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-image,
.about-preview-image {
    position: relative;
}

.about-image img,
.about-preview-image img,
.about-image-placeholder {
    border-radius: var(--radius);
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.about-image-placeholder {
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-frame {
    position: absolute;
    inset: -12px;
    border: 1px solid rgba(212, 162, 77, 0.15);
    border-radius: calc(var(--radius) + 4px);
    pointer-events: none;
}

.about-image-frame::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--color-gold) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.about-text p,
.about-preview-text {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
}

.about-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.specialty-tag {
    padding: 0.375rem 1rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.specialty-tag:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.about-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    transition: all 0.3s var(--ease-out);
    background: transparent;
}

.social-link:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 162, 77, 0.15);
    background: rgba(212, 162, 77, 0.05);
}

.social-link:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* About preview on homepage */
.about-preview { background: var(--bg-surface); }

/* ---- Credentials ---- */
.credentials { background: var(--bg-dark); }

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

.credential-card {
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s var(--ease-out);
}

.credential-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    background: var(--bg-card-hover);
}

.credential-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.25rem;
    background: rgba(212, 162, 77, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.25rem;
}

.credential-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.credential-card p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ---- Portfolio Section ---- */
.portfolio { background: var(--bg-dark); }

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 0.375rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.filter-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(212, 162, 77, 0.05);
}

.filter-btn:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

.filter-btn.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #0c0c0e;
    box-shadow: 0 2px 8px rgba(212, 162, 77, 0.2);
}

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

.category-desc {
    text-align: center;
    max-width: 600px;
    margin: -1.5rem auto 2rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
}

.category-desc.hidden { display: none; }

/* Masonry grid */
.portfolio-masonry {
    columns: 3;
    column-gap: 1.25rem;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.25rem;
    border-radius: var(--radius);
    overflow: hidden;
    transition: opacity 0.4s, transform 0.4s;
}

.masonry-item.hidden { display: none; }

.masonry-inner {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--radius);
}

.masonry-inner {
    aspect-ratio: 3 / 4;
}

.masonry-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s var(--ease-out);
}

.masonry-inner:hover img { transform: scale(1.05); }

.masonry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12,12,14,0.85) 0%, rgba(12,12,14,0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.masonry-inner:hover .masonry-overlay { opacity: 1; }

.masonry-category {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: 0.25rem;
}

.masonry-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
}

.masonry-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Featured grid on homepage */
.featured-work { background: var(--bg-dark); }

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

.featured-item { border-radius: var(--radius); overflow: hidden; }

.featured-inner {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 4/5;
}

.featured-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.featured-inner:hover img { transform: scale(1.05); }
.featured-inner:hover .masonry-overlay { opacity: 1; }

.portfolio-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

.portfolio-empty h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 1rem 0 0.5rem;
    color: var(--text-secondary);
}

.portfolio-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ---- Booking Section ---- */
.booking { background: var(--bg-surface); position: relative; overflow: hidden; }

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.booking-text p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.booking-number {
    margin-top: 0.75rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.booking-checklist h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.checklist li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.checklist-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(212, 162, 77, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 0.875rem;
}

.checklist-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.checklist li strong {
    display: block;
    font-size: 0.9375rem;
    margin-bottom: 0.125rem;
}

.checklist li p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.checklist-note {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(212, 162, 77, 0.06);
    border-left: 2px solid var(--color-gold);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

/* ---- Design Process ---- */
.design-process { background: var(--bg-dark); }

.process-content {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.process-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

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

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s;
}

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

.process-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

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

.process-note {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1rem 2rem;
    background: rgba(198, 40, 40, 0.06);
    border: 1px solid rgba(198, 40, 40, 0.15);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.process-note strong { color: var(--color-red); }

/* ---- Policies ---- */
.policies { background: var(--bg-surface); }

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

.policy-card {
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s var(--ease-out);
}

.policy-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    background: var(--bg-card-hover);
}

.policy-icon {
    width: 44px;
    height: 44px;
    background: rgba(212, 162, 77, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.policy-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.policy-card p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ---- FAQ Section ---- */
.faq { background: var(--bg-surface); }
.page-about .faq,
.page-booking .faq { background: var(--bg-dark); }

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s var(--ease-out);
}

.faq-item.active {
    border-color: var(--color-gold);
    box-shadow: 0 2px 8px rgba(212, 162, 77, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: var(--bg-card);
    border: none;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s var(--ease-out);
}

.faq-question:hover {
    background: var(--bg-card-hover);
}

.faq-question:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: -2px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--color-gold);
}

.faq-icon svg { width: 100%; height: 100%; }
.faq-icon-v { transition: transform 0.3s var(--ease-out); }
.faq-item.active .faq-icon-v { transform: scaleY(0); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out);
}

.faq-answer-inner { padding: 0 1.5rem 1.25rem; }

.faq-answer-inner p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.faq-answer-inner p:last-child { margin-bottom: 0; }

/* ---- Studio Section ---- */
.studio { background: var(--bg-dark); position: relative; overflow: hidden; }
.page-about .studio { background: var(--bg-surface); }

.studio-texture {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 40% 60% at 80% 40%, rgba(212, 162, 77, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.studio-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.studio-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.studio-info { display: flex; flex-direction: column; gap: 1.25rem; }

.studio-cards { display: flex; flex-direction: column; gap: 1rem; }

.studio-card {
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: border-color 0.3s;
}

.studio-card:hover { border-color: var(--color-gold); }

.studio-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(212, 162, 77, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.125rem;
}

.studio-card h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.appointment-badge {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-red);
    border: 1px solid rgba(198, 40, 40, 0.3);
    padding: 0.125rem 0.5rem;
    border-radius: 100px;
    font-weight: 600;
}

.studio-card p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; }
.studio-card a { color: var(--color-gold); transition: opacity 0.2s; }
.studio-card a:hover { opacity: 0.8; }
.closed-day { color: var(--text-muted); }

.studio-social h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.studio-social > p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.social-buttons { display: flex; flex-direction: column; gap: 0.75rem; }

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s;
}

.social-btn:hover { transform: translateY(-2px); }
.social-btn i { font-size: 1.25rem; }
.social-instagram:hover { border-color: #e1306c; color: #e1306c; }
.social-facebook:hover { border-color: #1877f2; color: #1877f2; }

/* ---- CTA Banner ---- */
.cta-banner {
    background: var(--bg-surface);
    position: relative;
    overflow: hidden;
}

.cta-texture {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 70% at 50% 50%, rgba(198, 40, 40, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

/* ---- Footer ---- */
.site-footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.footer-logo-img {
    width: 36px;
    height: 36px;
    color: var(--color-gold);
    opacity: 0.7;
}

.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 0.8125rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--color-gold); }

.footer-info { text-align: center; }
.footer-info p { font-size: 0.75rem; color: var(--text-muted); line-height: 1.6; }

.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: var(--text-muted); font-size: 1.125rem; transition: color 0.2s; }
.footer-social a:hover { color: var(--color-gold); }

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

.footer-credit {
    font-size: 0.6875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.footer-credit a {
    color: var(--color-gold);
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-credit a:hover {
    opacity: 0.8;
}

/* ---- Lightbox ---- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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

.lightbox-content { max-width: 90vw; max-height: 90vh; }

.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 2rem;
    padding: 1rem;
    transition: opacity 0.2s;
    z-index: 10;
}

.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { opacity: 0.7; }

/* ---- Animations ---- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate="fade-left"] { transform: translateX(30px); }
[data-animate].animated { opacity: 1; transform: translateX(0) translateY(0); }

/* ---- Responsive ---- */
@media (max-width: 968px) {
    :root { --section-pad: 5rem; }

    .about-grid,
    .about-preview-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image,
    .about-preview-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .booking-grid { grid-template-columns: 1fr; gap: 3rem; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .studio-grid { grid-template-columns: 1fr; gap: 3rem; }
    .portfolio-masonry { columns: 2; }
    .featured-grid { grid-template-columns: repeat(2, 1fr); }
    .credentials-grid { grid-template-columns: repeat(2, 1fr); }
    .policies-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-deco { display: none; }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        z-index: 1003;
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(280px, 85vw);
        height: 100vh;
        background: var(--bg-dark);
        border-left: 1px solid var(--border);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0.5rem;
        transform: translate3d(100%, 0, 0);
        transition: transform 0.4s var(--ease-out);
        z-index: 1002;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        perspective: 1000px;
        -webkit-perspective: 1000px;
    }

    .nav-links.open {
        transform: translate3d(0, 0, 0);
    }
    .nav-links a {
        padding: 0.75rem 0;
        font-size: 1rem;
        width: 100%;
    }
    .nav-cta {
        margin-top: 1rem;
        padding: 0.875rem 1.75rem !important;
        width: 100%;
        text-align: center;
        display: block;
    }

    .hero { padding: 0 1.5rem; }
    .hero-title {
        font-size: clamp(2rem, 6vw, 3.5rem);
        font-weight: 500;
        line-height: 1.2;
        text-shadow:
            0 0 35px rgba(212, 162, 77, 0.65),
            0 0 70px rgba(212, 162, 77, 0.45),
            0 4px 18px rgba(0, 0, 0, 0.9),
            0 2px 7px rgba(0, 0, 0, 1);
    }
    .hero-subtitle {
        font-size: 1.125rem;
        font-weight: 500;
        line-height: 1.75;
        max-width: 90%;
        text-shadow:
            0 0 28px rgba(232, 184, 75, 0.45),
            0 4px 14px rgba(0, 0, 0, 0.95),
            0 2px 6px rgba(0, 0, 0, 1);
    }
    .hero-logo { width: 90px; height: 90px; }
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .btn-hero {
        min-width: 220px;
        padding: 0.9375rem 1.75rem;
    }
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    .cta-actions .btn-whatsapp,
    .cta-actions .btn-outline {
        width: 100%;
        justify-content: center;
    }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }

    /* Tablet Portfolio Optimizations */
    .portfolio-filters {
        flex-wrap: wrap;
        gap: 0.625rem;
    }
    .filter-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 560px) {
    :root {
        --section-pad: 3rem;
        --nav-height: 60px;
    }
    .section {
        padding: 3rem 0;
    }
    .portfolio-masonry {
        columns: 3;
        column-gap: 0.5rem;
    }
    .featured-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .credentials-grid { grid-template-columns: 1fr; }
    .policies-grid { grid-template-columns: 1fr; }
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        text-align: center;
    }
    .section-label {
        text-align: center;
    }
    .section-intro {
        text-align: center;
    }

    /* Mobile Hero Optimization */
    .hero {
        min-height: 100vh;
        padding: 80px 1rem 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Mobile Hero Background */
    .hero-texture {
        background:
            url('../images/mobile hero.png') center/cover no-repeat,
            radial-gradient(ellipse 80% 60% at 50% 40%, rgba(212, 162, 77, 0.08) 0%, transparent 70%),
            radial-gradient(ellipse 60% 50% at 30% 60%, rgba(198, 40, 40, 0.06) 0%, transparent 60%),
            radial-gradient(ellipse 60% 50% at 70% 70%, rgba(232, 184, 75, 0.05) 0%, transparent 60%);
        opacity: 0.6;
    }
    .hero-content {
        padding: 0;
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
    .hero-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        font-weight: 600;
        line-height: 1.15;
        margin-bottom: 1rem;
        padding: 0;
        text-align: center;
        text-shadow:
            0 0 30px rgba(212, 162, 77, 0.7),
            0 0 60px rgba(212, 162, 77, 0.5),
            0 3px 15px rgba(0, 0, 0, 0.95),
            0 2px 6px rgba(0, 0, 0, 1);
    }
    .hero-subtitle {
        font-size: 0.9375rem;
        font-weight: 500;
        line-height: 1.65;
        margin-bottom: 1.75rem;
        padding: 0;
        max-width: 100%;
        text-align: center;
        text-shadow:
            0 0 25px rgba(232, 184, 75, 0.5),
            0 3px 12px rgba(0, 0, 0, 0.95),
            0 2px 6px rgba(0, 0, 0, 1);
    }

    /* Mobile Button Optimization */
    .btn-hero {
        width: 100%;
        max-width: 100%;
        padding: 0.9375rem 1.5rem;
        font-size: 0.875rem;
        justify-content: center;
    }

    .btn-hero-secondary {
        background: #25D366;
        font-weight: 600;
        font-size: 0.9375rem;
        padding: 1rem 1.5rem;
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }

    .btn-hero-secondary i {
        font-size: 1.25rem;
    }
    .hero-actions {
        width: 100%;
        gap: 0.75rem;
        padding: 0;
        flex-direction: column;
    }

    /* Mobile Scroll Indicator - Hidden on mobile */
    .hero-scroll-indicator {
        display: none;
    }

    /* Mobile Navigation */
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        padding: 0;
        height: 60px;
        z-index: 1000;
    }
    .nav-inner {
        padding: 0 1rem;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    .nav-logo {
        font-size: 0.875rem;
        gap: 0.5rem;
        z-index: 1001;
    }
    .nav-logo-img {
        width: 28px;
        height: 28px;
    }
    .nav-toggle {
        padding: 0.5rem;
        z-index: 1003;
        position: relative;
    }
    .nav-links {
        padding-top: 4rem;
        z-index: 1002;
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links a {
        width: 100%;
        display: block;
    }

    /* Mobile About Section */
    .about-content {
        gap: 2rem;
        padding: 0;
        text-align: center;
    }
    .about-text {
        padding: 0;
        text-align: center;
    }
    .about-text p {
        font-size: 0.9375rem;
        line-height: 1.75;
        margin-bottom: 1rem;
        text-align: center;
    }
    .about-text h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    /* Mobile CTA */
    .cta-banner {
        padding: 3rem 0;
        text-align: center;
    }
    .cta-content {
        text-align: center;
    }
    .cta-content h2 {
        font-size: 1.75rem;
        text-align: center;
    }
    .cta-content p {
        text-align: center;
    }
    .btn-whatsapp, .btn-outline {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        justify-content: center;
        margin: 0 auto;
    }

    /* Mobile Booking Page */
    .booking-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .booking-content { text-align: center; }
    .booking-content .btn-whatsapp {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .booking-checklist {
        text-align: center;
    }
    .booking-checklist h3 {
        text-align: center;
    }
    .booking-number {
        font-size: 1.125rem;
        margin-top: 0.75rem;
    }
    .checklist { gap: 1rem; }
    .checklist li {
        gap: 0.875rem;
        padding: 0.5rem 0;
    }
    .checklist-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
    .checklist-note {
        padding: 0.875rem 1rem;
        font-size: 0.8125rem;
    }

    /* Mobile Policy Cards */
    .policy-card {
        padding: 1.5rem 1.25rem;
        text-align: center;
    }
    .policy-icon {
        margin: 0 auto 0.875rem;
    }
    .policy-card h3 {
        font-size: 0.9375rem;
    }

    /* Mobile FAQ */
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.9375rem;
    }
    .faq-answer-inner {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.875rem;
    }

    /* Mobile Page Hero */
    .page-hero {
        padding: 5rem 0 3.5rem;
        min-height: auto;
        text-align: center;
    }
    .page-hero-title {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
        line-height: 1.15;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    .page-hero-subtitle {
        font-size: 0.9375rem;
        line-height: 1.6;
        text-align: center;
    }
    .section-label {
        font-size: 0.6875rem;
        margin-bottom: 0.75rem;
    }

    /* Mobile Footer */
    .footer-inner {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .footer-brand {
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-info p {
        font-size: 0.875rem;
    }
    .footer-social {
        gap: 1.25rem;
    }
    .footer-social a {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }

    /* Mobile Portfolio Filters */
    .portfolio-filters {
        gap: 0.5rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    .filter-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        min-height: 44px;
        flex: 0 0 auto;
    }

    /* Mobile Portfolio Items */
    .masonry-item {
        margin-bottom: 0.5rem;
    }
    .masonry-overlay {
        display: none;
    }

    /* Mobile Lightbox */
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
        font-size: 1.75rem;
    }
    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }
}
