/* ═══════════════════════════════════════════════════════════
   HOME — SHARED UTILITIES
════════════════════════════════════════════════════════════ */
.section-inner {
    max-width: var(--page-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    gap: 24px;
}

.eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 500;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.section-title em { font-style: italic; color: var(--red); }

.link-arrow {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
    padding-bottom: 4px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.2s, border-color 0.2s;
}
.link-arrow:hover { color: var(--red); border-color: var(--red); }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
    cursor: pointer;
    text-decoration: none;
}
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-dark); }
.btn--ghost { background: transparent; border: 1px solid var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--outline { background: transparent; border: 1.5px solid var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--paper); }

/* ═══════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.hero {
    padding: 80px 0 64px;
    background: var(--paper-warm);
}

.hero-inner {
    max-width: var(--page-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    min-height: 600px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 28px;
}
.hero-eyebrow .sep { color: var(--red); font-size: 8px; }

.hero-title {
    font-family: var(--serif);
    font-size: clamp(52px, 6vw, 88px);
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 28px;
}
.hero-title em { font-style: italic; color: var(--red); }

.hero-desc {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: 440px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-right { position: relative; }

.hero-img-placeholder {
    width: 100%;
    height: 520px;
    border-radius: 12px;
    background: url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=900&q=80') center/cover no-repeat;
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--ink);
    color: var(--paper);
    border-radius: 10px;
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero-badge-stars { color: var(--red); font-size: 13px; letter-spacing: 2px; }
.hero-badge-text { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; color: rgba(251,250,247,0.7); }

/* ═══════════════════════════════════════════════════════════
   TICKER QUARTIERS
════════════════════════════════════════════════════════════ */
.quartiers-ticker {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
    background: var(--paper);
    display: flex;
    align-items: center;
}

.quartiers-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red);
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0 28px 0 var(--gutter);
    border-right: 1px solid var(--line);
}

.quartiers-overflow {
    overflow: hidden;
    flex: 1;
}

.quartiers-track {
    display: flex;
    align-items: center;
    gap: 48px;
    white-space: nowrap;
    animation: tickerScroll 28s linear infinite;
    width: max-content;
    padding-left: 48px;
}

.quartiers-track span {
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    color: var(--ink-muted);
    flex-shrink: 0;
}
.quartiers-track .q-sep { color: var(--red); font-style: normal; font-size: 12px; }

@keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   STATS
════════════════════════════════════════════════════════════ */
.stats {
    background: var(--paper-warm);
    padding: 64px 0;
}

.stats-inner {
    max-width: var(--page-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-number {
    font-family: var(--serif);
    font-size: clamp(56px, 6vw, 88px);
    font-weight: 300;
    line-height: 1;
    color: var(--ink);
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.stat-sup {
    font-family: var(--serif);
    font-size: 0.38em;
    color: var(--red);
    vertical-align: super;
    letter-spacing: 0;
}

.stat-label {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink-muted);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════════════════ */
.services {
    padding: 96px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.service-item {
    padding: 32px 0;
    border-top: 1px solid var(--line);
}

.service-item:nth-child(odd) { padding-right: 48px; border-right: 1px solid var(--line); }
.service-item:nth-child(even) { padding-left: 48px; }

.service-top {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 12px;
}

.service-num {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--red);
    letter-spacing: 0.1em;
    flex-shrink: 0;
}

.service-name {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.2;
}

.service-name--active { color: var(--red); }

.service-desc {
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.65;
    color: var(--ink-muted);
    padding-left: 32px;
}

/* ═══════════════════════════════════════════════════════════
   ENGAGEMENT (dark)
════════════════════════════════════════════════════════════ */
.engagement {
    background: var(--ink);
    padding: 120px 0;
}

.engagement .section-inner { max-width: 1000px; }

.engagement-quote {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.engagement-quote em { font-style: italic; color: var(--red); }

.engagement-rule {
    width: 56px;
    height: 1px;
    background: var(--red);
    margin: 40px 0 28px;
}

.engagement-sig {
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    color: rgba(251,250,247,0.55);
}

/* ═══════════════════════════════════════════════════════════
   PROCESS
════════════════════════════════════════════════════════════ */
.process {
    padding: 96px 0;
    background: var(--paper-warm);
    position: relative;
    z-index: 1;
}

.process::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 100vh;
    background: var(--paper-warm);
    z-index: -1;
}

.process .section-title { margin-bottom: 64px; }

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.process-step {
    position: relative;
    text-align: center;
    padding: 0 16px;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-muted);
    letter-spacing: 0.05em;
    margin: 0 auto 20px;
    background: var(--paper-warm);
    position: relative;
    z-index: 1;
}

.step-line {
    position: absolute;
    top: 20px;
    left: calc(50% + 20px);
    right: calc(-50% + 20px);
    height: 1px;
    background: var(--line);
}

.step-title {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 12px;
}

.step-desc {
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.65;
    color: var(--ink-muted);
}

/* ═══════════════════════════════════════════════════════════
   LOGEMENTS
════════════════════════════════════════════════════════════ */
.listings {
    padding: 96px 0;
}

.listings-link--mobile { display: none; }

.listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.listing-card {
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.listing-card--large { grid-column: span 1; grid-row: span 2; }

.listing-img {
    width: 100%;
    border-radius: 10px;
    background: center/cover no-repeat;
}

.listing-card:nth-child(1) .listing-img { background-image: url('https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=800&q=80'); }
.listing-card:nth-child(2) .listing-img { background-image: url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?w=800&q=80'); }
.listing-card:nth-child(3) .listing-img { background-image: url('https://images.unsplash.com/photo-1522771739844-6a9f6d5f14af?w=800&q=80'); }
.listing-card:nth-child(4) .listing-img { background-image: url('https://images.unsplash.com/photo-1560185007-cde436f6a4d0?w=800&q=80'); }

.listing-card--large .listing-img { flex: 1; min-height: 0; }
.listing-card:not(.listing-card--large) .listing-img { height: 200px; }

.listing-info { padding: 14px 4px; }

.listing-name {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 4px;
}

.listing-meta {
    font-family: var(--sans);
    font-size: 12px;
    color: var(--ink-muted);
}

/* ═══════════════════════════════════════════════════════════
   AVIS
════════════════════════════════════════════════════════════ */
.reviews { padding: 96px 0; position: relative; z-index: 2; background: var(--paper); }

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.review-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 40px;
}

.review-stars {
    color: var(--red);
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.review-text {
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink);
    margin-bottom: 28px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: 14px;
}

.review-name { font-weight: 600; color: var(--ink); }
.review-sep { color: var(--red); }
.review-role { color: var(--ink-muted); }

/* ═══════════════════════════════════════════════════════════
   CTA FINAL
════════════════════════════════════════════════════════════ */
.cta-final {
    padding: 100px 0;
    background: var(--paper-warm);
    position: relative;
    z-index: 3;
}

.cta-final-inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    text-align: center;
}

.cta-final-title {
    font-family: var(--serif);
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 24px;
}
.cta-final-title em { font-style: italic; color: var(--red); }

.cta-final-desc {
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 40px;
}

.cta-final-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════
   HOME RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; min-height: auto; }
    .hero-right { display: none; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .service-item:nth-child(odd) { padding-right: 0; border-right: none; }
    .service-item:nth-child(even) { padding-left: 0; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
    .step-line { display: none; }
    .listings-grid { grid-template-columns: 1fr 1fr; }
    .listing-card--large { grid-column: span 2; grid-row: span 1; }
    .listing-card--large .listing-img { height: 260px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 600px) {
    .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stat-item { padding: 28px 20px; }
    .process-steps { grid-template-columns: 1fr; }
    .listings-grid { grid-template-columns: 1fr; }
    .listing-card--large { grid-column: span 1; }
    .listing-card--large .listing-img { flex: none; height: 260px; }

    .hero        { padding: 40px 0; }
    .stats       { padding: 36px 0; }
    .services    { padding: 48px 0; }
    .engagement  { padding: 60px 0; }
    .process     { padding: 48px 0; }
    .listings    { padding: 48px 0; }
    .reviews     { padding: 48px 0; }
    .cta-final   { padding: 52px 0; }

    .listing-card:nth-child(n+3) { display: none; }

    .listings-link--desktop { display: none; }
    .listings-link--mobile  { display: inline-flex; margin-top: 24px; }

    .reviews-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin-left: calc(-1 * var(--gutter));
        margin-right: calc(-1 * var(--gutter));
        padding-inline: 5%;
        padding-bottom: 4px;
    }
    .reviews-grid::-webkit-scrollbar { display: none; }
    .review-card {
        flex: 0 0 88%;
        scroll-snap-align: center;
        padding: 32px 28px;
    }

    .reviews-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }
    .reviews-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--line-strong);
        transition: background 0.2s, transform 0.2s;
        border: none;
        padding: 0;
        cursor: pointer;
    }
    .reviews-dot.is-active {
        background: var(--red);
        transform: scale(1.4);
    }
}
