/* ============================================================
   AZUR VILLA PRESTIGE — css/article.css
   Pages articles blog
   ============================================================ */

/* ════════ HERO ARTICLE ════════ */
.ar-hero {
    position: relative;
    min-height: 60vh;
    max-height: 640px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.ar-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ar-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    transform: scale(1.04);
    will-change: transform;
}

.ar-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(12, 11, 9, .92) 0%, rgba(12, 11, 9, .6) 45%, rgba(12, 11, 9, .15) 100%),
        linear-gradient(to bottom, rgba(12, 11, 9, .5) 0%, rgba(12, 11, 9, 0) 30%);
}

.ar-hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 96px var(--pad) 52px;
    max-width: var(--maxw);
    margin: 0 auto;
    width: 100%;
}

.ar-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 8px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 16px;
}

.ar-breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: color .3s;
}

.ar-breadcrumb a:hover {
    color: var(--sand);
}

.ar-breadcrumb span[aria-hidden] {
    color: rgba(255, 255, 255, .3);
}

.ar-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.ar-meta time {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, .6);
}

.ar-read {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, .5);
}

.ar-h1 {
    font-family: var(--serif);
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 300;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 16px;
    max-width: 720px;
    letter-spacing: -.02em;
}

.ar-intro {
    font-size: clamp(14px, 1.3vw, 16px);
    font-weight: 200;
    color: rgba(255, 255, 255, .75);
    line-height: 1.85;
    max-width: 640px;
}

/* ════════ LAYOUT MAIN ════════ */
.ar-main {
    background: var(--cream);
    padding: 80px 0 100px;
}

.ar-wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad);
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 64px;
    align-items: start;
}

/* ════════ CORPS ARTICLE ════════ */
.ar-body {
    min-width: 0;
}

.ar-body h2 {
    font-family: var(--serif);
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 300;
    color: var(--iron);
    margin: 48px 0 16px;
    line-height: 1.2;
}

.ar-body h2:first-child {
    margin-top: 0;
}

.ar-body p {
    font-size: 15px;
    font-weight: 300;
    color: var(--dim);
    line-height: 2;
    margin-bottom: 20px;
}

.ar-body ul,
.ar-body ol {
    margin: 0 0 24px 0;
    padding-left: 24px;
}

.ar-body li {
    font-size: 15px;
    font-weight: 300;
    color: var(--dim);
    line-height: 1.9;
    margin-bottom: 8px;
}

.ar-body strong {
    color: var(--iron);
    font-weight: 400;
}

.ar-body em {
    font-style: italic;
    color: var(--khaki);
}

/* ════════ SIDEBAR ════════ */
.ar-sidebar {
    position: sticky;
    top: calc(var(--nhs) + 24px);
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ar-sb-block {
    background: var(--white);
    padding: 28px 24px;
}

.ar-sb-block .eyebrow {
    display: block;
    margin-bottom: 16px;
}

.ar-rel-link {
    display: block;
    font-size: 11px;
    font-weight: 300;
    color: var(--iron);
    text-decoration: none;
    border-bottom: 1px solid var(--borders);
    padding-bottom: 2px;
    transition: color .3s;
}

.ar-rel-link:hover {
    color: var(--khaki);
}

/* CTA sidebar */
.ar-sb-cta {
    background: var(--iron);
    text-align: center;
}

.ar-sb-cta h3 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 8px;
}

.ar-sb-cta p {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 20px;
}

.ar-sb-cta .btn-sand {
    display: block;
    text-align: center;
    padding: 13px 20px;
    font-size: 8.5px;
    margin-bottom: 12px;
}

.ar-wa {
    display: block;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--sand);
    text-decoration: none;
    border-bottom: 1px solid rgba(215, 206, 178, .3);
    padding-bottom: 2px;
    transition: opacity .3s;
}

.ar-wa:hover {
    opacity: .7;
}

/* ════════ CTA FOOTER ARTICLE ════════ */
.ar-cta {
    background: var(--iron);
    padding: 100px 0;
    text-align: center;
}

.ar-cta-inner {
    max-width: 560px;
    margin: 0 auto;
    padding: 0 var(--pad);
}

.ar-cta h2 {
    font-family: var(--serif);
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 300;
    color: #fff;
    margin: 12px 0 32px;
    line-height: 1.2;
}

.ar-cta h2 em {
    color: var(--sand);
    font-style: italic;
}

.ar-cta .eyebrow {
    color: var(--sand);
}

.ar-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ════════ RESPONSIVE ════════ */
@media (max-width: 1024px) {
    .ar-wrap {
        grid-template-columns: 1fr;
    }

    .ar-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3px;
    }
}

@media (max-width: 768px) {
    .ar-hero {
        min-height: 80vh;
    }

    .ar-hero-content {
        padding: 88px var(--pad) 36px;
    }

    .ar-h1 {
        font-size: clamp(24px, 7vw, 36px);
    }

    .ar-main {
        padding: 48px 0 64px;
    }

    .ar-sidebar {
        grid-template-columns: 1fr;
    }

    .ar-body p,
    .ar-body li {
        font-size: 14px;
    }

    .ar-cta {
        padding: 64px 0;
    }
}