/* dsd164.com: the road-sign design system. The company is named after its street
   (Dalsteindreef 164) and its logo is set in the official ANWB road-sign typeface,
   so the site speaks Dutch road signage: sign blue #004FA4 (the B is 164) on
   daylight paper, white-bordered blue panels, hectometre-post timeline markers,
   dashed lane-marking dividers. Light and calm: the games are dark, the company
   is daylight. */

@font-face {
	font-family: 'ANWB Heavy';
	src: url('../fonts/anwbuzwa.woff2') format('woff2');
	font-weight: 400;
	font-display: swap;
	unicode-range: U+0020, U+0027, U+002C-002E, U+0030-003A, U+0041-005A, U+0061-007A;
}
@font-face {
	font-family: 'ANWB';
	src: url('../fonts/anwbureg.woff2') format('woff2');
	font-weight: 400;
	font-display: swap;
	unicode-range: U+0020, U+0027, U+002C-002E, U+0030-003A, U+0041-005A, U+0061-007A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
	--sign-blue: #004FA4;
	--sign-deep: #003a78;
	--paper: #eef1f4;
	--card: #ffffff;
	--ink: #1c2126;
	--ink-soft: #4c545e;
	--asphalt: #24262b;
	--line: #c9cfd6;
	--post-green: #00734d;
	--display: 'ANWB Heavy', 'Arial Black', sans-serif;
	--sign-face: 'ANWB', Arial, sans-serif;
	--body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

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

body {
	font-family: var(--body);
	background: var(--paper);
	color: var(--ink);
	font-size: 16.5px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

a { color: var(--sign-blue); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--sign-blue); outline-offset: 3px; border-radius: 4px; }
img { max-width: 100%; height: auto; }
strong { font-weight: 600; color: var(--ink); }

.wrap { max-width: 960px; margin: 0 auto; padding: 0 22px; }

/* ─── Nav ─────────────────────────────────────────────── */
nav {
	display: flex; align-items: center; justify-content: space-between;
	gap: 10px 16px; flex-wrap: wrap;
	max-width: 960px; margin: 0 auto; padding: 18px 22px;
}
nav .logo { display: flex; align-items: center; text-decoration: none; }
nav .logo img { width: 92px; height: auto; display: block; }
nav .links { display: flex; align-items: center; gap: 4px 20px; flex-wrap: wrap; }
nav .links a {
	font-family: var(--sign-face); font-size: 14px; letter-spacing: 0.4px;
	color: var(--ink-soft); text-decoration: none; padding: 6px 2px;
}
nav .links a:hover { color: var(--sign-blue); }
nav .links a.talk {
	font-family: var(--display); color: #fff;
	background: var(--sign-blue); padding: 10px 20px; border-radius: 10px;
	box-shadow: inset 0 0 0 2px rgba(255,255,255,.55), 0 2px 8px rgba(0,79,164,.3);
}
nav .links a.talk:hover { background: var(--sign-deep); }

/* ─── Hero ────────────────────────────────────────────── */
.hero { padding: 44px 0 12px; }
.hero .wrap {
	display: grid; grid-template-columns: minmax(0, 11fr) minmax(0, 9fr);
	gap: 48px; align-items: center;
}
.hero h1 {
	font-family: var(--display); font-size: clamp(30px, 4.6vw, 46px);
	line-height: 1.18; letter-spacing: 0.2px;
}
.hero h1 .blue { color: var(--sign-blue); }
.hero .lede { margin-top: 18px; color: var(--ink-soft); max-width: 54ch; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.btn {
	font-family: var(--display); font-size: 15px; text-decoration: none;
	padding: 13px 24px; border-radius: 10px; display: inline-block;
	transition: transform .08s, box-shadow .12s, background .12s;
}
.btn.primary {
	background: var(--sign-blue); color: #fff;
	box-shadow: inset 0 0 0 2px rgba(255,255,255,.55), 0 3px 10px rgba(0,79,164,.35);
}
.btn.primary:hover { background: var(--sign-deep); transform: translateY(-1px); }
.btn.ghost {
	color: var(--sign-blue); background: var(--card);
	box-shadow: inset 0 0 0 2px var(--sign-blue);
}
.btn.ghost:hover { transform: translateY(-1px); }

/* The hero road sign: blue panel, white inset border, destination rows */
.sign {
	background: var(--sign-blue); border-radius: 16px;
	padding: 26px 26px 14px;
	box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 5px var(--sign-blue),
		0 14px 30px rgba(0, 42, 88, .35);
	max-width: 400px; margin: 0 auto;
}
.sign .mark { width: 62%; max-width: 220px; display: block; margin: 6px auto 20px; }
.sign .rows { border-top: 2px solid rgba(255,255,255,.55); }
.sign .row {
	display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
	padding: 11px 2px;
	border-bottom: 2px solid rgba(255,255,255,.25);
	font-family: var(--sign-face); color: #fff; font-size: 17.5px;
}
.sign .row:last-child { border-bottom: none; }
.sign .row b { font-family: var(--display); font-weight: 400; font-size: 16.5px; }

/* ─── Proof strip ─────────────────────────────────────── */
.proof { margin-top: 40px; border-top: 2px solid var(--line); border-bottom: 2px solid var(--line); }
.proof .wrap {
	display: flex; flex-wrap: wrap; gap: 8px 36px; justify-content: center;
	padding: 15px 22px; font-family: var(--sign-face); font-size: 14px;
	letter-spacing: 0.6px; color: var(--ink-soft);
}
.proof b { font-family: var(--display); font-weight: 400; color: var(--sign-blue); }

/* ─── Sections ────────────────────────────────────────── */
section { padding: 64px 0 10px; }
.eyebrow {
	font-family: var(--sign-face); font-size: 13px; letter-spacing: 2.5px;
	color: var(--post-green); text-transform: uppercase;
}
h2 {
	font-family: var(--display); font-weight: 400;
	font-size: clamp(24px, 3.6vw, 34px); line-height: 1.25; margin: 8px 0 16px;
}
.section-intro { color: var(--ink-soft); max-width: 62ch; }
.section-intro + .section-intro { margin-top: 12px; }

/* dashed lane-marking divider */
.lane { max-width: 960px; margin: 54px auto 0; padding: 0 22px; }
.lane div { border-top: 4px dashed var(--line); }

/* ─── Timeline: hectometre posts ──────────────────────── */
.timeline { list-style: none; margin-top: 30px; position: relative; padding-left: 30px; }
.timeline::before {
	content: ''; position: absolute; left: 9px; top: 8px; bottom: 8px;
	border-left: 4px dashed var(--line);
}
.timeline li { position: relative; padding: 0 0 30px 76px; }
.timeline li:last-child { padding-bottom: 6px; }
.timeline .post {
	position: absolute; left: -30px; top: 0;
	width: 92px; text-align: center;
	background: var(--post-green); color: #fff;
	font-family: var(--display); font-size: 15px; line-height: 1;
	padding: 9px 6px 7px; border-radius: 7px;
	box-shadow: inset 0 0 0 2px rgba(255,255,255,.65), 0 2px 6px rgba(0,0,0,.18);
}
.timeline h3 { font-family: var(--display); font-weight: 400; font-size: 18.5px; margin-bottom: 5px; }
.timeline p { color: var(--ink-soft); font-size: 15.5px; max-width: 60ch; }

/* ─── The name section: street sign ───────────────────── */
.street-sign {
	display: inline-block; margin: 22px 0 6px;
	background: var(--sign-blue); color: #fff;
	font-family: var(--sign-face); font-size: clamp(19px, 3vw, 26px);
	letter-spacing: 0.5px; padding: 13px 26px; border-radius: 10px;
	box-shadow: inset 0 0 0 2.5px #fff, inset 0 0 0 4.5px var(--sign-blue),
		0 6px 16px rgba(0, 42, 88, .3);
}

/* ─── Work archive ────────────────────────────────────── */
.work-grid {
	display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
	gap: 16px; margin-top: 28px;
}
.wcard {
	background: var(--card); border-radius: 12px; padding: 18px;
	border: 1px solid var(--line);
	display: flex; flex-direction: column; gap: 7px;
	text-decoration: none; color: inherit;
	transition: transform .1s, box-shadow .15s;
}
a.wcard:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(28,33,38,.12); }
.wcard img {
	border-radius: 8px; border: 1px solid var(--line);
	width: 100%; height: 210px; object-fit: cover; object-position: top;
	margin-bottom: 4px;
}
.wcard .yr {
	align-self: flex-start;
	font-family: var(--display); font-size: 12.5px; color: #fff;
	background: var(--sign-blue); border-radius: 6px; padding: 4px 9px 3px;
	box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.5);
}
.wcard b { font-family: var(--display); font-weight: 400; font-size: 16.5px; line-height: 1.3; }
.wcard span { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
.wcard .go { font-family: var(--sign-face); font-size: 13.5px; color: var(--sign-blue); margin-top: auto; }

/* ─── Live today: big sign links ──────────────────────── */
.live-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-top: 28px; }
.live-sign {
	display: flex; justify-content: space-between; align-items: center; gap: 12px;
	background: var(--sign-blue); color: #fff; text-decoration: none;
	font-family: var(--display); font-size: clamp(16px, 2vw, 19px);
	padding: 22px 22px; border-radius: 12px;
	box-shadow: inset 0 0 0 2.5px rgba(255,255,255,.6), inset 0 0 0 4.5px var(--sign-blue),
		0 6px 16px rgba(0, 42, 88, .28);
	transition: transform .1s, background .12s;
}
.live-sign small { display: block; font-family: var(--sign-face); font-size: 12.5px; opacity: .85; margin-top: 4px; }
.live-sign .arrow { font-family: var(--sign-face); font-size: 26px; line-height: 1; }
.live-sign:hover { background: var(--sign-deep); transform: translateY(-2px); }
.live-more { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 18px; font-size: 15px; }

/* ─── Guides ──────────────────────────────────────────── */
.guides-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin-top: 28px; }
.gcard {
	background: var(--card); border: 1px solid var(--line); border-radius: 12px;
	padding: 20px; text-decoration: none; color: inherit;
	transition: transform .1s, box-shadow .15s;
}
.gcard:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(28,33,38,.12); }
.gcard b { font-family: var(--display); font-weight: 400; font-size: 16px; color: var(--sign-blue); display: block; margin-bottom: 6px; }
.gcard span { font-size: 14.5px; color: var(--ink-soft); }

/* ─── FAQ ─────────────────────────────────────────────── */
.faq { max-width: 760px; }
.faq details { border-bottom: 2px solid var(--line); padding: 4px 0; }
.faq summary {
	font-family: var(--display); font-size: 15.5px; line-height: 1.5;
	padding: 14px 4px; cursor: pointer; list-style: none;
	display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--sign-blue); font-size: 19px; flex-shrink: 0; }
.faq details[open] summary::after { content: '-'; }
.faq details p { padding: 0 4px 16px; color: var(--ink-soft); font-size: 15.5px; max-width: 64ch; }

/* ─── Finale ──────────────────────────────────────────── */
.finale { text-align: center; padding-bottom: 30px; }
.finale .cta-row { justify-content: center; }

/* ─── Footer: asphalt ─────────────────────────────────── */
footer {
	background: var(--asphalt); color: #c6ccd4;
	margin-top: 64px; padding: 0 0 44px;
}
footer .stripe { border-top: 5px dashed #8b929b; opacity: .5; }
footer .wrap { padding-top: 36px; }
footer .cols { display: flex; flex-wrap: wrap; gap: 26px 60px; align-items: flex-start; }
footer img.mark { width: 110px; height: auto; }
footer h4 {
	font-family: var(--sign-face); font-size: 13px; letter-spacing: 2px;
	color: #9aa1aa; text-transform: uppercase; margin-bottom: 10px; font-weight: 400;
}
footer ul { list-style: none; }
footer li { margin: 5px 0; font-size: 14.5px; }
footer a { color: #e6eaee; text-decoration: none; }
footer a:hover { text-decoration: underline; }
footer address { font-style: normal; font-size: 14.5px; line-height: 1.8; }
footer .legal {
	margin-top: 30px; padding-top: 16px; border-top: 1px solid rgba(198,204,212,.25);
	font-family: var(--sign-face); font-size: 12.5px; letter-spacing: 0.5px; color: #9aa1aa;
}

/* ─── Guide article pages ─────────────────────────────── */
.article { max-width: 740px; margin: 0 auto; padding: 36px 22px 10px; }
.article .crumbs { font-family: var(--sign-face); font-size: 13px; letter-spacing: 1px; color: var(--ink-soft); }
.article .crumbs a { color: var(--ink-soft); text-decoration: none; }
.article .crumbs a:hover { color: var(--sign-blue); }
.article h1 {
	font-family: var(--display); font-weight: 400;
	font-size: clamp(26px, 4.4vw, 38px); line-height: 1.22; margin: 18px 0 10px;
}
.article h2 { font-family: var(--display); font-weight: 400; font-size: 21px; margin: 34px 0 10px; }
.article p, .article li { color: var(--ink-soft); }
.article p { margin: 13px 0; }
.article ul, .article ol { margin: 13px 0 13px 26px; }
.article li { margin: 6px 0; }
.article em { font-style: italic; }
.article .cta-line {
	background: var(--card); border: 1px solid var(--line); border-radius: 12px;
	padding: 16px 20px; margin: 26px 0; color: var(--ink-soft);
}
.article .next {
	font-family: var(--sign-face); font-size: 14px; letter-spacing: 0.5px;
	margin-top: 34px; padding-top: 18px; border-top: 2px solid var(--line);
	color: var(--ink-soft);
}

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 780px) {
	.hero .wrap { grid-template-columns: 1fr; gap: 30px; }
	.hero .sign-col { grid-row: 1; }
	.sign { max-width: 330px; }
	.live-grid { grid-template-columns: 1fr; }
	section { padding-top: 48px; }
	.timeline li { padding-left: 66px; }
	.timeline .post { width: 82px; font-size: 13.5px; }
}
