:root {
    /* Citroenboom-palet — zachte pastel boter & blad */
    --cream: #f4ead0; /* warm buttery cream */
    --cream-deep: #ecdfb8;
    --paper: #fbf5dd; /* lichtere ‘paper’ achtergrond */
    --sage: #7d9070; /* lichter, frisser blad */
    --sage-deep: #5d6f53; /* nog steeds genoeg contrast voor cream tekst */
    --sage-soft: #aebd9f;
    --gold: #cdb37a;
    --gold-soft: #e6d6a8;
    --ink: #2e2c24;
    --ink-soft: #5e5a4d;
    --rule: rgba(46, 44, 36, 0.18);
    --serif: "Cormorant Garamond", "Cormorant", Georgia, serif;
    --sans: "Jost", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}
html,
body {
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--serif);
    font-weight: 400;
    font-size: 19px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

::selection {
    background: var(--gold-soft);
    color: var(--ink);
}

.label {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--sage);
}
.label.gold {
    color: var(--gold);
}
.label.cream {
    color: var(--cream);
}

h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: 0.01em;
    margin: 0;
    color: var(--ink);
}
h2 {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
}
h3 {
    font-size: clamp(24px, 2vw, 30px);
    line-height: 1.2;
}
p {
    margin: 0 0 1em;
    color: var(--ink-soft);
    text-wrap: pretty;
    max-width: 62ch;
}

a {
    color: inherit;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

/* ---------- Nav ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 40px;
    transition:
        background 0.3s ease,
        backdrop-filter 0.3s ease,
        border-color 0.3s ease;
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    background: rgba(245, 239, 229, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--rule);
}
.nav__brand {
    font-family: var(--serif);
    font-size: 19px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--cream);
    transition: color 0.3s ease;
}

.nav__brand__hero {
    font-family: var(--serif);
    font-size: 30px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--cream);
    transition: color 0.3s ease;
    text-decoration-line: underline;
}

.nav.scrolled .nav__brand {
    color: var(--ink);
}
.nav__brand em {
    font-style: normal;
    color: var(--gold-soft);
}
.nav.scrolled .nav__brand em {
    color: var(--gold);
}
.nav__links {
    display: flex;
    gap: 34px;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--cream);
    transition: color 0.3s ease;
}
.nav.scrolled .nav__links {
    color: var(--ink);
}
.nav__links a {
    text-decoration: none;
    opacity: 0.9;
    transition:
        opacity 0.2s,
        color 0.2s;
}
.nav__links a:hover {
    opacity: 1;
    color: var(--gold);
}
@media (max-width: 780px) {
    .nav__links {
        display: none;
    }
    .nav {
        padding: 18px 22px;
    }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    padding: 18px 30px;
    border: 1px solid currentColor;
    background: transparent;
    color: var(--ink);
    text-decoration: none;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
    cursor: pointer;
}
.btn:hover {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
}
.btn--gold {
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
}
.btn--gold:hover {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
}
.btn--ghost {
    color: var(--cream);
    border-color: var(--cream);
}
.btn--ghost:hover {
    background: var(--cream);
    color: var(--ink);
    border-color: var(--cream);
}
.btn .arr {
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    letter-spacing: 0;
    text-transform: none;
    transition: transform 0.25s;
}
.btn:hover .arr {
    transform: translateX(4px);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
}
.hero__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero__veil {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at center,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.45) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.1) 35%,
            rgba(0, 0, 0, 0.55) 100%
        );
    pointer-events: none;
}
.hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 880px;
}

.logo {
    display: block;
    width: 230px;
    height: 230px;
    margin: 0 auto 36px;
    filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.45));
}

.hero__tag {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(28px, 3.6vw, 48px);
    line-height: 1.15;
    color: var(--cream);
    margin: 0 0 14px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}
.hero__sub {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: 0.9;
    margin-bottom: 42px;
}
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: 0.75;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.hero__scroll::after {
    content: "";
    width: 1px;
    height: 38px;
    background: linear-gradient(
        to bottom,
        rgba(245, 239, 229, 0.8),
        rgba(245, 239, 229, 0)
    );
    animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
    0%,
    100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}

/* ---------- Sections ---------- */
section {
    padding: 140px 40px;
}
@media (max-width: 780px) {
    section {
        padding: 90px 22px;
    }
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.narrow {
    max-width: 780px;
    margin: 0 auto;
}

.section-head {
    text-align: center;
    margin-bottom: 80px;
}
.section-head .label {
    display: inline-block;
    margin-bottom: 18px;
}
.section-head h2 {
    margin-bottom: 18px;
}
.section-head p {
    margin-left: auto;
    margin-right: auto;
    color: var(--ink-soft);
}

.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--gold);
    margin: 14px 0;
}
.ornament .line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}
.ornament .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
}
.ornament .diamond {
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
}

/* ---------- Welcome / Mission Vision ---------- */
.welcome {
    background: var(--paper);
}
.welcome__intro {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 90px;
}
.welcome__intro h2 {
    font-style: italic;
    font-weight: 300;
}
.welcome__intro h2 em {
    font-style: normal;
    color: var(--gold);
}
.welcome__intro p {
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
    color: var(--ink-soft);
}

.mv {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
@media (max-width: 820px) {
    .mv {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}
.mv__col h3 {
    font-style: italic;
    font-weight: 400;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--rule);
}
.mv__col h3 .num {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-right: 14px;
    vertical-align: middle;
}

/* ---------- Packages ---------- */
.packages {
    background: var(--cream);
    position: relative;
}
.pkg-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--rule);
    border-left: 1px solid var(--rule);
}
@media (max-width: 820px) {
    .pkg-grid {
        grid-template-columns: 1fr;
    }
}
.pkg {
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 54px 48px 60px;
    background: var(--paper);
    position: relative;
    transition: background 0.35s ease;
}
.pkg:hover {
    background: #fffaef;
}
.pkg__num {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.32em;
    color: var(--gold);
    margin-bottom: 22px;
}
.pkg h3 {
    font-style: italic;
    margin-bottom: 6px;
}
.pkg__sub {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 26px;
}
.pkg p {
    margin-bottom: 24px;
}
.pkg ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    font-size: 17px;
}
.pkg li {
    padding: 10px 0;
    border-bottom: 1px solid var(--rule);
    color: var(--ink-soft);
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.pkg li:last-child {
    border-bottom: none;
}
.pkg li::before {
    content: "";
    width: 5px;
    height: 5px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
    margin-top: 11px;
}
.pkg__foot {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-top: 22px;
    border-top: 1px solid var(--rule);
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sage);
}
.pkg__foot a {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
}
.pkg__foot a:hover {
    color: var(--gold);
}

/* ---------- About Iris ---------- */
.about {
    background: var(--paper);
}
.about__grid {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 90px;
    align-items: center;
}
@media (max-width: 900px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}
.about__photo {
    position: relative;
    aspect-ratio: 4/5;
    background: var(--cream-deep);
}
.about__photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about__photo::after {
    content: "";
    position: absolute;
    inset: 18px -18px -18px 18px;
    border: 1px solid var(--gold);
    z-index: -1;
    pointer-events: none;
}
.about h2 {
    font-style: italic;
    font-weight: 300;
    margin-bottom: 8px;
}
.about__sig {
    font-family: var(--serif);
    font-style: italic;
    font-size: 32px;
    color: var(--gold);
    margin-top: 30px;
}
.about__meta {
    margin-top: 36px;
    padding-top: 30px;
    border-top: 1px solid var(--rule);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.about__meta div {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sage);
}
.about__meta strong {
    display: block;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 0;
    text-transform: none;
    color: var(--ink);
    margin-bottom: 4px;
}

/* ---------- CTA ---------- */
.cta {
    background: var(--sage-deep);
    color: var(--cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta::before,
.cta::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border: 1px solid rgba(226, 207, 156, 0.18);
    border-radius: 50%;
}
.cta::before {
    top: -170px;
    left: -170px;
}
.cta::after {
    bottom: -170px;
    right: -170px;
}
.cta__inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}
.cta h2 {
    color: var(--cream);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 24px;
}
.cta h2 em {
    font-style: normal;
    color: var(--gold-soft);
}
.cta p {
    color: rgba(245, 239, 229, 0.85);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 42px;
    font-size: 20px;
}
.cta__row {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.cta__contact {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding-top: 42px;
    border-top: 1px solid rgba(226, 207, 156, 0.22);
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}
.cta__contact a {
    color: var(--cream);
    text-decoration: none;
    opacity: 0.85;
    transition:
        opacity 0.2s,
        color 0.2s;
}
.cta__contact a:hover {
    opacity: 1;
    color: var(--gold-soft);
}

/* ---------- Footer ---------- */
footer {
    background: var(--ink);
    color: var(--cream);
    padding: 80px 40px 30px;
}
.foot {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}
@media (max-width: 820px) {
    .foot {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}
@media (max-width: 520px) {
    .foot {
        grid-template-columns: 1fr;
    }
}
.foot__brand .mark {
    font-family: var(--serif);
    font-size: 22px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.foot__brand .mark em {
    font-style: normal;
    color: var(--gold);
}
.foot__brand .mark-sub {
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: rgba(245, 239, 229, 0.6);
    letter-spacing: 0.06em;
    margin-bottom: 24px;
}
.foot__brand p {
    font-size: 15px;
    color: rgba(245, 239, 229, 0.55);
    max-width: 34ch;
}
.foot h4 {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 22px;
}
.foot ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.foot li {
    margin-bottom: 10px;
}
.foot a {
    color: rgba(245, 239, 229, 0.7);
    font-size: 15px;
    text-decoration: none;
    transition: color 0.2s ease;
}
.foot a:hover {
    color: var(--cream);
}
.foot__bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(245, 239, 229, 0.12);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(245, 239, 229, 0.4);
}
.foot__bottom a {
    color: rgba(245, 239, 229, 0.55);
    text-decoration: none;
}
.foot__bottom a:hover {
    color: var(--cream);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
}
.reveal.in {
    opacity: 1;
    transform: none;
}
