/* =============================================================================
   Garageverkoop Potterie — design system + coming-soon page
   Concept: riso-printed neighbourhood market poster on warm paper.
   This file is the foundation for the whole multi-page site; the :root tokens,
   buttons, badges and typography are meant to be reused on the homepage,
   registration form and admin later on.
   ========================================================================== */

/* ---------------------------------------------------------------- tokens --- */
:root {
    /* Paper & ink */
    --paper:        #f3e7cd;
    --paper-deep:   #ecddbd;
    --paper-card:   #fbf4e3;
    --ink:          #241a12;
    --ink-soft:     #5a4a37;
    --line:         rgba(36, 26, 18, 0.16);

    /* Riso accents */
    --tomato:       #d8412a;
    --tomato-deep:  #a82c18;
    --ochre:        #e7a521;
    --teal:         #1f6f64;
    --teal-deep:    #134f47;

    /* Ghost overprint tints (headline misregistration) */
    --ghost-tomato: rgba(216, 65, 42, 0.32);
    --ghost-teal:   rgba(31, 111, 100, 0.28);

    /* Type */
    --font-display: "Fraunces", "Hoefler Text", Georgia, serif;
    --font-sans:    "Hanken Grotesk", ui-sans-serif, system-ui, sans-serif;
    --font-mono:    "Spline Sans Mono", ui-monospace, "SFMono-Regular", monospace;

    /* Spacing */
    --gap:          clamp(1rem, 0.6rem + 1.6vw, 1.6rem);
    --pad-x:        clamp(1.25rem, 0.5rem + 3.4vw, 4rem);
    --radius:       18px;
    --radius-sm:    10px;

    /* Shadows */
    --shadow-card:  0 1px 0 rgba(255, 255, 255, 0.6) inset,
                    0 24px 48px -28px rgba(36, 26, 18, 0.55),
                    0 6px 18px -12px rgba(36, 26, 18, 0.4);
}

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

html { -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
    margin: 0;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    font-family: var(--font-sans);
    font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
    line-height: 1.6;
    color: var(--ink);
    background-color: var(--paper);
    background-image:
        radial-gradient(58vw 52vw at 88% -8%, rgba(231, 165, 33, 0.30), transparent 60%),
        radial-gradient(48vw 48vw at -6% 108%, rgba(31, 111, 100, 0.22), transparent 62%),
        radial-gradient(40vw 40vw at 18% -12%, rgba(216, 65, 42, 0.16), transparent 60%);
    background-attachment: fixed;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }
a { color: inherit; }

img, svg { display: block; }

/* --------------------------------------------------------- a11y helpers --- */
.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 50;
    background: var(--ink);
    color: var(--paper);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-decoration: none;
    transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

:focus-visible {
    outline: 3px solid var(--teal);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ------------------------------------------------------- grain overlay ----- */
.grain {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

/* --------------------------------------------------- floating market props - */
.props {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.prop {
    position: absolute;
    width: clamp(64px, 9vw, 120px);
    stroke: var(--ink);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.12;
    animation: bob 9s ease-in-out infinite;
}
.prop--chair  { top: 16%; left: 6%;  --rot: -8deg;  animation-delay: -0.5s; }
.prop--lamp   { top: 64%; left: 9%;  --rot: 7deg;   animation-delay: -3.1s; color: var(--teal); stroke: var(--teal); opacity: 0.16; }
.prop--teapot { top: 78%; left: 44%; --rot: -5deg;  animation-delay: -1.8s; }
.prop--record { top: 12%; right: 8%; --rot: 10deg;  animation-delay: -4.6s; color: var(--tomato); stroke: var(--tomato); opacity: 0.16; }
.prop--books  { top: 70%; right: 7%; --rot: -6deg;  animation-delay: -2.4s; }
.prop--clock  { top: 30%; right: 24%;--rot: 6deg;   animation-delay: -6s;   opacity: 0.1; }

@keyframes bob {
    0%, 100% { transform: rotate(var(--rot)) translateY(0); }
    50%      { transform: rotate(var(--rot)) translateY(-14px); }
}

/* ---------------------------------------------------------- page frame ----- */
.site-head,
.hero,
.site-foot {
    position: relative;
    z-index: 2;
    width: min(1180px, 100%);
    margin-inline: auto;
    padding-inline: var(--pad-x);
}

/* ------------------------------------------------------------- header ------ */
.site-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: clamp(1.25rem, 0.6rem + 2vw, 2.25rem);
    flex-wrap: wrap;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: var(--ink);
}
.brand__mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--ink);
    color: var(--paper);
    transform: rotate(-4deg);
}
.brand__mark svg { width: 26px; height: 26px; stroke: currentColor; stroke-width: 2.4; stroke-linejoin: round; }
.brand__name {
    display: flex;
    flex-direction: column;
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 0.94;
    font-size: 1.18rem;
    letter-spacing: 0.01em;
}
.brand__name em {
    font-style: normal;
    font-weight: 600;
    color: var(--tomato-deep);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 0.95rem;
    border: 1.5px solid var(--ink);
    border-radius: 999px;
    background: var(--ochre);
    color: var(--ink);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transform: rotate(2deg);
    box-shadow: 3px 3px 0 var(--ink);
}
.badge__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--tomato-deep);
    box-shadow: 0 0 0 0 rgba(168, 44, 24, 0.6);
    animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(168, 44, 24, 0.55); }
    70%  { box-shadow: 0 0 0 8px rgba(168, 44, 24, 0); }
    100% { box-shadow: 0 0 0 0 rgba(168, 44, 24, 0); }
}

/* --------------------------------------------------------------- hero ------ */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(1.8rem, 1rem + 3vw, 3rem);
    padding-top: clamp(2rem, 1rem + 4vw, 3.5rem);
    padding-bottom: clamp(2.5rem, 1rem + 5vw, 4.5rem);
}

.hero__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.2rem, 1rem + 5vw, 4rem);
    align-items: center;
}

.hero__intro { min-width: 0; }

.eyebrow {
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal-deep);
    margin-bottom: 1.1rem;
}

.title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.6rem, 1rem + 7vw, 7rem);
    line-height: 0.92;
    letter-spacing: -0.02em;
    margin-bottom: 1.1rem;
}
.title__line { display: block; }
.title__line--accent {
    color: var(--tomato);
    font-style: italic;
    font-weight: 600;
    margin-left: 0.08em;
    text-shadow:
        0.035em 0.04em 0 var(--ghost-teal),
        -0.025em -0.02em 0 var(--ghost-tomato);
}

.tagline {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 1rem + 1.4vw, 1.85rem);
    font-weight: 500;
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: 1.4rem;
}
.tagline em {
    font-style: italic;
    color: var(--teal-deep);
    text-decoration: underline;
    text-decoration-color: var(--ochre);
    text-decoration-thickness: 0.12em;
    text-underline-offset: 0.12em;
}

.status {
    max-width: 46ch;
    color: var(--ink-soft);
    margin-bottom: 1.8rem;
}

/* ------------------------------------------------------------- actions ----- */
.actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem 1.2rem;
    margin-bottom: 2.2rem;
}
.actions__note {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    color: var(--ink-soft);
}
.actions--submit {
    margin-top: 1.5rem;
    margin-bottom: 0;
}
.actions--center {
    justify-content: center;
    margin-bottom: 0;
}

.btn {
    --btn-bg: var(--ink);
    --btn-fg: var(--paper);
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 1.4rem;
    border: 1.5px solid var(--ink);
    border-radius: 999px;
    background: var(--btn-bg);
    color: var(--btn-fg);
    font-weight: 800;
    font-size: 0.98rem;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 4px 4px 0 var(--ink);
    transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}
.btn--primary { --btn-bg: var(--tomato); --btn-fg: #fff; }
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.btn__icon { width: 20px; height: 20px; stroke: currentColor; stroke-width: 2; stroke-linejoin: round; stroke-linecap: round; }

/* --------------------------------------------------------------- facts ----- */
.facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}
.fact {
    display: flex;
    flex-direction: column;
    padding: 0.55rem 0.95rem;
    border: 1.5px dashed var(--line);
    border-radius: var(--radius-sm);
    background: rgba(251, 244, 227, 0.6);
}
.fact__key {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.fact__val { font-weight: 800; font-size: 1rem; }

/* -------------------------------------------------------------- ticket ----- */
.hero__aside { display: flex; justify-content: center; }

.ticket {
    position: relative;
    display: grid;
    grid-template-columns: minmax(96px, 0.42fr) 1fr;
    width: min(440px, 100%);
    background: var(--paper-card);
    border: 1.5px solid var(--ink);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transform: rotate(-1.4deg);
}
/* perforation between stub and body + punched notches */
.ticket__stub {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    padding: 1.6rem 0.7rem;
    text-align: center;
    background: var(--tomato);
    color: #fff;
    border-radius: var(--radius) 0 0 var(--radius);
}
.ticket__stub::after {
    content: "";
    position: absolute;
    top: 12px;
    bottom: 12px;
    right: -1px;
    border-right: 2px dashed rgba(255, 255, 255, 0.7);
}
.ticket__weekday {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.92;
}
.ticket__day {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(3.4rem, 2rem + 6vw, 4.6rem);
    line-height: 0.86;
    text-shadow: 0.04em 0.05em 0 var(--tomato-deep);
}
.ticket__month {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 600;
    font-size: 1.15rem;
}
.ticket__year {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    margin-top: 0.2rem;
    opacity: 0.92;
}

.ticket__body {
    padding: 1.5rem 1.5rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 1.05rem;
}
.ticket__label {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 1.08;
    color: var(--ink);
}

/* ------------------------------------------------------------ countdown ---- */
.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.4rem;
}
.count {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.55rem 0.2rem 0.45rem;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--paper);
}
.count__num {
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: clamp(1.3rem, 1rem + 1.4vw, 1.7rem);
    line-height: 1;
    color: var(--teal-deep);
    font-variant-numeric: tabular-nums;
}
.count__lab {
    margin-top: 0.25rem;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.ticket__done {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--tomato-deep);
}

/* ---------------------------------------------------------------- stamp ---- */
.stamp {
    position: absolute;
    right: -26px;
    bottom: -30px;
    width: clamp(96px, 11vw, 130px);
    color: var(--teal-deep);
    opacity: 0.9;
    transform: rotate(-13deg);
    animation: spin 60s linear infinite;
}
.stamp__ring { fill: none; stroke: currentColor; stroke-width: 2; opacity: 0.55; }
.stamp__text {
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.14em;
    fill: currentColor;
    text-transform: uppercase;
}
.stamp__center {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 34px;
    text-anchor: middle;
    fill: currentColor;
}
.stamp__sub {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-anchor: middle;
    fill: currentColor;
}
@keyframes spin { to { transform: rotate(347deg); } }

/* -------------------------------------------------------------- footer ----- */
.site-foot {
    padding-block: 1.8rem clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
    border-top: 1.5px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.streets {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.9rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.05rem, 0.9rem + 0.8vw, 1.4rem);
}
.streets span { position: relative; }
.streets span + span::before {
    content: "·";
    position: absolute;
    left: -0.55rem;
    color: var(--tomato);
}
.site-foot__meta { color: var(--ink-soft); font-size: 0.92rem; }
.site-foot__meta a {
    color: var(--teal-deep);
    font-weight: 700;
    text-decoration-color: var(--ochre);
    text-underline-offset: 2px;
}
.site-foot__copy {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    letter-spacing: 0.06em;
    color: var(--ink-soft);
}

/* ----------------------------------------------------------- entrance ------ */
@keyframes rise {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: none; }
}
.eyebrow, .title, .tagline, .status, .actions, .facts, .ticket {
    opacity: 0;
    animation: rise 0.75s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.eyebrow  { animation-delay: 0.05s; }
.title    { animation-delay: 0.14s; }
.tagline  { animation-delay: 0.26s; }
.status   { animation-delay: 0.36s; }
.actions  { animation-delay: 0.46s; }
.facts    { animation-delay: 0.56s; }
.ticket   { animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.4s forwards; }

/* ---------------------------------------------------------- responsive ----- */
@media (min-width: 860px) {
    .hero__row {
        grid-template-columns: 1fr 0.82fr;
    }
    .ticket { transform: rotate(-2.2deg); }
}

@media (max-width: 600px) {
    .prop--clock, .prop--teapot { display: none; }
    .badge { box-shadow: 2px 2px 0 var(--ink); }
    .ticket { transform: none; }
    /* Keep the wide display word within the narrow viewport */
    .title { font-size: clamp(2rem, 9vw, 2.6rem); overflow-wrap: anywhere; }
    .stamp { right: -14px; }
}

/* =============================================================================
   MULTI-PAGE CHROME, SECTIONS & FORMS (homepage + inschrijven)
   ========================================================================== */

/* generic small icon */
.ic {
    width: 1.15em;
    height: 1.15em;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

/* ---------------------------------------------------------------- navbar ---- */
.nav {
    position: relative;
    z-index: 3;
}
.nav__inner {
    width: min(1180px, 100%);
    margin-inline: auto;
    padding: clamp(1rem, 0.6rem + 1.4vw, 1.6rem) var(--pad-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem 1.4rem;
    flex-wrap: wrap;
}
.nav__links {
    display: flex;
    align-items: center;
    gap: clamp(0.9rem, 0.4rem + 1.6vw, 1.8rem);
    font-weight: 700;
    flex-wrap: wrap;
}
.nav__links a:not(.btn) {
    text-decoration: none;
    color: var(--ink);
    padding: 0.2rem 0;
    border-bottom: 2px solid transparent;
}
.nav__links a:not(.btn):hover {
    color: var(--tomato-deep);
    border-bottom-color: var(--ochre);
}
.btn--sm {
    padding: 0.55rem 1.05rem;
    font-size: 0.9rem;
    box-shadow: 3px 3px 0 var(--ink);
}
.btn--ghost {
    --btn-bg: transparent;
    --btn-fg: var(--ink);
    box-shadow: none;
}
.btn--ghost:hover {
    --btn-bg: var(--ink);
    --btn-fg: var(--paper);
}

/* ---------------------------------------------------------- page section ---- */
.section {
    position: relative;
    z-index: 2;
    width: min(1180px, 100%);
    margin-inline: auto;
    padding-inline: var(--pad-x);
    padding-block: clamp(2.5rem, 1.4rem + 4.5vw, 5rem);
}
.section + .section {
    padding-top: 0;
}
.section__head {
    max-width: 62ch;
    margin-bottom: clamp(1.6rem, 1rem + 2vw, 2.6rem);
}
.section__kicker {
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal-deep);
    margin-bottom: 0.8rem;
}
.section__title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.9rem, 1.2rem + 2.4vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.01em;
}
.section__title em {
    color: var(--tomato);
    font-style: italic;
    font-weight: 600;
}
.section__intro {
    color: var(--ink-soft);
    margin-top: 0.9rem;
    font-size: 1.05rem;
}

/* ------------------------------------------------------------ info grid ---- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1rem;
}
.info-card {
    padding: 1.2rem 1.3rem;
    background: var(--paper-card);
    border: 1.5px solid var(--ink);
    border-radius: var(--radius);
    box-shadow: 5px 5px 0 rgba(36, 26, 18, 0.1);
}
.info-card__key {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.68rem;
    color: var(--ink-soft);
}
.info-card__key .ic {
    color: var(--tomato-deep);
}
.info-card__val {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    margin-top: 0.5rem;
    line-height: 1.1;
}
.info-card__sub {
    color: var(--ink-soft);
    font-size: 0.88rem;
    margin-top: 0.2rem;
}

/* --------------------------------------------------------------- steps ----- */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.step {
    position: relative;
    padding: 1.5rem 1.3rem 1.3rem;
    background: rgba(251, 244, 227, 0.7);
    border: 1.5px dashed var(--line);
    border-radius: var(--radius);
}
.step__num {
    display: inline-grid;
    place-items: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    background: var(--tomato);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.1rem;
    transform: rotate(-5deg);
    margin-bottom: 0.9rem;
}
.step h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 0 0.4rem;
}
.step p {
    color: var(--ink-soft);
    font-size: 0.95rem;
}

/* --------------------------------------------------------------- rules ----- */
.rules {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: 1fr;
}
@media (min-width: 720px) {
    .rules {
        grid-template-columns: 1fr 1fr;
    }
}
.rule {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 1rem 1.2rem;
    background: var(--paper-card);
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
}
.rule .ic {
    color: var(--teal-deep);
    margin-top: 0.15rem;
}
.rule strong {
    display: block;
    margin-bottom: 0.1rem;
}
.rule span {
    color: var(--ink-soft);
    font-size: 0.92rem;
}

/* --------------------------------------------------------- callout/note ---- */
.note {
    display: flex;
    gap: 0.85rem;
    padding: 1rem 1.2rem;
    background: rgba(31, 111, 100, 0.09);
    border: 1.5px solid rgba(31, 111, 100, 0.32);
    border-radius: var(--radius-sm);
    color: var(--ink);
}
.note .ic {
    color: var(--teal-deep);
    margin-top: 0.15rem;
}
.note p {
    font-size: 0.95rem;
}

/* ----------------------------------------------------------- CTA strip ----- */
.cta {
    text-align: center;
    background: var(--teal-deep);
    color: #fff;
    border: 1.5px solid var(--ink);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: clamp(2rem, 1.2rem + 4vw, 3.6rem);
}
.cta h2 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.7rem, 1.2rem + 2.2vw, 2.6rem);
    line-height: 1.05;
    margin-bottom: 0.7rem;
}
.cta p {
    color: rgba(255, 255, 255, 0.88);
    max-width: 50ch;
    margin: 0 auto 1.6rem;
}
.cta .btn--primary {
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.35);
}

/* ------------------------------------------------------------- prose ------- */
.prose {
    max-width: 70ch;
}
.prose h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
    margin: 2rem 0 0.6rem;
}
.prose p {
    margin-bottom: 1rem;
}
.prose ul {
    list-style: disc;
    padding-left: 1.3rem;
    margin-bottom: 1rem;
}
.prose li {
    margin-bottom: 0.4rem;
}
.prose a {
    color: var(--teal-deep);
    font-weight: 700;
    text-decoration-color: var(--ochre);
    text-underline-offset: 2px;
}

/* --------------------------------------------------------- page hero ------- */
.page-hero {
    position: relative;
    z-index: 2;
    width: min(1180px, 100%);
    margin-inline: auto;
    padding: clamp(2rem, 1rem + 4vw, 3.5rem) var(--pad-x) 0;
}
.page-hero__title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.4rem, 1.4rem + 4vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.015em;
}
.page-hero__title em {
    color: var(--tomato);
    font-style: italic;
    font-weight: 600;
}
.page-hero__intro {
    color: var(--ink-soft);
    margin-top: 0.9rem;
    max-width: 56ch;
    font-size: 1.05rem;
}

/* --------------------------------------------------------------- forms ----- */
.form-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}
@media (min-width: 920px) {
    .form-wrap {
        grid-template-columns: 1.6fr 1fr;
    }
}

.form-card {
    background: var(--paper-card);
    border: 1.5px solid var(--ink);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: clamp(1.4rem, 1rem + 2vw, 2.4rem);
}

.fieldset {
    border: 0;
    padding: 0;
    margin: 0 0 1.8rem;
}
.fieldset:last-of-type {
    margin-bottom: 0;
}
.fieldset__legend {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding: 0;
}
.fieldset__legend .num {
    display: inline-grid;
    place-items: center;
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 999px;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--font-mono);
    font-size: 0.85rem;
}

.grid-2 {
    display: grid;
    gap: 0 1rem;
    grid-template-columns: 1fr;
}
@media (min-width: 620px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1.1rem;
}
.field > label {
    font-weight: 700;
    font-size: 0.92rem;
}
.field .req {
    color: var(--tomato-deep);
}
.input {
    font: inherit;
    color: var(--ink);
    background: var(--paper);
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 0.7rem 0.85rem;
    width: 100%;
}
.input::placeholder {
    color: rgba(90, 74, 55, 0.55);
}
.input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(31, 111, 100, 0.18);
}
textarea.input {
    min-height: 6rem;
    resize: vertical;
}
.field__hint {
    font-size: 0.82rem;
    color: var(--ink-soft);
}
.field__hint--lead {
    margin-bottom: 1rem;
}

/* fotogalerij met placeholders */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.gallery__item {
    margin: 0;
    border: 1.5px solid var(--ink);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--paper-card);
    box-shadow: 5px 5px 0 rgba(36, 26, 18, 0.1);
}
.gallery__item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.map-figure {
    margin: 0;
    border: 1.5px solid var(--ink);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 5px 5px 0 rgba(36, 26, 18, 0.1);
}
.map-figure img {
    width: 100%;
    height: auto;
    display: block;
}
.map-figure--section {
    margin-top: 2rem;
}
.map-figure figcaption {
    padding: 0.5rem 0.85rem;
    font-size: 0.85rem;
    color: var(--ink-soft);
    border-top: 1px solid var(--ink);
    background: var(--paper-card);
}
.field__error {
    font-size: 0.82rem;
    color: var(--tomato-deep);
    font-weight: 700;
    display: none;
}
.field--error .input {
    border-color: var(--tomato);
    box-shadow: 0 0 0 3px rgba(216, 65, 42, 0.16);
}
.field--error .field__error {
    display: block;
}
.field__error.is-shown {
    display: block;
    margin-top: 0.5rem;
}

/* choice (radio) cards */
.choice {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: 1fr;
}
@media (min-width: 560px) {
    .choice {
        grid-template-columns: 1fr 1fr;
    }
}
.choice__opt {
    display: block;
    cursor: pointer;
}
.choice__opt input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}
.choice__card {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    height: 100%;
    padding: 1.1rem 1.2rem;
    background: var(--paper);
    border: 1.5px solid var(--ink);
    border-radius: var(--radius);
    transition: transform 0.14s ease, box-shadow 0.14s ease, background-color 0.14s ease;
}
.choice__opt input:checked + .choice__card {
    background: var(--ochre);
    box-shadow: 4px 4px 0 var(--ink);
    transform: translate(-1px, -1px);
}
.choice__opt input:focus-visible + .choice__card {
    outline: 3px solid var(--teal);
    outline-offset: 3px;
}
.choice__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
}
.choice__desc {
    color: var(--ink-soft);
    font-size: 0.9rem;
}
.choice__opt input:checked + .choice__card .choice__desc {
    color: var(--ink);
}
.choice__badge {
    display: inline-block;
    margin-left: 0.4rem;
    padding: 0.1rem 0.5rem;
    border-radius: 999px;
    background: var(--teal-deep);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.04em;
    vertical-align: middle;
}
.choice__badge--full {
    background: var(--tomato-deep);
}
.choice__opt--disabled {
    cursor: not-allowed;
}
.choice__opt--disabled .choice__card {
    opacity: 0.55;
}

/* server-side foutmelding op het formulier */
.note--error {
    background: rgba(216, 65, 42, 0.1);
    border-color: rgba(168, 44, 24, 0.4);
}
.note--error .ic {
    color: var(--tomato-deep);
}

/* agreement checkbox */
.check {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
}
.check input {
    margin-top: 0.2rem;
    width: 1.15rem;
    height: 1.15rem;
    accent-color: var(--tomato);
    flex: 0 0 auto;
}
.check label {
    font-size: 0.95rem;
}

/* aside / payment summary */
.summary {
    position: sticky;
    top: 1.5rem;
    background: var(--paper-card);
    border: 1.5px solid var(--ink);
    border-radius: var(--radius);
    box-shadow: 5px 5px 0 rgba(36, 26, 18, 0.1);
    padding: 1.4rem 1.5rem;
}
.summary h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.9rem;
}
.summary dl {
    margin: 0 0 1rem;
    display: grid;
    gap: 0.55rem;
}
.summary dt {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.summary dd {
    margin: 0.1rem 0 0;
    font-weight: 700;
}
.summary dd small {
    font-weight: 400;
    color: var(--ink-soft);
}

/* success panel */
.is-hidden {
    display: none !important;
}
.success {
    text-align: center;
    padding: clamp(1.6rem, 1rem + 3vw, 3rem);
}
.success__mark {
    display: inline-grid;
    place-items: center;
    width: 4rem;
    height: 4rem;
    border-radius: 999px;
    background: var(--teal-deep);
    color: #fff;
    margin-bottom: 1.2rem;
}
.success__mark .ic {
    width: 2rem;
    height: 2rem;
    stroke-width: 2.5;
}
.success h2 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.2rem);
    margin-bottom: 0.7rem;
}
.success p {
    color: var(--ink-soft);
    max-width: 48ch;
    margin: 0 auto 1.5rem;
}

/* ------------------------------------------------------------ faq page ----- */
.faq-toc {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1rem;
    align-items: center;
    padding: 1rem 1.25rem;
    background: var(--paper-card);
    border: 1.5px solid var(--ink);
    border-radius: var(--radius);
    font-size: 0.9rem;
}
.faq-toc__label {
    width: 100%;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-soft);
    margin: 0.4rem 0 0;
}
.faq-toc__label:first-child {
    margin-top: 0;
}
.faq-toc a {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
}
.faq-item {
    border-bottom: 1px solid var(--ink-soft);
    padding: 1.1rem 0;
}
.faq-item:first-child {
    border-top: 1px solid var(--ink-soft);
}
.faq-item dt {
    font-weight: 700;
    margin-bottom: 0.4rem;
    line-height: 1.4;
}
.faq-item dd {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.6;
}

/* ------------------------------------------------------- reduced motion ----- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
    .eyebrow, .title, .tagline, .status, .actions, .facts, .ticket { opacity: 1; }
    .prop { animation: none; }
}
