/* ============================================================
   ALEYO PROJETOS — BLACK GOLD GRAFFITI THEME
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;600;800&family=Permanent+Marker&display=swap');

/* ── Custom Properties ─────────────────────────────────────── */
:root {
    --black:        #0A0A0A;
    --black-2:      #111111;
    --black-3:      #1A1A1A;
    --gold:         #D4A017;
    --gold-light:   #F0C040;
    --gold-dim:     #8A6800;
    --white:        #F5F0E8;
    --off-white:    #E8E0CC;
    --gray:         #888880;
    --gray-dim:     #444440;
    --green-wp:     #25D366;
    --green-wp-2:   #128C7E;

    --font-display: 'Bebas Neue', sans-serif;
    --font-tag:     'Permanent Marker', cursive;
    --font-body:    'Outfit', sans-serif;

    --transition:   all 0.35s ease;
    --radius:       4px;
    --radius-lg:    12px;

    /* graffiti texture via CSS noise */
    --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0; padding: 0;
    box-sizing: border-box;
}
html { scroll-behavior: smooth; }

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: 2px; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── Utility ───────────────────────────────────────────────── */
.container     { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section-padding { padding: 100px 0; }

/* Gold underline heading */
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    color: var(--gold-light);
    display: inline-block;
    position: relative;
    text-transform: uppercase;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -12px; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
}
.section-title p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-top: 20px;
}

/* ── Graffiti Tag decoration ───────────────────────────────── */
.graffiti-tag {
    font-family: var(--font-tag);
    color: var(--gold);
    opacity: 0.18;
    font-size: clamp(3rem, 8vw, 7rem);
    position: absolute;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    text-shadow: 2px 2px 0 var(--gold-dim);
    line-height: 1;
    z-index: 0;
}

/* ── Gold Rule ─────────────────────────────────────────────── */
.gold-rule {
    width: 80px; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    margin: 18px 0;
    border-radius: 2px;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold);
    color: var(--black);
    padding: 14px 32px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: 2px;
    border: 2px solid var(--gold);
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: var(--transition);
    cursor: pointer;
}
.btn-primary:hover {
    background: transparent;
    color: var(--gold-light);
}

.btn-whatsapp {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent;
    color: var(--green-wp);
    padding: 14px 28px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 2px;
    border: 2px solid var(--green-wp);
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: var(--transition);
}
.btn-whatsapp:hover {
    background: var(--green-wp);
    color: var(--black);
}

.btn-whatsapp-big {
    display: inline-flex; align-items: center; gap: 14px;
    background: var(--green-wp);
    color: var(--black);
    padding: 18px 40px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 2px;
    border: 2px solid var(--green-wp);
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    transition: var(--transition);
    font-weight: 700;
}
.btn-whatsapp-big:hover {
    background: transparent;
    color: var(--green-wp);
    transform: translateY(-3px);
}

.btn-b2b {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--gold);
    color: var(--black);
    padding: 16px 44px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 2px;
    border: 2px solid var(--gold);
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    transition: var(--transition);
}
.btn-b2b:hover {
    background: transparent;
    color: var(--gold-light);
    transform: scale(1.04);
}

/* ═══════════════════════════════════════════════════════════ */
/* NAVBAR                                                      */
/* ═══════════════════════════════════════════════════════════ */
.navbar {
    position: fixed; top: 0; width: 100%;
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 160, 23, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px; margin: 0 auto;
    padding: 18px 5%;
    display: flex; justify-content: space-between; align-items: center;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 4px;
    color: var(--white);
    text-transform: uppercase;
}
.logo-dot { color: var(--gold); }

.nav-links { display: flex; gap: 28px; }
.nav-links li a {
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 2px;
    color: var(--gray);
    text-transform: uppercase;
    position: relative;
    transition: var(--transition);
}
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: var(--transition);
}
.nav-links li a:hover { color: var(--gold-light); }
.nav-links li a:hover::after { width: 100%; }

/* Mobile menu */
.menu-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.bar { width: 25px; height: 2px; background: var(--gold); transition: var(--transition); }

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

.hero-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; z-index: 1;
    filter: grayscale(60%) brightness(0.35);
}

/* Grunge paint splatter overlay */
.hero-overlay {
    position: absolute; inset: 0; z-index: 2;
    background:
        radial-gradient(ellipse at 0% 50%, rgba(212,160,23,0.15) 0%, transparent 55%),
        linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.85) 100%);
}

/* diagonal gold slash */
.hero-slash {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(108deg, transparent 60%, rgba(212,160,23,0.07) 60%);
    pointer-events: none;
}

.hero-content {
    position: relative; z-index: 3;
    max-width: 1200px; margin: 0 auto;
    padding: 0 5%; width: 100%;
    padding-top: 80px;
}

.hero-eyebrow {
    font-family: var(--font-tag);
    font-size: 1.3rem;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 12px;
    opacity: 0.85;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7rem);
    color: var(--white);
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-content h1 .highlight {
    color: var(--gold);
    display: block;
    -webkit-text-stroke: 1px var(--gold);
}

.hero-content p {
    color: var(--gray);
    font-size: 1.15rem;
    max-width: 520px;
    margin-bottom: 44px;
    line-height: 1.75;
}

.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; position: absolute; bottom: 40px; right: 5%; z-index: 10; justify-content: flex-end; }

/* floating graffiti tag in hero */
.hero-tag {
    position: absolute; right: 5%; bottom: 15%; z-index: 3;
    font-family: var(--font-tag);
    font-size: clamp(4rem, 10vw, 8rem);
    color: var(--gold);
    opacity: 0.08;
    transform: rotate(-8deg);
    pointer-events: none;
    line-height: 1;
}

/* ═══════════════════════════════════════════════════════════ */
/* SOBRE                                                       */
/* ═══════════════════════════════════════════════════════════ */
.about {
    background-color: var(--black-3);
    position: relative; overflow: hidden;
}

.about::before {
    content: 'ALEYO';
    font-family: var(--font-tag);
    color: var(--gold);
    opacity: 0.04;
    font-size: 20vw;
    position: absolute;
    right: -5%; top: 50%;
    transform: translateY(-50%) rotate(-5deg);
    pointer-events: none;
    line-height: 1;
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
    position: relative; z-index: 1;
}

.about-text h2 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    color: var(--white);
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 8px;
}

.about-text .subtitle {
    font-family: var(--font-tag);
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

.about-text p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.values-grid {
    display: grid; grid-template-columns: 1fr;
    gap: 28px; margin-top: 40px;
}

.value-item {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 20px 24px;
    background: rgba(212,160,23,0.04);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    transition: var(--transition);
}
.value-item:hover { background: rgba(212,160,23,0.08); }
.value-item i { font-size: 1.6rem; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.value-item h4 { color: var(--white); margin-bottom: 4px; font-family: var(--font-display); letter-spacing: 1px; font-size: 1.1rem; }
.value-item p  { color: var(--gray); font-size: 0.95rem; }

/* About Image */
.img-frame {
    position: relative;
    border: 1px solid rgba(212,160,23,0.25);
    border-radius: var(--radius);
}
.img-frame::before {
    content: '';
    position: absolute;
    top: -12px; left: -12px;
    width: 60%; height: 60%;
    border-top: 3px solid var(--gold);
    border-left: 3px solid var(--gold);
    border-radius: 2px 0 0 0;
    z-index: 2;
    pointer-events: none;
}
.img-frame::after {
    content: '';
    position: absolute;
    bottom: -12px; right: -12px;
    width: 60%; height: 60%;
    border-bottom: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
    border-radius: 0 0 2px 0;
    z-index: 2;
    pointer-events: none;
}
.about-img img {
    width: 100%; border-radius: var(--radius);
    filter: grayscale(30%);
    transition: filter 0.5s ease;
}
.about-img img:hover { filter: grayscale(0%); }

/* ═══════════════════════════════════════════════════════════ */
/* SERVICES                                                    */
/* ═══════════════════════════════════════════════════════════ */
.services {
    background-color: var(--black-2);
    position: relative; overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.services-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--black-3);
    padding: 44px 32px;
    border: 1px solid rgba(212,160,23,0.12);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.service-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(212,160,23,0.06) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212,160,23,0.1);
}
.service-card:hover::before { opacity: 1; }

.card-icon {
    width: 72px; height: 72px;
    background: rgba(212,160,23,0.08);
    border: 1px solid rgba(212,160,23,0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.8rem;
    color: var(--gold);
    transition: var(--transition);
}
.service-card:hover .card-icon {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 0 20px rgba(212,160,23,0.4);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 14px;
    text-transform: uppercase;
}
.service-card p { color: var(--gray); font-size: 0.95rem; }

/* ═══════════════════════════════════════════════════════════ */
/* PROJETOS HUB                                                */
/* ═══════════════════════════════════════════════════════════ */
.projects-hub {
    background: var(--black);
    position: relative; overflow: hidden;
}

.projects-hub::before {
    content: 'PROJETOS';
    font-family: var(--font-tag);
    color: var(--gold);
    opacity: 0.04;
    font-size: 18vw;
    position: absolute;
    left: -3%; top: 50%;
    transform: translateY(-50%) rotate(3deg);
    pointer-events: none;
    line-height: 1;
}

.projects-grid {
    display: grid; grid-template-columns: 1fr;
    gap: 70px; align-items: center;
    position: relative; z-index: 1;
    text-align: center;
}
.projects-info .gold-rule { margin: 18px auto; }
.projects-features li { justify-content: center; }

.logo-projetos { max-width: 220px; margin-bottom: 28px; filter: brightness(0) invert(1); }

.projects-info h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold-light);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 20px;
}
.projects-info p { color: var(--gray); font-size: 1.05rem; margin-bottom: 28px; }

.projects-features li {
    display: flex; align-items: center; gap: 14px;
    color: var(--off-white);
    font-size: 1.05rem;
    margin-bottom: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(212,160,23,0.08);
}
.projects-features i { color: var(--gold); font-size: 1.1rem; }
.mt-20 { margin-top: 28px; display: inline-block; }

.projects-image {
    position: relative;
    border: 1px solid rgba(212,160,23,0.2);
    border-radius: var(--radius);
    overflow: hidden;
}
.projects-image::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(212,160,23,0.15), transparent 60%);
    pointer-events: none;
}
.projects-image img {
    width: 100%; filter: grayscale(25%);
    transition: filter 0.5s; display: block;
}
.projects-image:hover img { filter: grayscale(0%); }

/* ═══════════════════════════════════════════════════════════ */
/* B2B                                                         */
/* ═══════════════════════════════════════════════════════════ */
.b2b-section {
    background: var(--black-3);
    border-top: 1px solid rgba(212,160,23,0.15);
    border-bottom: 1px solid rgba(212,160,23,0.15);
}

.b2b-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px; margin-bottom: 50px;
}

.b2b-card {
    background: var(--black-2);
    padding: 48px 36px;
    border: 1px solid rgba(212,160,23,0.12);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.b2b-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition);
}
.b2b-card:hover { border-color: var(--gold); transform: translateY(-8px); box-shadow: 0 20px 40px rgba(212,160,23,0.1); }
.b2b-card:hover::before { transform: scaleX(1); }

.b2b-card i { font-size: 3rem; color: var(--gold); margin-bottom: 24px; }
.b2b-card h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 14px; text-transform: uppercase; }
.b2b-card p  { color: var(--gray); font-size: 0.97rem; line-height: 1.75; }

/* ═══════════════════════════════════════════════════════════ */
/* GALLERY                                                     */
/* ═══════════════════════════════════════════════════════════ */
.gallery {
    background: var(--black-2);
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative; overflow: hidden;
    height: 420px; cursor: pointer;
    border: 1px solid rgba(212,160,23,0.1);
}

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(50%) brightness(0.8);
    transition: transform 0.7s cubic-bezier(0.2,1,0.2,1), filter 0.5s ease;
}

.gallery-item .overlay {
    position: absolute; bottom: 0; left: 0; width: 100%;
    padding: 40px 30px 30px;
    background: linear-gradient(to top, rgba(10,10,10,0.97), rgba(10,10,10,0.5) 60%, transparent);
    transform: translateY(10px);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover img { transform: scale(1.08); filter: grayscale(0%) brightness(0.85); }
.gallery-item:hover .overlay { transform: translateY(0); opacity: 1; }

.gallery-item .overlay span {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: var(--gold-light);
    text-transform: uppercase;
}

/* Gold corner accent */
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 0;
    border-style: solid;
    border-width: 40px 40px 0 0;
    border-color: var(--gold) transparent transparent transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }

/* ═══════════════════════════════════════════════════════════ */
/* TESTIMONIALS                                                */
/* ═══════════════════════════════════════════════════════════ */
.testimonials { background: var(--black); }

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

.testimonial-card {
    background: var(--black-3);
    padding: 48px 40px;
    border: 1px solid rgba(212,160,23,0.12);
    position: relative;
    transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(212,160,23,0.4); transform: translateY(-6px); }

.quote {
    font-family: var(--font-tag);
    color: var(--gold);
    font-size: 3.5rem;
    margin-bottom: 16px;
    line-height: 1;
    opacity: 0.7;
}

.testimonial-card p {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--gray);
    margin-bottom: 28px;
    line-height: 1.8;
}
.testimonial-card .author h4 {
    color: var(--gold-light);
    font-family: var(--font-display);
    letter-spacing: 1px;
    font-size: 1.1rem;
}

/* ═══════════════════════════════════════════════════════════ */
/* CONTACT                                                     */
/* ═══════════════════════════════════════════════════════════ */
.contact { background: var(--black-3); }

.contact-box {
    background: var(--black-2);
    border: 1px solid rgba(212,160,23,0.2);
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.contact-info, .contact-action { padding: 72px 60px; }

.contact-info h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-info p { color: var(--gray); font-size: 1.05rem; margin-bottom: 36px; }

.info-list li {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 20px; font-size: 1.05rem; color: var(--off-white);
}
.info-list i { color: var(--gold); font-size: 1.2rem; width: 24px; text-align: center; }

.social-links { margin-top: 36px; display: flex; gap: 14px; }
.social-links a {
    width: 46px; height: 46px;
    border: 1px solid rgba(212,160,23,0.25);
    color: var(--gray);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-size: 1.15rem;
    transition: var(--transition);
}
.social-links a:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

.contact-action {
    background: linear-gradient(135deg, var(--black) 0%, #1a1200 100%);
    border-left: 1px solid rgba(212,160,23,0.2);
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    text-align: center;
    position: relative; overflow: hidden;
}

.contact-action::before {
    content: 'fale\nconosco';
    font-family: var(--font-tag);
    color: var(--gold);
    opacity: 0.05;
    font-size: 5rem;
    position: absolute;
    pointer-events: none;
    line-height: 1.1;
    white-space: pre;
}

.contact-action h3 {
    font-size: 2.2rem;
    color: var(--gold-light);
    margin-bottom: 14px;
    text-transform: uppercase;
    position: relative;
}
.contact-action p { color: var(--gray); margin-bottom: 28px; position: relative; }

/* ═══════════════════════════════════════════════════════════ */
/* FOOTER                                                      */
/* ═══════════════════════════════════════════════════════════ */
footer {
    background: var(--black);
    border-top: 1px solid rgba(212,160,23,0.15);
    padding: 40px 0;
    text-align: center;
    color: var(--gray-dim);
}

.footer-content { position: relative; }

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 5px;
    color: var(--white);
    margin-bottom: 12px;
}
.footer-logo span { color: var(--gold); }
footer p { font-size: 0.9rem; }

/* ═══════════════════════════════════════════════════════════ */
/* RESPONSIVE                                                  */
/* ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .about-grid, .projects-grid { grid-template-columns: 1fr; gap: 50px; }
    .contact-box { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 73px;
        flex-direction: column;
        background: rgba(10,10,10,0.98);
        width: 100%; text-align: center;
        transition: 0.4s;
        padding: 40px 0;
        border-bottom: 1px solid rgba(212,160,23,0.2);
        gap: 20px;
    }
    .nav-links.active { right: 0; }
    .menu-toggle { display: flex; }
    .desktop-btn { display: none; }

    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item { height: 300px; }
    .contact-info, .contact-action { padding: 44px 28px; }
    .hero-content h1 { font-size: clamp(3rem, 12vw, 4.5rem); }
}

/* ═══════════════════════════════════════════════════════════ */
/* SCROLL BAR                                                  */
/* ═══════════════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ═══════════════════════════════════════════════════════════ */
/* SELECTION                                                   */
/* ═══════════════════════════════════════════════════════════ */
::selection { background: var(--gold); color: var(--black); }
