:root {
    --primary-orange: #d86f1f;
    --primary-orange-dark: #b85712;
    --dark-gray: #24303d;
    --warm-beige: #f3ede6;
    --soft-white: #fffaf5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-gray);
    background: var(--soft-white);
    line-height: 1.7;
}

h1,
h2,
h3 {
    line-height: 1.2;
}

.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 250, 245, 0.94) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(36, 48, 61, 0.08);
}

.navbar-brand {
    letter-spacing: 0.04em;
}

.nav-link {
    font-weight: 600;
    color: var(--dark-gray);
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    color: var(--primary-orange);
}

.nav-link.btn.active,
.nav-link.btn:hover,
.nav-link.btn:focus {
    color: white;
}

.btn-primary {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-orange-dark);
    border-color: var(--primary-orange-dark);
}

.btn-outline-light:hover {
    color: var(--dark-gray);
}

.hero,
.page-hero {
    display: flex;
    align-items: center;
    color: white;
}

.hero {
    min-height: 80vh;
    background:
        linear-gradient(120deg, rgba(22, 29, 36, 0.82), rgba(216, 111, 31, 0.35)),
        url('images/hero/kachels-declercq.jpg') center center / cover no-repeat;
}

.hero-home {
    min-height: clamp(560px, 82vh, 860px);
    background-position: center 38%;
}

.page-hero {
    min-height: 42vh;
    padding: 5rem 0;
    background:
        linear-gradient(120deg, rgba(22, 29, 36, 0.86), rgba(216, 111, 31, 0.3)),
        url('images/hero/kachels-declercq.jpg') center 38% / cover no-repeat;
}

.hero-panel {
    max-width: 720px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.5rem;
    background: rgba(18, 24, 31, 0.45);
    backdrop-filter: blur(6px);
}

.section-padding {
    padding: 96px 0;
}

.bg-light-gray {
    background: var(--warm-beige);
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 0.85rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary-orange);
}

.section-copy > :last-child,
.info-panel > :last-child,
.teaser-card > :last-child {
    margin-bottom: 0;
}

.media-frame {
    height: 100%;
}

.media-frame img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.tile-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.tile-stack .info-panel {
    flex: 1;
}

.check-list {
    padding-left: 0;
    list-style: none;
}

.check-list li {
    margin-bottom: 0.85rem;
    font-weight: 500;
}

.check-list li::before {
    content: "✓";
    display: inline-block;
    margin-right: 0.7rem;
    color: var(--primary-orange);
    font-weight: 700;
}

.kachel-block {
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(36, 48, 61, 0.12);
}

.kachel-block h3 {
    margin-bottom: 0.9rem;
    font-size: 1.2rem;
}

.kachel-link {
    color: var(--primary-orange);
    font-weight: 700;
    text-decoration: none;
}

.kachel-link:hover,
.kachel-link:focus {
    color: var(--primary-orange-dark);
}

.info-panel,
.contact-card,
.teaser-card,
.stat-card {
    border-radius: 1.5rem;
    box-shadow: 0 18px 45px rgba(36, 48, 61, 0.08);
}

.info-panel {
    height: 100%;
    padding: 2rem;
    background:
        linear-gradient(160deg, rgba(36, 48, 61, 0.98), rgba(82, 94, 106, 0.92));
    color: white;
}

.info-panel.light,
.teaser-card,
.stat-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 237, 230, 0.96));
    color: var(--dark-gray);
    border: 1px solid rgba(36, 48, 61, 0.08);
}

.info-panel .section-eyebrow {
    color: rgba(255, 255, 255, 0.75);
}

.info-panel.light .section-eyebrow {
    color: var(--primary-orange);
}

.teaser-card,
.stat-card {
    padding: 2rem;
    height: 100%;
}

.contact-section {
    background:
        linear-gradient(160deg, rgba(25, 34, 43, 0.98), rgba(48, 60, 72, 0.95));
}

.form-control {
    padding: 0.9rem 1rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(36, 48, 61, 0.12);
}

.form-control:focus {
    border-color: rgba(216, 111, 31, 0.65);
    box-shadow: 0 0 0 0.25rem rgba(216, 111, 31, 0.18);
}

.footer-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 700;
}

.footer-link:hover,
.footer-link:focus {
    color: var(--primary-orange-dark);
}

footer {
    background: #fff;
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 72px 0;
    }

    .hero {
        min-height: 72vh;
    }

    .hero-home {
        min-height: 68vh;
        background-position: center 32%;
    }

    .page-hero {
        min-height: 34vh;
    }

    .hero-panel {
        padding: 2rem;
    }

    .tile-stack {
        gap: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .media-frame img {
        min-height: 260px;
    }

    .hero-home {
        min-height: 620px;
        background-position: 58% 28%;
    }

    .info-panel,
    .contact-card,
    .teaser-card,
    .stat-card {
        padding: 1.5rem;
    }

    .kachel-block {
        margin-top: 1.5rem;
        padding-top: 1.35rem;
    }
}
