/* ================================================
   ANGELS TATTOO — DESIGN SYSTEM
   ================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { 
    overflow-x: hidden; 
    width: 100vw; 
    max-width: 100vw;
    position: relative;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #050505;
    color: #e5e5e5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
::selection { background: #D4A843; color: #000; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* --- CSS Variables --- */
:root {
    --gold:       #D4A843;
    --gold-light: #E8C76A;
    --gold-dark:  #B8912E;
    --bg-primary: #050505;
    --bg-secondary: #0a0a0a;
    --bg-card:    #0e0e0e;
    --bg-input:   #111111;
    --border:     #1a1a1a;
    --border-light:#2a2a2a;
    --text-primary: #f0f0f0;
    --text-secondary: #999999;
    --text-muted: #555555;
    --neon-blue:  #0ea5e9;
    --neon-glow:  0 0 10px rgba(14, 165, 233, 0.4), 0 0 20px rgba(14, 165, 233, 0.2);
    --font-display: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* --- Typography --- */
.font-display { font-family: var(--font-display); }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; }

/* --- Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.section-border { border-top: 1px solid var(--border); }

/* ================================================
   GEOMETRIC DECORATIVE SHAPES
   ================================================ */
.geo-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.06;
}

/* Rotating diamond */
.geo-diamond {
    width: 300px;
    height: 300px;
    border: 2px solid var(--gold);
    transform: rotate(45deg);
    animation: geo-spin 25s linear infinite;
}

/* Circle ring */
.geo-circle {
    width: 400px;
    height: 400px;
    border: 1px solid var(--neon-blue);
    border-radius: 50%;
    animation: geo-pulse 8s ease-in-out infinite;
}

/* Triangle (CSS-drawn) */
.geo-triangle {
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 260px solid transparent;
    border-bottom-color: var(--neon-blue);
    opacity: 0.04;
    animation: geo-float 12s ease-in-out infinite;
}

/* Hexagon */
.geo-hexagon {
    width: 200px;
    height: 115px;
    background: transparent;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    position: relative;
    opacity: 0.05;
    animation: geo-spin 30s linear infinite reverse;
}
.geo-hexagon::before,
.geo-hexagon::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    left: -2px;
    right: -2px;
}
.geo-hexagon::before {
    top: -58px;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 58px solid var(--gold);
}
.geo-hexagon::after {
    bottom: -58px;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-top: 58px solid var(--gold);
}

/* Dot grid */
.geo-dotgrid {
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, var(--gold) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    opacity: 0.08;
}

/* Cross / Plus */
.geo-cross {
    width: 80px;
    height: 80px;
    position: relative;
    opacity: 0.08;
}
.geo-cross::before, .geo-cross::after {
    content: '';
    position: absolute;
    background: var(--gold);
}
.geo-cross::before {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.geo-cross::after {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

/* Line accent */
.geo-line {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.2;
}

@keyframes geo-spin {
    from { transform: rotate(45deg); }
    to   { transform: rotate(405deg); }
}
@keyframes geo-pulse {
    0%, 100% { transform: scale(1); opacity: 0.06; }
    50%      { transform: scale(1.08); opacity: 0.1; }
}
@keyframes geo-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-20px); }
}

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.3s;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: 100% !important;
    padding: 0 50px !important;
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-logo img {
    height: 56px;
    width: auto;
    transform: scale(1.6);
    transform-origin: left center;
}
.nav-logo span { color: var(--gold); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    min-width: 0;
}
.nav-links a {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
    padding: 0 1.5rem;
}
.nav-links a:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.1);
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}
.nav-links a.active::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
    background: var(--gold);
}

/* Language Toggle */
.lang-toggle-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
    flex-shrink: 0;
}
.lang-toggle {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
    text-transform: uppercase;
}
.lang-toggle:hover, .lang-toggle.active {
    color: var(--neon-blue);
    font-weight: 600;
}
.lang-divider {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Instagram in nav — prominent */
.nav-ig {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s;
}
.nav-ig:hover {
    background: var(--gold);
    color: #000;
}
.nav-ig svg { width: 16px; height: 16px; }

/* CTA nav */
.nav-cta {
    padding: 10px 18px;
    background: var(--gold);
    color: #000;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s;
    flex-shrink: 0;
    white-space: nowrap;
}
.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* Mobile nav */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 4px;
}
.nav-hamburger svg { width: 24px; height: 24px; }

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(5,5,5,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    z-index: 99;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
    display: block;
    padding: 14px 0;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    transition: color 0.3s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }

/* ================================================
   HERO
   ================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    place-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #050505;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    opacity: 0.35;
    transform: scale(1.35); /* Mayor zoom para que abarque más pantalla */
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(5,5,5,0.4) 0%,
        rgba(5,5,5,0.7) 50%,
        rgba(5,5,5,1) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 24px;
    width: 100%;
    max-width: 900px;
    margin-top: -12vh; /* Pulls the content up globally to fix visual centering against the navbar */
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-tag::before, .hero-tag::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}
.hero h1 {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    line-height: 0.95;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}
.hero h1 .gold { color: var(--gold); }
.hero-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Instagram banner on hero */
.hero-ig-banner {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 32px;
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.4s;
    margin-bottom: 20px;
    animation: ig-glow 3s ease-in-out infinite;
}
.hero-ig-banner:hover {
    background: var(--neon-blue);
    color: #000;
    transform: scale(1.03);
    box-shadow: var(--neon-glow);
}
.hero-ig-banner svg { width: 22px; height: 22px; }

@keyframes ig-glow {
    0%, 100% { box-shadow: 0 0 0 rgba(14,165,233,0); }
    50%      { box-shadow: 0 0 30px rgba(14,165,233,0.3); }
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: var(--gold);
    color: #000;
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.btn-gold-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}
.btn-gold-outline:hover {
    background: var(--gold);
    color: #000;
}

/* ================================================
   SECTION HEADINGS
   ================================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.section-header h2 .gold { color: var(--gold); }
.section-header .divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 20px;
}
.section-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* ================================================
   GALLERY GRID
   ================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0, 0, 1), filter 0.5s;
}
.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.6);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
    background: rgba(0,0,0,0.5);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border: 1px solid var(--gold);
    padding: 8px 24px;
}

/* ================================================
   SOCIAL FLOATING CLUSTER (Left Side)
   ================================================ */
.social-float-cluster {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.social-float-item {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 0;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none;
    width: 50px;
    height: 50px;
    overflow: hidden;
}

.social-float-item:hover {
    width: auto;
    border-radius: 30px;
    padding: 12px 20px;
    transform: translateY(-3px);
}

.social-float-item svg {
    width: 24px;
    height: 24px;
    color: #fff;
    flex-shrink: 0;
}

.social-float-label {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s;
}

.social-float-item:hover .social-float-label {
    max-width: 200px;
    opacity: 1;
    margin-right: 12px;
}

/* Brand Colors */
.social-float-ig {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    box-shadow: 0 8px 20px rgba(131, 58, 180, 0.3);
}
.social-float-fb {
    background: #1877F2;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}
.social-float-tt {
    background: #000;
    border: 1px solid #25F4EE;
    box-shadow: 0 8px 20px rgba(254, 44, 85, 0.3);
}

/* --- Instagram Feed --- */
.insta-feed-container {
    width: 100%;
    min-height: 200px;
    margin: 40px 0;
    position: relative;
}

.insta-feed-container [data-behold-id],
.insta-feed-container behold-widget {
    width: 100%;
}

/* Marco Premium Instagram */
.insta-premium-section {
    padding: 80px 0;
    background: radial-gradient(circle at top right, rgba(188, 24, 136, 0.05), transparent),
                radial-gradient(circle at bottom left, rgba(240, 148, 51, 0.05), transparent);
}

.insta-premium-frame {
    padding: 12px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 24px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.insta-premium-frame:hover {
    transform: scale(1.01);
}

.insta-premium-frame::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: #050505;
    border-radius: 21px;
    z-index: 0;
}

.insta-premium-frame-inner {
    position: relative;
    z-index: 1;
    border-radius: 18px;
    overflow: hidden;
    background: #0a0a0a;
}

.insta-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #f09433, #bc1888);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ================================================
   ABOUT / ARTIST CARD
   ================================================ */
.artist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.artist-img-wrap {
    position: relative;
    z-index: 1;
}
.artist-img-wrap img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: grayscale(30%);
    transition: filter 0.6s;
}
.artist-img-wrap:hover img { filter: grayscale(0%); }
.artist-img-frame {
    position: absolute;
    top: 24px;
    left: 24px;
    right: -24px;
    bottom: -24px;
    border: 2px solid rgba(212,168,67,0.6);
    pointer-events: none;
    z-index: -1;
}
.artist-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.stat-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 6px;
}

/* ================================================
   STYLES / SPECIALTIES
   ================================================ */
.styles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.style-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.style-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}
.style-card:hover::before { transform: scaleX(1); }
.style-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}
.style-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
}
.style-card-icon svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
    transform: rotate(-45deg);
}
.style-card h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    color: var(--text-primary);
}
.style-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
}

/* ================================================
   FORM (Cotizar)
   ================================================ */
.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 48px;
    max-width: 680px;
    margin: 0 auto;
}
.form-card h2 {
    color: var(--gold);
    font-size: 2rem;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.form-card .form-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 36px;
    line-height: 1.6;
    font-weight: 300;
}
.form-group { margin-bottom: 24px; }
.form-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 500;
}
.form-input {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border);
    color: #fff;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    transition: all 0.3s;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus {
    outline: none;
    border-color: var(--gold);
    background: #161616;
}
textarea.form-input {
    resize: vertical;
    min-height: 120px;
}
.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: #000;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.form-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}
.form-note {
    text-align: center;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-style: italic;
    font-weight: 300;
}

/* ================================================
   FAQ
   ================================================ */
.faq-item {
    border: 1px solid var(--border);
    margin-bottom: 8px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.faq-item:hover { border-color: var(--border-light); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    text-align: left;
}
.faq-question svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    transition: transform 0.3s;
    flex-shrink: 0;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}
.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.7;
    font-weight: 300;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 60px 0 36px;
}
.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.footer-logo span { color: var(--gold); }
.footer-links {
    display: flex;
    gap: 32px;
    margin-bottom: 28px;
}
.footer-links a {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-social {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}
.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: all 0.3s;
}
.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.footer-social svg { width: 18px; height: 18px; }
.footer-copy {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* ================================================
   SCROLL REVEAL
   ================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1400px) {
    .nav-links a { padding: 0 1rem; }
    .nav-inner { padding: 0 30px !important; }
}

@media (max-width: 1300px) {
    .nav-links a { padding: 0 0.8rem; }
    .nav-ig span { display: none; }
    .nav-ig { padding: 8px 12px; }
}

@media (max-width: 1150px) {
    .nav-links a { font-size: 0.7rem; letter-spacing: 0.1em; }
    .nav-logo { font-size: 1.2rem; }
}

@media (max-width: 1100px) {
    .nav-links, .nav-cta, .nav-ig, .nav .lang-toggle-group { display: none !important; }
    .nav-hamburger { display: block; }
    .nav-inner { justify-content: space-between; }
    .mobile-menu { display: none; }
    .mobile-menu.open { display: block; }
}

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .artist-grid { grid-template-columns: 1fr; gap: 40px; }
    .artist-img-wrap { margin-right: 15px; margin-bottom: 15px; }
    .artist-img-frame { top: 15px; left: 15px; right: -15px; bottom: -15px; }
    .styles-grid { grid-template-columns: 1fr; }
    .form-card { padding: 32px 20px; }
    .section { padding: 60px 0; }
    .hero h1 { font-size: clamp(2rem, 8vw, 4rem); }
    .hero-ig-banner { font-size: 0.75rem; padding: 12px 24px; }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
    
    /* Instagram Mobile Adaptation */
    .insta-premium-section {
        padding: 30px 0;
    }
    .insta-feed-container {
        min-height: 0;
        margin: 10px 0;
        height: auto;
    }
    .insta-premium-frame {
        padding: 4px;
        border-radius: 12px;
        margin: 0 -12px;
        height: auto;
    }
    .insta-premium-frame::before {
        inset: 1.5px;
        border-radius: 10px;
    }
    .insta-premium-frame-inner {
        border-radius: 8px;
    }
    .insta-badge {
        padding: 4px 12px;
        font-size: 0.6rem;
        top: -12px;
    }
    /* Force Behold widget to be more responsive if possible */
    behold-widget {
        display: block;
        width: 100% !important;
    }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 4px; }
    .container { padding: 0 16px; }
}


    .mobile-menu .lang-toggle-group {
        display: flex;
        justify-content: center;
        margin-top: 10px;
        padding-top: 15px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    