
:root {
    --ap-bg: #f7f2ea;
    --ap-bg-soft: #fbf7f2;
    --ap-white: #ffffff;
    --ap-dark: #113971;
    --ap-dark-2: #072a5c;
    --ap-text: #5f5044;
    --ap-gold: #f1c63c;
    --ap-gold-soft: #d8bc88;
    --ap-border: #e7dbcd;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--ap-bg);
    color: var(--ap-dark);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 { font-family: 'Inter', sans-serif; }


a { text-decoration: none; }

.topbar {
    background: var(--ap-dark-2);
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 14px;
}
.topbar a {
    color: #f4eadf;
    transition: .3s ease;
}
.topbar a:hover { color: var(--ap-gold-soft); }

.navbar-custom {
    background: rgba(247, 242, 234, .88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(36, 26, 20, .06);
}
.brand-logo {
    height: 54px;
    width: auto;
    display: block;
}
.nav-link {
    color: var(--ap-text);
    font-size: 14px;
    transition: .3s ease;
}
.nav-link:hover,
.nav-link:focus { color: var(--ap-dark); }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #d8cab7;
    background: rgba(255,255,255,.78);
    color: rgb(136, 18, 18);
    padding: 8px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 11px;
    font-weight: 600;
}

.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-media {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: var(--ap-bg);
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.hero-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(247,242,234,.94) 0%, rgba(247,242,234,.82) 36%, rgba(247,242,234,.24) 68%, rgba(247,242,234,.10) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 110px 0 90px;
}
.hero-title {
    font-size: clamp(30px, 5vw, 70px);
    line-height: .9;
    color: var(--ap-dark);
    margin-bottom: 0;
}
.hero-title span {
    display: block;
    color: #7e6438;
}
.hero-text,
.section-text,
.footer-text {
    color: var(--ap-text);
    line-height: 1.95;
    font-size: 17px;
}

.btn-ap-dark,
.btn-ap-outline {
    border-radius: 999px;
    padding: 16px 24px;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 12px;
    font-weight: 600;
}
.btn-ap-dark {
    background: var(--ap-dark);
    border: 1px solid var(--ap-dark);
    color: #fff;
}
.btn-ap-dark:hover {
    background: #16100c;
    border-color: #16100c;
    color: #fff;
}
.btn-ap-outline {
    background: rgba(255,255,255,.34);
    border: 1px solid #c7a06e;
    color: #7a4f1a;
}
.btn-ap-outline:hover {
    background: #fff7eb;
    color: #7a4f1a;
    border-color: #c7a06e;
}

.section-space { padding: 96px 0; }
.section-title {
    font-size: clamp(20px, 3vw, 32px);
    line-height: 1.04;
    color: var(--ap-dark);
}

.image-frame,
.product-card,
.cta-panel {
    border: 1px solid var(--ap-border);
    border-radius: 32px;
    background: var(--ap-white);
    overflow: hidden;
    box-shadow: 0 20px 70px rgba(47, 34, 23, .08);
}
.image-frame { padding: 14px; }
.image-frame img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    max-height: 560px;
    object-fit: cover;
    object-position: center center;
    border-radius: 24px;
}
.story-card-light,
.story-card-dark {
    border-radius: 28px;
    padding: 36px;
    border: 1px solid var(--ap-border);
    height: 100%;
}
.story-card-light {
    background: #fffaf4;
    box-shadow: 0 16px 50px rgba(47,34,23,.05);
}
.story-card-dark {
    background: var(--ap-dark);
    border-color: rgba(255,255,255,.05);
    box-shadow: 0 16px 50px rgba(0,0,0,.12);
}
.story-card-dark p { color: #f3e8dc; }
.meaning-section,
.collab-section,
.verkooppunten-section { background: var(--ap-bg-soft); }
.difference-section {
    background-color: var(--ap-dark-2);
    color: #fff;
}
.difference-item {
    background-color: var(--ap-dark);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 28px;
    padding: 28px;
    height: 100%;
}
.difference-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ap-gold);
    color: var(--ap-dark);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 18px;
}
.difference-item p {
    color: #f4eadf;
    line-height: 1.85;
    margin-bottom: 0;
}
.product-visual {
    min-height: 240px;
    border-bottom: 1px solid var(--ap-border);
    background: linear-gradient(135deg, #fdf6ea, #fffdf8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 34px;
}
.bottle-small,
.bottle-large {
    border-radius: 999px 999px 18px 18px;
    box-shadow: 0 18px 24px rgba(46, 32, 24, .14);
}
.bottle-small {
    width: 62px;
    height: 132px;
    background: linear-gradient(180deg, #c8d986, #acbf69);
}
.bottle-large {
    width: 82px;
    height: 188px;
    background: linear-gradient(180deg, #d7e59e, #bfd07d);
}
.product-content { padding: 34px; }
.product-eyebrow {
    color: #8a6840;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 600;
}
.product-title {
    font-size: 48px;
    line-height: 1;
    margin-top: 8px;
    color: var(--ap-dark);
}
.product-price {
    margin-top: 24px;
    color: #7a4f1a;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 13px;
    font-weight: 700;
}
.cta-panel {
    padding: 48px;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,250,244,.96));
    box-shadow: none;
}
.footer-section {
    background: var(--ap-dark-2);
    color: #f4eadf;
    padding: 72px 0;
}
.footer-title {
    font-size: clamp(34px, 4vw, 52px);
    color: #fff;
    line-height: 1.08;
}
.footer-contact a,
.footer-contact div {
    color: #f4eadf;
    font-size: 17px;
}
.footer-contact a:hover { color: var(--ap-gold-soft); }
.footer-contact i {
    color: var(--ap-gold-soft);
    width: 22px;
    margin-top: 6px;
}
.footer-logo {
    height: 46px;
    width: auto;
    margin-top: 24px;
    display: block;
}
.placeholder-box {
    border: 1px dashed #ccb089;
    background: rgba(255,255,255,.85);
    border-radius: 32px;
    padding: 34px;
    box-shadow: 0 16px 50px rgba(47,34,23,.04);
}

@media (max-width: 991.98px) {
    .section-space { padding: 64px 0; }
    .hero-media { min-height: auto; }
    .hero-media::before {
        background: linear-gradient(180deg, rgba(247,242,234,.88) 0%, rgba(247,242,234,.72) 46%, rgba(247,242,234,.36) 100%);
    }
    .hero-content { padding: 92px 0 64px; }
    .brand-logo { height: 42px; }
    .cta-panel { padding: 32px; }
}


.contact-card {
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 32px;
    background: rgba(255,255,255,.06);
    padding: 38px;
}

.contact-form-title {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    color: #fff;
}

.contact-card .section-text,
.contact-card .form-label {
    color: #f4eadf;
}

.contact-form .form-control {
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.08);
    color: #fff;
    padding: 14px 18px;
}

.contact-form .form-control:focus {
    border-color: var(--ap-gold-soft);
    box-shadow: 0 0 0 .25rem rgba(216,188,136,.18);
    background: rgba(255,255,255,.10);
    color: #fff;
}

.contact-form .form-control::placeholder {
    color: rgba(244,234,223,.65);
}

.contact-form textarea.form-control {
    min-height: 160px;
}

.footer-logo {
    height: 46px;
    width: auto;
    margin-top: 24px;
    display: block;
}

.alert {
    border-radius: 18px;
}

@media (max-width: 991.98px) {
    .contact-card {
        padding: 28px;
    }
}

.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.language-switch span {
    color: rgba(244, 234, 223, .45);
}
.lang-link {
    color: rgba(244, 234, 223, .72);
    font-weight: 600;
}
.lang-link.active,
.lang-link:hover {
    color: #fff;
}
