/* ==========================================================
   Nesten pagina – Kennel de Kempenstreek
   ========================================================== */

/* ── Page hero ──────────────────────────────────────────── */
.page-hero {
    position: relative;
    min-height: 62vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-h);
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('../images/mainheader.png');
    background-size: cover;
    background-position: center top;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        110deg,
        rgba(8,4,1,.82) 0%,
        rgba(8,4,1,.52) 55%,
        rgba(8,4,1,.1) 100%
    );
}
.page-hero .paw-field { z-index: 2; }
.page-hero .container { position: relative; z-index: 3; }
.page-hero-content {
    padding: 56px 0 72px;
    max-width: 620px;
}
.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,.85);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .03em;
    margin-bottom: 18px;
}
.page-hero-title {
    font-family: var(--fh);
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -.02em;
}
.page-hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.82);
    line-height: 1.7;
    max-width: 520px;
}


/* ── Section pill / header ──────────────────────────────── */
.section-pill {
    display: inline-block;
    background: rgba(232,160,32,.14);
    color: var(--amber-dark);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.section-head.center { text-align: center; margin-bottom: 48px; }
.section-head.center .section-title { margin-bottom: 10px; }
.section-head.center .section-sub { max-width: 520px; margin: 0 auto; }


/* ── Featured nest card ─────────────────────────────────── */
.nest-section { background: var(--cream); }

.nest-card-featured {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 64px;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--sh3);
    border: 1px solid rgba(0,0,0,.06);
}

/* Photo side */
.nest-photo-side {
    display: flex;
    flex-direction: column;
}
.nest-photo-frame {
    position: relative;
    overflow: hidden;
    flex: 1;
    min-height: 380px;
}
.nest-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    background: var(--cream);
    transition: transform .5s ease;
}
.nest-photo-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, var(--cream) 0%, transparent 18%, transparent 82%, var(--cream) 100%),
        linear-gradient(to right, var(--cream) 0%, transparent 14%, transparent 86%, var(--cream) 100%);
    pointer-events: none;
    z-index: 1;
}
.nest-photo-badge { z-index: 2; }
.nest-card-featured:hover .nest-photo-frame img { transform: scale(1.04); }

.nest-photo-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 700;
    font-family: var(--fh);
}
.nest-photo-badge svg { width: 18px; height: 16px; color: var(--amber); }

.nest-parent-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.parent-chip {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 14px 24px;
    border-top: 1px solid rgba(0,0,0,.07);
    background: var(--cream);
}
.parent-chip--muted { background: rgba(0,0,0,.02); }
.parent-role {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--amber-dark);
}
.parent-name {
    font-size: .92rem;
    font-weight: 600;
    color: var(--text);
}
.parent-name em { color: var(--muted); font-style: italic; font-weight: 400; font-size: .82rem; }

/* Info side */
.nest-info-side {
    padding: 48px 48px 48px 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
    justify-content: center;
}

.nest-status-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.nest-status-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.nest-status-coming {
    background: rgba(56,142,60,.1);
    color: #2e7d32;
}
.nest-year-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 700;
    background: rgba(232,160,32,.12);
    color: var(--amber-dark);
    letter-spacing: .04em;
}

.nest-title {
    font-family: var(--fh);
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1.15;
    margin: 0;
}

.nest-desc {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

/* Expect list */
.nest-expect {
    background: var(--cream);
    border-radius: 14px;
    padding: 20px 22px;
}
.nest-expect-title {
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--amber-dark);
    margin-bottom: 12px;
}
.nest-expect-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
}
.nest-expect-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem;
    color: var(--text);
    font-weight: 500;
}
.expect-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(56,142,60,.12);
    color: #2e7d32;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.expect-icon svg { width: 11px; height: 11px; }

/* Status update block */
.nest-update-block {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(232,160,32,.07);
    border-left: 3px solid var(--amber);
    border-radius: 0 12px 12px 0;
    padding: 14px 18px;
    font-size: .88rem;
    color: var(--text);
    line-height: 1.6;
}
.nest-update-icon {
    width: 22px;
    height: 22px;
    color: var(--amber-dark);
    flex-shrink: 0;
    margin-top: 1px;
}
.nest-update-icon svg { width: 100%; height: 100%; }

.nest-cta-btn {
    align-self: flex-start;
    margin-top: 4px;
}


/* ── Health banner ──────────────────────────────────────── */
.health-banner-section { background: var(--white); }

.health-banner {
    background: linear-gradient(135deg, var(--brown) 0%, #5c2c0e 100%);
    border-radius: 24px;
    padding: 48px 52px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    box-shadow: var(--sh3);
}
.health-banner-left {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.health-banner-pill {
    display: inline-block;
    background: rgba(255,255,255,.12);
    color: var(--amber);
    font-size: .74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: 5px 14px;
    border-radius: 50px;
    align-self: flex-start;
}
.health-banner-left h2 {
    font-family: var(--fh);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin: 0;
}
.health-banner-left p {
    font-size: .9rem;
    color: rgba(255,255,255,.7);
    line-height: 1.7;
    margin: 0;
}

.health-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}
.health-mini-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: .82rem;
    font-weight: 700;
}
.health-mini-ok {
    background: rgba(56,142,60,.2);
    color: #a5d6a7;
}
.health-mini-carrier {
    background: rgba(232,160,32,.2);
    color: #ffe082;
}
.health-banner-note {
    font-size: .75rem;
    color: rgba(255,255,255,.45);
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}


/* ── Process steps ──────────────────────────────────────── */
.process-section { background: var(--cream); }

.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 56px;
}
.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
}
.process-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--amber);
    color: var(--white);
    font-family: var(--fh);
    font-size: 1.4rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(232,160,32,.4);
    flex-shrink: 0;
}
.process-content h3 {
    font-family: var(--fh);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
}
.process-content p {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 240px;
    margin: 0 auto;
}
.process-connector {
    flex-shrink: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--amber), rgba(232,160,32,.3));
    margin-top: 27px;
    border-radius: 2px;
}


/* ── CTA banner ─────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, var(--brown) 0%, #4a200a 100%);
    padding: 72px 0;
}
.cta-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-paw {
    width: 56px;
    height: 50px;
    color: var(--amber);
    flex-shrink: 0;
    opacity: .7;
}
.cta-text { flex: 1; min-width: 220px; }
.cta-text h2 {
    font-family: var(--fh);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}
.cta-text p { color: rgba(255,255,255,.72); font-size: .95rem; margin: 0; }
.cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}
.btn-ghost-dark {
    background: transparent;
    color: rgba(255,255,255,.85);
    border-color: rgba(255,255,255,.3);
}
.btn-ghost-dark:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.6);
    color: var(--white);
}


/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1020px) {
    .nest-card-featured { grid-template-columns: 1fr; }
    .nest-photo-frame { min-height: 300px; }
    .nest-info-side { padding: 40px 40px 40px 40px; }
    .health-banner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 680px) {
    .nest-info-side { padding: 28px; }
    .process-steps { flex-direction: column; align-items: center; }
    .process-connector { width: 2px; height: 40px; background: linear-gradient(to bottom, var(--amber), rgba(232,160,32,.3)); margin-top: 0; }
    .health-banner { padding: 32px 28px; }
    .health-mini-grid { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
    .cta-text h2 { font-size: 1.4rem; }
}
