@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
}

:root {
  --ink: #1A1A1A;
  --orange: #FF8A00;
  --orange-dark: #985000;
  --grey: #D9D9D9;
  --white: #FFFFFF;
  --soft: #F3F3F3;
  --muted: #5C5C5C;
  --line: #D8D8D8;
  --shell: min(1088px, calc(100vw - 48px));
  --body: Montserrat, "Helvetica Neue", Arial, sans-serif;
  --display: Archivo, "Arial Black", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: var(--body); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, summary, a, label { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; box-shadow: 0 0 0 5px var(--white); }
.hero :focus-visible, .page-hero :focus-visible, .site-footer :focus-visible { outline-color: var(--orange); box-shadow: 0 0 0 5px var(--ink); }
::selection { color: var(--ink); background: var(--orange); }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; z-index: 1000; top: 8px; left: 8px; padding: 10px 15px; color: var(--white); background: var(--ink); transform: translateY(-160%); }
.skip-link:focus { transform: none; }
.preview-banner { position: relative; z-index: 40; padding: 6px 20px; color: var(--ink); background: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .05em; text-align: center; text-transform: uppercase; }

.site-header { position: relative; z-index: 30; min-height: 68px; background: var(--white); border-bottom: 1px solid #E6E6E6; }
.header-inner { min-height: 68px; display: flex; align-items: center; gap: 34px; }
.brand { width: 150px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.site-nav { min-width: 0; flex: 1; display: flex; align-items: center; justify-content: flex-end; gap: clamp(20px, 2.6vw, 38px); font-size: 14px; font-weight: 500; }
.site-nav > a:not(.button), .nav-services > summary { min-height: 48px; display: flex; align-items: center; position: relative; text-decoration: none; white-space: nowrap; }
.site-nav > a:not(.button)::after, .nav-services > summary::after { position: absolute; right: 0; bottom: 5px; left: 0; height: 2px; content: ""; background: var(--orange); transform: scaleX(0); }
.site-nav > a:not(.button):hover::after, .site-nav > a[aria-current="page"]::after, .nav-services > summary:hover::after, .nav-services[data-active] > summary::after { transform: scaleX(1); }
.nav-services { position: relative; }
.nav-services > summary { gap: 8px; cursor: pointer; list-style: none; }
.nav-services > summary::-webkit-details-marker { display: none; }
.nav-services > summary span { font-size: 18px; line-height: 1; }
.nav-services[open] > summary span { transform: rotate(45deg); }
.services-menu { position: absolute; top: calc(100% + 9px); left: -20px; width: 310px; padding: 9px 20px 15px; background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--orange); box-shadow: 0 16px 30px rgba(0,0,0,.08); }
.services-menu a { min-height: 46px; display: grid; grid-template-columns: 30px minmax(0, 1fr); align-items: center; gap: 8px; border-bottom: 1px solid var(--line); text-decoration: none; }
.services-menu a:hover { font-weight: 750; }
.services-menu span { color: var(--muted); font-size: 10px; }
.menu-button { display: none; min-width: 70px; min-height: 44px; align-items: center; justify-content: space-between; gap: 10px; padding: 0; color: var(--ink); background: transparent; border: 0; font-size: 13px; font-weight: 750; }
.menu-icon, .menu-icon::before, .menu-icon::after { width: 23px; height: 2px; display: block; position: relative; background: var(--ink); content: ""; }
.menu-icon::before { position: absolute; top: -7px; }
.menu-icon::after { position: absolute; top: 7px; }
.menu-button[aria-expanded="true"] .menu-icon { background: transparent; }
.menu-button[aria-expanded="true"] .menu-icon::before { top: 0; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] .menu-icon::after { top: 0; transform: rotate(-45deg); }

.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 22px; color: var(--ink); background: var(--orange); border: 1px solid var(--orange); border-radius: 0; cursor: pointer; font-size: 14px; font-weight: 750; line-height: 1.2; text-align: center; text-decoration: none; }
.button:hover { color: var(--white); background: var(--ink); border-color: var(--ink); }
.button-small { min-height: 40px; padding: 9px 18px; }
.button-outline { color: var(--white); background: transparent; border-color: rgba(255,255,255,.65); }
.button-outline:hover { color: var(--ink); background: var(--white); border-color: var(--white); }
.dark-button { color: var(--white); background: var(--ink); border-color: var(--ink); }
.dark-button:hover { color: var(--ink); background: var(--white); border-color: var(--ink); }
.button:disabled { cursor: not-allowed; opacity: .5; }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 750; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.text-link span { font-size: 17px; }
.text-link.inverse { color: var(--white); }

.eyebrow, .kicker, .service-label { margin: 0 0 15px; color: var(--orange-dark); font-size: 11px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow { color: var(--orange); }
.hero, .page-hero, .not-found { color: var(--white); background-color: var(--ink); }
.hero, .page-hero { position: relative; isolation: isolate; overflow: hidden; }
.hero::after, .page-hero::after { position: absolute; z-index: -1; inset: 0; content: ""; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 48px 48px; pointer-events: none; }

.hero { min-height: 650px; }
.hero::before { position: absolute; z-index: -1; inset: 0; content: ""; background: linear-gradient(90deg, rgba(18,18,18,1) 0%, rgba(18,18,18,.98) 43%, rgba(18,18,18,.74) 62%, rgba(18,18,18,.4) 100%), linear-gradient(180deg, transparent 50%, rgba(18,18,18,.5)); }
.hero-media { position: absolute; z-index: -2; top: 0; right: 0; width: 58%; height: 100%; background: var(--ink); }
.hero-slide { position: absolute; inset: 0; display: block; opacity: 0; transition: opacity 1.15s ease; }
.hero-slide[data-active] { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.hero-grid { min-height: 650px; display: grid; align-items: center; padding-block: 76px 104px; }
.hero-copy { width: min(660px, 64%); min-width: 0; }
.hero h1, .page-hero h1, .not-found h1 { margin: 0; font-family: var(--display); font-variation-settings: "wdth" 125; font-stretch: 125%; font-weight: 800; letter-spacing: -.035em; text-transform: uppercase; overflow-wrap: normal; word-break: normal; hyphens: none; }
.hero h1 { max-width: 650px; font-size: 60px; line-height: .95; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-intro { max-width: 600px; margin: 27px 0 31px; color: #D0D0D0; font-size: 17px; line-height: 1.65; text-shadow: 0 1px 12px #000; }
.hero-media-meta { position: absolute; z-index: 4; right: max(24px, calc((100vw - 1088px) / 2)); bottom: 22px; display: flex; align-items: center; gap: 9px; }
.hero-media-caption, .video-toggle { color: var(--white); background: rgba(18,18,18,.88); border: 1px solid rgba(255,255,255,.48); font-size: 9px; font-weight: 750; letter-spacing: .08em; line-height: 1.2; text-transform: uppercase; }
.hero-media-caption { padding: 9px 11px; }
.video-toggle { min-height: 34px; display: inline-flex; align-items: center; gap: 8px; padding: 7px 10px; cursor: pointer; }
.video-toggle[hidden] { display: none; }
.video-toggle:hover { color: var(--ink); background: var(--white); }
.video-toggle:disabled { cursor: default; opacity: .8; }
.video-toggle-icon { width: 8px; height: 11px; display: inline-block; border-right: 3px solid currentColor; border-left: 3px solid currentColor; }
.video-toggle[data-state="paused"] .video-toggle-icon { width: 0; height: 0; border-top: 6px solid transparent; border-right: 0; border-bottom: 6px solid transparent; border-left: 9px solid currentColor; }

.section { padding-block: 84px; }
.soft-section { background: var(--soft); }
.section-intro { max-width: 730px; margin-bottom: 42px; }
.section-intro h2, .helper-heading h2, .faq-layout h2, .finish-grid h2, .preparation-grid h2, .editorial-grid h2, .form-heading h2, .principles-grid h2, .practical-copy h2, .about-story h2, .contact-sidebar h2 { margin: 0; font-family: var(--display); font-variation-settings: "wdth" 125; font-stretch: 125%; font-size: clamp(30px, 3.2vw, 40px); font-weight: 800; letter-spacing: -.03em; line-height: 1.04; text-transform: uppercase; overflow-wrap: normal; word-break: normal; hyphens: none; }
.section-intro > p { max-width: 690px; margin: 16px 0 0; color: var(--muted); }
.line-icon { width: 25px; height: 25px; display: block; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: square; stroke-linejoin: miter; }

.service-cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 285px; display: flex; flex-direction: column; padding: 24px 20px 21px; background: var(--white); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card .line-icon { margin-bottom: 34px; color: var(--orange); }
.service-card .service-label { margin-bottom: 8px; }
.service-card h3 { margin: 0 0 10px; font-family: var(--display); font-variation-settings: "wdth" 115; font-stretch: 115%; font-size: 17px; font-weight: 800; letter-spacing: -.015em; line-height: 1.15; text-transform: uppercase; overflow-wrap: normal; word-break: normal; hyphens: none; }
.service-card h3 a { text-decoration: none; }
.service-card p:not(.service-label) { margin: 0 0 18px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.service-card > .text-link { margin-top: auto; }
.service-card-wide { min-height: 150px; grid-column: 1 / -1; display: grid; grid-template-columns: 55px minmax(0, 1fr) auto; align-items: center; gap: 24px; padding: 25px 28px; }
.service-card-wide .line-icon { margin: 0; }
.service-card-wide h3 { font-size: 20px; }
.service-card-wide p:not(.service-label) { max-width: 660px; margin-bottom: 0; }

.before-after-section { padding-top: 52px; border-top: 1px solid var(--line); }
.before-after-intro h2 { max-width: 710px; }
.comparison-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.comparison-card { min-width: 0; margin: 0; padding: 18px; background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--orange); }
.comparison-card h3 { margin: 0 0 14px; font-family: var(--display); font-variation-settings: "wdth" 115; font-stretch: 115%; font-size: 18px; font-weight: 800; letter-spacing: -.015em; line-height: 1.15; text-transform: uppercase; }
.comparison-media { min-width: 0; position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px; overflow: hidden; background: var(--ink); }
.comparison-panel { min-width: 0; position: relative; margin: 0; background: var(--grey); }
.comparison-panel img { width: 100%; height: 100%; display: block; object-fit: cover; }
.comparison-label { position: absolute; z-index: 4; top: 10px; padding: 5px 8px; color: var(--ink); background: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: .1em; line-height: 1.2; text-transform: uppercase; pointer-events: none; }
.comparison-label-before { left: 10px; }
.comparison-label-after { right: 10px; }
.comparison-control { display: none; }
.comparison-card.is-enhanced .comparison-media { display: block; aspect-ratio: var(--comparison-ratio); touch-action: pan-y; }
.comparison-card { --comparison-ratio: 8 / 7; }
.comparison-card.is-enhanced .comparison-panel { position: absolute; inset: 0; }
.comparison-card.is-enhanced .comparison-after { z-index: 2; clip-path: inset(0 0 0 var(--comparison-position, 50%)); }
.comparison-card.is-enhanced .comparison-media::after { position: absolute; z-index: 3; top: 0; bottom: 0; left: var(--comparison-position, 50%); width: 3px; content: ""; background: var(--orange); transform: translateX(-50%); pointer-events: none; }
.comparison-card.is-enhanced .comparison-control { display: grid; gap: 8px; margin-top: 14px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.comparison-control input { width: 100%; min-height: 28px; margin: 0; cursor: ew-resize; accent-color: var(--orange); }
.comparison-disclaimer { margin: 24px 0 0; padding: 13px 15px; color: var(--muted); background: var(--soft); border-left: 4px solid var(--orange); font-size: 12px; font-weight: 650; }

.reason-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 35px 30px; }
.reason-grid article { min-height: 160px; padding-top: 18px; border-top: 2px solid var(--orange); }
.reason-grid .line-icon { margin-bottom: 17px; color: #333; }
.reason-grid h3 { margin: 0 0 8px; font-family: var(--display); font-variation-settings: "wdth" 115; font-stretch: 115%; font-size: 16px; font-weight: 780; line-height: 1.15; text-transform: uppercase; }
.reason-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }

.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px; margin: 0; padding: 0; list-style: none; }
.process-grid li { min-width: 0; padding-top: 16px; border-top: 1px solid var(--line); }
.process-grid li > span { display: block; margin-bottom: 8px; color: var(--orange-dark); font-family: var(--display); font-size: 25px; font-weight: 800; }
.process-grid h3 { margin: 0 0 8px; font-family: var(--display); font-variation-settings: "wdth" 115; font-stretch: 115%; font-size: 16px; font-weight: 800; line-height: 1.15; text-transform: uppercase; }
.process-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.approach-band { color: var(--white); background: var(--ink); }
.approach-band .shell { min-height: 112px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: center; }
.approach-band span { min-width: 0; padding: 8px 22px; border-left: 2px solid var(--orange); font-family: var(--display); font-variation-settings: "wdth" 115; font-stretch: 115%; font-size: 17px; font-weight: 750; line-height: 1.2; text-transform: uppercase; }

.project-helper { display: grid; grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr); gap: 28px 64px; }
.helper-heading { align-self: start; }
.helper-heading h2 { font-size: clamp(28px, 3vw, 38px); }
.helper-heading > p:not(.kicker) { color: var(--muted); }
.helper-diagram { position: relative; max-width: 360px; margin: 30px 0 0; color: var(--white); background: var(--ink); border-bottom: 5px solid var(--orange); overflow: hidden; }
.helper-diagram svg { width: 100%; height: auto; display: block; padding: 24px 15px 42px; }
.helper-diagram path { vector-effect: non-scaling-stroke; }
.diagram-ceiling { fill: #C8C8C8; }
.diagram-wall-left { fill: #767676; }
.diagram-wall-right { fill: #A6A6A6; }
.diagram-floor { fill: #3A3A3A; }
.diagram-wall-finish { fill: #8C8C8C; }
.diagram-existing { fill: #BDBDBD; }
.diagram-detail { fill: #111; }
.diagram-line { fill: none; stroke: rgba(255,255,255,.5); stroke-width: 1; }
.diagram-accent { fill: none; stroke: var(--orange); stroke-width: 8; }
.helper-diagram[data-service="stukadoorswerk"] .diagram-wall,
.helper-diagram[data-service="schilderwerk"] .diagram-wall-finish,
.helper-diagram[data-service="afwerking"] .diagram-detail,
.helper-diagram[data-service="renovatie"] .diagram-existing,
.helper-diagram[data-service="complete-afbouw"] .diagram-ceiling { fill: var(--orange); }
.helper-diagram figcaption { position: absolute; bottom: 12px; left: 14px; font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.helper-diagram-callouts { position: absolute; inset: 0; margin: 0; padding: 0; list-style: none; font-size: 8px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; pointer-events: none; }
.helper-diagram-callouts li { position: absolute; padding: 5px 6px; color: var(--ink); background: var(--white); border-bottom: 2px solid var(--orange); }
.helper-diagram-callouts li:nth-child(1) { top: 43%; left: 6%; }
.helper-diagram-callouts li:nth-child(2) { top: 9%; left: 42%; }
.helper-diagram-callouts li:nth-child(3) { right: 6%; bottom: 18%; }
.helper-choices fieldset { margin: 0; padding: 22px 0 26px; border: 0; border-top: 1px solid var(--line); }
.helper-choices legend { width: 100%; padding: 0 0 15px; font-family: var(--display); font-variation-settings: "wdth" 110; font-stretch: 110%; font-size: 15px; font-weight: 750; line-height: 1.3; }
.helper-choices legend span { width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center; margin-right: 9px; color: var(--ink); background: var(--orange); font-family: var(--body); font-size: 12px; }
.choice-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.choice-grid-services, .choice-grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.choice-grid label { min-height: 52px; display: flex; align-items: center; gap: 9px; padding: 9px 11px; cursor: pointer; background: var(--white); border: 1px solid #8D8D8D; font-size: 12px; font-weight: 650; line-height: 1.3; }
.choice-grid label:hover { border-color: var(--ink); }
.choice-grid label:has(input:checked) { border: 2px solid var(--ink); padding: 8px 10px; }
.choice-grid input { width: 18px; height: 18px; flex: 0 0 auto; accent-color: var(--orange); }
.helper-result { grid-column: 2; padding: 25px 27px; background: var(--soft); border-top: 3px solid var(--orange); }
.helper-result h3 { margin: 0 0 14px; font-family: var(--display); font-variation-settings: "wdth" 115; font-stretch: 115%; font-size: 20px; font-weight: 750; line-height: 1.2; text-transform: uppercase; }
.helper-result ul { margin: 0 0 22px; padding-left: 18px; color: var(--muted); font-size: 13px; }
.helper-result li + li { margin-top: 5px; }
.helper-privacy, .helper-fallback { color: var(--muted); font-size: 11px; }
.helper-privacy { margin: 13px 0 0; }
.helper-fallback { grid-column: 2; margin: -10px 0 0; }

.faq-layout { display: grid; grid-template-columns: minmax(240px, .58fr) minmax(0, 1.42fr); gap: 70px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 65px; display: grid; grid-template-columns: minmax(0, 1fr) 22px; align-items: center; gap: 20px; cursor: pointer; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { justify-self: end; font-size: 24px; font-weight: 400; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 710px; margin: -1px 0 23px; color: var(--muted); font-size: 14px; }

.media-frame { min-width: 0; position: relative; margin: 0; background: var(--grey); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame figcaption { position: absolute; right: 0; bottom: 0; padding: 7px 10px; color: var(--ink); background: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.page-hero { min-height: 390px; display: flex; align-items: center; padding-block: 62px; }
.page-hero > .shell { position: relative; z-index: 1; }
.page-hero-grid { min-height: 430px; display: grid; grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr); align-items: center; gap: 60px; }
.page-hero h1 { max-width: 800px; font-size: clamp(38px, 4.4vw, 54px); line-height: 1.02; }
.service-hero h1 { font-size: clamp(32px, 3.6vw, 46px); }
.service-hero h1.service-title-long { font-size: clamp(30px, 3vw, 38px); }
.page-hero-copy, .contact-hero .shell, .about-hero .shell { min-width: 0; }
.page-hero-copy > p:not(.eyebrow), .page-hero > .shell > p:last-child { max-width: 700px; margin: 24px 0 0; color: #BEBEBE; font-size: 17px; }
.page-hero-copy .button-row { margin-top: 28px; }
.breadcrumbs { margin: 0 0 34px; display: flex; flex-wrap: wrap; gap: 8px; color: #AFAFAF; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumbs a { color: var(--white); }
.service-hero-photo { height: 385px; border: 1px solid rgba(255,255,255,.16); }

.scope-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.scope-grid article { min-height: 220px; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.scope-grid article::before { width: 28px; height: 3px; display: block; content: ""; background: var(--orange); }
.scope-grid h3 { margin: 58px 0 10px; font-family: var(--display); font-variation-settings: "wdth" 115; font-stretch: 115%; font-size: 16px; font-weight: 780; line-height: 1.2; text-transform: uppercase; }
.scope-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.finish-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 80px; }
.plain-checks { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.plain-checks li { display: grid; grid-template-columns: minmax(130px, .45fr) minmax(0, 1fr); gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.plain-checks strong { font-size: 13px; }
.plain-checks span { color: var(--muted); }
.finish-grid .plain-checks li { grid-template-columns: minmax(0, 1fr); font-weight: 700; }
.preparation-grid, .practical-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: 70px; }
.preparation-photo, .practical-photo { height: 520px; }
.preparation-grid ol { margin: 28px 0 31px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.preparation-grid li { min-height: 62px; display: grid; grid-template-columns: 40px minmax(0, 1fr); align-items: center; gap: 12px; border-bottom: 1px solid var(--line); }
.preparation-grid li > span { color: var(--orange-dark); font-size: 11px; font-weight: 800; }
.preparation-grid li p { margin: 0; color: var(--muted); font-size: 14px; }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.related-grid > a { min-height: 235px; display: flex; flex-direction: column; padding: 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-decoration: none; }
.related-grid > a:hover { background: var(--white); }
.related-grid span { font-size: 10px; font-weight: 800; }
.related-grid h3 { margin: 43px 0 10px; font-family: var(--display); font-variation-settings: "wdth" 112; font-stretch: 112%; font-size: 17px; font-weight: 780; line-height: 1.2; text-transform: uppercase; }
.related-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.related-grid b { margin-top: auto; align-self: flex-end; }
.closing-panel { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr); gap: 65px; padding: 38px; background: var(--soft); border-top: 3px solid var(--orange); }
.closing-panel p { color: var(--muted); }

.about-story { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: center; gap: 70px; }
.about-story > div > p:not(.kicker) { color: var(--muted); }
.about-photo { height: 420px; }
.editorial-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 75px; }
.editorial-grid > div:last-child > p { color: var(--muted); font-size: 17px; }
.principles-grid { margin-top: 35px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.principles-grid article { min-height: 210px; padding: 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principles-grid article::before { width: 30px; height: 3px; display: block; margin-bottom: 43px; content: ""; background: var(--orange); }
.principles-grid h2 { font-size: 18px; }
.principles-grid p, .practical-copy p { color: var(--muted); }

.contact-section { background: var(--white); }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.42fr) minmax(280px, .58fr); align-items: start; gap: 78px; }
.contact-form { display: block; }
.form-heading { margin-bottom: 29px; }
.form-heading > p:last-child { color: var(--muted); }
.form-status { color: var(--ink); font-weight: 700; }
.form-status:not(:empty) { margin-bottom: 20px; padding: 13px 16px; background: var(--soft); border-left: 4px solid var(--orange); }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 19px 18px; }
.field { min-width: 0; }
.field-wide { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 6px; font-size: 12px; font-weight: 750; letter-spacing: .04em; }
.field label span { color: var(--muted); font-size: 10px; font-weight: 550; }
.field input:not([type="checkbox"]), .field select, .field textarea { width: 100%; min-height: 51px; padding: 12px 13px; color: var(--ink); background: var(--white); border: 1px solid #A7A7A7; border-radius: 0; }
.field textarea { resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--ink); }
.field [aria-invalid="true"] { border: 2px solid var(--ink); box-shadow: inset 4px 0 0 var(--orange); }
.field-error { min-height: 19px; display: block; padding-top: 3px; font-size: 11px; font-weight: 700; }
.checkbox-field { display: grid; grid-template-columns: 26px minmax(0, 1fr); align-items: start; gap: 8px; }
.checkbox-field input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--orange); }
.checkbox-field label { margin: 0; font-weight: 550; }
.checkbox-field .field-error { grid-column: 2; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.submit-row { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.submit-row p { margin: 0; color: var(--muted); font-size: 11px; }
.contact-sidebar { padding: 27px 0 0 30px; border-top: 3px solid var(--orange); border-left: 1px solid var(--line); }
.contact-sidebar h2 { font-size: 25px; }
.contact-sidebar dl { margin: 25px 0 0; }
.contact-sidebar dl > div { padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-sidebar dt { margin-bottom: 3px; color: var(--orange-dark); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-sidebar dd { margin: 0; overflow-wrap: anywhere; font-weight: 650; }
.contact-sidebar dd small { display: block; color: var(--muted); font-weight: 500; }
.sidebar-identity { margin-top: 36px; }
.sidebar-identity p:last-child { color: var(--muted); }
.preview-note { margin-top: 24px; padding: 14px; background: var(--soft); border-left: 4px solid var(--orange); font-size: 12px; }

.small-page-hero { min-height: 360px; }
.prose-grid { display: grid; grid-template-columns: minmax(160px, .35fr) minmax(0, 1.65fr); gap: 75px; }
.prose-grid aside { align-self: start; display: flex; flex-direction: column; padding-top: 8px; border-top: 3px solid var(--orange); }
.prose-grid aside strong { margin-top: 9px; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.prose-grid aside span { color: var(--muted); }
.prose-grid article { max-width: 760px; }
.prose-grid h2 { margin: 39px 0 9px; font-family: var(--display); font-variation-settings: "wdth" 115; font-stretch: 115%; font-size: 25px; font-weight: 780; line-height: 1.15; text-transform: uppercase; }
.prose-grid h2:first-child { margin-top: 0; }
.prose-grid p { color: var(--muted); }
.prose-grid a { overflow-wrap: anywhere; }
.not-found { min-height: 560px; display: flex; align-items: center; }
.not-found h1 { max-width: 720px; font-size: 50px; line-height: 1; }
.not-found .kicker { color: var(--orange); }
.not-found p:not(.kicker) { color: var(--grey); }

.cta-band { color: var(--ink); background: var(--orange); }
.cta-band .shell { min-height: 128px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-band h2 { margin: 0; font-family: var(--display); font-variation-settings: "wdth" 125; font-stretch: 125%; font-size: clamp(26px, 2.5vw, 30px); font-weight: 800; letter-spacing: -.025em; line-height: 1.05; text-transform: uppercase; }
.cta-band p { margin: 5px 0 0; font-size: 13px; }
.cta-band .button { flex: 0 0 auto; white-space: nowrap; }
.site-footer { padding: 50px 0 20px; color: var(--white); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) repeat(3, minmax(0, 1fr)); gap: 48px; }
.footer-brand img { width: min(190px, 100%); height: auto; }
.footer-brand p { max-width: 320px; margin-top: 18px; color: #BDBDBD; font-size: 13px; }
.footer-grid h2 { margin: 2px 0 15px; color: #BDBDBD; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.footer-grid ul { margin: 0; padding: 0; list-style: none; }
.footer-grid li { margin-bottom: 5px; }
.footer-grid a { color: #D0D0D0; font-size: 13px; text-decoration-color: #707070; text-underline-offset: 3px; }
.footer-grid a:hover { color: var(--orange); }
.footer-grid address { margin: 0; color: #BDBDBD; font-size: 13px; font-style: normal; }
.footer-email { overflow-wrap: anywhere; }
.footer-email-status { color: var(--orange); font-size: 10px; font-weight: 700; }
.footer-bottom { margin-top: 38px; padding-top: 17px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 22px; border-top: 1px solid rgba(255,255,255,.14); color: #9E9E9E; font-size: 9px; letter-spacing: .05em; text-transform: uppercase; }

@media (max-width: 1024px) {
  .site-nav { gap: 18px; }
  .hero-copy { width: 67%; }
  .hero h1 { font-size: 52px; }
  .service-card h3 { font-size: 15px; }
  .page-hero-grid { grid-template-columns: minmax(0, .95fr) minmax(330px, 1.05fr); gap: 42px; }
  .scope-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { gap: 30px; }
}

@media (max-width: 900px) {
  .site-header, .header-inner { min-height: 66px; }
  .brand { width: 148px; }
  .menu-button { display: flex; margin-left: auto; }
  .site-nav { position: absolute; top: 100%; right: 0; left: 0; max-height: calc(100vh - 90px); display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 18px 24px 24px; overflow-y: auto; background: var(--white); border-bottom: 1px solid var(--line); }
  .site-nav[data-open] { display: flex; }
  .site-nav > a:not(.button), .nav-services > summary { min-height: 52px; border-bottom: 1px solid var(--line); font-family: var(--display); font-variation-settings: "wdth" 115; font-stretch: 115%; font-size: 15px; font-weight: 700; text-transform: uppercase; }
  .site-nav > a:not(.button)::after, .nav-services > summary::after { display: none; }
  .nav-services { width: 100%; }
  .nav-services > summary { justify-content: space-between; }
  .services-menu { width: 100%; position: static; padding: 2px 0 10px 14px; border: 0; border-left: 3px solid var(--orange); box-shadow: none; }
  .services-menu a { min-height: 43px; font-family: var(--body); font-size: 13px; text-transform: none; }
  .site-nav .button { width: 100%; margin-top: 17px; }
  .hero-copy { width: 72%; }
  .hero h1 { font-size: 45px; }
  .service-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .comparison-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card-wide { grid-column: 1 / -1; }
  .reason-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid, .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .project-helper, .faq-layout, .finish-grid, .preparation-grid, .practical-grid, .editorial-grid, .about-story, .contact-layout, .prose-grid { grid-template-columns: minmax(0, 1fr); }
  .helper-result, .helper-fallback { grid-column: 1; }
  .helper-diagram { max-width: 420px; }
  .page-hero-grid { min-height: 0; grid-template-columns: minmax(0, 1fr); }
  .service-hero-photo { height: min(62vw, 500px); }
  .scope-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .principles-grid { grid-template-columns: minmax(0, 1fr); }
  .principles-grid article { min-height: 170px; }
  .about-photo, .practical-photo, .preparation-photo { height: min(68vw, 500px); }
  .contact-layout { gap: 55px; }
  .contact-sidebar { padding-left: 0; border-left: 0; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  :root { --shell: calc(100vw - 48px); }
  body { font-size: 15px; }
  .preview-banner { padding-inline: 8px; font-size: 9px; line-height: 1.4; }
  .site-header, .header-inner { min-height: 64px; }
  .brand { width: 142px; }
  .menu-button { min-width: 63px; }
  .site-nav { padding-inline: 24px; }
  .hero { min-height: 650px; }
  .hero::before { background: linear-gradient(90deg, rgba(18,18,18,.93), rgba(18,18,18,.68)), linear-gradient(180deg, rgba(18,18,18,.15) 40%, rgba(18,18,18,.78)); }
  .hero-media { width: 100%; }
  .hero-grid { min-height: 650px; align-items: start; padding-block: 73px 138px; }
  .hero-copy { width: 100%; }
  .hero-copy .eyebrow { display: inline-block; padding: 5px 8px; background: var(--ink); }
  .hero h1 { max-width: 100%; font-size: clamp(30px, 9.2vw, 36px); line-height: .98; }
  .hero-intro { margin-block: 22px 25px; font-size: 14px; line-height: 1.55; }
  .hero .button-row { max-width: 280px; align-items: stretch; flex-direction: column; }
  .hero .button-row .button { width: 100%; }
  .hero-media-meta { right: 24px; bottom: 18px; left: 24px; justify-content: flex-end; }
  .hero-media-caption { display: flex; align-items: center; }
  .section { padding-block: 64px; }
  .section-intro { margin-bottom: 32px; }
  .section-intro h2, .helper-heading h2, .faq-layout h2, .finish-grid h2, .preparation-grid h2, .editorial-grid h2, .form-heading h2, .practical-copy h2, .about-story h2 { font-size: clamp(27px, 8vw, 33px); }
  .before-after-intro h2 { font-variation-settings: "wdth" 110; font-stretch: 110%; font-size: clamp(25px, 7.5vw, 31px); }
  .service-cards, .comparison-grid, .reason-grid, .process-grid, .approach-band .shell, .scope-grid, .related-grid, .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .comparison-card { padding: 15px; }
  .service-card { min-height: 235px; }
  .service-card h3 { font-size: 17px; }
  .service-card-wide { min-height: 250px; grid-column: 1; display: flex; align-items: stretch; gap: 0; padding: 24px 20px 21px; }
  .service-card-wide .line-icon { margin-bottom: 34px; }
  .reason-grid { gap: 25px; }
  .reason-grid article { min-height: 0; }
  .process-grid { gap: 28px; }
  .approach-band .shell { padding-block: 17px; }
  .approach-band span { padding-block: 11px; font-size: 15px; }
  .project-helper { grid-template-columns: minmax(0, 1fr); gap: 26px; }
  .choice-grid, .choice-grid-services, .choice-grid-two { grid-template-columns: minmax(0, 1fr); }
  .helper-result { padding: 22px 19px; }
  .faq-layout { gap: 34px; }
  .faq-list summary { min-height: 62px; font-size: 13px; }
  .page-hero { min-height: 350px; padding-block: 50px; }
  .page-hero h1 { font-size: clamp(29px, 8.5vw, 36px); }
  .service-hero h1 { font-size: clamp(25px, 7.4vw, 32px); }
  .service-hero h1.service-title-long { font-variation-settings: "wdth" 110; font-stretch: 110%; font-size: clamp(24px, 7.2vw, 30px); }
  .small-page-hero h1 { font-variation-settings: "wdth" 110; font-stretch: 110%; font-size: clamp(23px, 7.1vw, 28px); }
  .page-hero-copy > p:not(.eyebrow), .page-hero > .shell > p:last-child { font-size: 15px; }
  .page-hero-grid { gap: 38px; }
  .service-hero-photo, .about-photo, .practical-photo, .preparation-photo { height: 330px; }
  .scope-grid article { min-height: 190px; }
  .closing-panel { grid-template-columns: minmax(0, 1fr); gap: 24px; padding: 26px 20px; }
  .plain-checks li { grid-template-columns: minmax(0, 1fr); gap: 3px; }
  .related-grid > a { min-height: 210px; }
  .field-grid { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .field-wide { grid-column: 1; }
  .checkbox-field { grid-template-columns: 26px minmax(0, 1fr); }
  .submit-row { align-items: stretch; flex-direction: column; }
  .submit-row .button { width: 100%; }
  .prose-grid { gap: 38px; }
  .cta-band .shell { min-height: 170px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 20px; padding-block: 28px; }
  .cta-band h2 { font-size: 28px; }
  .site-footer { padding-top: 42px; }
  .footer-grid { gap: 32px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 360px) {
  :root { --shell: calc(100vw - 40px); }
  .brand { width: 132px; }
  .site-nav { padding-inline: 20px; }
  .hero h1 { font-size: 29px; }
  .hero-media-meta { right: 20px; left: 20px; align-items: flex-end; flex-direction: column; }
  .page-hero h1 { font-size: 28px; }
  .service-hero h1 { font-size: 24px; }
  .service-hero h1.service-title-long { font-variation-settings: "wdth" 110; font-stretch: 110%; font-size: 24px; }
  .small-page-hero h1 { font-variation-settings: "wdth" 110; font-stretch: 110%; font-size: 22px; }
  .prose-grid h2 { font-variation-settings: "wdth" 110; font-stretch: 110%; font-size: 22px; }
  .service-hero-photo, .about-photo, .practical-photo, .preparation-photo { height: 290px; }
  .contact-sidebar h2 { font-size: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-slide:not(:first-child), [data-slideshow-toggle] { display: none !important; }
}
