/* =====================================================================
   Chantal van Bruggen — sopraan.info
   Klassieke, elegante stijl: ivoor papier, notenbalk-motief,
   Cormorant Garamond display + Lato body, plum & goud accenten.
   ===================================================================== */

:root {
    --cream:      #f6efdb;
    --cream-2:    #fbf6e9;
    --paper:      #fffdf6;
    --ink:        #2a2f9c;   /* hoofdtekst: blauw van de site */
    --ink-soft:   #3b4099;   /* gedempte blauwe tekst */
    --ink-faint:  #7b7eb2;
    --dark:       #2c2823;   /* donkere footer-achtergrond */
    --ochre:      #fcb900;   /* oker kader rond de box */
    --plum:       #6e3052;
    --plum-deep:  #4d203a;
    --plum-soft:  #8a4a6d;
    --gold:       #b0883f;
    --gold-soft:  #d8c79b;
    --line:       rgba(44, 40, 35, 0.14);
    --staff:      rgba(77, 32, 58, 0.20);
    --shadow:     0 18px 50px -28px rgba(77, 32, 58, 0.35);
    --maxw:       1120px;
    --serif: Arial, Helvetica, sans-serif;
    --sans: Arial, Helvetica, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--sans);
    font-weight: 400;
    font-size: 17px;
    line-height: 1.75;
    color: var(--ink);
    background-color: var(--ochre);
    -webkit-font-smoothing: antialiased;
}

/* Boxed layout — gecentreerde inhoudsbox op okergele achtergrond */
.shell {
    max-width: 1280px;
    margin: 0 auto;
    padding-inline: clamp(1rem, 3.5vw, 3rem);
    background-color: var(--cream);
    box-shadow: 0 0 60px -10px rgba(0, 0, 0, 0.28);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.shell > .page { flex: 1 0 auto; }

h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: var(--plum);
}

a { color: var(--plum); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold); }

img { max-width: 100%; display: block; }

/* ---------- Buttons = onderstreepte links (geen gevulde vlakken) ---------- */
.btn {
    display: inline-block;
    font-family: var(--sans);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--plum);
    background: none;
    padding: .3rem 0;
    border: none;
    border-bottom: 2px solid var(--plum);
    border-radius: 0;
    cursor: pointer;
    transition: color .2s ease, border-color .2s ease;
}
.btn:hover { color: var(--gold); border-color: var(--gold); }
.btn--small { font-size: .74rem; }

/* ---------- Header & navigation ---------- */
.site-header { background: var(--cream-2); }

/* Full-width logo-band */
.brand-band {
    display: block;
    width: 100%;
    padding: 1.4rem 0 1rem;
    background: var(--cream-2);
}
.brand-logo {
    display: block;
    width: 100%;
    height: auto;
    max-height: 240px;
    object-fit: contain;
}
/* Footer-mark (SVG g-sleutel) blijft via .logo-svg */
.logo-svg { height: 88px; width: auto; }
.logo-svg--mark { height: 60px; }
.logo-wordmark { font-family: var(--serif); font-weight: 600; font-size: 46px; letter-spacing: .5px; }
.logo-sopraan { font-family: var(--serif); font-weight: 600; font-size: 30px; letter-spacing: 1px; }

/* Sticky navigatiebalk onder het logo */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--cream-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s ease;
}
.site-header.is-scrolled .navbar,
.navbar.is-scrolled { box-shadow: 0 10px 30px -22px rgba(77, 32, 58, .5); }
.mainnav { background: transparent; }
.mainnav__links {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: .55rem 1.5rem;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .25rem .35rem;
}
.mainnav__links a {
    display: block;
    font-family: var(--serif);
    font-size: 1.22rem;
    font-weight: 700;
    letter-spacing: .01em;
    color: var(--ink);
    padding: .35rem .9rem;
    border: none;
    transition: color .2s ease;
}
.mainnav__links a:hover { color: var(--plum); }
.mainnav__links a.is-active { color: var(--plum); }

.nav-toggle {
    display: none;
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 38px;
    background: none; border: 1px solid var(--line); border-radius: 3px;
    cursor: pointer;
    padding: 9px 9px;
    z-index: 2;
}
.nav-toggle span {
    display: block; height: 2px; width: 100%;
    background: var(--plum); margin: 4px 0;
    transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 5.5rem 1.5rem 5rem;
    background:
        linear-gradient(180deg, rgba(255,253,246,.6), rgba(246,239,219,0)) ,
        var(--cream);
}
.hero__staff { display: none; }
.hero__inner { position: relative; max-width: 760px; margin: 0 auto; }
.hero__welcome {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3.4vw, 2.4rem);
    font-weight: 600;
    color: var(--plum);
    margin: 0 0 1.8rem;
}
.hero__verse p {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.25rem, 2.6vw, 1.7rem);
    line-height: 1.5;
    color: var(--ink);
    margin: .15rem 0;
}
.hero__signature {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--gold);
    margin: 2rem 0 2.4rem;
    position: relative;
}
.hero__signature::before,
.hero__signature::after {
    content: '';
    display: inline-block;
    width: 48px; height: 1px;
    background: var(--gold-soft);
    vertical-align: middle;
    margin: 0 1rem;
}

/* ---------- Intro ---------- */
.intro { padding: 4rem 1.5rem 2rem; }
.intro__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.intro__inner h2 {
    font-size: clamp(1.8rem, 3.6vw, 2.5rem);
    color: var(--plum);
    margin-bottom: 1rem;
}
.intro__inner p { color: var(--ink-soft); font-size: 1.12rem; }

.content__ornament {
    display: inline-block;
    color: var(--gold);
    line-height: 0;
    margin-bottom: .8rem;
}
.notefig { display: inline-block; vertical-align: middle; width: auto; }
.content__ornament .notefig { height: 36px; }
.card__note .notefig { height: 26px; }

/* ---------- Cards ---------- */
.cards { padding: 2.5rem 1.5rem 5rem; }
.cards__grid {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.card {
    position: relative;
    background: var(--paper);
    border: 1px solid var(--line);
    border-top: 3px solid var(--plum);
    border-radius: 3px;
    padding: 2.2rem 1.9rem 2rem;
    color: var(--ink);
    box-shadow: var(--shadow);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.card:hover {
    transform: translateY(-5px);
    border-top-color: var(--gold);
    box-shadow: 0 26px 56px -30px rgba(77,32,58,.5);
}
.card__note { display: block; color: var(--gold); line-height: 0; margin-bottom: .5rem; }
.card h3 { font-size: 1.6rem; color: var(--plum); margin-bottom: .5rem; }
.card p { color: var(--ink-soft); font-size: 1rem; margin: 0 0 1.1rem; }
.card__more { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }

/* ---------- Content sheet (binnenpagina's) ---------- */
.content { padding: 3.5rem 1.5rem 4.5rem; }
.content__sheet {
    max-width: 800px;
    margin: 0 auto;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 3px;
    box-shadow: var(--shadow);
    padding: clamp(2rem, 5vw, 3.6rem) clamp(1.6rem, 5vw, 3.8rem);
    position: relative;
}
.content__sheet::before {
    content: '';
    position: absolute; inset: 9px;
    border: 1px solid var(--gold-soft);
    border-radius: 2px;
    pointer-events: none;
    opacity: .6;
}
.content__head { text-align: center; margin-bottom: 2.2rem; }
.content__head h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--plum);
    font-weight: 600;
}
.content__head h1::after {
    content: '';
    display: block;
    width: 70px; height: 2px;
    margin: 1rem auto 0;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.content__lead {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--ink-soft);
    margin: 1.1rem auto 0;
    max-width: 60ch;
}
.content__body { color: var(--ink); }
.content__body p { margin: 0 0 1.25rem; }
.content__body p:last-child { margin-bottom: 0; }
.content__subhead {
    font-size: 1.7rem;
    color: var(--plum);
    margin: 2rem 0 .8rem;
}
.content__subhead::before {
    content: '\266B';
    color: var(--gold);
    margin-right: .5rem;
    font-size: 1.1rem;
}

/* ---------- Repertoire / lijsten ---------- */
.repertoire { margin: 1.8rem 0; }
.repertoire__title {
    font-size: 1.5rem;
    color: var(--plum);
    border-bottom: 1px solid var(--gold-soft);
    padding-bottom: .35rem;
    margin-bottom: .9rem;
}
.repertoire__list {
    list-style: none;
    margin: 0; padding: 0;
    columns: 2;
    column-gap: 2.4rem;
}
.repertoire__list li {
    break-inside: avoid;
    padding: .28rem 0 .28rem 1.1rem;
    position: relative;
    font-size: .98rem;
    line-height: 1.5;
    color: var(--ink-soft);
    border-bottom: 1px dotted var(--line);
}
.repertoire__list li::before {
    content: '\2022';
    color: var(--gold);
    position: absolute; left: 0; top: .28rem;
}

/* ---------- Questions (retorische vragen) ---------- */
.questions { list-style: none; margin: 1.6rem 0; padding: 0; }
.questions li {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.22rem;
    color: var(--plum-deep);
    padding: .5rem 0 .5rem 2rem;
    position: relative;
    border-bottom: 1px solid var(--line);
}
.questions li:last-child { border-bottom: none; }
.questions li::before {
    content: '\266A';
    position: absolute; left: 0; top: .55rem;
    color: var(--gold);
    font-style: normal;
    font-size: 1.1rem;
}

/* ---------- Inline contact-block ---------- */
.inline-contact {
    margin-top: 2rem;
    padding: 1.6rem;
    background: var(--cream-2);
    border: 1px solid var(--gold-soft);
    border-radius: 3px;
    text-align: center;
}
.inline-contact__name { font-family: var(--serif); font-size: 1.4rem; color: var(--plum); margin: 0 0 .3rem; }
.inline-contact__lines { margin: 0 0 1rem; color: var(--ink-soft); }

/* ---------- CTA (licht, geen gevuld vlak) ---------- */
.cta {
    background: none;
    color: var(--ink);
    text-align: center;
    padding: 3.8rem 1.5rem;
    border-top: 1px solid var(--line);
}
.cta__staff { display: none; }
.cta__inner { position: relative; max-width: 640px; margin: 0 auto; }
.cta h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); color: var(--plum); margin-bottom: .8rem; }
.cta p { color: var(--ink-soft); margin-bottom: 1.8rem; font-size: 1.1rem; }

/* ---------- Contactpagina ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2.5rem;
    margin-top: 1rem;
}
.contact-details h2,
.contact-form h2 { font-size: 1.6rem; color: var(--plum); margin-bottom: 1rem; }
.contact-details__name { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); margin: 0 0 .8rem; }
.contact-details ul { list-style: none; margin: 0; padding: 0; }
.contact-details li {
    padding: .55rem 0;
    border-bottom: 1px dotted var(--line);
    display: flex; flex-direction: column;
}
.contact-details__label {
    font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--ink-faint); font-weight: 700; margin-bottom: .15rem;
}

/* ---------- Formulier ---------- */
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__field { margin-bottom: 1rem; }
.form__field label,
.form__check { display: block; font-size: .82rem; font-weight: 700; letter-spacing: .04em; color: var(--ink-soft); margin-bottom: .35rem; }
.form__field label span { color: var(--plum); }
.form__field input,
.form__field select,
.form__field textarea {
    width: 100%;
    font-family: var(--sans);
    font-size: 1rem;
    color: var(--ink);
    background: var(--cream-2);
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: .7rem .8rem;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
    outline: none;
    border-color: var(--plum-soft);
    box-shadow: 0 0 0 3px rgba(110, 48, 82, .1);
}
.form__check {
    display: flex; gap: .6rem; align-items: flex-start;
    font-weight: 400; font-size: .9rem; color: var(--ink-soft);
    margin: .3rem 0 1.3rem;
}
.form__check input { margin-top: .25rem; accent-color: var(--plum); }
.form__success {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--cream-2);
    border: 1px solid var(--gold-soft);
    border-radius: 3px;
}
.form__success h3 { font-size: 1.7rem; color: var(--plum); margin: .3rem 0 .6rem; }
.form__success p { color: var(--ink-soft); margin: 0; }

/* ---------- Footer (licht) ---------- */
.footer { background: var(--cream-2); color: var(--ink-soft); padding: 3.5rem 1.5rem 1.6rem; border-top: 1px solid var(--gold-soft); }
.footer__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 2rem;
}
.footer__logo { color: var(--plum); margin-bottom: .6rem; }
.footer__name { font-family: var(--serif); font-weight: 700; font-size: 1.4rem; color: var(--plum); margin: 0 0 .4rem; }
.footer__intro { font-size: .92rem; color: var(--ink-soft); max-width: 30ch; }
.footer__col h4 {
    font-family: var(--sans);
    font-size: .76rem; letter-spacing: .14em; text-transform: uppercase;
    color: var(--plum); margin-bottom: 1rem;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li { margin-bottom: .55rem; }
.footer__col a, .footer__contact li { color: var(--ink); font-size: .95rem; }
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
    max-width: var(--maxw);
    margin: 2.5rem auto 0;
    padding-top: 1.4rem;
    border-top: 1px solid var(--line);
    text-align: center;
    font-size: .82rem;
    color: var(--ink-faint);
}

/* ---------- Reveal-animatie ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
    .navbar { min-height: 54px; }
    .nav-toggle { display: block; }
    .mainnav { display: none; }
    .mainnav.is-open { display: block; }
    .mainnav__links {
        flex-direction: column;
        align-items: stretch;
        padding: .6rem 1.2rem 1.2rem;
        gap: .15rem;
    }
    .mainnav__links a { text-align: center; font-size: 1.15rem; padding: .6rem; }
    .brand-logo { max-height: 150px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
    body { font-size: 16px; }
    .logo-svg { height: 64px; }
    .brand-logo { max-height: 110px; }
    .repertoire__list { columns: 1; }
    .form__row { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr; }
    .content__sheet { padding: 1.8rem 1.3rem; }
    .hero { padding: 3.5rem 1.2rem; }
}
