/* HERO */
#hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 44px 68px;
}

.hero-img {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 72% 45%, var(--hero-bg-1) 0%, var(--hero-bg-2) 45%, var(--hero-bg-3) 100%);
    will-change: transform;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .85;
    /* more gradual fade so the change feels smoother */
    transition: opacity 1.8s ease;
}

/* helper class used by JS slideshow to fade out prior to changing src */
.hero-img img.fade-out {
    opacity: 0;
}

.hero-grad {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--hero-overlay);
}

.hero-bar {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
    background: var(--darker);
}

.hero-bar.top {
    top: 0;
    animation: bTop 1.4s cubic-bezier(.76, 0, .24, 1) .2s forwards;
}

.hero-bar.bot {
    bottom: 0;
    animation: bBot 1.4s cubic-bezier(.76, 0, .24, 1) .2s forwards;
}

.hero-bar.top,
.hero-bar.bot {
    height: 60px;
}

@keyframes bTop {
    to {
        height: 0
    }
}

@keyframes bBot {
    to {
        height: 0
    }
}

.hero-content {
    position: relative;
    z-index: 3;
}

.logo-lockup {
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-img-main {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(196, 168, 130, 0.2));
    animation: fSup 1.2s cubic-bezier(.22, 1, .36, 1) forwards;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
    animation: fSup .8s ease 1.1s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 68px;
    right: 44px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fSup .6s ease 1.4s forwards;
}

.hs-label {
    font-size: 9px;
    letter-spacing: .35em;
    color: var(--text-dim);
    writing-mode: vertical-rl;
}

.hs-track {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(154, 122, 86, .8), transparent);
    animation: tPulse 2.5s ease-in-out infinite 2s;
}

@keyframes tPulse {

    0%,
    100% {
        opacity: .2;
        transform: scaleY(.5) translateY(-10px)
    }

    50% {
        opacity: 1;
        transform: scaleY(1) translateY(0)
    }
}

@keyframes fSup {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ARTISTAS (HOME SECCION) */
#artistas {
    padding: 160px 44px 120px;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
}

.acard {
    aspect-ratio: 0.7;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    display: block;
}

.acard-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    /* removed background-image approach to allow <img> fallback */
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s;
    filter: grayscale(62%) sepia(24%) contrast(1.08) brightness(.96);
    overflow: hidden;
}

.acard-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.acard:hover .acard-bg {
    transform: scale(1.05);
    filter: grayscale(45%) sepia(16%) contrast(1.04) brightness(1);
}

.acard-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--hero-overlay-secondary);
}

.acard-hover {
    position: absolute;
    inset: 0;
    background: rgba(196, 168, 130, 0.85);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
    transform: translateY(10px);
}

.acard:hover .acard-hover {
    opacity: 1;
    transform: translateY(0);
}

.acard-more {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 9px;
    letter-spacing: 0.3em;
    color: var(--darker);
    font-weight: 600;
}

.acard-num {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 8px;
    letter-spacing: 0.25em;
    color: var(--amber);
    z-index: 4;
    text-shadow: 0 1px 6px rgba(0, 0, 0, .65);
}

.acard-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 20px 16px;
    z-index: 3;
    transform: translateY(0);
    transition: transform 0.4s;
    background: linear-gradient(0deg, rgba(8, 5, 3, 0.92) 0%, rgba(8, 5, 3, 0.62) 72%, transparent 100%);
    min-height: 90px;
}

.acard-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-style: italic;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 6px;
    line-height: .95;
    overflow-wrap: anywhere;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .55);
}

.acard-style {
    font-size: 7px;
    letter-spacing: 0.2em;
    color: var(--warm);
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.acard-instagram {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    font-size: 9px;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0.85;
}

.acard-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    color: #fff;
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 39, 67, 0.3);
}

.acard-instagram svg {
    transition: transform 0.4s ease;
}

.acard-instagram:hover svg {
    transform: scale(1.1);
}

/* QUOTE BAND */
.quote-band {
    padding: 160px 44px;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(196, 168, 130, .05);
    border-bottom: 1px solid rgba(196, 168, 130, .05);
    overflow: hidden;
}

.quote-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(154, 122, 86, .08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-dim);
    max-width: 900px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 1;
}

.quote-text em {
    font-style: italic;
    color: var(--cream);
}

.quote-src {
    font-size: 10px;
    letter-spacing: .35em;
    color: var(--amber);
    position: relative;
    z-index: 1;
}

/* PORTAFOLIO */
#portafolio {
    padding: 160px 44px;
}

.pf-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-bottom: 44px;
}

.pf-filter-dropdown {
    display: none;
    margin-bottom: 28px;
}

.pf-select-label {
    display: block;
    margin-bottom: 10px;
    font-size: 7px;
    letter-spacing: .3em;
    color: var(--dim);
}

.pf-select {
    width: 100%;
    padding: 12px 14px;
    background: rgba(var(--warm-rgb), .06);
    border: 1px solid var(--border);
    color: var(--cream);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .12em;
    outline: none;
}

.pf-btn {
    background: none;
    border: none;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 9px;
    letter-spacing: .25em;
    color: var(--text-dim);
    cursor: none;
    padding-bottom: 8px;
    position: relative;
    transition: color .3s;
}

.pf-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--amber);
    transition: width .3s;
}

.pf-btn:hover {
    color: var(--cream)
}

.pf-btn.on {
    color: var(--cream)
}

.pf-btn.on::after {
    width: 100%
}

.pf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.pi {
    aspect-ratio: 0.85;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    cursor: none;
}

.pi-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .8s, filter .5s;
    filter: grayscale(30%);
}

.pi:hover .pi-bg {
    transform: scale(1.04);
    filter: grayscale(0%);
}

.pi-ov {
    position: absolute;
    inset: 0;
    background: var(--hero-overlay-secondary);
    opacity: 0;
    transition: opacity .4s;
    display: flex;
    align-items: flex-end;
    padding: 32px;
}

.pi:hover .pi-ov {
    opacity: 1;
}

.pi-lbl {
    transform: translateY(10px);
    transition: transform .4s;
}

.pi:hover .pi-lbl {
    transform: translateY(0);
}

.pi-lbl p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-style: italic;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 4px;
}

.pi-lbl span {
    font-size: 7px;
    letter-spacing: .22em;
    color: var(--warm);
}

/* REELS */
#reels {
    padding: 140px 44px 100px;
    border-top: 1px solid rgba(196, 168, 130, .05);
}

.reels-intro {
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-dim);
    max-width: 560px;
    margin: -8px 0 36px;
}

.reels-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(210px, 240px);
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
}

.reels-track::-webkit-scrollbar {
    height: 8px;
}

.reels-track::-webkit-scrollbar-thumb {
    background: rgba(var(--warm-rgb), .3);
    border-radius: 99px;
}

.reel-card {
    scroll-snap-align: start;
    background: rgba(var(--dark-rgb), .65);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transform: scale(.98);
    opacity: .88;
    transition: transform .28s ease, opacity .28s ease, border-color .28s ease;
}

.reel-card.is-active {
    transform: scale(1);
    opacity: 1;
    border-color: rgba(var(--warm-rgb), .38);
}

.reel-video-wrap {
    aspect-ratio: 9/16;
    background: radial-gradient(ellipse at 30% 20%, rgba(var(--warm-rgb), .16), rgba(var(--dark-rgb), .9));
    position: relative;
    overflow: hidden;
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: var(--darker);
    cursor: pointer;
    opacity: 0;
    transition: opacity .24s ease;
}

.reel-card.is-ready .reel-video {
    opacity: 1;
}

.reel-sound-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 2;
    border: 1px solid rgba(var(--warm-rgb), .35);
    background: rgba(var(--darker-rgb), .72);
    color: var(--cream);
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.reel-sound-btn:hover {
    transform: scale(1.06);
    border-color: rgba(var(--warm-rgb), .55);
    background: rgba(var(--darker-rgb), .88);
}

.reel-play-hint {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 7px;
    letter-spacing: .18em;
    color: rgba(237, 224, 203, .9);
    background: rgba(var(--darker-rgb), .6);
    border: 1px solid rgba(var(--warm-rgb), .22);
    border-radius: 999px;
    padding: 5px 10px;
    white-space: nowrap;
}

.reel-meta {
    padding: 12px 12px 14px;
}

.reel-title {
    font-size: 9px;
    letter-spacing: .14em;
    color: var(--cream);
    margin-bottom: 6px;
    overflow-wrap: anywhere;
}

.reel-caption {
    font-size: 8px;
    letter-spacing: .08em;
    color: var(--dim);
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.reel-skeleton {
    aspect-ratio: 9/16;
    background: linear-gradient(130deg, rgba(var(--dark-rgb), .75), rgba(var(--dark-rgb), .55), rgba(var(--dark-rgb), .75));
    background-size: 200% 100%;
    animation: reelPulse 1.8s ease-in-out infinite;
}

@keyframes reelPulse {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* ESTUDIO */
#estudio {
    padding: 160px 44px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.estudio-vis {
    position: relative;
    aspect-ratio: 4/5;
}

.estudio-photo {
    position: absolute;
    inset: 20px;
    background: url('../img/studio.jpg') center/cover;
    filter: grayscale(100%) contrast(1.2);
}

.estudio-frame {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(196, 168, 130, .15);
}

.ec {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--amber);
}

.tl {
    top: -3px;
    left: -3px;
}

.tr {
    top: -3px;
    right: -3px;
}

.bl {
    bottom: -3px;
    left: -3px;
}

.br {
    bottom: -3px;
    right: -3px;
}

.estudio-body {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-dim);
    margin-bottom: 24px;
    max-width: 480px;
}

.estudio-body em {
    font-style: italic;
    color: var(--cream);
}

.estudio-pq {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-style: italic;
    line-height: 1.4;
    color: var(--warm);
    margin: 40px 0;
    padding-left: 24px;
    border-left: 1px solid var(--amber);
}

.estudio-sig {
    margin-top: 48px;
    font-size: 9px;
    letter-spacing: .3em;
    color: var(--amber);
}

/* COTIZADOR / INTERACTIVO */
#cotizador {
    padding: 160px 44px;
    border-top: 1px solid rgba(196, 168, 130, .05);
    display: grid;
    grid-template-columns: minmax(0, 380px) 1fr;
    gap: 60px;
}

.cq-header {
    padding-right: 40px;
}

.cq-intro {
    margin-top: 40px;
}

.cq-intro-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-dim);
    margin-bottom: 40px;
}

.cq-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cq-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cq-step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    color: var(--amber);
    line-height: 1;
}

.cq-step-text {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text);
}

.cq-step-text strong {
    color: var(--cream);
    font-weight: 400;
}

.cq-embed-wrap {
    width: 100%;
    height: 700px;
    background: var(--dark);
    border: 1px solid rgba(196, 168, 130, .15);
    position: relative;
    overflow: hidden;
}

.cq-embed-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 32px;
    background: rgba(var(--darker-rgb), .8);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 16px;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.cq-embed-bar::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(196, 168, 130, .2);
    box-shadow: 14px 0 0 rgba(196, 168, 130, .2), 28px 0 0 rgba(196, 168, 130, .2);
}

.cq-iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: var(--dark);
}

/* MOBILE CTA – hidden on desktop, replaces iframe on mobile */
.cq-mobile-cta {
    display: none;
    /* Hidden by default (desktop) */
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    gap: 20px;
    padding: 48px 28px 40px;
    background: linear-gradient(145deg, rgba(16, 10, 6, 0.85), rgba(30, 18, 8, 0.7));
    border: 1px solid rgba(196, 168, 130, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(196, 168, 130, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cq-mobile-cta:active {
    transform: scale(0.98);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.cq-mcta-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(196, 168, 130, 0.1);
    border: 1px solid rgba(196, 168, 130, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm);
}

.cq-mcta-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cq-mcta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    font-style: italic;
    color: var(--cream);
}

.cq-mcta-sub {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(230, 200, 174, 0.6);
    max-width: 300px;
    margin: 0 auto;
}

.cq-mcta-btn {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--warm), var(--warm-dark));
    color: var(--dark);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(196, 168, 130, 0.3);
    transition: box-shadow 0.3s ease;
}

.cq-mobile-cta:active .cq-mcta-btn {
    box-shadow: 0 2px 10px rgba(196, 168, 130, 0.4);
}

/* PIERCINGS SHOWCASE */
#piercings-showcase {
    padding: 140px 44px 100px;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

#piercings-gallery {
    padding: 120px 44px 120px;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.piercings-intro {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.8;
    margin: 0 auto 80px;
    max-width: 600px;
}

.piercings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 44px;
    margin-bottom: 80px;
}

.pierce-card {
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform .4s cubic-bezier(.22, 1, .36, 1), filter .3s;
}

.pierce-card:hover {
    transform: translateY(-12px);
    filter: brightness(1.05);
}

.pierce-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    border: 1px solid rgba(196, 168, 130, .18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.pierce-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(15%) contrast(1.05);
    transition: transform .5s cubic-bezier(.22, 1, .36, 1), filter .5s;
}

.pierce-card:hover .pierce-img img {
    transform: scale(1.08);
    filter: grayscale(0%) contrast(1.1) brightness(1.05);
}

.pierce-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.35) 100%);
    opacity: 1;
    transition: opacity .4s;
}

.pierce-card:hover .pierce-overlay {
    opacity: 0.6;
}

.pg-intro {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.8;
    margin: 0 auto 60px;
    max-width: 620px;
}

.pg-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 180px;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto 60px;
}

.pg-item {
    position: relative;
    border-radius: 16px;
    border: 1px solid rgba(196, 168, 130, 0.18);
    overflow: hidden;
    background: rgba(245, 240, 235, 0.6);
    display: flex;
    align-items: flex-end;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.pg-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--pg-img) center / cover no-repeat;
    transform: scale(1.02);
    filter: grayscale(15%) contrast(1.05);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pg-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.45) 100%);
    opacity: 1;
}

.pg-item:hover::before {
    transform: scale(1.08);
    filter: grayscale(0%) contrast(1.1) brightness(1.02);
}

.pg-item.tall {
    grid-row: span 2;
}

.pg-item.wide {
    grid-column: span 2;
}

.pg-cap {
    position: relative;
    z-index: 2;
    margin: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(196, 168, 130, 0.4);
    background: rgba(var(--dark-rgb), 0.65);
    color: var(--cream);
    font-size: 9px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.pierce-info {
    text-align: center;
}

.pierce-info h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 16px;
    letter-spacing: .25em;
    color: var(--cream);
    margin-bottom: 8px;
    font-weight: 400;
}

.pierce-info p {
    font-size: 12px;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 12px;
}

.pierce-count {
    display: inline-block;
    font-size: 10px;
    letter-spacing: .15em;
    color: var(--amber);
    padding: 6px 14px;
    border: 1px solid var(--amber);
    border-radius: 20px;
}

/* CONTACTO */
#contacto {
    padding: 160px 44px 100px;
    position: relative;
}

.ct-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(154, 122, 86, .1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.ct-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.ct-info {
    text-align: left;
}

.ct-sup {
    font-size: 9px;
    letter-spacing: .4em;
    color: var(--amber);
    margin-bottom: 24px;
}

.ct-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 300;
    line-height: .9;
    color: var(--cream);
    margin-bottom: 24px;
}

.ct-title em {
    font-style: italic;
    color: var(--warm);
}

.ct-sub {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 32px;
}

.ct-details {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 40px;
    padding-left: 20px;
    border-left: 1px solid rgba(196, 168, 130, .3);
}

.ct-details strong {
    color: var(--cream);
    font-weight: normal;
}

.ct-form {
    margin-top: 32px;
    width: 100%;
    max-width: 560px;
}

.ct-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ct-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.ct-field label {
    font-size: 8px;
    letter-spacing: .22em;
    color: var(--text-dim);
}

.ct-field input,
.ct-field select,
.ct-field textarea {
    width: 100%;
    background: rgba(var(--warm-rgb), .06);
    border: 1px solid var(--border);
    color: var(--cream);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .08em;
    padding: 12px 14px;
    outline: none;
}

.ct-field textarea {
    resize: vertical;
    min-height: 90px;
    line-height: 1.55;
}

.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
    border-color: rgba(var(--warm-rgb), .48);
}

.ct-form-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.ct-form-actions .btn-f {
    min-height: 44px;
}

.ct-form-hint {
    font-size: 8px;
    letter-spacing: .12em;
    color: var(--text-dim);
}

.ct-form-hint.ok {
    color: #9fcf9a;
}

.ct-form-hint.err {
    color: #e5a8a8;
}

.ct-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.ct-toast {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9999;
    max-width: min(420px, calc(100vw - 36px));
    padding: 12px 14px;
    border: 1px solid rgba(var(--warm-rgb), .34);
    background: rgba(var(--darker-rgb), .9);
    color: var(--cream);
    font-size: 10px;
    letter-spacing: .08em;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
}

.ct-toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* Glassmorphic Map Container */
.ct-map {
    width: 100%;
    height: 400px;
    background: rgba(var(--dark-rgb), 0.7);
    border: 1px solid rgba(196, 168, 130, 0.25);
    border-radius: 24px;
    padding: 8px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), inset 0 1px 4px rgba(196, 168, 130, 0.15);
    backdrop-filter: blur(16px);
    transition: border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ct-map-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ct-reviews {
    width: 100%;
    padding: 18px 18px 20px;
    background: rgba(var(--dark-rgb), 0.62);
    border: 1px solid rgba(196, 168, 130, 0.2);
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5), inset 0 1px 3px rgba(196, 168, 130, 0.12);
    backdrop-filter: blur(14px);
}

.ct-reviews-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.ct-reviews-label {
    font-size: 9px;
    letter-spacing: 0.32em;
    color: var(--amber);
}

.ct-reviews-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--cream);
    letter-spacing: 0.02em;
}

.ct-reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.ct-review-card {
    background: rgba(var(--warm-rgb), 0.06);
    border: 1px solid rgba(196, 168, 130, 0.18);
    border-radius: 16px;
    padding: 14px 16px;
}

.ct-review-stars {
    font-size: 12px;
    letter-spacing: 0.12em;
    color: var(--amber);
    margin-bottom: 8px;
}

.ct-review-text {
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-dim);
    margin-bottom: 10px;
}

.ct-review-author {
    font-size: 10px;
    letter-spacing: 0.16em;
    color: var(--cream);
}

.ct-map:hover {
    border-color: rgba(196, 168, 130, 0.5);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(196, 168, 130, 0.15), inset 0 1px 4px rgba(196, 168, 130, 0.25);
    transform: translateY(-4px);
}

.map-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: var(--hero-bg-3);
    /* Prevents white flash */
}

/* El truco de la magia oscura premium para Google Maps */
.map-wrapper iframe {
    filter: grayscale(100%) invert(100%) contrast(1.15) brightness(0.85) sepia(40%) hue-rotate(5deg) saturate(150%);
    transition: filter 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    height: 100%;
    transform: scale(1.02);
    /* Hide white edges */
}

.map-wrapper:hover iframe {
    filter: grayscale(80%) invert(100%) contrast(1.25) brightness(0.95) sepia(30%) hue-rotate(5deg) saturate(200%);
    transform: scale(1.06);
}

.map-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(var(--dark-rgb), 0.6), rgba(var(--warm-rgb), 0.08));
    mix-blend-mode: overlay;
    box-shadow: inset 0 0 50px rgba(var(--dark-rgb), 0.9), inset 0 0 10px rgba(var(--dark-rgb), 0.8);
    border-radius: 16px;
    z-index: 2;
    transition: opacity 0.6s ease;
}

.map-wrapper:hover .map-overlay {
    opacity: 0.6;
}

@media (max-width: 720px) {
    .ct-map {
        height: 350px;
        margin-top: 20px;
    }

    .ct-reviews {
        padding: 16px;
    }

    #piercings-showcase {
        padding: 100px 24px 80px;
    }

    .piercings-intro {
        margin-bottom: 60px;
    }

    .piercings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .pierce-img {
        aspect-ratio: 1;
    }

    .pierce-info h3 {
        font-size: 14px;
    }

    .pierce-info p {
        font-size: 11px;
    }

    #piercings-gallery {
        padding: 100px 24px 90px;
    }

    .pg-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }

    .pg-item.tall,
    .pg-item.wide {
        grid-column: auto;
        grid-row: auto;
    }
}


/* Ensure content isn't hidden under fixed topbar on narrow viewports */
@media (max-width: 720px) {
    body {
        padding-top: calc(64px + env(safe-area-inset-top));
    }
}

/* NEWS BANNER (Flotante) */
.news-banner {
    position: fixed;
    top: 84px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    z-index: 9999;
    background: rgba(var(--darker-rgb), 0.85);
    border: 1px solid rgba(196, 168, 130, 0.4);
    backdrop-filter: blur(12px);
    padding: 8px 16px 8px 8px;
    /* Reducido a la izquierda para acomodar imagen */
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), inset 0 0 10px rgba(196, 168, 130, 0.1);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
    width: max-content;
    max-width: fit-content;
}

.nb-thumb {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(196, 168, 130, 0.3);
    flex-shrink: 0;
}

.news-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.news-banner.hidden {
    display: none !important;
}

.nb-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nb-badge {
    background: var(--amber);
    color: var(--dark);
    font-size: 9px;
    letter-spacing: 0.2em;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
}

.nb-text {
    font-size: 13px;
    color: var(--cream);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 250px;
}

.nb-link {
    font-size: 11px;
    color: var(--warm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.nb-link:hover {
    border-color: var(--warm);
}

.nb-close {
    background: none;
    border: none;
    color: rgba(237, 224, 203, 0.5);
    font-size: 14px;
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s;
}

.nb-close:hover {
    color: var(--cream);
}

/* ============================================
   RESPONSIVE – Index
   ============================================ */

/* Prevenir overflow horizontal global */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Tablet: ≤ 1100px */
@media (max-width: 1000px) {
    #cotizador {
        display: flex;
        flex-direction: column;
        padding: 100px 32px;
        gap: 48px;
    }

    .cq-header {
        padding-right: 0;
    }
}

/* Mobile: ≤ 768px */
@media (max-width: 768px) {

    /* --- HERO --- */
    #hero {
        padding: 0 20px 56px;
    }

    .logo-img-main {
        max-width: 280px;
    }

    .hero-cta {
        gap: 12px;
    }

    .hero-scroll {
        right: 20px;
    }

    /* --- SECCIONES GENERALES --- */
    #artistas,
    #portafolio,
    #reels,
    .quote-band,
    #estudio,
    #cotizador,
    #contacto {
        padding: 80px 20px;
    }

    /* --- ARTISTAS: 2 columnas para que nombres sean visibles --- */
    .artists-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3px;
    }

    .acard {
        position: relative;
        width: auto;
        aspect-ratio: 0.76;
    }

    .acard-hover {
        display: none;
    }

    .acard-bg {
        position: absolute;
        inset: 0;
        width: auto;
        z-index: 0;
    }

    .acard:hover .acard-bg {
        transform: none;
        filter: grayscale(62%) sepia(24%) contrast(1.08) brightness(.96);
    }

    .acard-info {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        width: auto;
        z-index: 5;
        padding: 14px 14px 12px;
        min-height: 76px;
        background: linear-gradient(0deg, rgba(8, 5, 3, 0.94) 0%, rgba(8, 5, 3, 0.64) 72%, transparent 100%);
        color: #ede0cb;
    }

    .acard-name {
        color: #ede0cb;
        font-size: 14px;
        margin-bottom: 4px;
    }

    .acard-style {
        color: #c4a882;
        font-size: 6px;
        letter-spacing: .18em;
    }

    .acard-num {
        position: absolute;
        top: 12px;
        right: 12px;
        font-size: 7px;
        letter-spacing: .2em;
        width: auto;
        z-index: 4;
    }

    /* --- PORTAFOLIO: 2 columnas --- */
    .pf-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2px;
    }

    .pi {
        aspect-ratio: 0.95;
    }

    .pi-ov {
        padding: 14px;
    }

    .pi-lbl p {
        font-size: 16px;
    }

    .pi-lbl span {
        font-size: 6px;
        letter-spacing: .16em;
    }

    .reels-track {
        grid-auto-columns: calc(100vw - 40px);
        gap: 10px;
        scroll-padding-left: 20px;
    }

    .reel-sound-btn {
        width: 38px;
        height: 38px;
    }

    .pf-filters {
        display: none;
    }

    .pf-filter-dropdown {
        display: block;
    }

    /* --- ESTUDIO: apilado --- */
    #estudio {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .estudio-vis {
        aspect-ratio: 1;
    }

    /* --- COTIZADOR 3D: en móvil, ocultar iframe y mostrar botón --- */
    .cq-embed-wrap {
        display: none !important;
    }

    .cq-mobile-cta {
        display: flex;
    }

    /* --- TIPOGRAFÍA --- */
    .stitle {
        font-size: clamp(36px, 9vw, 52px);
        margin-bottom: 36px;
    }

    .ct-title {
        font-size: clamp(40px, 10vw, 60px);
    }

    .quote-text {
        font-size: clamp(24px, 6vw, 36px);
    }

    /* --- CONTACTO --- */
    #contacto {
        padding: 80px 20px 60px;
    }

    .ct-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .ct-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ct-form {
        max-width: 100%;
    }

    .ct-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ct-form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ct-form-actions .btn-f {
        width: 100%;
    }

    .ct-toast {
        right: 12px;
        left: 12px;
        bottom: 12px;
        max-width: none;
    }

    .ct-details {
        text-align: left;
        border-left: none;
    }
}

/* ── TESTIMONIOS (CARRUSEL SWIPE) ── */
.ts-track {
    padding-bottom: 24px;
    padding-top: 10px;
}

.ts-track::-webkit-scrollbar {
    display: none;
}

.ts-card {
    flex: 0 0 320px;
    min-width: 320px;
    scroll-snap-align: start;
    background: rgba(var(--dark-rgb), 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(196, 168, 130, 0.15);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
    cursor: none;
}

.ts-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(196, 168, 130, 0.3);
}

.ts-card-img {
    width: 100%;
    height: 320px;
    background-color: var(--darker);
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--border);
}

.ts-card-body {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ts-quote-icon {
    font-size: 32px;
    color: rgba(196, 168, 130, 0.2);
    line-height: 0.5;
    margin-bottom: 12px;
    font-family: 'Cormorant Garamond', serif;
}

.ts-text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--cream);
    margin-bottom: 24px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ts-client {
    font-size: 9px;
    letter-spacing: 0.25em;
    color: var(--amber);
    text-transform: uppercase;
    font-weight: 600;
}

.ts-artist {
    font-size: 8px;
    letter-spacing: 0.15em;
    color: var(--dim);
    margin-top: 4px;
    text-transform: uppercase;
}

/* ── MODAL RESERVA GLASSMORPHISM ── */
.reserva-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.reserva-overlay.open {
    opacity: 1;
    visibility: visible;
}

.reserva-modal {
    background: rgba(22, 22, 22, 0.65);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(196, 168, 130, 0.2);
    border-radius: 4px;
    width: 90%;
    max-width: 500px;
    padding: 40px;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.1s, opacity 0.4s 0.1s;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.reserva-overlay.open .reserva-modal {
    transform: translateY(0);
    opacity: 1;
}

.reserva-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--dim);
    font-size: 24px;
    cursor: none;
    transition: color 0.3s;
}

.reserva-close:hover {
    color: var(--amber);
}

.reserva-header {
    margin-bottom: 24px;
    text-align: center;
}

.reserva-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 8px;
}

.reserva-title em {
    font-style: italic;
    color: var(--amber);
}

.reserva-sub {
    font-size: 10px;
    color: var(--dim);
    letter-spacing: 0.1em;
    line-height: 1.5;
}

.reserva-body .ct-field {
    margin-bottom: 16px;
}

.reserva-footer {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

/* Mobile pequeño: ≤ 480px */
@media (max-width: 480px) {
    .artists-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
    }

    .acard {
        aspect-ratio: 0.8;
    }

    .acard-info {
        padding: 12px 12px 10px;
        min-height: 72px;
    }

    .acard-name {
        font-size: 12px;
    }

    .acard-style {
        font-size: 6px;
    }

    #artistas {
        padding-left: 20px;
        padding-right: 20px;
    }

    .pf-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2px;
    }

    .pi {
        aspect-ratio: 1;
    }

    .pi-ov {
        padding: 10px;
    }

    .pi-lbl p {
        font-size: 13px;
        margin-bottom: 2px;
    }

    .pi-lbl span {
        font-size: 5px;
        letter-spacing: .14em;
    }

    .ct-title,
    .stitle {
        font-size: 36px;
    }

    .logo-img-main {
        max-width: 240px;
    }

}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {

    .hero-bar,
    .featurette,
    .featured-artist,
    .featured-title,
    .theme-blur,
    .acard,
    .pi,
    .news-banner {
        animation: none !important;
        transition: none !important;
    }

    /* Ensure text is visible while loading */
    .hero-bar.top,
    .hero-bar.bot {
        transform: none !important;
    }
}
