.hero {
    width: 100%;
    height: 70vh;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(14,18,28,0.2) 0%, rgba(14,18,28,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 3rem 5%;
}

.hero-text { color: #fff; }

.breadcrumb {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    opacity: 0.7;
    margin-bottom: 0.75rem;
}

.breadcrumb a { color: #fff; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6rem);
    margin: 0;
    letter-spacing: 0.1rem;
    line-height: 1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-tag {
    display: inline-block;
    background: var(--gold);
    color: #1a1008;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    margin-top: 1rem;
    text-transform: uppercase;
}

/* CONTENT */
.content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 5%;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
    letter-spacing: 0.05rem;
}

.body-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin: 0 0 1.5rem 0;
}

/* BACK BUTTON */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05rem;
    margin-bottom: 3rem;
    transition: gap 0.2s;
}

.back-btn:hover { gap: 0.75rem; }

/* GALLERY */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-img {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(201,168,76,0.2);
}

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

.gallery-img:hover img { transform: scale(1.06); }
.gallery-img.wide { grid-column: span 2; }

/* MAP */
.map-wrap {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid rgba(201,168,76,0.25);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.map-wrap iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

@media (max-width: 900px) {
    .gallery { grid-template-columns: 1fr 1fr; }
    .gallery-img.wide { grid-column: span 2; }
}

@media (max-width: 500px) {
    .gallery { grid-template-columns: 1fr; }
    .gallery-img.wide { grid-column: span 1; }
}

.content > *,
.gallery-img,
.map-wrap {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.content > *.visible,
.gallery-img.visible,
.map-wrap.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger gallery images */
.gallery-img:nth-child(1) { transition-delay: 0.1s; }
.gallery-img:nth-child(2) { transition-delay: 0.2s; }
.gallery-img:nth-child(3) { transition-delay: 0.3s; }
.gallery-img:nth-child(4) { transition-delay: 0.4s; }