:root {
  --ink: #121212;
  --charcoal: #20201f;
  --paper: #f3f1ed;
  --white: #fff;
  --orange: #ed6a1c;
  --muted: #77746f;
  --line: rgba(18,18,18,.16);
}

html.concept-locked body > * { visibility: hidden; }
.concept-access {
  visibility: visible !important;
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: radial-gradient(circle at 70% 20%, #30251f 0, #171717 38%, #090909 100%);
}
.concept-access-card {
  width: min(460px, 100%);
  border-top: 4px solid var(--orange);
  padding: 38px;
  color: var(--white);
  background: rgba(27,27,27,.97);
  box-shadow: 0 28px 80px rgba(0,0,0,.45);
}
.concept-access-logo { width: 190px; height: auto; margin: 0 0 30px; object-fit: contain; }
.concept-access-label { margin: 0 0 10px; color: var(--orange); font-size: .75rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.concept-access h1 { margin: 0 0 12px; font-family: Georgia, serif; font-size: clamp(2rem, 7vw, 3rem); font-weight: 400; line-height: 1.04; }
.concept-access-copy { margin: 0 0 26px; color: #c8c5c1; }
.concept-access-form { display: grid; gap: 12px; }
.concept-access-form label { font-size: .85rem; font-weight: 700; }
.concept-access-form input { width: 100%; border: 1px solid #5f5f5f; border-radius: 0; padding: 14px 15px; color: var(--white); background: #111; font: inherit; }
.concept-access-form input:focus { border-color: var(--orange); outline: 2px solid rgba(237,106,28,.25); }
.concept-access-form button { border: 0; padding: 14px 18px; color: #111; background: var(--orange); font: inherit; font-weight: 800; cursor: pointer; }
.concept-access-error { min-height: 24px; margin: 2px 0 0; color: #ffb38a; font-size: .9rem; }
@media (max-width: 520px) { .concept-access-card { padding: 28px 24px; } }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }

.site-header { position: fixed; z-index: 50; top: 0; left: 0; width: 100%; height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 0 4vw; color: var(--white); background: linear-gradient(to bottom, rgba(0,0,0,.82), transparent); transition: background .3s; }
.brand, .footer-brand { display: inline-flex; align-items: center; }
.brand { width: 156px; min-width: 156px; }
.brand-logo, .footer-logo { width: 100%; height: auto; object-fit: contain; }
.footer-logo { width: 230px; max-width: 100%; }
.desktop-nav { display: flex; gap: clamp(18px, 2vw, 38px); font-size: .77rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.desktop-nav a { position: relative; white-space: nowrap; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 2px; background: var(--orange); transition: width .2s; }
.desktop-nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 16px; font-size: .73rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.language, .menu-button { border: 0; padding: 8px; color: inherit; background: none; font: inherit; cursor: pointer; }
.portal-link { border: 1px solid rgba(255,255,255,.6); padding: 10px 15px; }
.menu-button { display: none; }

.hero { position: relative; min-height: 820px; height: 100vh; display: flex; align-items: flex-end; overflow: hidden; color: var(--white); background: #111; }
.hero-image { position: absolute; inset: 0; background: url("hero.jpg") center 48% / cover no-repeat; transform: scale(1.01); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.48) 45%, rgba(0,0,0,.12) 75%), linear-gradient(0deg, rgba(0,0,0,.78), transparent 45%); }
.hero-content { position: relative; z-index: 1; width: min(1000px, 90vw); margin: 0 0 9vh 7vw; }
.eyebrow { margin: 0 0 20px; color: var(--orange); font-size: .72rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow.dark { color: #b94c0e; }
h1, h2, h3 { margin: 0; font-family: Georgia, 'Times New Roman', serif; font-weight: 400; line-height: 1.06; letter-spacing: -.035em; }
h1 { max-width: 940px; font-size: clamp(3.2rem, 6.1vw, 6.6rem); }
h1 em { color: #ff7b2b; font-weight: 400; }
.hero-copy { max-width: 670px; margin: 28px 0 34px; color: rgba(255,255,255,.82); font-size: 1.15rem; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 26px; padding: 13px 22px; font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--orange); }
.button-primary:hover { background: #ff7523; }
.button-ghost { border: 1px solid rgba(255,255,255,.65); }
.button-dark { color: #fff; background: var(--ink); }
.scroll-cue { position: absolute; z-index: 2; right: 4vw; bottom: 42px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.72); font-size: .67rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.scroll-cue span { display: block; width: 38px; height: 1px; background: var(--orange); }

.proof { display: grid; grid-template-columns: repeat(4, 1fr); padding: 34px 5vw; color: #fff; background: var(--ink); }
.proof div { display: flex; align-items: center; gap: 16px; padding: 8px 3vw; border-right: 1px solid rgba(255,255,255,.14); }
.proof div:last-child { border-right: 0; }
.proof strong { color: var(--orange); font-family: Georgia, serif; font-size: 1.85rem; font-weight: 400; white-space: nowrap; }
.proof span { max-width: 160px; color: rgba(255,255,255,.7); font-size: .76rem; line-height: 1.4; text-transform: uppercase; letter-spacing: .07em; }

.section { padding: 120px 7vw; }
.intro { display: grid; grid-template-columns: 1fr 3fr; gap: 40px; align-items: start; }
.section-label { padding-top: 10px; color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.intro h2, .craft h2, .projects h2, .contact h2 { max-width: 1000px; font-size: clamp(2.6rem, 4.8vw, 5rem); }
.intro-copy p { max-width: 760px; margin: 30px 0 0; color: #5e5b57; font-size: 1.12rem; }

.restoration-journey { overflow: hidden; padding: 120px 7vw 130px; color: #fff; background: #151515; }
.journey-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 8vw; align-items: end; max-width: 1500px; margin: 0 auto 90px; }
.journey-heading h2 { max-width: 900px; font-size: clamp(3rem, 5.3vw, 5.8rem); }
.journey-heading > p { max-width: 560px; margin: 0 0 10px; color: rgba(255,255,255,.64); font-size: 1.05rem; }
.journey-route { position: relative; display: grid; gap: 22px; max-width: 1450px; margin: 0 auto; padding: 0; list-style: none; counter-reset: journey; }
.journey-route::before { content: ""; position: absolute; top: 28px; bottom: 28px; left: 50%; width: 1px; background: linear-gradient(var(--orange), rgba(237,106,28,.18)); transform: translateX(-50%); }
.journey-stage { position: relative; display: grid; grid-template-columns: minmax(0,1fr) 92px minmax(0,1fr); align-items: center; min-height: 250px; }
.journey-marker { z-index: 1; grid-column: 2; display: grid; place-items: center; width: 58px; height: 58px; margin: auto; border: 1px solid var(--orange); border-radius: 50%; color: var(--orange); background: #151515; font-family: Georgia, serif; font-size: 1.25rem; }
.journey-card { grid-column: 1; grid-row: 1; justify-self: end; width: min(590px,100%); padding: 38px 42px; border-top: 2px solid var(--orange); background: #212120; box-shadow: 0 22px 60px rgba(0,0,0,.2); }
.journey-stage:nth-child(even) .journey-card { grid-column: 3; justify-self: start; }
.journey-kicker { margin: 0 0 10px; color: var(--orange); font-size: .69rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.journey-card h3 { max-width: 520px; font-size: clamp(2rem,2.7vw,3.15rem); }
.journey-card > p:not(.journey-kicker) { margin: 20px 0 24px; color: rgba(255,255,255,.68); }
.journey-result { display: block; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.9); font-size: .78rem; font-weight: 700; letter-spacing: .03em; }
.journey-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; max-width: 1450px; margin: 70px auto 0; padding-top: 34px; border-top: 1px solid rgba(255,255,255,.15); }
.journey-cta p { margin: 0; font-family: Georgia, serif; font-size: clamp(1.65rem,2.5vw,2.7rem); }

.workshops { display: grid; grid-template-columns: 1fr 1fr; min-height: 610px; }
.workshop-card { position: relative; display: flex; align-items: flex-end; overflow: hidden; padding: 65px 7vw; color: #fff; isolation: isolate; }
.workshop-card::before { content: ""; position: absolute; z-index: -2; inset: 0; background-size: cover; background-position: center; transition: transform .5s; }
.workshop-card:hover::before { transform: scale(1.025); }
.workshop-card::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.9), rgba(0,0,0,.25)); }
.workshop-wesepe::before { background-image: url("hero.jpg"); background-position: 30% center; }
.workshop-olst::before { background-image: url("project.jpg"); background-position: 65% center; filter: saturate(.8); }
.card-number { position: absolute; top: 50px; right: 50px; color: rgba(255,255,255,.35); font-family: Georgia, serif; font-size: 3rem; }
.card-content { max-width: 520px; }
.card-content h2 { font-size: clamp(2.25rem, 4vw, 4.2rem); }
.card-content p:not(.eyebrow) { max-width: 520px; color: rgba(255,255,255,.75); }
.text-link { display: inline-flex; gap: 28px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.45); padding: 9px 0; font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.card-content a { display: inline-flex; min-height: 50px; align-items: center; gap: 24px; margin-top: 8px; padding: 14px 20px; border: 1px solid rgba(255,255,255,.28); color: #fff; background: rgba(167,67,11,.94); box-shadow: 0 10px 24px rgba(0,0,0,.22); font-size: .84rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: background .2s ease, transform .2s ease; }
.card-content a span { font-size: 1.08rem; line-height: 1; }
.card-content a:hover { background: #c25111; transform: translateY(-2px); }
.card-content a:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

.craft { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 8vw; align-items: center; }
.craft-visual { position: relative; height: min(68vw, 700px); min-height: 520px; }
.image-note { position: absolute; right: -32px; bottom: 38px; display: flex; flex-direction: column; padding: 22px 27px; color: #fff; background: var(--orange); text-transform: uppercase; }
.image-note span { font-size: .65rem; letter-spacing: .18em; }
.image-note strong { font-family: Georgia, serif; font-size: 1.5rem; font-weight: 400; text-transform: none; }
.craft-copy > p:not(.eyebrow) { max-width: 610px; margin: 26px 0 30px; color: #5e5b57; }
.craft-copy > p + p { margin-top: -14px; }
.craft-link { margin-top: 28px; border-bottom-color: var(--line); }
.craftsmanship-hero h1 { max-width: 900px; font-size: clamp(3rem, 5vw, 5.5rem); }
.craftsmanship-page .maintenance-lead { max-width: 880px; }
.service-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.service-list li { display: flex; gap: 24px; align-items: center; padding: 15px 0; border-bottom: 1px solid var(--line); font-family: Georgia, serif; font-size: 1.1rem; }
.service-list span { color: var(--orange); font-family: Arial, sans-serif; font-size: .66rem; font-weight: 800; }

.engineering { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 680px; color: #fff; background: var(--charcoal); }
.engineering-image { min-height: 550px; overflow: hidden; }
.engineering-image img { filter: grayscale(.2) contrast(1.03); }
.engineering-content { display: flex; flex-direction: column; justify-content: center; padding: 8vw 7vw; }
.engineering h2 { max-width: 650px; font-size: clamp(2.8rem, 4.6vw, 5rem); }
.engineering-content > p:not(.eyebrow) { max-width: 590px; margin: 28px 0; color: rgba(255,255,255,.69); }
.engineering-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.engineering-tags span { border: 1px solid rgba(255,255,255,.22); padding: 7px 11px; color: rgba(255,255,255,.73); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }

.projects-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 52px; }
.projects-heading h2 { max-width: 770px; }
.dark-link { color: var(--ink); border-color: var(--line); white-space: nowrap; }
.project-feature { display: grid; grid-template-columns: 1.45fr .75fr; min-height: 560px; background: #e4e1dc; }
.project-image { min-height: 480px; background: url("hero.jpg") center / cover no-repeat; }
.project-story { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 6vw; }
.project-meta { color: #a7430b; font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.project-story h3 { font-size: clamp(2rem, 3.2vw, 3.6rem); }
.project-story > p:not(.project-meta) { color: #625f5a; }

.news-preview { background: #e8e5df; }
.news-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 52px; }
.news-heading h2 { max-width: 800px; font-size: clamp(2.6rem, 4.8vw, 5rem); }
.news-grid { display: grid; grid-template-columns: 1.25fr .875fr .875fr; gap: 18px; }
.news-card { display: grid; grid-template-rows: 270px 1fr; min-height: 510px; background: #fff; transition: transform .25s ease, box-shadow .25s ease; }
.news-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(24,21,18,.12); }
.news-card-featured { grid-template-rows: 350px 1fr; }
.news-card img { object-position: center; }
.news-card > div { display: flex; flex-direction: column; align-items: flex-start; padding: 28px; }
.news-meta { margin: 0 0 14px; color: #a7430b; font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.news-card h3 { margin-bottom: 24px; font-size: clamp(1.65rem, 2.2vw, 2.45rem); }
.news-card span { margin-top: auto; border-bottom: 1px solid var(--line); padding-bottom: 6px; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.news-page { background: #ebe8e2; }
.news-page .site-header { position: sticky; color: #fff; background: #111; }
.news-hero { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 420px; color: #fff; background: #1c1c1b; }
.news-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 52px 5.5vw; }
.news-hero-copy .eyebrow { margin-bottom: 14px; }
.news-hero h1 { max-width: 680px; font-size: clamp(2.8rem, 4.4vw, 4.7rem); }
.news-hero-copy > p:not(.eyebrow) { max-width: 580px; margin: 18px 0 0; color: rgba(255,255,255,.7); font-size: 1rem; }
.news-hero-image { min-height: 420px; background: url("hero.jpg") center / cover no-repeat; }
.projects-hero .news-hero-image { background-image: url("project.jpg"); }
.project-loading { margin: 0; padding: 44px; color: #68635d; background: #fff; font-size: 1rem; text-align: center; }
.news-index { padding-top: 95px; }
.news-index-intro { display: grid; grid-template-columns: 1fr 2.2fr; gap: 40px; margin-bottom: 60px; }
.news-index-intro h2 { max-width: 900px; font-size: clamp(2.5rem, 4.5vw, 4.7rem); }
.story-list { display: grid; gap: 30px; }
.story { display: grid; grid-template-columns: minmax(300px,.8fr) 1.2fr; min-height: 470px; background: #fff; scroll-margin-top: 115px; }
.story:nth-child(even) .story-image { order: 2; }
.story-image { overflow: hidden; }
.story-image-button { display: block; width: 100%; height: 100%; padding: 0; border: 0; background: #111; cursor: zoom-in; }
.story-image-button img { min-height: 470px; transition: transform .25s ease, opacity .25s ease; }
.story-image-button:hover img { transform: scale(1.015); opacity: .94; }
.story-image-button:focus-visible { outline: 3px solid var(--orange); outline-offset: -3px; }
.story-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(34px,5vw,76px); }
.story-copy h2 { max-width: 760px; font-size: clamp(2.3rem, 3.8vw, 4.2rem); }
.story-copy > p:not(.eyebrow) { max-width: 720px; margin: 24px 0 0; color: #5d5954; }
.story-copy .story-lead { color: #282725; font-size: 1.08rem; font-weight: 700; }
.story-copy .story-author { margin-top: 30px; padding-top: 17px; border-top: 1px solid var(--line); color: #a7430b; font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.story-copy .text-link { margin-top: 26px; }
.story-summary { min-height: 620px; }
.story-summary .story-image img { min-height: 620px; }
.story-summary .story-copy { padding-top: clamp(42px,4.5vw,68px); padding-bottom: clamp(42px,4.5vw,68px); }
.story-summary .story-copy h2 { font-size: clamp(2.15rem,3.3vw,3.65rem); }
.story-read { margin-top: 30px; padding: 0 0 8px; border: 0; border-bottom: 2px solid var(--orange); color: #9f410d; background: transparent; font: inherit; font-size: .8rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; }
.story-read:hover { color: var(--ink); }
.story-read:focus-visible { outline: 3px solid var(--orange); outline-offset: 5px; }
.news-archive { margin-top: 84px; padding-top: 64px; border-top: 1px solid #c9c4bc; scroll-margin-top: 115px; }
.news-archive-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 50px; margin-bottom: 34px; }
.news-archive-heading h2 { font-size: clamp(2.5rem, 4.2vw, 4.4rem); }
.news-archive-heading > p { max-width: 520px; margin: 0 0 7px; color: #68635d; }
.archive-list { border-top: 1px solid #bdb7ae; }
.archive-item { border-bottom: 1px solid #bdb7ae; }
.archive-button { display: grid; grid-template-columns: minmax(210px,.6fr) minmax(300px,1.5fr) auto; align-items: center; gap: 28px; width: 100%; padding: 25px 4px; border: 0; color: var(--ink); background: transparent; font: inherit; text-align: left; cursor: pointer; }
.archive-button:hover { color: #a7430b; }
.archive-button:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
.archive-meta { color: #8b470f; font-size: .75rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.archive-button strong { font-family: Georgia, serif; font-size: clamp(1.35rem,2vw,2rem); font-weight: 400; }
.archive-action { color: #a7430b; font-size: .82rem; font-weight: 800; text-transform: uppercase; white-space: nowrap; }
.story-gallery { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; padding: 8px; background: #1c1c1b; }
.story-gallery a { display: block; overflow: hidden; min-height: 190px; background: #111; }
.story-gallery img { width: 100%; height: 100%; min-height: 190px; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .25s ease, opacity .25s ease; }
.story-gallery a:hover img { transform: scale(1.025); opacity: .9; }
.story-gallery a:focus-visible { outline: 3px solid var(--orange); outline-offset: -3px; }
body.lightbox-open { overflow: hidden; }
body.article-open { overflow: hidden; }
.photo-lightbox[hidden] { display: none; }
.photo-lightbox { position: fixed; z-index: 1000; inset: 0; display: grid; grid-template-columns: minmax(52px, 8vw) minmax(0, 1fr) minmax(52px, 8vw); align-items: center; padding: 28px 18px; color: #fff; background: rgba(10,10,10,.96); }
.lightbox-figure { display: grid; grid-template-rows: minmax(0, 1fr) auto; justify-items: center; gap: 16px; width: min(1500px, 84vw); height: calc(100vh - 56px); margin: 0 auto; }
.lightbox-image { display: block; width: 100%; height: 100%; min-height: 0; object-fit: contain; box-shadow: 0 18px 70px rgba(0,0,0,.45); }
.lightbox-caption { min-height: 22px; color: rgba(255,255,255,.78); font-size: .9rem; text-align: center; }
.lightbox-close, .lightbox-nav { border: 0; color: #fff; background: rgba(255,255,255,.11); cursor: pointer; transition: background .2s ease, color .2s ease; }
.lightbox-close:hover, .lightbox-nav:hover { color: #111; background: var(--orange); }
.lightbox-close:focus-visible, .lightbox-nav:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.lightbox-close { position: absolute; top: 20px; right: 20px; width: 48px; height: 48px; font-size: 2rem; line-height: 1; }
.lightbox-nav { display: grid; place-items: center; width: 58px; height: 76px; margin: auto; font-family: Georgia, serif; font-size: 3rem; line-height: 1; }
.lightbox-nav[hidden] { display: none; }
.article-modal[hidden] { display: none; }
.article-modal { position: fixed; z-index: 800; inset: 0; overflow-y: auto; padding: 76px clamp(16px,4vw,62px) 46px; background: rgba(14,14,14,.96); }
.article-modal-content { width: min(1420px,100%); margin: 0 auto; }
.article-modal .story { min-height: min(760px,calc(100vh - 130px)); }
.article-modal .story-image img { min-height: min(760px,calc(100vh - 130px)); }
.article-modal-close { position: fixed; z-index: 2; top: 16px; right: 22px; padding: 12px 16px; border: 1px solid rgba(255,255,255,.45); color: #fff; background: #1c1c1b; font: inherit; font-size: .8rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; cursor: pointer; }
.article-modal-close:hover { border-color: var(--orange); background: var(--orange); }
.article-modal-close:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.news-cta { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; margin-top: 30px; padding: 58px 5vw; color: #fff; background: var(--orange); }
.news-cta h2 { max-width: 850px; font-size: clamp(2.3rem,4vw,4.3rem); }
.news-cta .button { border: 1px solid rgba(255,255,255,.7); }

.history-page { background: #ebe8e2; }
.history-page .site-header { position: sticky; color: #fff; background: #111; }
.history-hero { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 570px; color: #fff; background: #171717; }
.history-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 72px 7vw; }
.history-hero h1 { max-width: 790px; font-size: clamp(3.4rem,5.8vw,6.4rem); }
.history-hero-copy > p:not(.eyebrow) { max-width: 650px; margin: 28px 0 0; color: rgba(255,255,255,.7); font-size: 1.08rem; }
.history-hero-image { min-height: 570px; background: linear-gradient(90deg,rgba(23,23,23,.14),transparent),url("hero.jpg") 37% center / cover no-repeat; }
.history-introduction { display: grid; grid-template-columns: minmax(160px,.55fr) minmax(0,2.45fr); gap: 60px; align-items: start; background: #f3f1ed; }
.history-lead { max-width: 1120px; margin: 0; font-family: Georgia,serif; font-size: clamp(1.75rem,3vw,3.1rem); line-height: 1.35; letter-spacing: -.025em; }
.history-article { display: grid; grid-template-columns: minmax(220px,.62fr) minmax(0,1.38fr); gap: clamp(55px,9vw,150px); align-items: start; }
.history-rail { position: sticky; top: 122px; }
.history-rail ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid #bbb5ad; }
.history-rail li { display: grid; grid-template-columns: 74px 1fr; gap: 16px; padding: 19px 0; border-bottom: 1px solid #bbb5ad; }
.history-rail strong { color: #a7430b; font-family: Georgia,serif; font-size: 1.3rem; font-weight: 400; }
.history-rail span { padding-top: 3px; color: #68635d; font-size: .82rem; line-height: 1.45; }
.history-prose { max-width: 900px; }
.history-prose section { padding: 0 0 74px; margin: 0 0 74px; border-bottom: 1px solid #c8c2b9; scroll-margin-top: 120px; }
.history-prose section:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }
.history-year { margin: 0 0 14px; color: #a7430b; font-size: .7rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.history-prose h2 { max-width: 820px; margin-bottom: 30px; font-size: clamp(2.45rem,4vw,4.5rem); }
.history-prose p:not(.history-year) { max-width: 790px; margin: 0 0 22px; color: #55514c; font-size: 1.06rem; line-height: 1.82; }
.history-prose p:last-child { margin-bottom: 0; }
.terms-section { color: #fff; background: #242423; }
.terms-heading { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,8vw,120px); align-items: end; max-width: 1450px; margin: 0 auto 58px; }
.terms-heading h2 { font-size: clamp(2.8rem,4.8vw,5rem); }
.terms-heading > p { max-width: 650px; margin: 0 0 8px; color: rgba(255,255,255,.65); }
.terms-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 1450px; margin: 0 auto; }
.terms-group { padding: clamp(26px,4vw,50px); background: #181818; }
.terms-language { margin: 0 0 20px; color: var(--orange); font-size: .72rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.terms-link { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 19px 0; border-top: 1px solid rgba(255,255,255,.16); }
.terms-link:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.terms-link span { display: flex; flex-direction: column; color: rgba(255,255,255,.92); font-family: Georgia,serif; font-size: clamp(1.2rem,1.8vw,1.65rem); line-height: 1.25; }
.terms-link small { margin-bottom: 6px; color: rgba(255,255,255,.46); font-family: Arial,Helvetica,sans-serif; font-size: .67rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.terms-link strong { color: var(--orange); font-size: .72rem; letter-spacing: .08em; white-space: nowrap; }
.terms-link:hover span { color: var(--orange); }
.terms-link:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
.history-closing { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: end; padding: 80px 7vw; color: #fff; background: #1a1a19; }
.history-closing h2 { max-width: 880px; font-size: clamp(2.8rem,4.8vw,5rem); }

.engineering-page { background: #ebe8e2; }
.engineering-page .site-header { position: sticky; color: #fff; background: #111; }
.engineering-page-hero { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 590px; color: #fff; background: #171717; }
.engineering-page-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 72px 7vw; }
.engineering-page-hero h1 { max-width: 830px; font-size: clamp(3.4rem,5.6vw,6.2rem); }
.engineering-page-hero-copy > p:not(.eyebrow) { max-width: 660px; margin: 28px 0 0; color: rgba(255,255,255,.7); font-size: 1.08rem; }
.engineering-page-hero-image { min-height: 590px; background: linear-gradient(90deg,rgba(23,23,23,.18),transparent),url("JansenRestorations00001.jpg") center 52% / cover no-repeat; }
.engineering-introduction { display: grid; grid-template-columns: minmax(180px,.55fr) minmax(0,2.45fr); gap: 60px; background: #f3f1ed; }
.engineering-introduction > div { max-width: 1080px; }
.engineering-introduction p { max-width: 920px; margin: 0 0 22px; color: #55514c; font-size: 1.04rem; line-height: 1.75; }
.engineering-introduction .engineering-lead { max-width: 1080px; margin-bottom: 30px; color: var(--ink); font-family: Georgia,serif; font-size: clamp(1.7rem,2.7vw,2.8rem); line-height: 1.38; letter-spacing: -.02em; }
.engineering-article { display: grid; grid-template-columns: minmax(230px,.58fr) minmax(0,1.42fr); gap: clamp(55px,9vw,150px); align-items: start; }
.engineering-rail { position: sticky; top: 122px; }
.engineering-rail ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid #bbb5ad; }
.engineering-rail li { border-bottom: 1px solid #bbb5ad; }
.engineering-rail a { display: grid; grid-template-columns: 50px 1fr; gap: 14px; padding: 16px 0; }
.engineering-rail a:hover span { color: #a7430b; }
.engineering-rail strong { color: #a7430b; font-family: Georgia,serif; font-size: 1.15rem; font-weight: 400; }
.engineering-rail span { padding-top: 2px; color: #68635d; font-size: .82rem; line-height: 1.45; transition: color .2s ease; }
.engineering-prose { max-width: 940px; }
.engineering-prose > section { padding: 0 0 76px; margin: 0 0 76px; border-bottom: 1px solid #c8c2b9; scroll-margin-top: 120px; }
.engineering-prose > section:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }
.engineering-step { margin: 0 0 14px !important; color: #a7430b !important; font-size: .7rem !important; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.engineering-prose h2 { max-width: 850px; margin-bottom: 30px; font-size: clamp(2.45rem,4vw,4.5rem); }
.engineering-prose h3 { margin-bottom: 10px; font-size: 1.55rem; }
.engineering-prose p { max-width: 800px; margin: 0 0 22px; color: #55514c; font-size: 1.06rem; line-height: 1.82; }
.engineering-callout { max-width: 850px !important; margin: 38px 0 0 !important; padding: 28px 0 0; border-top: 2px solid var(--orange); color: var(--ink) !important; font-family: Georgia,serif; font-size: clamp(1.45rem,2.4vw,2.2rem) !important; line-height: 1.45 !important; }
.engineering-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 34px 0; }
.engineering-methods > div { padding: 28px; background: #f7f5f1; }
.engineering-methods p { margin-bottom: 0; font-size: .95rem; line-height: 1.65; }
.engineering-gallery { background: #dcd8d1; }
.engineering-gallery-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 60px; margin-bottom: 45px; }
.engineering-gallery-heading h2 { max-width: 780px; font-size: clamp(2.8rem,4.7vw,5rem); }
.engineering-gallery-heading > p { max-width: 590px; margin: 0 0 8px; color: #5a5650; }
.engineering-photo-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); grid-auto-rows: 285px; gap: 9px; }
.engineering-photo-grid button { overflow: hidden; padding: 0; border: 0; background: #171717; cursor: zoom-in; }
.engineering-photo-grid button:first-child, .engineering-photo-grid button:nth-child(4) { grid-row: span 2; }
.engineering-photo-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease, opacity .25s ease; }
.engineering-photo-grid button:hover img { transform: scale(1.025); opacity: .9; }
.engineering-photo-grid button:focus-visible { outline: 3px solid var(--orange); outline-offset: -3px; }
.engineering-closing { display: grid; grid-template-columns: 1fr auto; gap: 64px; align-items: end; padding: 82px 7vw; color: #fff; background: #1a1a19; }
.engineering-closing h2 { max-width: 900px; font-size: clamp(2.8rem,4.7vw,5rem); }
.engineering-closing p:not(.eyebrow) { max-width: 850px; color: rgba(255,255,255,.68); }

.maintenance-page { background: #ebe8e2; }
.maintenance-page .site-header { position: sticky; color: #fff; background: #111; }
.maintenance-hero { display: grid; grid-template-columns: 1.02fr .98fr; min-height: 560px; color: #fff; background: #171717; }
.maintenance-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 72px 7vw; }
.maintenance-hero h1 { max-width: 780px; font-size: clamp(3.4rem,5.6vw,6.2rem); }
.maintenance-hero-copy > p:not(.eyebrow) { max-width: 620px; margin: 28px 0 0; color: rgba(255,255,255,.7); font-family: Georgia,serif; font-size: clamp(1.4rem,2.2vw,2.1rem); }
.maintenance-hero-image { position: relative; overflow: hidden; min-height: 560px; padding: 0; border: 0; background: #111; cursor: zoom-in; }
.maintenance-hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; transition: transform .35s ease, opacity .35s ease; }
.maintenance-hero-image:hover img { transform: scale(1.015); opacity: .94; }
.maintenance-hero-image:focus-visible { outline: 3px solid var(--orange); outline-offset: -3px; }
.maintenance-introduction { display: grid; grid-template-columns: minmax(180px,.55fr) minmax(0,2.45fr); gap: 60px; background: #f3f1ed; }
.maintenance-introduction > div { max-width: 1080px; }
.maintenance-introduction p { max-width: 920px; margin: 0 0 22px; color: #55514c; font-size: 1.04rem; line-height: 1.75; }
.maintenance-introduction .maintenance-lead { max-width: 1080px; margin-bottom: 30px; color: var(--ink); font-family: Georgia,serif; font-size: clamp(1.7rem,2.7vw,2.8rem); line-height: 1.38; letter-spacing: -.02em; }
.maintenance-article { display: grid; grid-template-columns: minmax(230px,.58fr) minmax(0,1.42fr); gap: clamp(55px,9vw,150px); align-items: start; }
.maintenance-rail { position: sticky; top: 122px; }
.maintenance-rail ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid #bbb5ad; }
.maintenance-rail li { border-bottom: 1px solid #bbb5ad; }
.maintenance-rail a { display: grid; grid-template-columns: 50px 1fr; gap: 14px; padding: 16px 10px; transition: background .25s ease; }
.maintenance-rail a:hover span { color: #a7430b; }
.maintenance-rail a.is-current { background: rgba(167,67,11,.06); }
.maintenance-rail a.is-current span { color: #a7430b; }
.maintenance-rail strong { color: #a7430b; font-family: Georgia,serif; font-size: 1.15rem; font-weight: 400; }
.maintenance-rail span { padding-top: 2px; color: #68635d; font-size: .82rem; line-height: 1.45; transition: color .2s ease; }
.maintenance-prose { max-width: 940px; counter-reset: maintenance-chapter; }
.maintenance-prose > section { counter-increment: maintenance-chapter; padding: 26px 28px 76px; margin: -26px -28px 76px; border-bottom: 3px solid #bdb7ae; scroll-margin-top: 120px; }
.maintenance-step { display: flex; align-items: center; gap: 13px; margin: 0 0 14px !important; color: #a7430b !important; font-size: .7rem !important; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.maintenance-step::before { content: counter(maintenance-chapter, decimal-leading-zero); min-width: 32px; padding-right: 12px; border-right: 1px solid rgba(167,67,11,.35); font-family: Georgia,serif; font-size: 1rem; font-weight: 400; letter-spacing: 0; }
.maintenance-prose h2 { max-width: 850px; margin-bottom: 30px; font-size: clamp(2.45rem,4vw,4.5rem); }
.maintenance-prose p { max-width: 800px; margin: 0 0 22px; color: #55514c; font-size: 1.06rem; line-height: 1.82; }
.maintenance-callout { max-width: 850px !important; margin: 38px 0 24px !important; padding: 0; color: var(--ink) !important; font-family: Georgia,serif; font-size: clamp(1.45rem,2.4vw,2.2rem) !important; line-height: 1.45 !important; }
.maintenance-photo { position: relative; margin: -22px 0 88px; background: #1a1a19; box-shadow: 0 22px 65px rgba(24,21,18,.16); }
.maintenance-photo-button, .maintenance-photo-trigger { font: inherit; }
.maintenance-photo > .maintenance-photo-trigger { display: block; overflow: hidden; width: 100%; padding: 0; border: 0; background: #111; cursor: zoom-in; }
.maintenance-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease, opacity .3s ease; }
.maintenance-photo > .maintenance-photo-trigger:hover img { transform: scale(1.018); opacity: .94; }
.maintenance-photo > .maintenance-photo-trigger:focus-visible { outline: 3px solid var(--orange); outline-offset: -3px; }
.maintenance-photo-landscape img { aspect-ratio: 16 / 9; }
.maintenance-photo-offset { width: 88%; margin-left: 12%; }
.maintenance-photo-offset img { aspect-ratio: 4 / 3; }
.maintenance-photo-portrait { display: grid; grid-template-columns: .62fr .38fr; align-items: stretch; }
.maintenance-photo-portrait > .maintenance-photo-trigger { min-height: 650px; }
.maintenance-photo-portrait img { min-height: 650px; object-position: center 58%; }
.maintenance-photo figcaption { padding: 24px 28px; color: rgba(255,255,255,.75); font-size: .9rem; line-height: 1.55; }
.maintenance-photo figcaption span { display: block; margin-bottom: 5px; color: var(--orange); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.maintenance-photo-portrait figcaption { display: flex; flex-direction: column; justify-content: flex-end; padding: 36px; font-family: Georgia,serif; font-size: 1.35rem; }
.maintenance-photo-portrait figcaption span { font-family: Arial,Helvetica,sans-serif; }
.maintenance-closing { display: grid; grid-template-columns: 1fr auto; gap: 64px; align-items: end; padding: 82px 7vw; color: #fff; background: #1a1a19; }
.maintenance-closing h2 { max-width: 900px; font-size: clamp(2.8rem,4.7vw,5rem); }
.maintenance-closing p:not(.eyebrow) { max-width: 850px; color: rgba(255,255,255,.68); }

.history { display: grid; grid-template-columns: .9fr 1.1fr; gap: 10vw; padding: 120px 7vw; color: #fff; background: var(--ink); }
.history h2 { max-width: 690px; font-size: clamp(2.8rem, 4.7vw, 5.2rem); }
.history-copy > p:not(.eyebrow) { max-width: 620px; color: rgba(255,255,255,.66); }
.timeline { margin: 0; padding: 0; list-style: none; }
.timeline li { display: grid; grid-template-columns: 110px 1fr; gap: 20px; padding: 25px 0; border-top: 1px solid rgba(255,255,255,.16); }
.timeline li:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.timeline strong { color: var(--orange); font-family: Georgia, serif; font-size: 1.8rem; font-weight: 400; }
.timeline span { padding-top: 6px; color: rgba(255,255,255,.74); }

.contact { padding: 110px 7vw; background: #ddd9d2; }
.contact-intro { display: grid; grid-template-columns: 1.25fr .75fr; gap: 8vw; align-items: end; margin-bottom: 58px; }
.contact-action { align-self: end; }
.contact-action p { margin-top: 0; color: #5d5954; }
.contact-prompt { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(300px,.75fr); gap: clamp(48px,8vw,130px); align-items: center; padding: 78px 7vw; background: #ddd9d2; }
.contact-prompt h2 { max-width: 880px; margin-bottom: 22px; font-size: clamp(2.7rem,4.6vw,5rem); }
.contact-prompt p:not(.eyebrow) { max-width: 760px; margin-bottom: 0; color: #5d5954; font-size: 1.03rem; line-height: 1.7; }
.contact-prompt-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 28px; }
.contact-direct-links { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; width: 100%; padding-top: 22px; border-top: 1px solid #b9b3aa; }
.contact-direct-links a { color: #4f4b46; font-family: Georgia,serif; font-size: 1rem; line-height: 1.45; }
.contact-direct-links a:hover { color: #9b3d08; }
.contact-direct-links span { display: block; margin-bottom: 5px; color: #9b3d08; font-family: Arial,Helvetica,sans-serif; font-size: .67rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.contact-page main { background: #ddd9d2; }
.contact-page-intro { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(320px,.9fr); gap: clamp(50px,9vw,150px); align-items: end; padding: 90px 7vw 58px; }
.contact-page-intro h1 { max-width: 760px; font-size: clamp(3.4rem,6vw,6.4rem); }
.contact-page-intro > div:last-child > p { max-width: 720px; margin: 0 0 18px; color: #514d48; font-size: 1.08rem; line-height: 1.75; }
.contact-page-intro .contact-page-note { margin-bottom: 0; padding-top: 18px; border-top: 1px solid #b9b3aa; color: #6a655f; font-size: .88rem; }
.contact-page-form-wrap { padding: 0 7vw 110px; }
.floating-contact { position: fixed; right: 24px; bottom: 24px; z-index: 2; width: 46px; min-height: 46px; display: inline-grid; place-items: center; padding: 6px; overflow: hidden; color: #fff; background: transparent; font-size: 0; transition: transform .2s ease; }
.floating-contact::before { content: "\2709"; width: 34px; height: 34px; display: grid; place-items: center; border: 2px solid rgba(255,255,255,.7); border-radius: 50%; color: #fff; background: #a7430b; box-shadow: 0 10px 25px rgba(16,14,12,.25); font-size: 1rem; line-height: 1; transition: background .2s ease; }
.floating-contact:hover { background: transparent; transform: translateY(-2px); }
.floating-contact:hover::before { background: #c25111; }
.floating-contact:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.floating-contact span { display: none; }

.jansen-assistant { position: fixed; z-index: 80; right: 24px; bottom: 24px; font-family: Arial, Helvetica, sans-serif; }
.assistant-launcher { width: 46px; min-height: 46px; display: grid; place-items: center; border: 0; padding: 6px; color: #fff; background: transparent; font: inherit; cursor: pointer; }
.assistant-launcher-mark { width: 34px; height: 34px; display: grid; place-items: center; overflow: hidden; border: 2px solid var(--orange); border-radius: 50%; color: #171717; background: var(--orange); box-shadow: 0 10px 25px rgba(0,0,0,.28); font-family: Georgia, "Times New Roman", serif; font-size: 1.2rem; font-weight: 700; line-height: 1; transition: transform .2s ease, background .2s ease; }
.assistant-launcher > span:last-child { display: none; }
.assistant-launcher:hover { background: transparent; }
.assistant-launcher:hover .assistant-launcher-mark { background: #ff7a24; transform: translateY(-2px); }
.assistant-launcher:focus-visible, .assistant-close:focus-visible, .assistant-form input:focus-visible, .assistant-form button:focus-visible, .assistant-suggestions button:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
.assistant-panel { position: absolute; right: 0; bottom: 66px; width: min(390px, calc(100vw - 32px)); overflow: hidden; border-top: 4px solid var(--orange); color: var(--ink); background: #f7f5f1; box-shadow: 0 22px 65px rgba(0,0,0,.35); }
.assistant-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 18px 16px; color: #fff; background: #151515; }
.assistant-header div { display: grid; gap: 1px; }
.assistant-header strong { font-family: Georgia, serif; font-size: 1.25rem; font-weight: 400; }
.assistant-header span { color: rgba(255,255,255,.6); font-size: .72rem; }
.assistant-close { width: 38px; height: 38px; border: 0; color: #fff; background: transparent; font-size: 1.8rem; line-height: 1; cursor: pointer; }
.assistant-messages { max-height: min(390px, 48vh); min-height: 180px; display: flex; flex-direction: column; gap: 12px; overflow-y: auto; padding: 18px; }
.assistant-message { max-width: 90%; padding: 12px 14px; font-size: .91rem; line-height: 1.48; }
.assistant-message p { margin: 0; }
.assistant-message-bot { align-self: flex-start; background: #e8e4de; }
.assistant-message-user { align-self: flex-end; color: #fff; background: #2a2927; }
.assistant-links { display: grid; gap: 6px; margin-top: 11px; padding-top: 10px; border-top: 1px solid rgba(18,18,18,.14); }
.assistant-links a { color: #a7430b; font-size: .78rem; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.assistant-suggestions { display: flex; flex-wrap: wrap; gap: 7px; padding: 0 18px 14px; }
.assistant-suggestions button { border: 1px solid #c9c3ba; padding: 7px 9px; color: #4f4b46; background: transparent; font: inherit; font-size: .72rem; cursor: pointer; }
.assistant-form { display: grid; grid-template-columns: 1fr 48px; margin: 0 18px; border: 1px solid #bdb7af; background: #fff; }
.assistant-form input { min-width: 0; border: 0; padding: 13px 12px; background: transparent; font: inherit; font-size: .95rem; }
.assistant-form input:focus { outline: none; }
.assistant-form button { border: 0; color: #fff; background: var(--orange); font: inherit; font-size: 1.15rem; cursor: pointer; }
.assistant-note { margin: 9px 18px 12px; color: #77726c; font-size: .66rem; }
body:has(.jansen-assistant) .floating-contact { bottom: 80px; }
.contact-form { padding: clamp(28px, 5vw, 72px); background: #f5f3ef; box-shadow: 0 24px 70px rgba(31,28,24,.12); }
.form-section-heading { display: grid; grid-template-columns: 54px 1fr; gap: 18px; align-items: start; margin: 0 0 28px; padding-top: 44px; border-top: 1px solid var(--line); }
.form-section-heading:first-child { padding-top: 0; border-top: 0; }
.form-section-heading > span { color: var(--orange); font-family: Georgia, serif; font-size: 1.5rem; }
.form-section-heading h3 { font-size: 1.85rem; }
.form-section-heading p { margin: 4px 0 0; color: var(--muted); font-size: .82rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 24px; margin-bottom: 44px; }
.form-grid .wide { grid-column: 1 / -1; }
.address-grid { grid-template-columns: 2fr 1fr; }
.contact-form label { display: flex; flex-direction: column; gap: 7px; }
.contact-form label > span { color: #5b5853; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #c7c2ba; border-radius: 0; padding: 13px 14px; color: var(--ink); background: #fff; font: inherit; font-size: 1rem; line-height: 1.35; outline: none; }
.contact-form input, .contact-form select { min-height: 50px; }
.contact-form textarea { resize: vertical; min-height: 150px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 2px rgba(237,106,28,.16); }
.photo-upload { display: grid; grid-template-columns: minmax(240px, .8fr) 1.2fr; gap: 24px; margin: 0 0 44px; }
.photo-picker { position: relative; justify-content: center; min-height: 190px; padding: 28px; border: 1px dashed #a9a198; background: #fff; cursor: pointer; transition: border-color .2s ease, background .2s ease; }
.photo-picker:hover, .photo-picker:focus-within { border-color: var(--orange); background: #fffaf6; }
.photo-picker-title { color: var(--ink) !important; font-family: Georgia, serif; font-size: 1.45rem !important; font-weight: 700 !important; letter-spacing: 0 !important; text-transform: none !important; }
.photo-picker-copy { max-width: 420px; color: var(--muted) !important; font-size: .86rem !important; font-weight: 500 !important; line-height: 1.55; letter-spacing: 0 !important; text-transform: none !important; }
.photo-picker-button { align-self: flex-start; margin-top: 7px; padding: 10px 14px; color: #fff !important; background: var(--ink); font-size: .72rem !important; }
.photo-picker input { position: absolute; width: 1px; min-height: 1px; height: 1px; opacity: 0; overflow: hidden; }
.photo-preview { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; align-content: start; min-height: 190px; padding: 14px; border: 1px solid var(--line); background: #ebe8e2; }
.photo-preview > p:first-child { grid-column: 1 / -1; align-self: center; margin: 0; color: var(--muted); text-align: center; }
.photo-preview-item { min-width: 0; background: #fff; }
.photo-preview-item img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.photo-preview-item span { display: block; padding: 7px 8px; overflow: hidden; color: #5b5853; font-size: .72rem; text-overflow: ellipsis; white-space: nowrap; }
.photo-count { grid-column: 1 / -1; margin: 2px 0 0; color: var(--muted); font-size: .78rem; }
.photo-count.error { color: #a1261d; font-weight: 700; }
.privacy-check { flex-direction: row !important; align-items: flex-start; gap: 12px !important; max-width: 840px; margin: 0 0 26px; }
.privacy-check input { flex: 0 0 auto; width: 20px; min-height: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--orange); }
.privacy-check span { font-size: .8rem !important; font-weight: 600 !important; line-height: 1.55; letter-spacing: 0 !important; text-transform: none !important; }
.honey-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-submit-row { display: flex; align-items: center; gap: 24px; }
.form-submit-row button { border: 0; cursor: pointer; }
.form-submit-row button:disabled { cursor: wait; opacity: .65; transform: none; }
.form-status { max-width: 650px; margin: 0; color: var(--muted); font-size: .9rem; }
.form-status.success { color: #2f6a3a; font-weight: 700; }
.form-status.error { color: #a72d1f; font-weight: 700; }
footer { position: relative; z-index: 3; display: grid; grid-template-columns: clamp(320px,30vw,560px) minmax(210px,310px) minmax(210px,310px); gap: clamp(28px,4vw,82px); justify-content: start; padding: 65px 7vw 80px; color: #fff; background: #0b0b0b; }
footer .footer-brand { align-items: flex-start; }
footer div:not(.footer-brand) { display: flex; flex-direction: column; }
footer strong { margin-bottom: 12px; color: var(--orange); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
footer span { color: rgba(255,255,255,.63); font-size: .87rem; overflow-wrap: anywhere; }
footer span a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.footer-associations { position: absolute; right: 7vw; bottom: 20px; display: flex !important; flex-direction: column; align-items: center !important; gap: 12px; width: 132px; }
.dcr-footer-logo { display: block; width: 132px; height: auto; object-fit: contain; }
.bovag-footer-link { display: block; width: 52px; height: auto; background: #fff; box-shadow: 0 7px 18px rgba(0,0,0,.28); transition: transform .2s ease; }
.bovag-footer-link img { width: 100%; height: auto; object-fit: contain; }
.bovag-footer-link:hover { transform: translateY(-2px); }
.bovag-footer-link:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
.footer-admin-link { position: absolute; left: 7vw; bottom: 15px; color: rgba(255,255,255,.34); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; }
.footer-admin-link:hover, .footer-admin-link:focus-visible { color: #fff; text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 1080px) {
  .desktop-nav { position: fixed; top: 78px; left: 0; width: 100%; display: none; flex-direction: column; gap: 0; padding: 30px 5vw 45px; background: rgba(14,14,14,.98); }
  .desktop-nav a { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .menu-open .desktop-nav { display: flex; }
  .menu-button { display: block; }
  .portal-link { display: none; }
  .proof { grid-template-columns: 1fr 1fr; }
  .proof div:nth-child(2) { border-right: 0; }
  .craft { gap: 6vw; }
  .journey-heading { grid-template-columns: 1fr; gap: 28px; }
  footer { grid-template-columns: 1fr 1fr; padding-bottom: 105px; }
  footer .footer-brand { grid-column: 1 / -1; margin-bottom: 10px; }
}

@media (max-width: 760px) {
  .site-header { height: 72px; padding: 0 20px; }
  .brand { width: 124px; min-width: 124px; align-items: flex-start; }
  .language { display: none; }
  .hero { min-height: 720px; }
  .hero-shade { background: linear-gradient(0deg, rgba(0,0,0,.9), rgba(0,0,0,.17) 85%); }
  .hero-content { width: auto; margin: 0 24px 70px; }
  h1 { font-size: clamp(2.75rem, 13vw, 4.3rem); }
  .hero-copy { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .scroll-cue { display: none; }
  .proof { grid-template-columns: 1fr; padding: 22px 24px; }
  .proof div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); padding: 14px 0; }
  .proof div:last-child { border-bottom: 0; }
  .proof strong { min-width: 80px; }
  .section { padding: 78px 24px; }
  .intro, .craft, .engineering, .history, .contact-intro, .contact-prompt, .contact-page-intro { grid-template-columns: 1fr; }
  .intro { gap: 20px; }
  .intro h2, .craft h2, .projects h2, .contact h2 { font-size: 2.7rem; }
  .restoration-journey { padding: 78px 24px 84px; }
  .journey-heading { margin-bottom: 54px; }
  .journey-heading h2 { font-size: 3rem; }
  .journey-route { gap: 18px; }
  .journey-route::before { left: 28px; }
  .journey-stage { grid-template-columns: 56px minmax(0,1fr); align-items: start; min-height: 0; }
  .journey-marker { grid-column: 1; width: 48px; height: 48px; margin: 22px 0 0 4px; font-size: 1rem; }
  .journey-card, .journey-stage:nth-child(even) .journey-card { grid-column: 2; justify-self: stretch; padding: 28px 24px; }
  .journey-card h3 { font-size: 2.2rem; }
  .journey-cta { align-items: stretch; flex-direction: column; margin-top: 48px; }
  .journey-cta .button { text-align: center; }
  .workshops { grid-template-columns: 1fr; }
  .workshop-card { min-height: 540px; padding: 45px 24px; }
  .card-number { top: 25px; right: 24px; }
  .craft { gap: 60px; }
  .craft-visual { min-height: 460px; height: 115vw; }
  .image-note { right: -8px; bottom: -24px; }
  .engineering-image { min-height: 420px; }
  .engineering-content { padding: 75px 24px; }
  .projects-heading { display: block; }
  .projects-heading .text-link { margin-top: 22px; }
  .news-heading { display: block; }
  .news-heading .text-link { margin-top: 22px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card, .news-card-featured { grid-template-rows: 260px 1fr; min-height: 480px; }
  .project-feature { grid-template-columns: 1fr; }
  .project-story { padding: 48px 24px; }
  .history { gap: 55px; padding: 80px 24px; }
  .news-hero, .news-index-intro, .story, .news-cta { grid-template-columns: 1fr; }
  .news-hero-copy { padding: 46px 24px; }
  .news-hero h1 { font-size: 2.8rem; }
  .news-hero-image { min-height: 280px; }
  .story:nth-child(even) .story-image { order: 0; }
  .story-image img { min-height: 330px; }
  .story-copy { padding: 44px 24px; }
  .story-summary, .story-summary .story-image img { min-height: 310px; }
  .article-modal { padding: 66px 8px 18px; }
  .article-modal .story, .article-modal .story-image img { min-height: 300px; }
  .article-modal-close { top: 10px; right: 10px; }
  .news-archive { margin-top: 58px; padding-top: 46px; }
  .news-archive-heading { grid-template-columns: 1fr; gap: 18px; }
  .archive-button { grid-template-columns: 1fr auto; gap: 9px 18px; padding: 22px 4px; }
  .archive-meta { grid-column: 1 / -1; }
  .archive-action { align-self: end; }
  .story-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story-gallery a, .story-gallery img { min-height: 150px; }
  .photo-lightbox { grid-template-columns: 48px minmax(0, 1fr) 48px; padding: 70px 8px 18px; }
  .lightbox-figure { width: calc(100vw - 112px); height: calc(100vh - 88px); }
  .lightbox-nav { width: 44px; height: 58px; font-size: 2.4rem; }
  .lightbox-close { top: 12px; right: 12px; }
  .news-cta { align-items: start; padding: 45px 24px; }
  .history-hero, .history-introduction, .history-article, .history-closing, .terms-heading, .terms-groups { grid-template-columns: 1fr; }
  .history-hero-copy { padding: 52px 24px; }
  .history-hero h1 { font-size: 3.45rem; }
  .history-hero-image { min-height: 330px; }
  .history-introduction { gap: 24px; }
  .history-lead { font-size: 1.72rem; }
  .history-rail { position: static; }
  .history-article { gap: 64px; }
  .history-prose section { padding-bottom: 52px; margin-bottom: 52px; }
  .history-prose h2 { margin-bottom: 24px; font-size: 2.65rem; }
  .history-closing { align-items: start; padding: 64px 24px; }
  .engineering-page-hero, .engineering-introduction, .engineering-article, .engineering-closing { grid-template-columns: 1fr; }
  .engineering-page-hero-copy { padding: 52px 24px; }
  .engineering-page-hero h1 { font-size: 3.45rem; }
  .engineering-page-hero-image { min-height: 360px; }
  .engineering-introduction { gap: 24px; }
  .engineering-introduction .engineering-lead { font-size: 1.72rem; }
  .engineering-rail { position: static; }
  .engineering-prose > section { padding-bottom: 52px; margin-bottom: 52px; }
  .engineering-prose h2 { font-size: 2.65rem; }
  .engineering-methods { grid-template-columns: 1fr; }
  .engineering-gallery-heading { grid-template-columns: 1fr; gap: 20px; }
  .engineering-photo-grid { grid-template-columns: repeat(2,minmax(0,1fr)); grid-auto-rows: 220px; }
  .engineering-photo-grid button:first-child, .engineering-photo-grid button:nth-child(4) { grid-row: span 1; }
  .engineering-closing { align-items: start; padding: 64px 24px; }
  .maintenance-hero, .maintenance-introduction, .maintenance-article, .maintenance-closing { grid-template-columns: 1fr; }
  .maintenance-hero-copy { padding: 52px 24px; }
  .maintenance-hero h1 { font-size: 3.45rem; }
  .maintenance-hero-image { min-height: 340px; }
  .maintenance-introduction { gap: 24px; }
  .maintenance-introduction .maintenance-lead { font-size: 1.72rem; }
  .maintenance-rail { position: static; }
  .maintenance-prose > section { padding: 22px 18px 52px; margin: 0 0 52px; }
  .maintenance-prose h2 { font-size: 2.65rem; }
  .maintenance-photo { margin: -8px 0 58px; }
  .maintenance-photo-offset { width: 100%; margin-left: 0; }
  .maintenance-photo-portrait { grid-template-columns: 1fr; }
  .maintenance-photo-portrait > .maintenance-photo-trigger, .maintenance-photo-portrait img { min-height: 430px; }
  .maintenance-photo-portrait figcaption { padding: 24px; font-size: 1.1rem; }
  .maintenance-closing { align-items: start; padding: 64px 24px; }
  .contact { padding: 80px 24px; }
  .contact-intro { gap: 26px; margin-bottom: 38px; }
  .contact-prompt { gap: 34px; padding: 64px 24px; }
  .contact-prompt h2 { font-size: 2.7rem; }
  .contact-prompt-actions { align-items: stretch; }
  .contact-prompt-actions .button { text-align: center; }
  .contact-direct-links { gap: 14px; }
  .contact-direct-links a { font-size: .91rem; }
  .contact-page-intro { gap: 26px; padding: 58px 24px 38px; }
  .contact-page-intro h1 { font-size: 3.5rem; }
  .contact-page-form-wrap { padding: 0 24px 80px; }
  .contact-form { padding: 28px 20px; }
  .form-grid, .address-grid { grid-template-columns: 1fr; gap: 17px; }
  .form-grid .wide { grid-column: auto; }
  .form-section-heading { grid-template-columns: 38px 1fr; }
  .photo-upload { grid-template-columns: 1fr; }
  .photo-preview { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-submit-row { align-items: stretch; flex-direction: column; }
  .floating-contact { right: 14px; bottom: 72px; padding: 6px; }
  .jansen-assistant { right: 14px; bottom: 14px; }
  .assistant-panel { bottom: 62px; }
  .assistant-launcher { min-height: 46px; }
  footer { grid-template-columns: 1fr 1fr; padding: 55px 24px 90px; }
  footer .footer-brand { grid-column: 1 / -1; margin-bottom: 20px; }
  .footer-associations { right: 24px; bottom: 18px; width: 116px; gap: 10px; }
  .dcr-footer-logo { width: 116px; }
  .bovag-footer-link { width: 46px; }
  .footer-admin-link { left: 24px; right: auto; max-width: calc(100% - 120px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* Werken bij */
[hidden] { display: none !important; }
.careers-loading { min-height: 62vh; display: grid; place-items: center; padding: 80px 24px; color: #5d5955; font-size: 1.05rem; }
.careers-hero { min-height: 56vh; display: grid; grid-template-columns: 1.08fr .92fr; background: #151515; color: #fff; }
.careers-hero-copy { align-self: center; padding: clamp(52px, 6vw, 92px) clamp(28px, 7vw, 130px); }
.careers-hero h1 { max-width: 900px; margin: 20px 0 26px; font: 400 clamp(3rem, 4.6vw, 5.45rem)/.98 Georgia, serif; letter-spacing: -.04em; }
.careers-hero-copy > p:last-child { max-width: 700px; color: #c5c1bd; font-size: clamp(1.08rem, 1.25vw, 1.35rem); line-height: 1.58; }
.careers-hero-image { min-height: 480px; background: linear-gradient(90deg, rgba(21,21,21,.08), transparent), url('JansenRestorationsWesepe00001.webp') center/cover; }
.careers-intro.section { padding-top: 64px; padding-bottom: 58px; }
.careers-intro { display: grid; grid-template-columns: minmax(180px,.36fr) 1fr; gap: clamp(32px,5vw,90px); align-items: start; }
.careers-intro h2 { margin: 0 0 20px; font: 400 clamp(2.5rem,3.8vw,4.4rem)/1.02 Georgia,serif; letter-spacing: -.035em; }
.careers-section-heading h2 { margin: 0 0 20px; font: 400 clamp(2.5rem,3.8vw,4.5rem)/1.02 Georgia,serif; letter-spacing: -.035em; }
.careers-application-intro h2 { margin: 0 0 26px; font: 400 clamp(2.7rem,4.6vw,5.5rem)/1.02 Georgia,serif; letter-spacing: -.035em; }
.careers-intro p:last-child { color: #5d5955; font-size: 1.1rem; line-height: 1.62; }
.careers-application-intro > p { color: #5d5955; font-size: 1.22rem; line-height: 1.75; }
.careers-vacancies { background: #ece8e1; }
.careers-vacancies.section { padding-top: 58px; padding-bottom: 76px; }
.careers-section-heading { max-width: 1050px; margin-bottom: 38px; }
.careers-vacancies.is-empty.section { padding-bottom: 46px; }
.careers-vacancies.is-empty .careers-section-heading { margin-bottom: 20px; }
.vacancy-list { display: grid; gap: 20px; }
.vacancy-card { padding: clamp(28px,4vw,58px); background: #fff; border: 1px solid #d4cec5; }
.vacancy-meta { margin: 0 0 16px; color: #b5440b; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.vacancy-card > h3 { margin: 0; font: 400 clamp(2.25rem,3.7vw,4.3rem)/1 Georgia,serif; }
.vacancy-introduction { max-width: 960px; margin: 24px 0 30px; color: #5d5955; font-size: 1.15rem; line-height: 1.7; }
.vacancy-card details { border-top: 2px solid #e3ded6; }
.vacancy-card summary { padding: 22px 0 4px; cursor: pointer; color: #171717; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.vacancy-details { max-width: 980px; padding: 28px 0 6px; }
.vacancy-details h3 { margin: 30px 0 12px; font: 400 1.8rem/1.2 Georgia,serif; }
.vacancy-details h3:first-child { margin-top: 0; }
.vacancy-details ul { margin: 0 0 20px; padding-left: 22px; color: #5d5955; line-height: 1.7; }
.vacancy-closing { margin: 28px 0; font-weight: 700; }
.vacancy-empty { max-width: 820px; color: #5d5955; font-size: 1.25rem; line-height: 1.7; }
.careers-application.section { padding-top: 72px; padding-bottom: 90px; }
.careers-application { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(44px,8vw,140px); align-items: start; }
.careers-application-intro { position: sticky; top: 120px; }
.application-recipient { padding-top: 24px; border-top: 2px solid #e7e1d9; }
.job-application-form.contact-form { padding: 0; background: transparent; box-shadow: none; }
.job-application-form .form-section-heading:not(:first-of-type) { margin-top: 54px; }
.application-files { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.application-files label { display: grid; gap: 10px; padding: 22px; background: #fff; border: 1px solid #d3cdc4; font-weight: 700; }
.application-files small { color: #6a655f; font-weight: 400; line-height: 1.5; }
.job-application-form .application-consent { display: flex; flex-direction: row; gap: 12px; align-items: flex-start; margin: 28px 0; color: #4d4945; line-height: 1.55; }
.job-application-form .application-consent > span { color: #4d4945; font-size: 1rem; font-weight: 400; letter-spacing: 0; line-height: 1.55; text-transform: none; }
.application-consent input { margin-top: 4px; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

@media (max-width: 900px) {
  .careers-hero, .careers-intro, .careers-application { grid-template-columns: 1fr; }
  .careers-hero-copy { padding: 46px 24px; }
  .careers-hero h1 { font-size: 3rem; }
  .careers-hero-image { min-height: 290px; }
  .careers-intro.section { padding: 46px 24px; }
  .careers-vacancies.section { padding: 48px 24px 58px; }
  .careers-vacancies.is-empty.section { padding-bottom: 38px; }
  .careers-application.section { padding: 54px 24px 72px; }
  .careers-application-intro { position: static; }
  .application-files { grid-template-columns: 1fr; }
}
