:root {
        --black: #0a0a0a;
        --dark-gray: #1a1a1a;
        --yellow: #ffd700;
        --yellow-glow: #ffed4e;
        --text-gray: #b8b8b8;
        --logo-height: 100px;
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        overflow-x: hidden;
        max-width: 100%;
    }

    body {
        font-family: 'Courier Prime', monospace;
        background-color: var(--black);
        color: var(--text-gray);
        overflow-x: hidden;
        max-width: 100%;
    }

    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image:
            radial-gradient(circle at 15% 10%, rgba(255, 215, 0, 0.06), transparent 45%),
            radial-gradient(circle at 85% 30%, rgba(255, 215, 0, 0.05), transparent 40%),
            radial-gradient(circle at 30% 80%, rgba(255, 215, 0, 0.04), transparent 45%),
            radial-gradient(circle at 90% 90%, rgba(255, 215, 0, 0.05), transparent 40%),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
        background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat;
        pointer-events: none;
        z-index: -1;
    }

    .hero, .gallery, .piercings, .about, .pricing, .testimonials, .contact-section {
        position: relative;
    }

    .hero::before, .gallery::before, .piercings::before, .about::before, .pricing::before, .testimonials::before, .contact-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background-repeat: no-repeat;
        pointer-events: none;
        z-index: 0;
    }

    .hero::before { background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255, 215, 0, 0.08), transparent 70%); }
    .gallery::before { background: radial-gradient(ellipse 50% 60% at 100% 50%, rgba(255, 215, 0, 0.05), transparent 70%); }
    .piercings::before { background: radial-gradient(ellipse 55% 60% at 50% 0%, rgba(255, 215, 0, 0.05), transparent 70%); }
    .about::before { background: radial-gradient(ellipse 50% 60% at 0% 50%, rgba(255, 215, 0, 0.05), transparent 70%); }
    .pricing::before { background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(255, 215, 0, 0.05), transparent 70%); }
    .testimonials::before { background: radial-gradient(ellipse 50% 60% at 100% 0%, rgba(255, 215, 0, 0.04), transparent 70%); }
    .contact-section::before { background: radial-gradient(ellipse 50% 60% at 0% 100%, rgba(255, 215, 0, 0.05), transparent 70%); }

    .hero > *:not(.hero-carousel), .gallery > *, .piercings > *, .about > *, .pricing > *, .testimonials > *, .contact-section > * {
        position: relative;
        z-index: 1;
    }

    header {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        border-bottom: 1px solid rgba(255, 215, 0, 0.2);
        transition: background-color 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
        transform: translateZ(0);
        will-change: transform;
    }
    
    header.header-transparent {
        background: transparent;
        backdrop-filter: none;
        border-bottom-color: transparent;
    }

    header.menu-open,
    header.header-transparent.menu-open {
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        border-bottom-color: rgba(255, 215, 0, 0.2);
    }
    
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem 4%;
        max-width: 1800px;
        margin: 0 auto;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    .nav-left, .nav-right {
        display: flex;
        gap: 2.5rem;
        flex: 1;
    }
    
    .nav-left {
        justify-content: flex-start;
    }
    
    .nav-right {
        justify-content: flex-end;
    }
    
    nav a {
        color: var(--text-gray);
        text-decoration: none;
        font-family: 'Courier Prime', monospace;
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        position: relative;
        transition: color 0.3s ease;
    }
    
    nav a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--yellow);
        transition: width 0.3s ease;
    }
    
    @media (hover: hover) {
        nav a:hover {
            color: var(--yellow);
        }
        
        nav a:hover::after {
            width: 100%;
        }
    }
    
    nav a.active {
        color: var(--yellow);
    }
    
    nav a.active::after {
        width: 100%;
    }

    .logo {
        text-align: center;
        animation: fadeInDown 1s ease-out;
    }
    
    .logo h1 {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 2rem;
        font-weight: 700;
        color: var(--yellow);
        text-transform: uppercase;
        letter-spacing: 3px;
        text-shadow: 
            0 0 10px rgba(255, 215, 0, 0.5),
            0 0 20px rgba(255, 215, 0, 0.3),
            0 0 30px rgba(255, 215, 0, 0.2);
    }
    
    .logo p {
        font-size: 0.75rem;
        letter-spacing: 4px;
        color: var(--text-gray);
        margin-top: 0.3rem;
    }
    
    .logo-img {
        height: var(--logo-height);
        width: auto;
        display: block;
        margin: 0 auto;
    }

    .menu-toggle {
        display: none;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }
    
    .menu-toggle i {
        font-size: 1.7rem;
        color: var(--yellow);
    }
    
    .hero {
        margin-top: 0;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 4rem 4%;
        position: relative;
        overflow: hidden;
    }
    
    .hero-carousel {
        position: absolute;
        inset: 0;
        z-index: 0;
    }
    
    .hero-slide {
        position: absolute;
        inset: 0;
        background-color: var(--dark-gray);
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 1.2s ease-in-out;
    }
    
    .hero-slide.is-active {
        opacity: 1;
    }
    
    .hero-carousel--mobile {
        display: none;
    }
    
    @media (max-width: 768px) {
        .hero-carousel--desktop {
            display: none;
        }
        
        .hero-carousel--mobile {
            display: block;
        }
    }
    
    .hero-carousel::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.55) 45%, rgba(10,10,10,0.85) 100%);
    }
    
    .hero .hero-dots {
        position: absolute;
        bottom: 1.75rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 0.7rem;
        z-index: 2;
    }
    
    .hero-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: 1px solid var(--yellow);
        background: transparent;
        padding: 0;
        cursor: pointer;
        transition: background 0.3s ease, transform 0.3s ease;
    }
    
    .hero-dot.is-active {
        background: var(--yellow);
        transform: scale(1.15);
    }
    
    .hero-content {
        max-width: 900px;
        animation: fadeInUp 1s ease-out 0.3s both;
        position: relative;
        z-index: 1;
    }
    
    .hero h2 {
        font-family: 'Bebas Neue', sans-serif;
        font-size: clamp(2.5rem, 8vw, 5rem);
        font-weight: 700;
        color: #fff;
        margin-bottom: 1.5rem;
        line-height: 1.1;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    
    .hero h2 span {
        color: var(--yellow);
        display: block;
        animation: glow 2s ease-in-out infinite alternate;
    }
    
    .hero p {
        font-size: clamp(1rem, 2vw, 1.2rem);
        line-height: 1.8;
        margin-bottom: 2.5rem;
        color: var(--text-gray);
    }
    
    .cta-button {
        display: inline-block;
        padding: 1rem 3rem;
        background: transparent;
        border: 2px solid var(--yellow);
        color: var(--yellow);
        font-family: 'Courier Prime', monospace;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-decoration: none;
        position: relative;
        overflow: hidden;
        transition: color 0.3s ease;
    }
    
    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--yellow);
        transition: left 0.3s ease;
        z-index: -1;
    }
    
    .cta-button:hover {
        color: var(--black);
    }
    
    .cta-button:hover::before {
        left: 0;
    }
    
    .gallery {
        padding: 5rem 4%;
        max-width: 1800px;
        margin: 0 auto;
    }
    
    .section-title {
        text-align: center;
        margin-bottom: 4rem;
    }
    
    .section-title h3 {
        font-family: 'Bebas Neue', sans-serif;
        font-size: clamp(2rem, 5vw, 3.5rem);
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-bottom: 1rem;
    }
    
    .section-title::after {
        content: '';
        display: block;
        width: 100px;
        height: 3px;
        background: var(--yellow);
        margin: 1.5rem auto;
    }
    
    .gallery-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        animation: fadeIn 1s ease-out;
    }
    
    .gallery-item {
        position: relative;
        display: block;
        flex: 0 1 calc(25% - 1.5rem);
        min-width: 220px;
        aspect-ratio: 1;
        overflow: hidden;
        background: var(--dark-gray);
        border: 1px solid rgba(255, 215, 0, 0.2);
        cursor: pointer;
        text-decoration: none;
        color: inherit;
        transition: transform 0.3s ease;
    }
    
    .gallery-item:hover {
        transform: scale(1.02);
        border-color: var(--yellow);
    }
    
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .gallery-item:hover img {
        transform: scale(1.1);
    }
    
    .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 215, 0, 0.9);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .gallery-item:hover .gallery-overlay,
    .gallery-item:focus-visible .gallery-overlay {
        opacity: 1;
    }
    
    .gallery-item:focus-visible {
        outline: 2px solid var(--yellow);
        outline-offset: 3px;
    }
    
    .gallery-overlay h4 {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.5rem;
        color: var(--black);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-align: center;
        margin: 0;
        padding: 0 0.75rem;
    }

    .visually-hidden {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
    
    .placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--dark-gray) 0%, #0f0f0f 100%);
    }
    
    .placeholder i {
        font-size: 4.5rem;
        opacity: 0.35;
        color: var(--text-gray);
    }
    
    .section-alt {
        background: var(--dark-gray);
        border-top: 1px solid rgba(255, 215, 0, 0.2);
        border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    }
    
    .section-title p.section-subtitle {
        color: var(--text-gray);
        max-width: 560px;
        margin: 0 auto;
        font-size: 0.95rem;
    }
    
    .piercings {
        padding: 5rem 4%;
        max-width: 1400px;
        margin: 0 auto;
    }

    .trust-pillars {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 2rem;
        margin-bottom: 3.5rem;
    }

    .trust-pillar {
        background: var(--black);
        border: 1px solid rgba(255, 215, 0, 0.2);
        padding: 2.2rem 1.8rem;
        text-align: center;
        transition: border-color 0.3s ease, transform 0.3s ease;
    }

    .trust-pillar:hover {
        border-color: var(--yellow);
        transform: translateY(-6px);
    }

    .trust-pillar i {
        font-size: 2rem;
        color: var(--yellow);
        margin-bottom: 1rem;
    }

    .trust-pillar h4 {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.15rem;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 0.6rem;
    }

    .trust-pillar p {
        font-size: 0.88rem;
        line-height: 1.7;
    }

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

    .piercing-gallery-item {
        aspect-ratio: 1;
        overflow: hidden;
        border: 1px solid rgba(255, 215, 0, 0.2);
        background: var(--dark-gray);
        transition: border-color 0.3s ease;
    }

    .piercing-gallery-item:hover {
        border-color: var(--yellow);
    }

    .piercing-gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .piercing-gallery-item:hover img {
        transform: scale(1.1);
    }

    .piercing-cta {
        text-align: center;
    }

    .about {
        padding: 5rem 4%;
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .about-content p {
        text-align: center;
        font-size: 1.05rem;
        line-height: 1.9;
        max-width: 780px;
        margin: 0 auto 3.5rem;
    }
    
    .stats-row {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 3rem;
        text-align: center;
    }
    
    .stat strong {
        display: block;
        font-family: 'Bebas Neue', sans-serif;
        font-size: 2.4rem;
        color: var(--yellow);
    }
    
    .stat span {
        font-size: 0.8rem;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
    
    .pricing {
        padding: 5rem 4%;
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .price-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 2rem;
        margin-bottom: 3.5rem;
    }
    
    .price-card {
        background: var(--black);
        border: 1px solid rgba(255, 215, 0, 0.2);
        padding: 2.5rem 2rem;
        text-align: center;
        transition: border-color 0.3s ease, transform 0.3s ease;
    }
    
    .price-card:hover {
        border-color: var(--yellow);
        transform: translateY(-6px);
    }
    
    .price-card.featured {
        border-color: var(--yellow);
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
    }
    
    .price-card i {
        font-size: 2.2rem;
        color: var(--yellow);
        margin-bottom: 1rem;
    }
    
    .price-card h4 {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.2rem;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 0.8rem;
    }
    
    .price-card .price {
        font-family: 'Courier Prime', monospace;
        color: var(--yellow);
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .price-card p:not(.price) {
        font-size: 0.88rem;
        line-height: 1.7;
    }
    
    .quote-steps {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 1300px;
        margin: 0 auto 3.5rem;
    }

    .quote-step {
        flex: 1 1 200px;
        max-width: 230px;
        text-align: center;
        padding: 0.5rem 1.5rem;
        border-right: 1px solid rgba(255, 215, 0, 0.2);
    }

    .quote-step:last-child {
        border-right: none;
    }

    .quote-step i {
        font-size: 2.1rem;
        color: var(--yellow);
        margin-bottom: 1rem;
        display: block;
    }

    .quote-step h4 {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.1rem;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 0.6rem;
    }

    .quote-step p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    @media (max-width: 900px) {
        .quote-step {
            border-right: none;
            border-bottom: 1px solid rgba(255, 215, 0, 0.2);
            flex: 1 1 100%;
            max-width: 420px;
            padding: 1.5rem 1rem;
        }
        .quote-step:last-child {
            border-bottom: none;
        }
    }

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

    .quote-form {
        max-width: 640px;
        margin: 2rem auto 0;
        display: flex;
        flex-direction: column;
        gap: 1.4rem;
    }

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

    .quote-form .form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .quote-form label {
        font-family: 'Courier Prime', monospace;
        font-size: 0.85rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--yellow);
    }

    .quote-form label .required {
        color: var(--text-gray);
    }

    .quote-form input,
    .quote-form textarea {
        width: 100%;
        background: var(--black);
        border: 1px solid rgba(255, 215, 0, 0.3);
        color: #fff;
        font-family: 'Courier Prime', monospace;
        font-size: 0.9rem;
        padding: 0.9rem 1rem;
        transition: border-color 0.3s ease;
        resize: vertical;
    }

    .quote-form input::placeholder,
    .quote-form textarea::placeholder {
        color: var(--text-gray);
        opacity: 0.7;
    }

    .quote-form input:focus,
    .quote-form textarea:focus {
        outline: none;
        border-color: var(--yellow);
    }

    .quote-form-submit {
        align-self: center;
        margin-top: 0.5rem;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        font-family: 'Courier Prime', monospace;
    }

    @media (max-width: 600px) {
        .quote-form .form-row {
            grid-template-columns: 1fr;
        }
    }
    
    .quote-cta p {
        margin-bottom: 1.5rem;
    }
    
    .quote-cta .cta-button {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
    }

    .testimonials {
        padding: 5rem 4%;
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .testimonial-card {
        background: var(--black);
        border: 1px solid rgba(255, 215, 0, 0.2);
        padding: 2.2rem;
    }
    
    .testimonial-card > i {
        font-size: 1.8rem;
        color: var(--yellow);
        opacity: 0.6;
    }
    
    .testimonial-text {
        margin: 1rem 0 1.2rem;
        line-height: 1.8;
        font-size: 0.95rem;
    }
    
    .stars {
        color: var(--yellow);
        font-size: 0.9rem;
        display: flex;
        gap: 0.2rem;
        margin-bottom: 0.8rem;
    }
    
    .testimonial-author {
        font-family: 'Courier Prime', monospace;
        font-size: 0.85rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #fff;
    }
    
    .care-hero {
        padding: 6rem 4% 2rem;
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
    }

    .care-hero h1 {
        font-family: 'Bebas Neue', sans-serif;
        font-size: clamp(2.2rem, 5vw, 3.2rem);
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 1.2rem;
    }

    .care-hero p {
        color: var(--text-gray);
        max-width: 680px;
        margin: 0 auto;
        line-height: 1.8;
    }

    .care-zigzag {
        padding: 2rem 4% 5rem;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 5rem;
    }

    .zigzag-row {
        display: flex;
        align-items: center;
        gap: 3.5rem;
    }

    .zigzag-row.reverse {
        flex-direction: row-reverse;
    }

    .zigzag-media {
        flex: 0 0 240px;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        border: 1px solid rgba(255, 215, 0, 0.3);
        background: radial-gradient(circle, rgba(255, 215, 0, 0.08), transparent 70%);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .zigzag-media i {
        font-size: 4.5rem;
        color: var(--yellow);
        filter: drop-shadow(0 0 14px rgba(255, 215, 0, 0.35));
    }

    .zigzag-content {
        flex: 1;
    }

    .zigzag-content h3 {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.7rem;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }

    .zigzag-content > p {
        margin-bottom: 1.2rem;
        line-height: 1.8;
    }

    .zigzag-content ul {
        display: flex;
        flex-direction: column;
        gap: 0.9rem;
    }

    .zigzag-content li {
        line-height: 1.7;
        padding-left: 1.4rem;
        position: relative;
    }

    .zigzag-content li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0.6em;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--yellow);
    }

    .zigzag-content li strong {
        color: #fff;
    }

    @media (max-width: 860px) {
        .zigzag-row,
        .zigzag-row.reverse {
            flex-direction: column;
            text-align: center;
            gap: 2rem;
        }
        .zigzag-media {
            width: 170px;
            height: 170px;
            flex-basis: auto;
        }
        .zigzag-media i {
            font-size: 3.2rem;
        }
        .zigzag-content li {
            text-align: left;
        }
    }

    .care-faq {
        padding: 5rem 4%;
        max-width: 860px;
        margin: 0 auto;
    }

    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .faq-item {
        background: var(--black);
        border: 1px solid rgba(255, 215, 0, 0.2);
        padding: 1.3rem 1.6rem;
        transition: border-color 0.3s ease;
    }

    .faq-item[open] {
        border-color: var(--yellow);
    }

    .faq-item summary {
        cursor: pointer;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.1rem;
        letter-spacing: 0.5px;
        color: #fff;
    }

    .faq-item summary::-webkit-details-marker {
        display: none;
    }

    .faq-item summary::after {
        content: '+';
        color: var(--yellow);
        font-size: 1.5rem;
        line-height: 1;
        flex-shrink: 0;
    }

    .faq-item[open] summary::after {
        content: '\2013';
    }

    .faq-item p {
        margin-top: 1rem;
        line-height: 1.8;
        color: var(--text-gray);
        font-size: 0.95rem;
    }

    .care-cta {
        text-align: center;
        padding: 4rem 4% 6rem;
    }

    .care-cta p {
        max-width: 560px;
        margin: 0 auto 1.5rem;
    }
    .contact-section {
        padding: 5rem 4%;
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }

    .contact-grid .quote-form {
        max-width: none;
        margin: 0;
    }

    .contact-right {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .contact-info {
        background: var(--black);
        border: 1px solid rgba(255, 215, 0, 0.2);
        padding: 1.8rem 2rem;
    }
    
    .contact-info p {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 1.2rem;
        font-size: 0.95rem;
    }
    
    .contact-info p i {
        color: var(--yellow);
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    
    .contact-info a {
        color: var(--text-gray);
        transition: color 0.3s ease;
    }
    
    .contact-info a:hover {
        color: var(--yellow);
    }
    
    .contact-info .cta-button {
        margin-top: 1rem;
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
    }
    
    .map-wrapper {
        width: 100%;
        aspect-ratio: 4/3;
        border: 1px solid rgba(255, 215, 0, 0.2);
        overflow: hidden;
        filter: grayscale(0.4) invert(0.92) contrast(0.9);
    }
    
    .map-wrapper iframe {
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
    }
    
    @media (max-width: 768px) {
        .contact-grid {
            grid-template-columns: 1fr;
        }
        .stats-row {
            gap: 2rem;
        }
        .contact-info {
            text-align: center;
        }
        .contact-info p {
            justify-content: center;
        }
        .contact-info .cta-button {
            margin-left: auto;
            margin-right: auto;
        }
    }

    footer {
        background: var(--dark-gray);
        padding: 3rem 4%;
        border-top: 1px solid rgba(255, 215, 0, 0.2);
    }
    
    .footer-content {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .social-links {
        display: flex;
        gap: 2rem;
    }
    
    .social-links a {
        width: 50px;
        height: 50px;
        border: 2px solid var(--yellow);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--yellow);
        text-decoration: none;
        font-size: 1.3rem;
        transition: all 0.3s ease;
    }
    
    .social-links a:hover {
        background: var(--yellow);
        color: var(--black);
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    }
    
    .footer-info {
        text-align: center;
        color: var(--text-gray);
        line-height: 1.8;
    }
    
    .footer-info a.credit-link {
        color: inherit;
        text-decoration: none;
        border-bottom: 1px solid rgba(184, 184, 184, 0.4);
        transition: color 0.3s ease, border-color 0.3s ease;
    }

    .footer-info a.credit-link:hover {
        color: var(--yellow);
        border-color: var(--yellow);
    }

    .footer-info p {
        margin: 0.5rem 0;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    
    @keyframes glow {
        from {
            text-shadow: 
                0 0 10px rgba(255, 215, 0, 0.5),
                0 0 20px rgba(255, 215, 0, 0.3),
                0 0 30px rgba(255, 215, 0, 0.2);
        }
        to {
            text-shadow: 
                0 0 20px rgba(255, 215, 0, 0.8),
                0 0 30px rgba(255, 215, 0, 0.5),
                0 0 40px rgba(255, 215, 0, 0.3);
        }
    }
    
    @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after {
            animation-duration: 0.001ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.001ms !important;
            scroll-behavior: auto !important;
        }
        .hero-content, .logo, .gallery-grid {
            opacity: 1 !important;
            transform: none !important;
        }
    }
    
    .whatsapp-float {
        position: fixed;
        right: 1.5rem;
        bottom: 5.5rem;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: transparent;
        border: 2px solid var(--yellow);
        color: var(--yellow);
        font-size: 1.9rem;
        text-decoration: none;
        z-index: 999; 
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.55), 0 0 14px rgba(255, 215, 0, 0.25);
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
        will-change: transform;
    }
    
    .whatsapp-float::before,
    .whatsapp-float::after {
        content: '';
        position: absolute;
        inset: -2px;
        border-radius: 50%;
        border: 2px solid var(--yellow);
        opacity: 0;
        pointer-events: none;
        animation: whatsappPulse 2.4s ease-out infinite;
    }
    
    .whatsapp-float::after {
        animation-delay: 1.2s;
    }
    
    @keyframes whatsappPulse {
        0%   { transform: scale(1);   opacity: 0.6; }
        100% { transform: scale(1.6); opacity: 0; }
    }
    
    @media (hover: hover) {
        .whatsapp-float:hover {
            background: var(--yellow);
            color: var(--black);
            transform: scale(1.08);
        }
    }
    
    .whatsapp-float:active {
        background: var(--yellow);
        color: var(--black);
        transform: scale(0.95);
    }
    
    .whatsapp-float:focus-visible {
        outline: 2px solid var(--yellow);
        outline-offset: 4px;
    }
    
    @media (max-width: 768px) {
        .whatsapp-float {
            right: 1rem;
            bottom: 5rem;
            width: 54px;
            height: 54px;
            font-size: 1.7rem;
        }
    }
    
    @media (prefers-reduced-motion: reduce) {
        .whatsapp-float::before,
        .whatsapp-float::after {
            display: none;
        }
    }

    @media (max-width: 1024px) {
        nav {
            padding: 1.2rem 3%;
        }
        
        .nav-left, .nav-right {
            gap: 1.5rem;
        }
        
        nav a {
            font-size: 0.9rem;
        }
        
        .logo h1 {
            font-size: 1.6rem;
        }
        
        :root {
            --logo-height: 54px;
        }
    }
    
    @media (max-width: 999px) {
        nav {
            flex-wrap: wrap;
            position: relative;
        }
        
        .logo {
            order: 1;
            flex: 1;
            text-align: center;
        }
        
        .menu-toggle {
            display: flex;
            order: 2;
            position: fixed;
            top: 1.75rem;
            right: 4%;
            z-index: 1001;
        }
        
        .nav-left, .nav-right {
            order: 3;
            flex-basis: 100%;
            flex-direction: column;
            gap: 0;
            display: none;
        }

        .nav-left {
            padding: 0.5rem 0 0;
        }

        .nav-right {
            padding: 0 0 1rem;
        }
        
        .nav-left.active, .nav-right.active {
            display: flex;
        }
        
        .nav-left, .nav-right {
            align-items: stretch;
        }
        
        nav a {
            display: block;
            width: 100%;
            text-align: center;
            padding: 0.9rem 0;
        }
        
        nav a::after {
            display: none;
        }
        
        nav a:active,
        nav a.active {
            background: rgba(255, 215, 0, 0.08);
        }
        
        .logo h1 {
            font-size: 1.4rem;
        }
        
        :root {
            --logo-height: 46px;
        }
        
        .logo p {
            font-size: 0.65rem;
        }

        .hero {
            margin-top: 0;
            min-height: 100vh;
            min-height: 100svh;
            align-items: stretch;
            padding: calc(var(--logo-height) + 5.5rem) 5% 4.5rem;
        }
        
        .hero-content {
            width: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .hero h2 {
            margin-bottom: 1.5rem;
        }

        .hero p {
            margin: auto 0 1.75rem;
        }
        
        .hero .cta-button {
            margin: 0 auto;
        }
        
        .gallery-grid {
            gap: 1.5rem;
        }
        
        .gallery-item {
            flex-basis: calc(50% - 0.75rem);
            min-width: 200px;
        }
        
        .piercing-gallery-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        
        .social-links {
            gap: 1.5rem;
        }
        
        .social-links a {
            width: 45px;
            height: 45px;
            font-size: 1.1rem;
        }
    }
    
    @media (max-width: 480px) {
        .gallery-grid {
            gap: 1rem;
        }
        
        .gallery-item {
            flex-basis: 100%;
            min-width: 0;
        }
        
        .hero p {
            font-size: 0.95rem;
        }
        
        .cta-button {
            padding: 0.9rem 2rem;
            font-size: 0.9rem;
        }
    }

    .hero--sub {
        min-height: 100vh;
        padding-top: calc(var(--logo-height) + 4rem);
    }

    .sub-intro {
        padding: 5rem 4% 1rem;
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
        position: relative;
    }

    .sub-intro p {
        font-size: 1.05rem;
        line-height: 1.9;
    }

    .sub-gallery {
        padding: 2rem 4% 5rem;
        max-width: 1800px;
        margin: 0 auto;
        position: relative;
    }

    .sub-gallery .gallery-grid .gallery-item {
        cursor: default;
    }

    .is-gallery-hidden {
        display: none;
    }

    .gallery-more-btn {
        display: table;
        margin: 3rem auto 0;
        cursor: pointer;
    }

    .sub-cta {
        text-align: center;
        padding: 1rem 4% 6rem;
        position: relative;
    }

    .sub-cta p {
        margin-bottom: 2rem;
        font-size: 1.1rem;
        color: var(--text-gray);
    }

    @media (max-width: 768px) {
        .hero--sub {
            min-height: 100vh;
            min-height: 100svh;
            align-items: center;
            padding: calc(var(--logo-height) + 4rem) 5% 3rem;
        }

        .hero--sub .hero-content {
            display: block;
        }

        .hero--sub .hero p {
            margin: 0 0 1.75rem;
        }
    }

    .piercing-guide {
        padding: 1rem 4% 2rem;
        max-width: 1400px;
        margin: 0 auto;
        text-align: center;
    }

    .piercing-guide img {
        width: 100%;
        border: 1px solid rgba(255, 215, 0, 0.2);
        border-radius: 4px;
    }

    .piercing-subnav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
        max-width: 700px;
        margin: 0 auto;
        padding: 0 4% 4rem;
    }

    .piercing-subnav-all,
    .piercing-subnav-item {
        font-family: 'Courier Prime', monospace;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--text-gray);
        text-decoration: none;
        background: transparent;
        border: 1px solid rgba(255, 215, 0, 0.3);
        border-radius: 999px;
        padding: 0.5rem 1.2rem;
        cursor: pointer;
        transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    }

    .piercing-subnav-all:hover,
    .piercing-subnav-all:focus-visible,
    .piercing-subnav-item:hover,
    .piercing-subnav-item:focus-visible {
        border-color: var(--yellow);
        color: var(--yellow);
    }

    .piercing-subnav-all.active,
    .piercing-subnav-item.active {
        background: var(--yellow);
        border-color: var(--yellow);
        color: var(--black);
    }

    .piercing-type-group {
        max-width: 1800px;
        margin: 0 auto;
        padding: 0 4% 4.5rem;
        text-align: center;
        scroll-margin-top: calc(var(--logo-height) + 2rem);
    }

    .piercing-type-group h3 {
        margin-bottom: 0.5rem;
    }

    .piercing-group-intro {
        max-width: 680px;
        margin: 0 auto;
        color: var(--text-gray);
        line-height: 1.8;
    }

    .piercing-type-group .sub-gallery {
        padding: 2rem 0 0;
    }

    .piercing-type-group .gallery-grid:empty {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100px;
        border: 1px dashed rgba(255, 215, 0, 0.2);
    }

    .piercing-type-group .gallery-grid:empty::after {
        content: 'Fotos próximamente';
        font-family: 'Courier Prime', monospace;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--text-gray);
        opacity: 0.6;
    }

    .piercing-type-group .gallery-item {
        aspect-ratio: auto;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        background: transparent;
        border: none;
        cursor: default;
    }

    .piercing-type-group .gallery-item:hover {
        transform: none;
    }

    .piercing-photo-frame {
        aspect-ratio: 1;
        overflow: hidden;
        border: 1px solid rgba(255, 215, 0, 0.2);
        background: var(--dark-gray);
        transition: border-color 0.3s ease;
    }

    .piercing-type-group .gallery-item:hover .piercing-photo-frame {
        border-color: var(--yellow);
    }

    .piercing-photo-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .piercing-type-group .gallery-item:hover .piercing-photo-frame img {
        transform: scale(1.1);
    }

    .piercing-photo-caption {
        display: block;
        font-family: 'Courier Prime', monospace;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--yellow);
        text-align: center;
    }

    .is-piercing-hidden {
        display: none !important;
    }

    @media (max-width: 768px) {
        .piercing-subnav {
            gap: 0.5rem;
        }

        .piercing-subnav-all,
        .piercing-subnav-item {
            font-size: 0.78rem;
            padding: 0.4rem 0.9rem;
        }
    }

    .nav-dropdown-wrapper {
        position: relative;
    }

    .nav-dropdown-trigger i {
        font-size: 0.7rem;
        margin-left: 0.35rem;
        vertical-align: middle;
        transition: transform 0.25s ease;
    }

    .nav-dropdown {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(-6px);
        min-width: 260px;
        background: rgba(10, 10, 10, 0.98);
        border: 1px solid rgba(255, 215, 0, 0.2);
        padding: 1.7rem 0 0.6rem;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
        z-index: 1001;
    }

    .nav-dropdown a {
        display: block;
        padding: 0.65rem 1.5rem;
        font-size: 0.8rem;
        font-weight: 400;
        white-space: nowrap;
        letter-spacing: 0.5px;
    }

    @media (hover: hover) and (min-width: 1000px) {
        .nav-dropdown-wrapper:hover .nav-dropdown-trigger i {
            transform: rotate(180deg);
        }

        .nav-dropdown-wrapper:hover .nav-dropdown,
        .nav-dropdown-wrapper:focus-within .nav-dropdown {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0);
        }
    }

    @media (min-width: 1000px) {
        .nav-dropdown-wrapper:focus-within .nav-dropdown {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0);
        }
    }

    @media (max-width: 999px) {
        .nav-dropdown-trigger i {
            display: none;
        }

        .nav-dropdown {
            position: static;
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: none;
            margin-top: 0;
            min-width: 0;
            background: transparent;
            border: none;
            padding: 0;
        }

        .nav-dropdown a {
            padding: 0.6rem 0;
            font-size: 0.8rem;
            font-weight: 400;
            color: var(--text-gray);
            opacity: 0.85;
            white-space: normal;
        }

        .nav-dropdown a:active {
            background: rgba(255, 215, 0, 0.08);
        }
    }

img,
.hero-slide,
.gallery-item {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: auto;
}

header a,
.footer-content a,
.whatsapp-float {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}