/* ===================================================
   DODOLBERLIANJAYA — Main Stylesheet
   Letakkan file ini di: public/css/dodol.css
   =================================================== */

/* ===== CSS VARIABLES ===== */
:root {
    --gold: #C9962A;
    --gold-light: #E8B84B;
    --gold-pale: #F5E6C0;
    --dark: #1A1208;
    --dark-2: #2C1F0A;
    --cream: #FAF6ED;
    --cream-2: #F2EAD8;
    --text: #3D2E10;
    --text-muted: #7A6445;
    --white: #FFFFFF;
    --shadow: 0 4px 30px rgba(0,0,0,0.10);
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== NAVBAR ===== */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    background: rgba(26, 18, 8, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,150,42,0.2);
    transition: var(--transition);
}
#navbar.scrolled {
    background: rgba(26, 18, 8, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.5px;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}
.nav-links a {
    color: rgba(255,255,255,0.80);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: var(--transition);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--gold-light);
    transition: var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.btn-nav {
    background: var(--gold);
    color: var(--white) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
}
.btn-nav:hover {
    background: var(--gold-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201,150,42,0.35);
}
.btn-nav::after { display: none !important; }
    .login-dropdown-wrapper {
        position: relative;
    }
    .login-trigger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,0.18);
        background: rgba(255,255,255,0.06);
        color: rgba(255,255,255,0.92);
        cursor: pointer;
        transition: var(--transition);
        font-size: 1.15rem;
    }
    .login-trigger:hover {
        color: var(--gold-light);
        background: rgba(201,150,42,0.12);
    }
    .login-dropdown {
        position: absolute;
        right: 0;
        top: calc(100% + 0.75rem);
        min-width: 190px;
        background: rgba(26,18,8,0.98);
        border: 1px solid rgba(201,150,42,0.18);
        border-radius: 18px;
        padding: 0.35rem 0;
        box-shadow: 0 24px 60px rgba(0,0,0,0.2);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: var(--transition);
        z-index: 1100;
    }
    .login-dropdown.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .login-dropdown a {
        display: block;
        padding: 0.85rem 1rem;
        color: rgba(255,255,255,0.92);
        font-size: 0.95rem;
        font-weight: 500;
        transition: var(--transition);
    }
    .login-dropdown a:hover {
        color: var(--gold-light);
        background: rgba(201,150,42,0.1);
    }

    .mobile-login-title {
        display: block;
        color: rgba(255,255,255,0.75);
        font-size: 0.85rem;
        margin: 1rem 0 0.35rem;
    }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--gold-light);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(26, 18, 8, 0.98);
    backdrop-filter: blur(16px);
    z-index: 999;
    padding: 1.5rem 5% 2rem;
    border-bottom: 1px solid rgba(201,150,42,0.2);
    transform: translateY(-10px);
    opacity: 0;
    transition: var(--transition);
}
.mobile-menu.open {
    display: block;
    transform: translateY(0);
    opacity: 1;
}
.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.mobile-menu a {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold-light); padding-left: 0.5rem; }
.mobile-menu .btn-nav {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
}

.mobile-login-title {
    display: block;
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    margin: 1rem 0 0.35rem;
}

/* Responsive navbar */
@media (max-width: 980px) {
    #navbar {
        padding: 0 1.2rem;
        height: 64px;
    }
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .hero-content {
        padding: 0 1.2rem;
    }
}

@media (max-width: 768px) {
    #navbar {
        padding: 0 1rem;
        height: 60px;
    }
    .mobile-menu {
        top: 60px;
        padding: 1.25rem 1rem 1.5rem;
    }
    .mobile-menu a {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .mobile-menu .btn-nav {
        width: 100%;
        text-align: center;
    }
    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.6rem);
    }
    .hero-desc {
        font-size: 0.95rem;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    #navbar {
        height: 56px;
    }
    .hero-badge {
        padding: 0.35rem 0.9rem;
    }
    .btn-primary,
    .btn-outline {
        width: 100%;
    }
}

/* ===== PRODUK PAGE ===== */
.produk-hero {
    padding: 8rem 0 4rem;
    min-height: calc(100vh - 70px);
}
.produk-grid {
    display: grid;
    /* Force exactly 3 columns on desktop to avoid empty gaps */
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem auto 0;
    max-width: 1200px;
    width: calc(100% - 10%);
}
.product-card {
    background: rgba(255,255,255,0.95);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: var(--transition);
}
.product-card:hover {
    transform: translateY(-5px);
}
.product-image {
    min-height: 220px;
    background-size: cover;
    background-position: center;
}

/* Produk - responsive tweaks */
@media (max-width: 1024px) {
    .produk-hero { padding: 6.5rem 0 3rem; }
    .produk-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .produk-hero { padding: 5.5rem 0 2.5rem; }
    .produk-grid { grid-template-columns: 1fr; gap: 1rem; }
    .product-image { min-height: 180px; }
    .product-card { border-radius: 18px; }
}

@media (max-width: 480px) {
    .produk-hero { padding: 4.5rem 0 2rem; }
    .product-image { min-height: 140px; }
    .product-card h3 { font-size: 1rem; }
    .product-card p { font-size: 0.9rem; }
    .product-price { margin-bottom: 1rem; }
}
.product-card h3 {
    margin: 0.75rem 1.25rem 0.4rem;
    font-size: 1rem;
    line-height: 1.2;
    color: var(--dark);
}
.product-card p {
    margin: 0 1.25rem 0.6rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.9rem;
}
.product-price {
    display: block;
    margin: 0 1.25rem 0.9rem;
    font-weight: 700;
    color: var(--gold);
}

/* Hide empty description/price to avoid extra whitespace */
.product-card p:empty,
.product-price:empty {
    display: none;
}

/* Slightly reduce card padding to tighten white area */
.product-card { padding-bottom: 0.6rem; }

/* ===== HERO ===== */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/produk.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.35);
    transform: scale(1.05);
    transition: transform 8s ease;
}
#hero:hover .hero-bg { transform: scale(1.0); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,18,8,0.85) 0%, rgba(44,31,10,0.50) 60%, transparent 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
    max-width: 700px;
    margin-top: 70px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201,150,42,0.2);
    border: 1px solid rgba(201,150,42,0.4);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease forwards;
}
.hero-badge i { font-size: 0.6rem; }
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 0.25rem;
    animation: fadeInDown 0.8s ease 0.1s both;
}
.hero-title span {
    color: var(--gold-light);
    display: block;
}
.hero-desc {
    color: rgba(255,255,255,0.70);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 480px;
    animation: fadeInDown 0.8s ease 0.2s both;
}
.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInDown 0.8s ease 0.3s both;
}
.btn-primary {
    background: var(--gold);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    border: 2px solid var(--gold);
    cursor: pointer;
    display: inline-block;
}
.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(201,150,42,0.4);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid rgba(255,255,255,0.35);
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
}
.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
    transform: translateY(-3px);
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--cream-2);
    padding: 1.5rem 5%;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.stat-item { padding: 0.5rem; }
.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.25rem;
}
.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* ===== SECTION COMMON ===== */
section { padding: 5rem 5%; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 1rem;
}
.section-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}
.inner { max-width: 1200px; margin: 0 auto; }

/* ===== ABOUT ===== */
#about { background: var(--white); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}
.about-text h2 span { color: var(--gold); }
.about-text p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}
.about-stat-box {
    background: var(--cream);
    border: 1px solid var(--cream-2);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
}
.about-stat-box .val {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}
.about-stat-box .lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 0.15rem;
}
.about-visual { position: relative; }
.rating-card {
    background: var(--dark);
    color: var(--white);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.rating-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 140px; height: 140px;
    background: radial-gradient(circle, rgba(201,150,42,0.25) 0%, transparent 70%);
    border-radius: 50%;
}
.rating-number {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stars { color: var(--gold-light); font-size: 1.5rem; letter-spacing: 3px; margin-bottom: 0.5rem; }
.rating-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ===== SERVICES ===== */
#services { background: var(--cream); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--cream-2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.10);
    border-color: var(--gold-pale);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
    color: var(--white);
}
.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.6rem;
}
.service-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== GALLERY ===== */
#gallery { background: var(--white); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    background: var(--cream-2);
    cursor: pointer;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,18,8,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay i { color: var(--white); font-size: 1.5rem; }
.gallery-item.large { grid-column: span 2; aspect-ratio: 16/9; }

/* ===== CONTACT ===== */
#contact { background: var(--cream); }
.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}
.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    text-align: center;
    border: 1px solid var(--cream-2);
    transition: var(--transition);
}
.contact-card:hover {
    border-color: var(--gold-pale);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.contact-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.2rem;
}
.contact-card h4 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.contact-card p {
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 500;
    line-height: 1.5;
}
.contact-card a {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    margin-top: 0.4rem;
    transition: var(--transition);
}
.contact-card a:hover { color: var(--gold-light); }

/* Map */
.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    height: 400px;
    max-width: 1200px;
    margin: 0 auto;
    border: 2px solid var(--cream-2);
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 4rem 5% 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}
.footer-brand .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 1rem;
}
.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 280px;
}
.footer-col h5 {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a {
    font-size: 0.875rem;
    transition: var(--transition);
    display: inline-block;
}
.footer-col a:hover { color: var(--gold-light); transform: translateX(4px); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== BACK TO TOP ===== */
#backToTop {
    position: fixed;
    bottom: 2rem; right: 2rem;
    width: 46px; height: 46px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(201,150,42,0.4);
}
#backToTop.visible { opacity: 1; pointer-events: auto; }
#backToTop:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-cards { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    section { padding: 4rem 5%; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item.large { grid-column: span 2; }
    .contact-cards { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-brand { grid-column: auto; }
    .map-container { height: 280px; }
}

@media (max-width: 480px) {
    .hero-cta { flex-direction: column; }
    .btn-primary, .btn-outline { text-align: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.large { grid-column: auto; aspect-ratio: 4/3; }
    .contact-cards { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; }
}
