/* ==========================================================================
   MARCO ALMEIDA — ESTÚDIO DE IMAGEM MASCULINA
   Architecture: Architectural Minimalist (Apple/Porsche/Aesop)
   Colors: #090909, #161616, #262626, #D9D9D9, #FFFFFF
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES & RESET
   -------------------------------------------------------------------------- */
:root {
    --bg-dark: #090909;
    --bg-card: #161616;
    --bg-card-hover: #262626;
    --border-color: rgba(217, 217, 217, 0.12);
    --border-hover: rgba(255, 255, 255, 0.28);
    
    --text-main: #FFFFFF;
    --text-muted: #D9D9D9;
    --text-subtle: #8E8E93;
    
    --accent-silver: #D9D9D9;
    --accent-glow: rgba(217, 217, 217, 0.08);
    
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-duration: 0.4s;
    
    --max-width: 1240px;
    --nav-height: 80px;
    --border-radius: 4px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-main);
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Accessibility Focus */
a:focus-visible, button:focus-visible {
    outline: 2px solid var(--accent-silver);
    outline-offset: 4px;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    line-height: 1.15;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all var(--transition-duration) var(--transition-smooth);
}

ul {
    list-style: none;
}

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

/* --------------------------------------------------------------------------
   2. UTILITIES & DESIGN SYSTEM
   -------------------------------------------------------------------------- */
.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-padding {
    padding: 140px 0;
}

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

.section-header {
    margin-bottom: 70px;
}

.section-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--text-subtle);
    display: block;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    color: var(--text-main);
}

/* Unified UI Card Concept */
.ui-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    transition: transform var(--transition-duration) var(--transition-smooth),
                background-color var(--transition-duration) var(--transition-smooth),
                border-color var(--transition-duration) var(--transition-smooth),
                box-shadow var(--transition-duration) var(--transition-smooth);
}

.ui-card:hover {
    background-color: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-duration) var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--text-main);
    color: var(--bg-dark);
    border-color: var(--text-main);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--text-main);
    border-color: var(--text-main);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.18);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--bg-card-hover);
    border-color: var(--text-main);
}

.btn-large {
    padding: 20px 42px;
    font-size: 0.9rem;
}

.btn-hero-cta {
    min-width: 180px;
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   3. NAVBAR
   -------------------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    background-color: rgba(9, 9, 9, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.4s, border-color 0.4s;
}

.navbar.scrolled {
    background-color: rgba(9, 9, 9, 0.94);
    border-color: rgba(255, 255, 255, 0.15);
}

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

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--text-main);
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--text-subtle);
    text-transform: uppercase;
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--text-main);
    transition: width 0.3s var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-main);
}

.nav-link.active::after, .nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-subtle);
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.lang-btn.active, .lang-btn:hover {
    color: var(--text-main);
}

.lang-divider {
    color: var(--border-color);
    font-size: 0.75rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
    transition: transform 0.3s, opacity 0.3s;
}

/* --------------------------------------------------------------------------
   4. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.5) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(9,9,9,0.35) 0%, rgba(9,9,9,0.65) 60%, rgba(9,9,9,1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 880px;
    text-align: center;
    margin-top: 40px;
}

.hero-subtitle {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: var(--accent-silver);
    display: block;
    margin-bottom: 22px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-title {
    font-size: clamp(2.8rem, 6.5vw, 5rem);
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    font-weight: 700;
    text-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

.hero-text {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 48px;
    font-weight: 300;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 24px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background-color: var(--text-main);
    border-radius: 2px;
    animation: scrollAnimation 2s infinite var(--transition-smooth);
}

@keyframes scrollAnimation {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(16px); }
}

/* --------------------------------------------------------------------------
   5. ABOUT SECTION
   -------------------------------------------------------------------------- */
.grid-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(35%) contrast(1.08);
    transition: transform 0.8s var(--transition-smooth);
}

.about-image-wrapper:hover img {
    transform: scale(1.03);
}

.about-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(9, 9, 9, 0.88);
    backdrop-filter: blur(12px);
    padding: 14px 24px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    color: var(--text-main);
}

.badge-sub {
    font-size: 0.75rem;
    color: var(--text-subtle);
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
    font-weight: 300;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-subtle);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

/* --------------------------------------------------------------------------
   6. SERVICES SECTION
   -------------------------------------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-icon {
    color: var(--accent-silver);
    margin-bottom: 28px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 14px;
    color: var(--text-main);
}

.card-text {
    color: var(--text-subtle);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   7. GALLERY SECTION
   -------------------------------------------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(25%);
    transition: transform 0.6s var(--transition-smooth), filter 0.6s var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 9, 9, 0.78);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-duration) var(--transition-smooth);
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-main);
    border: 1px solid var(--text-main);
    padding: 12px 24px;
    border-radius: var(--border-radius);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 9, 9, 0.95);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--transition-smooth);
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.lightbox-caption {
    margin-top: 20px;
    color: var(--text-muted);
    font-family: var(--font-heading);
    letter-spacing: 0.12em;
    font-size: 1.1rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 2.5rem;
    cursor: pointer;
    transition: opacity 0.3s;
}

.lightbox-close:hover {
    opacity: 0.6;
}

/* --------------------------------------------------------------------------
   8. REVIEWS SECTION
   -------------------------------------------------------------------------- */
.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 16px;
    background: var(--bg-card);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.stars {
    color: #E5A93C;
    letter-spacing: 2px;
    font-size: 1rem;
}

.rating-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-bottom: 50px;
}

.review-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.review-date {
    font-size: 0.75rem;
    color: var(--text-subtle);
}

.review-comment {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 28px;
    line-height: 1.7;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-card-hover);
    color: var(--accent-silver);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid var(--border-color);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 0.9rem;
    color: var(--text-main);
}

.author-info span {
    font-size: 0.75rem;
    color: var(--text-subtle);
}

/* --------------------------------------------------------------------------
   9. LOCATION SECTION
   -------------------------------------------------------------------------- */
.grid-location {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-desc {
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 36px;
    font-size: 1.05rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 18px;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: border-color 0.3s;
}

.detail-item:hover {
    border-color: var(--border-hover);
}

.detail-item.highlight-parking {
    background-color: var(--bg-card);
    border-color: rgba(217, 217, 217, 0.2);
}

.detail-icon {
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    flex-shrink: 0;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-content strong {
    font-size: 0.95rem;
    color: var(--text-main);
    letter-spacing: 0.05em;
}

.detail-content span {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.location-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Location Map Container & Embedded Iframe */
.location-map-wrapper {
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 480px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
    transition: border-color 0.4s var(--transition-smooth);
}

.location-map-wrapper:hover {
    border-color: var(--border-hover);
}

.map-container-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.location-iframe {
    filter: grayscale(100%) invert(90%) contrast(85%); /* O Pino ficará visível sem chocar a paleta */
    width: 100%;
    height: 100%;
    pointer-events: none; /* Permite que o clique inteiro vá para a URL do Google Maps */
}

.map-overlay-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(9, 9, 9, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    padding: 10px 18px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background-color 0.3s, border-color 0.3s;
}

.map-container-link:hover .map-overlay-badge {
    background: var(--bg-card-hover);
    border-color: var(--text-main);
}

/* --------------------------------------------------------------------------
   10. FAQ SECTION
   -------------------------------------------------------------------------- */
.faq-accordion {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.active {
    border-color: var(--border-hover);
}

.faq-question {
    width: 100%;
    padding: 26px 32px;
    background: none;
    border: none;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.faq-icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--text-main);
    transition: transform 0.3s var(--transition-smooth);
}

.faq-icon::before {
    top: 7px;
    left: 0;
    width: 16px;
    height: 2px;
}

.faq-icon::after {
    top: 0;
    left: 7px;
    width: 2px;
    height: 16px;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--transition-smooth), padding 0.4s var(--transition-smooth);
    padding: 0 32px;
    color: var(--text-muted);
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.75;
}

.faq-item.active .faq-answer {
    padding: 0 32px 32px 32px;
}

/* --------------------------------------------------------------------------
   11. CTA & FOOTER
   -------------------------------------------------------------------------- */
.cta-section {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cta-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    margin-bottom: 20px;
}

.cta-subtitle {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.footer {
    background-color: var(--bg-dark);
    padding-top: 100px;
}

.grid-footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 70px;
    padding-bottom: 70px;
    border-bottom: 1px solid var(--border-color);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    display: block;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-subtle);
    font-size: 0.9rem;
    font-weight: 300;
    max-width: 380px;
}

.footer-nav h4, .footer-contact h4 {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    color: var(--text-main);
    margin-bottom: 24px;
}

.footer-nav ul, .footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav a, .footer-contact a, .footer-contact span {
    color: var(--text-subtle);
    font-size: 0.85rem;
    font-weight: 300;
}

.footer-nav a:hover, .footer-contact a:hover {
    color: var(--text-main);
}

.footer-bottom {
    padding: 36px 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-subtle);
}

/* --------------------------------------------------------------------------
   12. RESPONSIVENESS
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    .grid-about, .grid-location {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-footer {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-map-wrapper {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background-color: rgba(9, 9, 9, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 36px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s var(--transition-smooth), opacity 0.4s var(--transition-smooth);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .nav-btn {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .section-padding {
        padding: 90px 0;
    }
}