/* ==========================================================================
   À Propos Page - Conciergerie des Hauts de l'Arc
   ========================================================================== */

/* --------------------------------------------------------------------------
   Header (shared with services page)
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 18, 80, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 168, 97, 0.1);
    padding: 0.75rem 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header-logo img {
    height: 90px;
    width: auto;
}

.header-nav {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .header-nav {
        display: flex;
    }
}

.header-nav a {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-nav a:hover,
.header-nav a.active {
    color: #C9A861;
}

.btn-header-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: #C9A861;
    color: #001250;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.btn-header-phone:hover {
    background: #DFC07A;
    color: #001250;
}

.btn-header-phone svg {
    width: 16px;
    height: 16px;
}

/* --------------------------------------------------------------------------
   About Hero
   -------------------------------------------------------------------------- */
.about-hero {
    background: #001250;
    padding: 10rem 0 5rem;
    text-align: center;
}

.about-hero__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    color: #C9A861;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 1rem;
}

.about-hero__subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 300;
    font-style: italic;
    color: #fff;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --------------------------------------------------------------------------
   Section Styles
   -------------------------------------------------------------------------- */
.about-section {
    padding: 5rem 0;
}

.about-section--histoire {
    background: #fff;
}

.about-section--fondateurs {
    background: #001250;
}

.about-section--confiance {
    background: #fff;
}

.about-section--engagements {
    background: #001250;
}

.about-section--proximite {
    background: linear-gradient(135deg, #001250 0%, #002080 100%);
    padding: 5rem 0;
    text-align: center;
}

/* Reuse section-header, section-tag, section-title, section-desc from services */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.about-section--histoire .section-header {
    margin-bottom: 0;
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #C9A861;
    background: rgba(201, 168, 97, 0.1);
    padding: 0.5rem 1.25rem;
    margin-bottom: 1.5rem;
}

.about-section--histoire .section-tag,
.about-section--confiance .section-tag {
    background: rgba(0, 18, 80, 0.08);
    color: #001250;
}

.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    color: #001250;
    margin: 0 0 1rem;
}

.section-header--light .section-title {
    color: #fff;
}

.section-desc {
    font-size: 1rem;
    font-weight: 300;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.section-header--light .section-desc {
    color: rgba(255, 255, 255, 0.75);
}

/* --------------------------------------------------------------------------
   Fondateurs Grid
   -------------------------------------------------------------------------- */
.fondateurs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.fondateur-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
}

.fondateur-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(201, 168, 97, 0.3);
}

.fondateur-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 168, 97, 0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.fondateur-card:hover .fondateur-card__icon {
    border-color: #C9A861;
    background: rgba(201, 168, 97, 0.1);
}

.fondateur-card__icon svg {
    width: 36px;
    height: 36px;
    stroke: #C9A861;
}

.fondateur-card__name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: #C9A861;
    margin: 0 0 1rem;
}

.fondateur-card__desc {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 576px) {
    .fondateurs-grid {
        grid-template-columns: 1fr;
    }

    .fondateur-card {
        padding: 2rem 1.5rem;
    }
}

/* --------------------------------------------------------------------------
   Confiance Grid
   -------------------------------------------------------------------------- */
.confiance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.confiance-card {
    background: #fff;
    border: 1px solid rgba(0, 18, 80, 0.08);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.confiance-card:hover {
    border-color: #C9A861;
    box-shadow: 0 15px 40px rgba(0, 18, 80, 0.1);
    transform: translateY(-5px);
}

.confiance-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 18, 80, 0.03);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.confiance-card:hover .confiance-card__icon {
    background: #001250;
}

.confiance-card__icon svg {
    width: 32px;
    height: 32px;
    stroke: #001250;
    transition: stroke 0.4s ease;
}

.confiance-card:hover .confiance-card__icon svg {
    stroke: #C9A861;
}

.confiance-card__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #001250;
    margin: 0 0 1rem;
}

.confiance-card__desc {
    font-size: 0.9rem;
    font-weight: 300;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* --------------------------------------------------------------------------
   Engagements
   -------------------------------------------------------------------------- */
.engagements-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 576px) {
    .engagements-wrapper {
        grid-template-columns: 1fr;
    }
}

.engagement-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.engagement-block:hover {
    border-color: rgba(201, 168, 97, 0.2);
}

.engagement-block__header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.engagement-block__header svg {
    width: 40px;
    height: 40px;
    stroke: #C9A861;
    margin-bottom: 1rem;
}

.engagement-block__header h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #C9A861;
    margin: 0 0 0.5rem;
}

.engagement-block__header span {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.engagement-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.engagement-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.engagement-list__number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1rem;
    font-weight: 500;
    color: #C9A861;
    border: 1px solid rgba(201, 168, 97, 0.3);
    border-radius: 50%;
}

.engagement-list li strong {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.25rem;
}

.engagement-list li p {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 576px) {
    .engagement-block {
        padding: 2rem 1.5rem;
    }
}

/* --------------------------------------------------------------------------
   Proximité Section
   -------------------------------------------------------------------------- */
.proximite-content {
    max-width: 800px;
    margin: 0 auto;
}

.engagement-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #C9A861;
    margin-bottom: 2rem;
}

.engagement-quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    border: none;
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
    background: #fff;
    padding: 5rem 0;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 400;
    color: #001250;
    margin: 0 0 1rem;
}

.cta-desc {
    font-size: 1rem;
    font-weight: 300;
    color: #555;
    line-height: 1.8;
    margin: 0 0 2.5rem;
}

.cta-section .cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 1;
    transform: none;
    animation: none;
}

@media (min-width: 576px) {
    .cta-section .cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
}

.cta-section .btn-cta--devis {
    border-color: #001250;
    color: #001250;
}

.cta-section .btn-cta--devis:hover {
    background: #001250;
    color: #fff;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background: #001250;
    padding: 3rem 0;
    border-top: 1px solid rgba(201, 168, 97, 0.15);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.site-footer .footer-links {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-footer .footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer .footer-links a:hover {
    color: #C9A861;
}

.site-footer .footer-links span {
    margin: 0 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-copyright p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

@media (max-width: 767px) {
    .site-footer {
        padding-bottom: 5rem;
    }
}
