@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;600;700&family=Quicksand:wght@300;400;500;600;700&display=swap');

/* ===== VARIABLES ===== */
:root {
    --peach: #E8B4A0;
    --peach-light: #F5DDD3;
    --peach-lighter: #FDF2ED;
    --peach-dark: #D4967D;
    --rose: #E84E8A;
    --rose-light: #F8A4C8;
    --yellow: #F5C842;
    --yellow-light: #FFF3C4;
    --green: #7BC67E;
    --navy: #2C3E50;
    --cream: #FFFBF7;
    --white: #FFFFFF;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-card: 0 8px 32px rgba(232,180,160,0.25);
    --shadow-hover: 0 12px 40px rgba(232,180,160,0.35);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
    font-family: 'Quicksand', sans-serif;
    background: var(--cream);
    color: var(--navy);
    overflow-x: hidden;
    line-height: 1.7;
}

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

/* ===== NAV ===== */
nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
    background: transparent;
}
nav.scrolled {
    background: rgba(255,251,247,0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 2px 24px rgba(0,0,0,0.06);
    padding: 0.55rem 2rem;
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    height: 52px;
    border-radius: 50%;
    object-fit: contain;
    transition: height 0.3s;
}
nav.scrolled .nav-logo { height: 42px; }
.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    position: relative;
    padding: 0.3rem 0;
    transition: color 0.3s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 3px;
    background: var(--peach);
    border-radius: 3px;
    transition: width 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--peach-dark); }

.nav-contact-btn {
    background: var(--peach) !important;
    color: var(--white) !important;
    padding: 0.55rem 1.4rem !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 15px rgba(232,180,160,0.3);
    transition: all 0.3s !important;
}
.nav-contact-btn::after { display: none !important; }
.nav-contact-btn:hover {
    background: var(--peach-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,180,160,0.4) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1002;
}
.hamburger span {
    width: 28px; height: 3px;
    background: var(--navy);
    border-radius: 3px;
    transition: all 0.3s;
}
.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(6px,-6px); }

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: var(--peach); color: var(--white);
    text-decoration: none; border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600; font-size: 1rem;
    border: none; cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(232,180,160,0.35);
}
.btn-primary:hover {
    background: var(--peach-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232,180,160,0.45);
}
.btn-secondary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: transparent; color: var(--navy);
    text-decoration: none; border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600; font-size: 1rem;
    border: 2px solid var(--peach-light);
    cursor: pointer; transition: all 0.3s;
}
.btn-secondary:hover {
    border-color: var(--peach);
    background: var(--peach-lighter);
    transform: translateY(-3px);
}

/* ===== SECTION TITLES ===== */
.section-title { text-align: center; margin-bottom: 3.5rem; }
.section-title h2 {
    font-family: 'Caveat', cursive;
    font-size: 3.2rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
}
.section-title p {
    font-size: 1.1rem; color: #7A8A9A;
    max-width: 600px; margin: 0 auto;
}
.accent-line {
    width: 60px; height: 4px;
    background: var(--peach);
    border-radius: 4px;
    margin: 1rem auto 0;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s, transform 0.7s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ===== BACKGROUND CONFETTI (falling) ===== */
.confetti-container {
    position: fixed; inset: 0;
    pointer-events: none; z-index: 0; overflow: hidden;
}
.confetti {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: confettiFall linear infinite;
}
@keyframes confettiFall {
    0%   { opacity: 0; transform: translateY(-10vh) rotate(0deg); }
    10%  { opacity: 0.5; }
    90%  { opacity: 0.5; }
    100% { opacity: 0; transform: translateY(105vh) rotate(720deg); }
}

/* ==========================================================
   CURSOR CONFETTI TRAIL
   ========================================================== */
.cursor-particle {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 1;
    animation: cursorDrift 0.8s ease-out forwards;
}

@keyframes cursorDrift {
    0% {
        opacity: 0.9;
        transform: translate(0, 0) scale(1);
    }
    50% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translate(var(--dx), var(--dy)) scale(0);
    }
}

/* ============================================================
   INDEX PAGE — HERO
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    padding: 7rem 2rem 4rem;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg .circle {
    position: absolute; border-radius: 50%;
    opacity: 0.14;
    animation: floatBubble 9s ease-in-out infinite;
}
.hero-bg .circle:nth-child(1) { width: 420px; height: 420px; background: var(--peach); top: -120px; right: -60px; }
.hero-bg .circle:nth-child(2) { width: 260px; height: 260px; background: var(--rose-light); bottom: 8%; left: -80px; animation-delay: -2s; }
.hero-bg .circle:nth-child(3) { width: 180px; height: 180px; background: var(--yellow); top: 28%; right: 14%; animation-delay: -4s; }
.hero-bg .circle:nth-child(4) { width: 120px; height: 120px; background: var(--green); bottom: 18%; right: 28%; animation-delay: -6s; }

@keyframes floatBubble {
    0%, 100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(12px,-18px) scale(1.04); }
    66% { transform: translate(-8px,14px) scale(0.96); }
}

.hero-content {
    position: relative; z-index: 1;
    max-width: 1100px; width: 100%;
    display: flex; align-items: center; gap: 4rem;
}
.hero-text { flex: 1; }
.hero-text .subtitle {
    font-family: 'Caveat', cursive; font-size: 1.4rem;
    color: var(--peach-dark); margin-bottom: 0.5rem;
    opacity: 0; animation: fadeUp 0.8s ease forwards 0.3s;
}
.hero-text h1 {
    font-family: 'Caveat', cursive; font-size: 4.5rem;
    line-height: 1.1; color: var(--navy); margin-bottom: 0.5rem;
    opacity: 0; animation: fadeUp 0.8s ease forwards 0.5s;
}
.hero-text h1 span { color: var(--peach-dark); }
.hero-text .tagline {
    font-size: 1.1rem; font-weight: 500; color: #6B7B8D;
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0; animation: fadeUp 0.8s ease forwards 0.7s;
}
.hero-text > p {
    font-size: 1.08rem; color: #5A6A7A;
    max-width: 500px; margin-bottom: 2rem;
    opacity: 0; animation: fadeUp 0.8s ease forwards 0.9s;
}
.hero-buttons {
    display: flex; gap: 1rem;
    opacity: 0; animation: fadeUp 0.8s ease forwards 1.1s;
}
.hero-image {
    flex: 0 0 360px;
    opacity: 0; animation: fadeScale 1s ease forwards 0.6s;
}
.hero-image img {
    width: 360px; height: 360px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(232,180,160,0.3));
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeScale {
    from { opacity: 0; transform: scale(0.85); }
    to   { opacity: 1; transform: scale(1); }
}

/* ============================================================
   INDEX — JUDITH
   ============================================================ */
.section-judith { padding: 6rem 2rem; }
.section-judith .container {
    max-width: 1000px; margin: 0 auto;
    display: flex; gap: 4rem; align-items: center;
}
.judith-image-wrapper { flex: 0 0 280px; position: relative; }
.judith-image-wrapper::before {
    content: ''; position: absolute;
    width: 100%; height: 100%;
    border-radius: 30px; background: var(--peach-light);
    top: 15px; left: 15px; z-index: 0;
}
.judith-image-wrapper img {
    width: 280px; height: 340px;
    object-fit: cover; object-position: top;
    border-radius: 30px;
    position: relative; z-index: 1;
    box-shadow: var(--shadow-card);
}
.judith-text h2 {
    font-family: 'Caveat', cursive;
    font-size: 2.8rem; color: var(--navy); margin-bottom: 1rem;
}
.judith-text h2 span { color: var(--peach-dark); }
.judith-text p { font-size: 1.05rem; color: #5A6A7A; margin-bottom: 1rem; }
.judith-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.judith-badges span {
    padding: 0.4rem 1rem; border-radius: 50px;
    font-size: 0.85rem; font-weight: 600;
    background: var(--peach-lighter); color: var(--peach-dark);
    border: 1px solid var(--peach-light);
}

/* ============================================================
   INDEX — SERVICES
   ============================================================ */
.section-services {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--cream) 0%, var(--peach-lighter) 50%, var(--cream) 100%);
}
.services-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.service-card {
    background: var(--white); border-radius: 24px;
    padding: 2rem; box-shadow: var(--shadow-soft);
    transition: transform 0.4s, box-shadow 0.4s;
    position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 5px;
    border-radius: 24px 24px 0 0;
    transition: height 0.3s;
}
.service-card:nth-child(1)::before { background: var(--peach); }
.service-card:nth-child(2)::before { background: var(--rose); }
.service-card:nth-child(3)::before { background: var(--yellow); }
.service-card:nth-child(4)::before { background: var(--green); }
.service-card:nth-child(5)::before { background: var(--rose-light); }
.service-card:nth-child(6)::before { background: var(--peach-dark); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.service-card:hover::before { height: 8px; }
.service-icon {
    width: 60px; height: 60px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin-bottom: 1.2rem;
}
.service-card:nth-child(1) .service-icon { background: var(--peach-lighter); }
.service-card:nth-child(2) .service-icon { background: #FCE4F0; }
.service-card:nth-child(3) .service-icon { background: var(--yellow-light); }
.service-card:nth-child(4) .service-icon { background: #E0F5E1; }
.service-card:nth-child(5) .service-icon { background: #FDE8F2; }
.service-card:nth-child(6) .service-icon { background: var(--peach-lighter); }
.service-card h3 {
    font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem;
}
.service-card .service-audience {
    font-size: 0.85rem; font-weight: 600; color: var(--peach-dark);
    margin-bottom: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em;
}
.service-card p { font-size: 0.95rem; color: #6B7B8D; line-height: 1.6; }

/* ============================================================
   INDEX — SPECTACLES
   ============================================================ */
.section-spectacles { padding: 6rem 2rem; }
.spectacles-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 2.5rem;
}
.spectacle-card {
    border-radius: 24px; overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.4s, box-shadow 0.4s;
    background: var(--white);
}
.spectacle-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-hover); }
.spectacle-card .img-wrap { overflow: hidden; height: 300px; }
.spectacle-card .img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s;
}
.spectacle-card:hover .img-wrap img { transform: scale(1.06); }
.spectacle-card .card-body { padding: 1.5rem; }
.spectacle-card h3 {
    font-family: 'Caveat', cursive; font-size: 1.7rem;
    color: var(--navy); margin-bottom: 0.4rem;
}
.spectacle-card .duration {
    font-size: 0.85rem; font-weight: 700; color: var(--peach-dark);
    text-transform: uppercase; letter-spacing: 0.08em;
}
.spectacle-card p { font-size: 0.95rem; color: #6B7B8D; margin-top: 0.5rem; }

/* ============================================================
   INDEX — GALLERY
   ============================================================ */
.section-gallery {
    padding: 5rem 2rem 7rem;
    background: linear-gradient(180deg, var(--cream) 0%, var(--peach-lighter) 100%);
    position: relative; overflow: visible;
}
.gallery-controls {
    text-align: center;
    margin-bottom: 2rem;
    position: relative; z-index: 50;
}
.gallery-hint {
    font-family: 'Caveat', cursive; font-size: 1.35rem;
    color: var(--peach-dark); margin-bottom: 0.8rem;
    transition: opacity 0.5s;
}
.gallery-hint.hidden { opacity: 0; pointer-events: none; }
.gallery-toggle-btn {
    padding: 0.75rem 2rem;
    background: var(--white);
    border: 2px solid var(--peach); border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600; font-size: 1rem;
    color: var(--peach-dark); cursor: pointer;
    transition: all 0.3s;
}
.gallery-toggle-btn:hover {
    background: var(--peach); color: var(--white);
    transform: translateY(-2px);
}

.gallery-desk {
    max-width: 1200px; margin: 0 auto;
    position: relative;
    height: 620px;
}
.stack-card {
    position: absolute;
    width: 230px; height: 310px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: var(--white);
    border: 5px solid white;
    box-shadow: 0 6px 24px rgba(0,0,0,0.16), 0 2px 6px rgba(0,0,0,0.1);
    transition: left 0.9s cubic-bezier(0.34,1.56,0.64,1),
                top 0.9s cubic-bezier(0.34,1.56,0.64,1),
                transform 0.6s cubic-bezier(0.34,1.56,0.64,1),
                box-shadow 0.3s;
    will-change: left, top, transform;
}
.stack-card img {
    width: 100%; height: 100%; object-fit: cover;
    pointer-events: none;
}
.stack-card .card-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2.5rem 0.8rem 0.8rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    color: white;
    font-family: 'Caveat', cursive; font-size: 1.15rem;
    opacity: 0; transition: opacity 0.3s;
    pointer-events: none;
}
.stack-card:hover .card-label { opacity: 1; }
.stack-card:hover {
    box-shadow: 0 14px 45px rgba(0,0,0,0.22), 0 4px 12px rgba(0,0,0,0.12);
}

/* ===== ZOOMED CARD (flies toward viewer) ===== */
.stack-card.zoomed {
    border-radius: 14px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 10px 30px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.9);
    cursor: default;
}
.stack-card.zoomed .card-label {
    opacity: 1;
    font-size: 1.4rem;
    padding: 3rem 1rem 1rem;
}

/* Close button on zoomed card */
.zoom-close {
    position: absolute;
    top: 8px; right: 8px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 210;
    transition: background 0.2s, transform 0.2s;
    pointer-events: auto;
}
.zoom-close:hover {
    background: rgba(0,0,0,0.7);
    transform: scale(1.15);
}

/* ===== LIGHTBOX (used as backdrop only) ===== */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 150;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.lightbox.active { opacity: 1; pointer-events: all; }

/* hide the original lightbox inner elements */
.lightbox img,
.lightbox .lightbox-close {
    display: none;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
    padding: 10rem 2rem 4rem;
    text-align: center;
    position: relative; overflow: hidden;
}
.contact-hero::before {
    content: ''; position: absolute;
    width: 500px; height: 500px; border-radius: 50%;
    background: var(--peach); opacity: 0.08;
    top: -200px; right: -100px;
    animation: floatBubble 8s ease-in-out infinite;
}
.contact-hero::after {
    content: ''; position: absolute;
    width: 300px; height: 300px; border-radius: 50%;
    background: var(--rose-light); opacity: 0.08;
    bottom: -50px; left: -100px;
    animation: floatBubble 8s ease-in-out infinite reverse;
}
.contact-hero h1 {
    font-family: 'Caveat', cursive; font-size: 4rem;
    color: var(--navy); position: relative;
    opacity: 0; animation: fadeUp 0.8s ease forwards 0.2s;
}
.contact-hero h1 span { color: var(--peach-dark); }
.contact-hero > p {
    font-size: 1.15rem; color: #7A8A9A; margin-top: 0.5rem;
    position: relative;
    opacity: 0; animation: fadeUp 0.8s ease forwards 0.4s;
}

.contact-content {
    max-width: 900px; margin: 0 auto;
    padding: 2rem 2rem 6rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}
.contact-card {
    background: var(--white); border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(232,180,160,0.2);
    opacity: 0; animation: fadeUp 0.8s ease forwards;
}
.contact-card:nth-child(1) { animation-delay: 0.5s; }
.contact-card:nth-child(2) { animation-delay: 0.7s; }
.contact-card h2 {
    font-family: 'Caveat', cursive; font-size: 2rem;
    color: var(--navy); margin-bottom: 1.5rem;
}
.contact-item {
    display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem;
}
.contact-icon {
    width: 50px; height: 50px; border-radius: 14px;
    background: var(--peach-lighter);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; flex-shrink: 0;
    transition: transform 0.3s;
}
.contact-item:hover .contact-icon { transform: scale(1.1) rotate(5deg); }
.contact-details h3 {
    font-size: 0.85rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--peach-dark); margin-bottom: 0.2rem;
}
.contact-details p { font-size: 1.05rem; color: var(--navy); }
.contact-details a {
    color: var(--navy); text-decoration: none;
    border-bottom: 2px solid var(--peach-light);
    transition: border-color 0.3s;
}
.contact-details a:hover { border-color: var(--peach); }

.about-card {
    display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center;
}
.about-card img {
    width: 120px; height: 120px; object-fit: contain;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 10px 20px rgba(232,180,160,0.3));
}
.about-card p { font-size: 1.05rem; color: #5A6A7A; margin-bottom: 1rem; }
.social-link {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.8rem 1.8rem;
    background: #1877F2; color: white !important;
    text-decoration: none !important; border-radius: 50px;
    font-weight: 600; font-size: 0.95rem;
    border: none !important; border-bottom: none !important;
    box-shadow: 0 4px 15px rgba(24,119,242,0.3);
    transition: all 0.3s;
}
.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(24,119,242,0.4);
}

.map-section {
    max-width: 900px; margin: 0 auto 4rem; padding: 0 2rem;
    opacity: 0; animation: fadeUp 0.8s ease forwards 0.9s;
}
.map-card {
    background: var(--white); border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(232,180,160,0.2);
    text-align: center;
}
.map-card h2 {
    font-family: 'Caveat', cursive; font-size: 2rem;
    color: var(--navy); margin-bottom: 1rem;
}
.map-card p { color: #7A8A9A; font-size: 1.05rem; }
.map-card .highlight {
    display: inline-block; margin-top: 1rem;
    padding: 0.6rem 1.5rem; background: var(--peach-lighter);
    border-radius: 50px; color: var(--peach-dark);
    font-weight: 700; font-size: 0.95rem;
}

/* ===== FOOTER ===== */
footer {
    background: var(--navy); color: var(--peach-light);
    padding: 3rem 2rem; text-align: center;
}
.footer-inner { max-width: 800px; margin: 0 auto; }
.footer-logo {
    height: 50px; margin-bottom: 1rem;
    filter: brightness(2); border-radius: 50%;
}
footer p { font-size: 0.9rem; opacity: 0.7; margin-bottom: 0.5rem; }
footer a {
    color: var(--peach-light); text-decoration: none;
    transition: color 0.3s;
}
footer a:hover { color: var(--peach); }
.footer-links {
    display: flex; justify-content: center; gap: 2rem; margin-top: 1.5rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .hero-content { flex-direction: column-reverse; text-align: center; }
    .hero-text h1 { font-size: 3.2rem; }
    .hero-text > p { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-image { flex: none; }
    .hero-image img { width: 240px; height: 240px; }

    .section-judith .container { flex-direction: column; text-align: center; }
    .judith-image-wrapper { flex: none; }
    .judith-badges { justify-content: center; }

    .services-grid, .spectacles-grid { grid-template-columns: 1fr; max-width: 500px; }

    .gallery-desk { height: 520px; }
    .stack-card { width: 190px; height: 250px; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none !important;
        position: fixed; inset: 0;
        background: rgba(255,251,247,0.98);
        flex-direction: column !important;
        align-items: center !important; justify-content: center !important;
        gap: 2rem !important;
        backdrop-filter: blur(12px);
        z-index: 1001;
    }
    .nav-links.open { display: flex !important; }
    .nav-links a { font-size: 1.3rem !important; }
    .hamburger { display: flex; }
    .hero-text h1 { font-size: 2.8rem; }
    .section-title h2 { font-size: 2.4rem; }
    .contact-hero h1 { font-size: 3rem; }
    .contact-content { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
    .stack-card { width: 150px; height: 200px; }
    .gallery-desk { height: 450px; }
}
