/* =============================================
   CHI SIAMO — Gruppo Peratoner
   ============================================= */

.page-chisiamo { background: #FAF6F0; color: #2A1A10; }

/* Nav override */
.nav-page {
    background: rgba(250,246,240,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139,26,43,0.12);
}
.nav-page .nav-links a { color: #5C4033; }
.nav-page .nav-links a:hover, .nav-page .nav-links a.active { color: #8B1A2B; }
.nav-page .nav-links a::after { background: #8B1A2B; }
.nav-page .nav-toggle span { background: #2A1A10; }

/* ---- Hero ---- */
.cs-hero {
    position: relative;
    height: 55vh;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.cs-hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #8B1A2B 0%, #5C0E1A 40%, #3A0A12 100%);
}
.cs-hero-content {
    position: relative; z-index: 2;
    text-align: center;
}
.cs-label {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #C9A84C;
    display: block;
    margin-bottom: 10px;
}
.cs-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 900;
    color: #FFF8F0;
    line-height: 1;
    margin-bottom: 15px;
}
.cs-subtitle {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-style: italic;
    color: #D4B96A;
}
.cs-line {
    width: 60px; height: 2px;
    background: #C9A84C;
    margin: 20px auto 0;
}

/* ---- Main ---- */
.cs-main {
    max-width: 900px;
    margin: 0 auto;
}

/* ---- Intro ---- */
.cs-intro {
    padding: 60px 30px 40px;
    text-align: center;
}
.cs-lead {
    font-family: var(--font-body);
    font-size: 1.3rem;
    line-height: 1.8;
    color: #5C4033;
    max-width: 700px;
    margin: 0 auto;
}

/* ---- Sections ---- */
.cs-section {
    padding: 60px 30px;
}
.cs-section h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: #8B1A2B;
    margin-bottom: 25px;
}
.cs-section p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5C4033;
    margin-bottom: 18px;
}
.cs-section strong { color: #2A1A10; }

.cs-section-dark {
    background: #2A1A10;
    margin: 0 -9999px;
    padding: 60px 9999px;
    color: #F5EDE0;
}
.cs-section-dark h2 { color: #C9A84C; }
.cs-section-dark p { color: #D4B96A; }
.cs-section-dark strong { color: #F5EDE0; }

/* ---- Story Timeline ---- */
.cs-story-timeline {
    position: relative;
    padding-left: 30px;
    border-left: 2px solid rgba(139,26,43,0.15);
}
.cs-story-chapter {
    position: relative;
    margin-bottom: 35px;
    padding-left: 25px;
}
.cs-story-chapter::before {
    content: '';
    position: absolute;
    left: -36px; top: 6px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: #8B1A2B;
    border: 3px solid #FAF6F0;
}
.cs-chapter-year {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: #C9A84C;
    display: block;
    margin-bottom: 6px;
}

/* ---- Family Grid ---- */
/* Family photo */
.cs-family-photo {
    text-align: center;
    margin-bottom: 40px;
}
.cs-family-photo img {
    width: 100%;
    max-width: 700px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    border: 2px solid rgba(201,168,76,0.15);
}
.cs-family-photo-caption {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-style: italic;
    color: #D4B96A !important;
    margin-top: 15px !important;
}

.cs-family-intro {
    font-size: 1.15rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}
.cs-family-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.cs-member {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 30px;
    align-items: start;
    padding: 30px;
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 20px;
    transition: border-color 0.4s;
}
.cs-member:hover {
    border-color: rgba(201,168,76,0.3);
}
.cs-member-reverse {
    grid-template-columns: 1fr 180px;
}
.cs-member-reverse .cs-member-photo { order: 2; }
.cs-member-reverse .cs-member-info { order: 1; text-align: right; }

.cs-member-photo {
    display: flex;
    justify-content: center;
}
.cs-member-placeholder {
    width: 150px; height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.cs-member-placeholder span {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.2);
}
.cs-member-info h3 {
    font-family: var(--font-display) !important;
    font-size: 1.6rem !important;
    color: #F5EDE0 !important;
    margin-bottom: 4px !important;
}
.cs-member-role {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C9A84C;
    display: block;
    margin-bottom: 15px;
}
.cs-member-info p {
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
}
.cs-member-info blockquote {
    border-left: 3px solid #C9A84C;
    padding: 12px 20px;
    margin: 15px 0 0;
    background: rgba(201,168,76,0.05);
    border-radius: 0 10px 10px 0;
    font-style: italic;
    font-size: 0.95rem !important;
    color: rgba(245,237,224,0.8) !important;
}
.cs-member-reverse .cs-member-info blockquote {
    border-left: none;
    border-right: 3px solid #C9A84C;
    border-radius: 10px 0 0 10px;
}

@media (max-width: 768px) {
    .cs-member, .cs-member-reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .cs-member-reverse .cs-member-photo { order: 0; }
    .cs-member-reverse .cs-member-info { order: 1; text-align: center; }
    .cs-member-reverse .cs-member-info blockquote {
        border-right: none;
        border-left: 3px solid #C9A84C;
        border-radius: 0 10px 10px 0;
        text-align: left;
    }
    .cs-member-placeholder { width: 120px; height: 120px; }
    .cs-member-placeholder span { font-size: 2rem; }
}

/* ---- Vision ---- */
.cs-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 30px;
}
.cs-vision-card {
    padding: 30px;
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 16px;
    transition: all 0.4s ease;
}
.cs-vision-card:hover {
    border-color: #C9A84C;
    transform: translateY(-4px);
}
.cs-vision-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(201,168,76,0.2);
    line-height: 1;
    margin-bottom: 10px;
}
.cs-vision-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: #F5EDE0;
    margin-bottom: 10px;
}

/* ---- Venues list ---- */
.cs-venues-list {
    margin-top: 30px;
}
.cs-venue-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(139,26,43,0.1);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
.cs-venue-row:hover {
    background: #F5EDE0;
    padding-left: 30px;
}
.cs-venue-year {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: #C9A84C;
    min-width: 60px;
}
.cs-venue-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: #2A1A10;
    flex: 1;
}
.cs-venue-city {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8B1A2B;
}
.cs-venue-arrow {
    color: #C9A84C;
    font-size: 1.2rem;
    transition: transform 0.3s;
}
.cs-venue-row:hover .cs-venue-arrow { transform: translateX(5px); }

/* ---- Awards ---- */
.cs-awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.cs-award {
    padding: 25px;
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 12px;
    transition: border-color 0.3s;
}
.cs-award:hover { border-color: #C9A84C; }
.cs-award-year {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: #C9A84C;
    display: block;
    margin-bottom: 8px;
}
.cs-award h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: #F5EDE0;
    margin-bottom: 6px;
}
.cs-award p {
    font-size: 0.9rem !important;
    color: rgba(212,185,106,0.7) !important;
}

/* Awards light variant */
.cs-awards-light .cs-award {
    border-color: rgba(139,26,43,0.12);
    background: #fff;
}
.cs-awards-light .cs-award:hover { border-color: #8B1A2B; }
.cs-awards-light .cs-award-year { color: #8B1A2B; }
.cs-awards-light .cs-award h3 { color: #2A1A10; }
.cs-awards-light .cs-award p { color: #5C4033 !important; }

/* Venues list dark variant */
.cs-section-dark .cs-venue-row {
    border-bottom-color: rgba(201,168,76,0.1);
    color: #F5EDE0;
}
.cs-section-dark .cs-venue-row:hover {
    background: rgba(201,168,76,0.05);
}
.cs-section-dark .cs-venue-name { color: #F5EDE0; }

/* ---- FAQ ---- */
.cs-faq { max-width: 700px; margin: 30px auto 0; }
.faq-item { border-bottom: 1px solid rgba(139,26,43,0.1); }
.faq-question { width:100%; text-align:left; padding:18px 0; background:none; border:none; font-family:var(--font-display); font-size:1.1rem; font-weight:600; color:#2A1A10; cursor:pointer; display:flex; justify-content:space-between; align-items:center; transition: color 0.3s; }
.faq-question:hover { color: #8B1A2B; }
.faq-question::after { content:'+'; font-size:1.3rem; color:#C9A84C; transition:transform 0.3s; }
.faq-item.open .faq-question::after { transform:rotate(45deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height:200px; }
.faq-answer p { padding:0 0 18px; font-family:var(--font-body); font-size:1rem; line-height:1.7; color:#5C4033; }

/* ---- Newsletter ---- */
.cs-newsletter-section {
    text-align: center;
    padding: 80px 30px;
    border-top: 1px solid rgba(139,26,43,0.1);
}
.cs-newsletter h2 {
    text-align: center;
}
.cs-newsletter > p {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 30px;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}
.newsletter-fields {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}
.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid rgba(139,26,43,0.15);
    border-radius: 10px;
    background: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #2A1A10;
    outline: none;
    transition: border-color 0.3s;
}
.newsletter-input:focus { border-color: #8B1A2B; }
.newsletter-input::placeholder { color: #B8A090; }

.newsletter-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: #8B1A2B;
    color: #FFF8F0;
    border: none;
    border-radius: 10px;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.newsletter-btn:hover { background: #A62038; transform: translateY(-2px); }

.newsletter-note {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-style: italic;
    color: #B8A090 !important;
    margin-top: 12px !important;
}

.newsletter-success p {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: #8B1A2B !important;
    font-weight: 700;
}

/* ---- Footer (reuse blog) ---- */
.page-chisiamo .blog-footer {
    background: #F5EDE0;
    border-top: 1px solid rgba(139,26,43,0.1);
}
.page-chisiamo .blog-footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.page-chisiamo .blog-footer-content a {
    display: flex;
    justify-content: center;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .cs-hero { height: 45vh; min-height: 300px; }
    .cs-section { padding: 40px 20px; }
    .cs-section-dark { padding: 40px 9999px; }
    .cs-vision-grid { grid-template-columns: 1fr; }
    .cs-awards-grid { grid-template-columns: 1fr; }
    .newsletter-fields { flex-direction: column; }
    .cs-venue-row { gap: 12px; padding: 16px; }
    .cs-venue-name { font-size: 1rem; }
}
