:root {
    --ink: #171310;
    --muted: #6f655d;
    --paper: #fbf8f3;
    --cream: #f1e7dc;
    --leather: #8c4b27;
    --cognac: #b86d36;
    --brass: #d1a15a;
    --charcoal: #26221f;
    --line: rgba(23, 19, 16, .14);
    --shadow: 0 24px 70px rgba(23, 19, 16, .16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.site-header {
    position: fixed;
    inset: 18px 24px auto;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 999px;
    background: rgba(23, 19, 16, .68);
    color: #fff;
    backdrop-filter: blur(18px);
    transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.site-header.is-scrolled {
    background: rgba(23, 19, 16, .92);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0;
}

.brand-mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: var(--brass);
    color: #231711;
    font-size: .82rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-nav a {
    padding: 10px 13px;
    border-radius: 999px;
    color: rgba(255, 255, 255, .86);
    font-size: .94rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.site-nav a:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    transform: translateY(-1px);
}

.site-nav .nav-cta {
    background: #fff;
    color: var(--ink);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
    border-radius: 99px;
}

.hero {
    position: relative;
    min-height: 92vh;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: #fff;
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    background: url("assets/hero-schoenmaker-jansen.png") center / cover no-repeat;
    background-image: url("assets/hero-schoenmaker-jansen.webp");
    transform: scale(1.02);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(15, 11, 8, .92) 0%, rgba(15, 11, 8, .72) 34%, rgba(15, 11, 8, .18) 68%),
        linear-gradient(0deg, rgba(15, 11, 8, .72) 0%, rgba(15, 11, 8, 0) 42%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(760px, calc(100% - 40px));
    margin: 0 auto;
    padding: 170px 0 68px;
}

.eyebrow,
.section-kicker {
    margin: 0 0 15px;
    color: var(--brass);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.eyebrow.dark,
.section-kicker {
    color: var(--leather);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 680px;
    margin-bottom: 22px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 7vw, 6.8rem);
    line-height: .92;
    letter-spacing: 0;
}

h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 4.4rem);
    line-height: 1;
    letter-spacing: 0;
}

h3 {
    font-size: 1.1rem;
    line-height: 1.2;
}

.hero-copy {
    max-width: 600px;
    color: rgba(255, 255, 255, .84);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 32px 0 34px;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button.primary {
    background: var(--brass);
    color: #20160f;
    box-shadow: 0 12px 32px rgba(209, 161, 90, .28);
}

.button.secondary {
    border-color: rgba(255, 255, 255, .35);
    color: #fff;
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 620px;
    margin: 0;
}

.hero-facts div {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
}

.hero-facts dt {
    color: var(--brass);
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-facts dd {
    margin: 3px 0 0;
    font-weight: 800;
}

.section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 92px 0;
}

.split,
.about,
.contact,
.benefits {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: clamp(30px, 6vw, 86px);
    align-items: center;
}

.text-block,
.contact-intro,
.about-copy {
    color: var(--muted);
    font-size: 1.08rem;
}

.text-block p:last-child,
.contact-intro p:last-child,
.about-copy p:last-child {
    margin-bottom: 0;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 36px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.service-card,
.step,
.hours-card,
.review-panel,
.contact-form {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .58);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .8) inset;
}

.service-card {
    min-height: 250px;
    padding: 24px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(184, 109, 54, .35);
    box-shadow: var(--shadow);
}

.service-number {
    display: block;
    margin-bottom: 36px;
    color: var(--cognac);
    font-weight: 900;
}

.service-card p,
.step p,
.hours-card p,
.review-panel cite,
.faq p {
    color: var(--muted);
}

.post-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 18px;
    padding: 22px 24px;
    border-radius: 8px;
    background: var(--charcoal);
    color: #fff;
    text-decoration: none;
}

.post-card span {
    color: var(--brass);
    font-weight: 900;
}

.benefits {
    align-items: stretch;
}

.benefit-panel {
    padding: clamp(32px, 5vw, 58px);
    border-radius: 8px;
    background: var(--cream);
}

.benefit-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.benefit-list div {
    display: grid;
    gap: 4px;
    padding: 18px 0;
    border-top: 1px solid rgba(23, 19, 16, .14);
}

.benefit-list span {
    color: var(--muted);
}

.review-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 5vw, 48px);
}

.stars {
    color: var(--brass);
    font-size: 1.25rem;
    letter-spacing: .08em;
}

blockquote {
    margin: 0 0 22px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    line-height: 1.12;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.step {
    padding: 24px;
}

.step span {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 30px;
    place-items: center;
    border-radius: 50%;
    background: var(--leather);
    color: #fff;
    font-weight: 900;
}

.hours-card {
    padding: 28px;
    background: #fff;
}

.hours-card dl {
    display: grid;
    gap: 10px;
    margin: 0 0 22px;
}

.hours-card div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}

.hours-card dd {
    margin: 0;
    font-weight: 800;
    text-align: right;
}

.faq-list {
    display: grid;
    gap: 10px;
}

details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

summary {
    min-height: 62px;
    padding: 18px 22px;
    font-weight: 900;
    cursor: pointer;
}

details p {
    margin: 0;
    padding: 0 22px 20px;
}

.contact {
    align-items: start;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: clamp(22px, 4vw, 34px);
    background: #fff;
    box-shadow: var(--shadow);
}

label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-size: .9rem;
    font-weight: 900;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfaf8;
    color: var(--ink);
    font: inherit;
    padding: 13px 14px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--cognac);
    box-shadow: 0 0 0 4px rgba(184, 109, 54, .14);
}

.wide,
.form-alert {
    grid-column: 1 / -1;
}

.form-alert {
    padding: 13px 15px;
    border-radius: 8px;
    font-weight: 800;
}

.form-alert.success {
    background: #e8f5ec;
    color: #1c6b36;
}

.form-alert.error {
    background: #fff0ec;
    color: #a13b1f;
}

.cf-turnstile {
    min-height: 65px;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 26px max(20px, calc((100vw - 1180px) / 2));
    background: var(--ink);
    color: rgba(255, 255, 255, .76);
}

.site-footer p {
    margin: 0;
}

.site-footer a {
    color: #fff;
    font-weight: 900;
    text-decoration: none;
}

.reveal {
    opacity: 1;
    transform: none;
}

.has-js .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
    transition-delay: var(--delay, 0ms);
}

.has-js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .site-header {
        inset: 12px 14px auto;
        border-radius: 24px;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        inset: calc(100% + 10px) 0 auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border-radius: 20px;
        background: rgba(23, 19, 16, .96);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 13px 16px;
    }

    .split,
    .about,
    .contact,
    .benefits {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-content {
        padding-top: 150px;
    }
}

@media (max-width: 680px) {
    .brand span:last-child {
        max-width: 160px;
        line-height: 1.1;
    }

    .hero {
        min-height: 100svh;
    }

    .hero-media {
        background-position: 58% center;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(15, 11, 8, .94) 0%, rgba(15, 11, 8, .72) 72%, rgba(15, 11, 8, .42) 100%),
            linear-gradient(0deg, rgba(15, 11, 8, .76) 0%, rgba(15, 11, 8, 0) 48%);
    }

    .hero-content,
    .section {
        width: min(100% - 28px, 1180px);
    }

    .hero-content {
        padding-bottom: 34px;
    }

    h1 {
        font-size: clamp(2.7rem, 14vw, 4.1rem);
    }

    .hero-facts,
    .service-grid,
    .steps,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 62px 0;
    }

    .post-card,
    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
}
