/* ==========================================================
   Over Ons 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;
}


/* ── Stats ──────────────────────────────────────────────── */
.stats-section {
    padding: 56px 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 24px 56px;
}
.stat-number {
    font-family: var(--fh);
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--amber-dark);
    line-height: 1;
}
.stat-plus {
    font-size: .6em;
    vertical-align: super;
    color: var(--amber);
}
.stat-label {
    font-size: .88rem;
    color: var(--muted);
    font-weight: 500;
    text-align: center;
}
.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(0,0,0,.1);
}


/* ── Story section ──────────────────────────────────────── */
.story-section { background: var(--white); }

.story-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 72px;
    align-items: start;
}

/* Story blocks */
.story-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.story-block {
    display: flex;
    gap: 22px;
    align-items: flex-start;
}
.story-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(211,47,47,.08);
    color: #c62828;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}
.story-icon svg { width: 22px; height: 22px; }
.story-icon--amber { background: rgba(232,160,32,.12); color: var(--amber-dark); }
.story-icon--green { background: rgba(56,142,60,.1);   color: #2e7d32; }

.story-title {
    font-family: var(--fh);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.2;
}
.story-block p {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 12px;
}
.story-block p:last-child { margin-bottom: 0; }
.story-block strong { color: var(--text); font-weight: 700; }
.story-block em { color: var(--amber-dark); font-style: italic; }


/* Timeline */
.timeline-heading {
    font-family: var(--fh);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.timeline {
    position: relative;
    padding-left: 28px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--amber), rgba(232,160,32,.15));
    border-radius: 2px;
}

.tl-item {
    position: relative;
    margin-bottom: 36px;
}
.tl-item:last-child { margin-bottom: 0; }

.tl-dot {
    position: absolute;
    left: -24px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--amber);
}
.tl-dot--amber { background: var(--amber); }
.tl-dot--gold  { background: var(--amber-dark); box-shadow: 0 0 0 2px var(--amber-dark), 0 0 12px rgba(196,122,21,.4); }

.tl-content { padding-left: 6px; }
.tl-year {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--amber-dark);
    display: block;
    margin-bottom: 4px;
}
.tl-content h4 {
    font-family: var(--fh);
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
}
.tl-content p {
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}
.tl-content strong { color: var(--text); font-weight: 700; }
.tl-content em { color: var(--amber-dark); font-style: italic; }


/* ── Philosophy ─────────────────────────────────────────── */
.philosophy-section { background: var(--cream); }

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.philosophy-card {
    background: var(--white);
    border-radius: var(--r);
    padding: 32px 28px;
    box-shadow: var(--sh1);
    border: 1px solid rgba(0,0,0,.05);
    transition: box-shadow var(--ease), transform var(--ease);
}
.philosophy-card:hover {
    box-shadow: var(--sh2);
    transform: translateY(-4px);
}
.philo-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.philo-icon svg { width: 22px; height: 22px; }
.philo-icon--amber { background: rgba(232,160,32,.12); color: var(--amber-dark); }
.philo-icon--green { background: rgba(56,142,60,.1);   color: #2e7d32; }
.philo-icon--blue  { background: rgba(30,136,229,.1);  color: #1565c0; }
.philo-icon--pink  { background: rgba(236,64,122,.1);  color: #b5295a; }

.philosophy-card h3 {
    font-family: var(--fh);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 10px;
}
.philosophy-card p {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}


/* ── 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) {
    .story-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 680px) {
    .stat-item { padding: 20px 28px; }
    .stat-divider { display: none; }
    .stats-row { gap: 0; }
    .story-block { flex-direction: column; gap: 14px; }
    .philosophy-grid { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
    .cta-text h2 { font-size: 1.4rem; }
}
@media (max-width: 400px) {
    .logo-sub  { display: none; }
    .logo-name { font-size: .9rem; }
}
