/* TERRITORIO PAGE - specifico */

/* PAGE HERO */
.page-hero {
    height: 70vh;
    height: 70svh;
    min-height: 500px; width: 100%;
    background: url('../../foto/territorio/header.jpg') no-repeat center center/cover;
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(0,0,0,0.35);
}
.page-hero-content {
    position: relative; z-index: 2; text-align: center;
    padding: 0 20px;
}
.page-hero-content .hero-subtitle {
    font-size: clamp(0.75rem, 0.3vw + 0.65rem, 0.9rem);
    letter-spacing: 6px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 15px; display: block;
}
.page-hero h1, .page-hero h2 {
    font-family: var(--font-title);
    font-size: var(--fs-page-h1);
    color: #fff;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
    line-height: 1.1;
}

/* INTRO */
.intro-section {
    max-width: 900px; margin: 0 auto;
    padding: 100px 40px; text-align: center;
}
.intro-section h2 {
    font-family: var(--font-title);
    font-size: var(--fs-h2);
    color: var(--gold); margin-bottom: 30px;
}
.intro-section p {
    font-size: var(--fs-body); color: var(--text-muted);
    line-height: 2; max-width: 750px; margin: 0 auto;
}
.gold-line { width: 60px; height: 2px; background: var(--gold); margin: 40px auto; }

/* EXPERIENCE SECTIONS */
.exp-section {
    display: flex; min-height: 70vh; align-items: center;
}
.exp-section:nth-child(even) { flex-direction: row-reverse; }

.exp-img {
    flex: 1; min-height: 500px;
    background-size: cover; background-position: center;
    position: relative; overflow: hidden;
}
.exp-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(17,17,17,0.3), transparent);
}

.exp-content { flex: 1; padding: 80px 70px; }
.exp-section:nth-child(even) .exp-content {
    text-align: right; display: flex;
    flex-direction: column; align-items: flex-end;
}

.exp-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 25px; }
.exp-content h2 {
    font-family: var(--font-title);
    font-size: var(--fs-h2);
    color: #fff; margin-bottom: 20px; line-height: 1.1;
}
.exp-content p {
    color: #aaa; line-height: 1.9; font-size: var(--fs-body);
    max-width: 500px; margin-bottom: 25px;
}
.exp-highlights { list-style: none; margin-bottom: 30px; }
.exp-highlights li {
    color: #ccc; padding: 6px 0; font-size: 0.95rem;
    display: flex; align-items: center; gap: 10px;
}
.exp-highlights li::before {
    content: '—'; color: var(--gold); font-weight: bold;
}
.exp-section:nth-child(even) .exp-highlights li { justify-content: flex-end; }

/* SEASONS */
.seasons-section {
    padding: 100px 40px;
    background: var(--light-dark); border-top: 1px solid #222;
}
.seasons-section h2 {
    font-family: var(--font-title);
    font-size: var(--fs-h2);
    text-align: center; color: var(--gold); margin-bottom: 60px;
}
.seasons-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 30px; max-width: 1200px; margin: 0 auto;
}
.season-card {
    text-align: center; padding: 40px 25px; border: 1px solid #222;
    transition: 0.4s; position: relative; overflow: hidden;
}
.season-card:hover {
    border-color: var(--gold); transform: translateY(-5px);
}
.season-icon {
    font-size: 2rem; color: var(--gold);
    margin-bottom: 20px; display: block;
}
.season-card h3 {
    font-family: var(--font-title);
    font-size: 1.1rem; margin-bottom: 15px; color: #fff;
}
.season-card p { color: #999; line-height: 1.7; font-size: 0.9rem; }

/* MUSEUM */
.museum-section {
    padding: 120px 40px; text-align: center;
    background: url('../../foto/territorio/mulino-museo.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    position: relative;
}
.museum-section::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(0,0,0,0.7);
}
.museum-content {
    position: relative; z-index: 2;
    max-width: 800px; margin: 0 auto;
}
.museum-content h2 {
    font-family: var(--font-title);
    font-size: var(--fs-h2);
    color: #fff; margin-bottom: 25px;
}
.museum-content p {
    color: #ccc; font-size: var(--fs-body);
    line-height: 1.9; margin-bottom: 40px;
}

/* DISTANCES */
.distances-section {
    padding: 80px 40px; max-width: 1000px; margin: 0 auto;
}
.distances-section h2 {
    font-family: var(--font-title);
    font-size: clamp(1.4rem, 1.5vw + 0.8rem, 2rem);
    text-align: center; color: var(--gold); margin-bottom: 50px;
}
.distances-list {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
}
.distance-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 25px; border-bottom: 1px solid #1f1f1f;
    transition: 0.3s;
}
.distance-item:hover { background: rgba(197,160,89,0.05); }
.dist-name { color: #ccc; font-size: 0.95rem; }
.dist-km {
    color: var(--gold); font-family: var(--font-title);
    font-size: 0.9rem; letter-spacing: 1px;
}

/* CTA */
.cta-section {
    padding: 100px 40px; text-align: center;
    background: var(--dark); border-top: 1px solid #222;
}
.cta-section h2 {
    font-family: var(--font-title);
    font-size: var(--fs-h2); color: #fff; margin-bottom: 20px;
}
.cta-section p {
    color: #999; font-size: var(--fs-body);
    margin-bottom: 40px; max-width: 600px;
    margin-left: auto; margin-right: auto;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .exp-content { padding: 60px 45px; }
}

@media (max-width: 900px) {
    .page-hero { min-height: 400px; }
    .intro-section { padding: 60px 20px; }
    .exp-section { flex-direction: column !important; min-height: auto; }
    .exp-img { min-height: 300px; width: 100%; }
    .exp-content {
        padding: 50px 25px;
        text-align: left !important;
        align-items: flex-start !important;
    }
    .exp-section:nth-child(even) .exp-highlights li { justify-content: flex-start; }
    .seasons-grid { grid-template-columns: repeat(2, 1fr); }
    .distances-list { grid-template-columns: 1fr; }
    .museum-section { padding: 80px 20px; }
}

@media (max-width: 480px) {
    .seasons-grid { grid-template-columns: 1fr; }
    .exp-content { padding: 40px 18px; }
    .museum-content p { font-size: 1rem; }
    .distance-item { padding: 16px 18px; }
}
