/* =============================================================================
   AYAL TOURS — WHY CHOOSE AYAL PAGE STYLES
   Enqueued only on page-why-choose-ayal.php via ayal_enqueue_why_choose_styles()
   Depends on: ayal-tokens
   ============================================================================= */

/* ── Hero ───────────────────────────────────────────────────────────────────── */

.ayal-why-hero {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-color: #4B5D3A; /* Fallback if no featured image */
    overflow: hidden;
}

.ayal-why-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 14, 8, 0.22) 0%,
        rgba(10, 14, 8, 0.55) 60%,
        rgba(10, 14, 8, 0.75) 100%
    );
    pointer-events: none;
}

.ayal-why-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: clamp(80px, 12vw, 140px) 0 clamp(48px, 6vw, 72px);
    text-align: center;
}

.ayal-why-hero .ayal-eyebrow--sand {
    color: #D8C7A1;
    margin-bottom: var(--space-12);
}

.ayal-why-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: var(--weight-light);
    color: #FFFFFF;
    letter-spacing: -0.01em;
    line-height: 1.1;
    margin-bottom: var(--space-16);
    text-shadow: 0 2px 32px rgba(0, 0, 0, 0.20);
}

.ayal-why-hero__sub {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: var(--leading-relaxed);
    color: rgba(247, 245, 239, 0.80);
    max-width: 600px;
    margin: 0 auto;
}

/* ── Intro ──────────────────────────────────────────────────────────────────── */

.ayal-why-intro__body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: var(--leading-relaxed);
    color: #3A3A3A;
    max-width: 620px;
    margin: var(--space-20, 20px) auto 0;
}

/* ── Differentiators List ──────────────────────────────────────────────────── */

.ayal-why-item {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: var(--space-32, 32px);
    padding: var(--space-40, 40px) 0;
    border-bottom: 1px solid #E0D9CC;
}

.ayal-why-item:first-child {
    padding-top: 0;
}

.ayal-why-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ayal-why-item__marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-12, 12px);
}

.ayal-why-item__num {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: var(--weight-light);
    letter-spacing: 0.08em;
    color: #6B6B6B;
}

.ayal-why-item__icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(75, 93, 58, 0.08);
    border: 1px solid rgba(75, 93, 58, 0.18);
    color: #4B5D3A;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ayal-why-item__title {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2.2vw, 25px);
    font-weight: var(--weight-regular, 400);
    color: #1F1F1F;
    margin-bottom: var(--space-12, 12px);
    line-height: 1.3;
}

.ayal-why-item__body {
    font-family: var(--font-body);
    font-size: 15.5px;
    line-height: var(--leading-relaxed);
    color: #3A3A3A;
    max-width: 640px;
}

/* ── Pull Quote ─────────────────────────────────────────────────────────────── */

.ayal-why-quote {
    text-align: center;
    margin: 0;
    padding: 0;
}

.ayal-why-quote p {
    font-family: var(--font-heading);
    font-style: normal; /* Qaftan ships one weight, no italic master — see ayal-tokens.css */
    font-size: clamp(21px, 2.6vw, 30px);
    font-weight: var(--weight-light);
    line-height: 1.5;
    color: #1F1F1F;
    max-width: 720px;
    margin: 0 auto var(--space-16, 16px);
}

.ayal-why-quote cite {
    display: block;
    font-family: var(--font-body);
    font-style: normal;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: #6B6B6B;
}

/* ── Final CTA ──────────────────────────────────────────────────────────────── */

.ayal-why-cta {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.ayal-why-cta__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #343F28;
}

.ayal-why-cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 8, 0.45);
}

.ayal-why-cta__content {
    position: relative;
    z-index: 2;
    padding: var(--space-24, 24px);
    max-width: 640px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ayal-why-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: var(--weight-light);
    color: #FFFFFF;
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin: var(--space-12, 12px) 0 var(--space-20, 20px);
}

.ayal-why-cta__body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: var(--leading-relaxed);
    color: rgba(247, 245, 239, 0.82);
    margin-bottom: var(--space-32, 32px);
    max-width: 480px;
}


/* =============================================================================
   RESPONSIVE
   ============================================================================= */

@media (max-width: 767px) {

    .ayal-why-item {
        grid-template-columns: 1fr;
        gap: var(--space-16, 16px);
    }

    .ayal-why-item__marker {
        flex-direction: row;
        justify-content: flex-start;
    }

}
