/* Platea.be - huisstijl: see SITE-INFO.md, "Huisstijl Platea". Mobile first. */

@font-face { font-family: "Poppins"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/poppins-latin-400.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/poppins-latin-500.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/poppins-latin-600.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/poppins-latin-700.woff2") format("woff2"); }

:root {
    /* Brand colours. --primary is decorative (3.7:1 on white): text, buttons and links use --primary-strong (5.19:1). */
    --primary: #D36445;
    --primary-strong: #AD5239;
    --primary-darker: #8E4330;
    --bg: #F6EDE8;
    --surface: #FFFFFF;
    --text: #1E1E1E;
    --text-muted: #55504D;
    --neutral: #E5E5EE;
    --line: #E8DCD5;
    --dark: #1E1E1E;

    --font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

    --gutter: clamp(1rem, 5vw, 4rem);
    --content-max: 1200px;
    --measure: 68ch;
    --section-space: clamp(3.5rem, 9vw, 7rem);

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    --shadow: 0 1px 2px rgb(30 30 30 / .06), 0 8px 24px rgb(30 30 30 / .07);
    --shadow-lg: 0 2px 4px rgb(30 30 30 / .06), 0 24px 48px rgb(30 30 30 / .12);
    --header-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text);
    background: var(--surface);
    overflow-wrap: break-word;
}

img, svg { max-width: 100%; height: auto; display: block; }

h1, h2, h3 { line-height: 1.2; margin: 0 0 .6em; font-weight: 700; letter-spacing: -.015em; hyphens: auto; overflow-wrap: anywhere; }
h1 { font-size: clamp(2.1rem, 7vw, 3.6rem); letter-spacing: -.025em; }
h2 { font-size: clamp(1.7rem, 5vw, 2.6rem); }
h3 { font-size: 1.15rem; font-weight: 600; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--primary-strong); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { color: var(--primary-darker); text-decoration-thickness: 2px; }

:focus-visible { outline: 3px solid var(--primary-strong); outline-offset: 3px; border-radius: 4px; }

strong { font-weight: 600; }
code { font-size: .9em; background: var(--bg); padding: .1em .35em; border-radius: 4px; overflow-wrap: anywhere; }

.visually-hidden {
    position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
    position: absolute; left: 1rem; top: -4rem; z-index: 100;
    background: var(--dark); color: #fff; padding: .7rem 1rem; border-radius: var(--radius-sm);
    font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 1rem; color: #fff; }

/* Placeholders the owner still has to fill in (SITE-INFO.md). Deliberately loud. */
mark.todo {
    background: #FFF3B0; color: #5A4500; border: 1px dashed #B08A00;
    padding: .05em .4em; border-radius: 4px; font-weight: 500;
}

.container { width: 100%; max-width: calc(var(--content-max) + 2 * var(--gutter)); margin-inline: auto; padding-inline: var(--gutter); }

.eyebrow {
    font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em;
    color: var(--primary-strong); margin-bottom: .75rem;
}
.lead { font-size: clamp(1.05rem, 2.4vw, 1.2rem); color: var(--text-muted); max-width: var(--measure); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    min-height: 48px; padding: .75rem 1.5rem;
    font: inherit; font-weight: 600; line-height: 1.2; text-decoration: none; text-align: center;
    border: 2px solid transparent; border-radius: 999px; cursor: pointer;
    transition: background-color .15s, color .15s, border-color .15s, transform .15s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--primary-strong); color: #fff; }
.btn-primary:hover { background: var(--primary-darker); color: #fff; }
.btn-secondary { background: transparent; color: var(--text); border-color: var(--text); }
.btn-secondary:hover { background: var(--text); color: #fff; }
.btn-sm { min-height: 42px; padding: .5rem 1.1rem; font-size: .95rem; }
.btn-link { font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: .35rem; min-height: 48px; }
.btn-link:hover { text-decoration: underline; }

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgb(255 255 255 / .94);
    backdrop-filter: saturate(1.4) blur(8px);
    border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-h); position: relative; }
.site-header__logo { display: inline-flex; flex-shrink: 0; }
.site-header__logo img { width: 128px; height: auto; }

.site-header__toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 48px; height: 48px; padding: 12px; margin-right: -10px;
    background: none; border: 0; border-radius: var(--radius-sm); cursor: pointer; color: var(--text);
}
.site-header__toggle span[aria-hidden] { display: block; height: 2px; width: 24px; background: currentColor; border-radius: 2px; transition: transform .2s, opacity .2s; }
.site-header__toggle[aria-expanded="true"] span[aria-hidden]:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
.site-header__toggle[aria-expanded="true"] span[aria-hidden]:nth-of-type(3) { opacity: 0; }
.site-header__toggle[aria-expanded="true"] span[aria-hidden]:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }

.site-header__nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: .5rem var(--gutter) 1.25rem;
}
.site-header__nav.is-open { display: block; }
/* Without JavaScript the toggle cannot work: show the menu inline instead. */
.no-js .site-header__toggle { display: none; }
.no-js .site-header__nav { display: block; position: static; box-shadow: none; border: 0; padding: 0 0 1rem; }
.no-js .site-header__inner { flex-wrap: wrap; }

.site-header__nav ul { list-style: none; margin: 0 0 1rem; padding: 0; }
.site-header__nav li a {
    display: block; padding: .8rem 0; color: var(--text); text-decoration: none; font-weight: 500;
    border-bottom: 1px solid var(--line);
}
.site-header__nav li a:hover { color: var(--primary-strong); }
.site-header__nav .btn { width: 100%; }

@media (min-width: 860px) {
    .site-header__logo img { width: 152px; }
    .site-header__toggle { display: none; }
    .site-header__nav, .no-js .site-header__nav {
        display: flex; align-items: center; gap: 2rem;
        position: static; padding: 0; background: none; border: 0; box-shadow: none;
    }
    .site-header__nav ul { display: flex; gap: 1.75rem; margin: 0; }
    .site-header__nav li a { padding: .5rem 0; border: 0; }
    .site-header__nav .btn { width: auto; }
}

/* Sections */
.section { padding-block: var(--section-space); }
.section--soft { background: var(--bg); }
.section-head { max-width: var(--measure); margin-bottom: clamp(2rem, 5vw, 3rem); }

.split { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.split > * { min-width: 0; }
@media (min-width: 900px) {
    .split { grid-template-columns: 1fr 1fr; }
    .split--narrow { grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); align-items: center; }
}

/* Hero */
.hero { background: var(--bg); padding-block: clamp(2.5rem, 8vw, 6rem) clamp(3rem, 9vw, 6.5rem); overflow: hidden; }
.hero__inner { display: grid; gap: clamp(2.5rem, 6vw, 4rem); align-items: center; }
.hero__inner > * { min-width: 0; }
.hero h1 { max-width: 14ch; }
.hero .lead { margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1.5rem; }
@media (min-width: 960px) {
    .hero__inner { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); }
}
.hero__visual { margin: 0; position: relative; }
.hero__visual::before {
    content: ""; position: absolute; inset: 12% -8% -10% 18%;
    background: var(--primary); border-radius: var(--radius-lg); opacity: .9; z-index: 0;
}
.hero__visual figcaption { position: relative; font-size: .85rem; color: var(--text-muted); margin-top: .9rem; text-align: right; }

.browser { position: relative; z-index: 1; background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid var(--line); }
.browser__bar { display: flex; gap: 6px; padding: 10px 12px; background: var(--neutral); }
.browser__bar i { width: 10px; height: 10px; border-radius: 50%; background: #fff; opacity: .9; }
.browser img { width: 100%; }

/* Features */
.features, .audiences, .ticket-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .features, .ticket-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .features, .ticket-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.feature { padding: 1.5rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.feature h3 { margin-top: 1rem; }
.feature p { color: var(--text-muted); }
.feature__icon {
    display: inline-grid; place-items: center; width: 48px; height: 48px;
    border-radius: 12px; background: var(--bg); color: var(--primary-strong);
}
.feature__icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

@media (min-width: 800px) { .audiences { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.audiences li { background: var(--surface); border-radius: var(--radius); padding: 1.75rem 1.5rem; border-top: 4px solid var(--primary); box-shadow: var(--shadow); }
.audiences p { color: var(--text-muted); }

.ticket-grid li { background: var(--surface); border-radius: var(--radius); padding: 1.4rem 1.5rem; }
.ticket-grid h3 { display: flex; align-items: center; gap: .6rem; }
.ticket-grid h3::before { content: ""; width: 10px; height: 10px; border-radius: 3px; background: var(--primary); flex-shrink: 0; }
.ticket-grid p { color: var(--text-muted); }

/* Checklists */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem; }
.checklist li { position: relative; padding-left: 2rem; }
.checklist li::before {
    content: ""; position: absolute; left: 0; top: .3em; width: 1.25rem; height: 1.25rem; border-radius: 50%;
    background: var(--primary-strong) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 10.5l3 3 6-7' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 100% no-repeat;
}
.checklist--compact { gap: .6rem; font-size: .95rem; margin-top: 1.25rem; }

/* Quick links (landing page, to the dedicated pages) */
.quicklinks { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .quicklinks { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .quicklinks { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.quicklink { display: block; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; text-decoration: none; color: inherit; transition: transform .15s ease, box-shadow .15s ease; }
.quicklink:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: inherit; }
.quicklink h3 { display: flex; align-items: center; justify-content: space-between; gap: .5rem; color: var(--primary-strong); margin-bottom: .4rem; }
.quicklink p { color: var(--text-muted); margin: 0; font-size: .95rem; }

/* Style switcher (Website page): a real productiepagina, scrollable, in the three styles */
.style-switch { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: clamp(1.5rem, 4vw, 2.5rem); }
.style-switch button {
    font: 600 .95rem/1 var(--font); color: var(--text); background: transparent;
    border: 1.5px solid var(--text); border-radius: 999px; padding: .7rem 1.25rem; cursor: pointer;
}
.style-switch button[aria-selected="true"] { background: var(--text); color: var(--surface); }
.style-switch button:focus-visible { outline: 3px solid var(--primary-strong); outline-offset: 3px; }

.style-panel[hidden] { display: none; }
.style-panel + .style-panel { margin-top: clamp(2.5rem, 6vw, 4rem); }
.no-js .style-switch { display: none; }
.no-js .style-panel[hidden] { display: block; }
.style-head { max-width: var(--measure); margin-bottom: 1.5rem; }
.style-head h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); }
.style-head h3 span { font-weight: 400; font-style: italic; color: var(--text-muted); }
.style-head p { color: var(--text-muted); }
.traits { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; margin: .75rem 0 0; }
.traits li { font-size: .85rem; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: .4rem .8rem; }

.style-stage { display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: clamp(1.25rem, 3vw, 2.5rem); align-items: start; }
@media (max-width: 860px) { .style-stage { grid-template-columns: 1fr; } }

.style-screen { max-height: min(70vh, 640px); overflow-y: auto; background: var(--surface); overscroll-behavior: contain; }
.style-screen img { display: block; width: 100%; height: auto; }

.phone { border-radius: 38px; padding: 10px; background: var(--dark); box-shadow: var(--shadow-lg); max-width: 260px; justify-self: center; width: 100%; }
.phone .style-screen { border-radius: 28px; height: 560px; max-height: none; }
.style-hint { font-size: .85rem; color: var(--text-muted); text-align: center; margin-top: .6rem; }

/* Prices */
.prices { display: grid; gap: 1.25rem; }
.price-card > h2 { font-size: 1.15rem; font-weight: 600; }
@media (min-width: 860px) {
    .prices { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .price-card--wide { grid-column: 1 / -1; }
}
.price-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.25rem); box-shadow: var(--shadow); min-width: 0; }
.price-card__amount { font-size: clamp(2.2rem, 7vw, 2.8rem); font-weight: 700; line-height: 1.1; margin-bottom: .25rem; letter-spacing: -.02em; }
.price-card__amount span { font-size: 1rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0; }
.price-card__vat { font-size: .9rem; color: var(--text-muted); }
.price-card__options { margin: 0; display: grid; gap: 1.25rem; }
.price-card__options dt { font-weight: 600; margin-bottom: .2rem; }
.price-card__options dd { margin: 0; color: var(--text-muted); }
.price-card__options dd strong { color: var(--text); }

.table-scroll { overflow-x: auto; margin-block: 1.25rem; }
table { border-collapse: collapse; width: 100%; font-size: .95rem; }
th, td { text-align: left; padding: .75rem .9rem; border-bottom: 1px solid var(--line); vertical-align: top; }
thead th { background: var(--bg); font-weight: 600; }
.price-table td:last-child { font-weight: 600; white-space: nowrap; }
.price-table__vat { font-weight: 400; color: var(--text-muted); font-size: .85rem; }

/* Calculator */
.calculator { margin-top: 1.5rem; background: var(--dark); color: #fff; border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.25rem); display: grid; gap: 1.5rem; }
.calculator__title { color: #fff; margin: 0; font-size: 1.3rem; }
.calculator__fields { display: grid; gap: 1rem; align-items: end; }
@media (min-width: 720px) { .calculator__fields { grid-template-columns: 1fr 1fr auto; } }
.calculator label { color: #E9E4E1; }
.calculator .btn-secondary { color: #fff; border-color: #fff; }
.calculator .btn-secondary:hover { background: #fff; color: var(--dark); }
.calculator__result { display: grid; gap: .35rem; border-top: 1px solid rgb(255 255 255 / .15); padding-top: 1.25rem; }
.calculator__result a { color: #F2B7A6; }
.calculator__total { font-size: clamp(2rem, 7vw, 2.6rem); font-weight: 700; line-height: 1.1; }
.calculator__total small { font-size: 1rem; font-weight: 500; color: #CFC8C4; }
.calculator__breakdown { color: #CFC8C4; font-size: .95rem; }
.js .calculator [data-calculator-submit] { display: none; }
@media (min-width: 720px) { .js .calculator__fields { grid-template-columns: 1fr 1fr; } }

/* Forms */
.field { display: grid; gap: .4rem; margin: 0 0 1.25rem; min-width: 0; }
.field label, .field legend { font-weight: 500; font-size: .95rem; }
fieldset.field { border: 0; padding: 0; }
fieldset.field legend { padding: 0; margin-bottom: .4rem; }
.field__optional { font-weight: 400; color: var(--text-muted); }
.field-row { display: grid; gap: 0 1rem; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }
.calculator .field { margin: 0; }

.input {
    width: 100%; min-height: 48px; padding: .7rem .9rem;
    font: inherit; color: var(--text); background: var(--surface);
    border: 1.5px solid #8A817C; border-radius: var(--radius-sm);
}
.input:focus-visible { outline: 3px solid var(--primary-strong); outline-offset: 1px; border-color: var(--primary-strong); }
.textarea { min-height: 8rem; resize: vertical; }
.input.input-validation-error { border-color: #B3261E; }
.field__error { color: #B3261E; font-size: .9rem; font-weight: 500; }
.field__error:empty { display: none; }

.choices { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; }
.choices label, .field--check label { display: inline-flex; align-items: flex-start; gap: .6rem; font-weight: 400; cursor: pointer; min-height: 32px; }
.choices input, .field--check input { width: 1.25rem; height: 1.25rem; margin: .2em 0 0; accent-color: var(--primary-strong); flex-shrink: 0; }

.quote-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.25rem, 4vw, 2.25rem); box-shadow: var(--shadow); min-width: 0; }
.quote-form .btn { width: 100%; }
@media (min-width: 560px) { .quote-form .btn { width: auto; } }

.form-errors { background: #FDECEA; border: 1px solid #F1B9B4; color: #7A1A14; border-radius: var(--radius-sm); padding: 1rem 1.25rem; margin-bottom: 1.5rem; }
.form-errors ul { margin: .5rem 0 0; padding-left: 1.2rem; }
.form-errors:focus { outline: 3px solid #B3261E; outline-offset: 2px; }

/* Honeypot: off-screen instead of display:none, which some bots detect. */
.hp { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.contact-list { margin: 0; display: grid; gap: 1rem; }
.contact-list dt { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); }
.contact-list dd { margin: 0; font-size: 1.05rem; }

/* About */
.portrait__placeholder {
    aspect-ratio: 4 / 5; max-width: 360px; border-radius: var(--radius-lg);
    background: repeating-linear-gradient(135deg, var(--surface) 0 14px, #FBF6F3 14px 28px);
    border: 2px dashed var(--primary); display: grid; place-items: center; padding: 1rem; text-align: center;
}

/* Text pages (legal, thank you, errors) */
.page { background: var(--surface); }
.prose { max-width: calc(var(--measure) + 2 * var(--gutter)); }
.prose h1 { font-size: clamp(2rem, 6vw, 3rem); }
.prose h2 { font-size: 1.35rem; margin-top: 2.25rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .5rem; }
.prose .btn { margin-top: 1rem; }
.notice { margin-bottom: .5rem; }
.meta { color: var(--text-muted); font-size: .9rem; }

/* Footer */
.site-footer { background: var(--dark); color: #D9D4D1; padding-top: clamp(3rem, 7vw, 4.5rem); font-size: .95rem; }
.site-footer a { color: #fff; }
.site-footer a:hover { color: #F2B7A6; }
.site-footer__grid { display: grid; gap: 2rem; }
@media (min-width: 640px) { .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.site-footer__brand img { width: 152px; margin-bottom: 1rem; }
.site-footer__heading { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: #fff; font-weight: 600; margin-bottom: .9rem; }
.site-footer address { font-style: normal; }
.site-footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; }
.site-footer__bottom { border-top: 1px solid rgb(255 255 255 / .12); margin-top: 2.5rem; padding-block: 1.25rem; font-size: .85rem; color: #B5AEAA; }
