/* ═══ Why Us — luxury editorial ═══ */

@keyframes whyFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.why-animate > * {
    animation: whyFadeUp .85s cubic-bezier(.22, 1, .36, 1) both;
}

.why-animate > *:nth-child(1) { animation-delay: .08s; }
.why-animate > *:nth-child(2) { animation-delay: .16s; }
.why-animate > *:nth-child(3) { animation-delay: .24s; }
.why-animate > *:nth-child(4) { animation-delay: .32s; }
.why-animate > *:nth-child(5) { animation-delay: .4s; }
.why-animate > *:nth-child(6) { animation-delay: .48s; }
.why-animate > *:nth-child(7) { animation-delay: .56s; }

.why-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .04;
    background-image:
        linear-gradient(rgba(255, 255, 255, .35) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .35) 1px, transparent 1px);
    background-size: 48px 48px;
}

/* ── Shared typography ── */
.why-section-head {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 2.5rem;
}

.why-section-head--light {
    margin-bottom: 2.25rem;
}

.why-section-title {
    margin: 0;
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -0.03em;
    color: var(--heading);
}

.why-section-title--light {
    color: var(--heading-on-dark);
}

.why-section-intro {
    margin: .875rem 0 0;
    font-size: 1.0625rem;
    line-height: 1.7;
    font-weight: 400;
    color: var(--text-muted);
}

.why-section-intro--light {
    color: rgba(255, 255, 255, .78);
}

/* ── Trust metrics strip ── */
.why-stats {
    padding: 3rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--warm-mid);
}

.why-stats__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    max-width: var(--wrap-hero);
    margin-inline: auto;
}

.why-stats__card {
    padding: 1.5rem 1rem;
    text-align: center;
    border-right: 1px solid var(--warm-mid);
}

.why-stats__card:last-child {
    border-right: none;
}

.why-stats__value {
    display: block;
    font-family: var(--font-head);
    font-size: clamp(1.625rem, 2.8vw, 2.125rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #071B3B;
    margin-bottom: .375rem;
}

.why-stats__label {
    font-size: .8125rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-muted);
}

/* ── Features ── */
.why-features {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--warm);
}

.why-features__layout {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: start;
}

.why-features__media {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(7, 27, 59, .12);
    aspect-ratio: 4 / 5;
    position: sticky;
    top: 6rem;
}

.why-features__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s ease;
}

.why-features__media:hover img {
    transform: scale(1.03);
}

.why-feature-list {
    list-style: none;
    margin: 1.75rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.why-feature-list__item {
    display: grid;
    grid-template-columns: 4rem 1fr;
    gap: 1.25rem;
    align-items: start;
    padding: 1.375rem 0;
    border-bottom: 1px solid rgba(7, 27, 59, .08);
    transition: background .25s ease, padding-left .25s ease;
}

.why-feature-list__item:first-child {
    border-top: 1px solid rgba(7, 27, 59, .08);
}

.why-feature-list__item:hover {
    padding-left: .375rem;
}

.why-feature-list__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(7, 27, 59, .07);
    transition: box-shadow .25s ease, transform .25s ease;
}

.why-feature-list__item:hover .why-feature-list__icon-wrap {
    box-shadow: 0 12px 32px rgba(7, 27, 59, .11);
    transform: translateY(-2px);
}

.why-feature-list__icon {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
}

.why-feature-list__body h3 {
    margin: 0 0 .375rem;
    font-family: var(--font-head);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--heading);
}

.why-feature-list__body p {
    margin: 0;
    font-size: .9375rem;
    line-height: 1.65;
    font-weight: 400;
    color: var(--text-muted);
    max-width: 34rem;
}

/* ── Transformation masonry ── */
.why-transform {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: #071B3B;
    color: var(--text-on-dark);
}

.why-transform__masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, 1fr);
    gap: 1rem;
}

.why-transform__tile {
    position: relative;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0, 0, 0, .2);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .22);
}

.why-transform__tile img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    display: block;
    transition: transform .65s cubic-bezier(.25, .46, .45, .94);
}

.why-transform__tile:hover img {
    transform: scale(1.045);
}

.why-transform__tile--hero {
    grid-column: span 2;
    grid-row: span 2;
}

.why-transform__tile--hero img {
    min-height: 100%;
    aspect-ratio: auto;
}

.why-transform__tile--wide {
    grid-column: span 2;
}

.why-transform__label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: .375rem .875rem;
    font-family: var(--font-head);
    font-size: .6875rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 999px;
}

.why-transform__label--before {
    background: rgba(7, 27, 59, .88);
    color: var(--white);
}

.why-transform__label--after {
    background: var(--brand-red);
    color: var(--white);
}

.why-transform__caption {
    text-align: center;
    margin: 1.5rem 0 0;
    font-size: .9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .72);
}

/* ── Editorial story ── */
.why-story {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--white);
}

.why-story__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: start;
}

.why-story__divider {
    width: 3rem;
    height: 2px;
    background: var(--brand-red);
    margin: 1.25rem 0 1.75rem;
}

.why-story__quote {
    margin: 0 0 2rem;
    padding: 0 0 0 1.5rem;
    border-left: 3px solid #071B3B;
    font-family: var(--font-head);
    font-size: clamp(1.375rem, 2.4vw, 1.75rem);
    font-weight: 600;
    font-style: italic;
    line-height: 1.45;
    color: var(--heading);
    max-width: 32rem;
}

.why-story__prose {
    max-width: 34rem;
}

.why-story__prose p {
    margin: 0 0 1.25rem;
    font-size: 1.0625rem;
    line-height: 1.75;
    font-weight: 400;
    color: var(--text);
}

.why-story__prose p:last-child {
    margin-bottom: 2rem;
}

.why-story__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.why-story__figure {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(7, 27, 59, .1);
}

.why-story__figure--lead {
    grid-column: span 2;
}

.why-story__figure img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform .65s ease;
}

.why-story__figure:hover img {
    transform: scale(1.035);
}

.why-story__figure--lead img {
    aspect-ratio: 16 / 9;
}

/* ── Process timeline ── */
.why-process {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--warm);
}

.why-process__track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    max-width: 980px;
    margin-inline: auto;
}

.why-process__line {
    position: absolute;
    top: 2rem;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand-blue), transparent);
    pointer-events: none;
}

.why-process__step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 .75rem;
    transition: transform .3s ease;
}

.why-process__step:hover {
    transform: translateY(-4px);
}

.why-process__marker {
    margin: 0 auto 1.25rem;
}

.why-process__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-inline: auto;
    border-radius: 50%;
    background: #071B3B;
    border: 2px solid var(--brand-red);
    box-shadow: 0 0 0 5px var(--warm), 0 12px 28px rgba(7, 27, 59, .14);
    font-family: var(--font-head);
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--white);
    transition: box-shadow .3s ease, transform .3s ease;
}

.why-process__step:hover .why-process__num {
    transform: scale(1.06);
    box-shadow: 0 0 0 5px var(--warm), 0 16px 36px rgba(7, 27, 59, .18);
}

.why-process__step h3 {
    margin: 0 0 .625rem;
    font-family: var(--font-head);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--heading);
}

.why-process__step p {
    margin: 0 auto;
    max-width: 14rem;
    font-size: .9375rem;
    line-height: 1.65;
    font-weight: 400;
    color: var(--text-muted);
}

/* ── Reviews ── */
.why-reviews {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--white);
}

.why-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.why-review {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    padding: 2rem 1.75rem 1.75rem;
    border: 1px solid rgba(7, 27, 59, .07);
    box-shadow: 0 10px 32px rgba(7, 27, 59, .07);
    display: flex;
    flex-direction: column;
    transition: box-shadow .3s ease, transform .3s ease;
}

.why-review:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(7, 27, 59, .1);
}

.why-review__mark {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-family: Georgia, serif;
    font-size: 3.5rem;
    line-height: 1;
    color: rgba(7, 27, 59, .08);
    pointer-events: none;
}

.why-review__stars {
    color: #071B3B;
    font-size: .9375rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.why-review__text {
    flex: 1;
    margin: 0 0 1.5rem;
    font-size: .9375rem;
    line-height: 1.75;
    font-weight: 400;
    color: var(--text);
}

.why-review__author strong {
    display: block;
    font-family: var(--font-head);
    font-size: .9375rem;
    font-weight: 700;
    color: var(--heading);
}

.why-review__author span {
    font-size: .8125rem;
    color: var(--text-muted);
}

/* ── CTA ── */
.why-cta {
    position: relative;
    isolation: isolate;
    padding: clamp(4rem, 7vw, 5.5rem) 0;
    background: #071B3B;
    color: var(--text-on-dark);
}

.why-cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin-inline: auto;
}

.why-cta__title {
    margin: 0 0 1rem;
    font-family: var(--font-head);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--heading-on-dark);
}

.why-cta__lead {
    margin: 0 0 2rem;
    font-size: 1.0625rem;
    line-height: 1.7;
    font-weight: 400;
    color: rgba(255, 255, 255, .82);
}

.why-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ── Footer (why us page) ── */
body:has(.why-page) .site-footer {
    border-top: 1px solid rgba(255, 255, 255, .08);
}

body:has(.why-page) .site-footer__main {
    padding: clamp(3rem, 5vw, 4rem) min(32px, 4vw) clamp(2.5rem, 4vw, 3.25rem);
}

body:has(.why-page) .site-footer__grid {
    gap: clamp(2rem, 4vw, 3rem);
}

body:has(.why-page) .site-footer__logo img {
    height: 108px;
}

body:has(.why-page) .site-footer__desc {
    margin-bottom: 1.25rem;
    font-size: .9375rem;
    line-height: 1.7;
    max-width: 24rem;
}

body:has(.why-page) .site-footer__heading {
    margin-bottom: 1.25rem;
    font-size: .6875rem;
    letter-spacing: .14em;
}

body:has(.why-page) .site-footer__links li {
    margin-bottom: .625rem;
}

body:has(.why-page) .site-footer__links a {
    font-size: .9375rem;
    transition: color .2s ease, padding-left .2s ease;
}

body:has(.why-page) .site-footer__links a:hover {
    padding-left: .25rem;
}

body:has(.why-page) .site-footer__address,
body:has(.why-page) .site-footer__contact-list a {
    font-size: .9375rem;
    line-height: 1.65;
}

body:has(.why-page) .site-footer__trust-bar {
    padding: .875rem min(32px, 4vw);
}

body:has(.why-page) .site-footer__legal {
    padding: 1rem min(32px, 4vw);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .why-stats__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-stats__card:nth-child(3) {
        border-right: none;
    }

    .why-stats__card:nth-child(4),
    .why-stats__card:nth-child(5) {
        border-top: 1px solid var(--warm-mid);
    }

    .why-transform__masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-transform__tile--hero {
        grid-column: span 2;
        grid-row: span 1;
    }

    .why-transform__tile--wide {
        grid-column: span 2;
    }

    .why-process__track {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1.5rem;
    }

    .why-process__line {
        display: none;
    }

    .why-reviews__grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-inline: auto;
    }
}

@media (max-width: 900px) {
    .why-features__layout,
    .why-story__layout {
        grid-template-columns: 1fr;
    }

    .why-features__media {
        position: static;
        max-width: 480px;
        margin-inline: auto;
    }
}

@media (max-width: 768px) {
    .why-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-stats__card {
        border-right: none;
        border-bottom: 1px solid var(--warm-mid);
    }

    .why-stats__card:nth-child(odd) {
        border-right: 1px solid var(--warm-mid);
    }

    .why-stats__card:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .why-transform__masonry {
        grid-template-columns: 1fr;
    }

    .why-transform__tile--hero,
    .why-transform__tile--wide {
        grid-column: span 1;
    }

    .why-story__gallery {
        grid-template-columns: 1fr;
    }

    .why-story__figure--lead {
        grid-column: span 1;
    }

    .why-process__track {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

    .why-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .why-cta__actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .why-animate > * {
        animation: none;
    }

    .why-hero__photo,
    .why-transform__tile:hover img,
    .why-story__figure:hover img,
    .why-features__media:hover img,
    .why-process__step:hover,
    .why-review:hover {
        transform: none !important;
    }
}
