/* willemlaurentz.com: the Holding's site. Registry-formal, minimal by design.
   Palette from the coat of arms: parchment paper, heraldic red #741519,
   navy #141c38, muted gold rules (the crest keeps the bright gold to itself).
   Typography: the classical system serif stack, letterspaced small-caps labels.
   Zero webfonts, zero scripts: a letterhead, not a landing page. */

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

:root {
	--parchment: #f7f2e8;
	--card: #fffdf7;
	--ink: #23222a;
	--ink-soft: #57555e;
	--red: #741519;
	--navy: #141c38;
	--gold: #b98c3a;
	--line: #e0d7c4;
	--serif: Georgia, 'Times New Roman', 'Songti SC', serif;
}

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

body {
	font-family: var(--serif);
	background: var(--parchment);
	color: var(--ink);
	font-size: 17.5px;
	line-height: 1.75;
}

a { color: var(--red); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy); }
a:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
img { max-width: 100%; height: auto; }
strong { font-weight: 700; }

.sheet { max-width: 680px; margin: 0 auto; padding: 0 24px; }

/* ─── Masthead ────────────────────────────────────────── */
header.sheet {
	text-align: center;
	padding: 72px 24px 18px;
}
header .crest { width: min(300px, 62vw); height: auto; margin: 0 auto 30px; display: block; }
header h1 {
	font-size: clamp(26px, 5vw, 38px); font-weight: 400;
	letter-spacing: 1px; line-height: 1.25;
}
header .est {
	margin-top: 10px;
	font-size: 13px; letter-spacing: 4px; text-transform: uppercase;
	color: var(--ink-soft);
}
header .mission {
	margin: 30px auto 0; max-width: 46ch;
	font-size: clamp(18px, 2.6vw, 21px); font-style: italic; line-height: 1.65;
	color: var(--ink);
}

/* ─── Section furniture: small-caps label between hairlines ── */
section { padding: 46px 0 6px; }
.rule-label {
	display: flex; align-items: center; gap: 18px;
	font-size: 12.5px; letter-spacing: 4px; text-transform: uppercase;
	color: #8a6423; font-weight: 700;
	margin-bottom: 24px;
}
.rule-label::before, .rule-label::after {
	content: ''; flex: 1; border-top: 1px solid var(--line);
}
section p { color: var(--ink-soft); margin: 12px 0; }
section p strong { color: var(--ink); }

/* ─── The crest legend ────────────────────────────────── */
.legend { list-style: none; margin-top: 6px; }
.legend li {
	padding: 9px 2px; color: var(--ink-soft);
	border-bottom: 1px solid var(--line);
	display: flex; gap: 14px; align-items: baseline;
}
.legend li:last-child { border-bottom: none; }
.legend b { font-weight: 700; color: var(--navy); flex: 0 0 7.5em; }

/* ─── Stewardship / UBO ───────────────────────────────── */
.ubo { display: flex; gap: 30px; align-items: flex-start; }
.ubo img {
	width: 148px; height: 148px; flex: 0 0 148px;
	border-radius: 4px; border: 1px solid var(--line);
	box-shadow: 0 6px 18px rgba(35, 34, 42, .12);
}
.ubo div { flex: 1; min-width: 0; }
.ubo p:first-child { margin-top: 0; }

/* ─── Registered ──────────────────────────────────────── */
.registered {
	display: flex; flex-wrap: wrap; gap: 18px 56px;
	color: var(--ink-soft);
}
.registered address { font-style: normal; line-height: 1.8; }
.registered dl { line-height: 1.8; }
.registered dt {
	font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
	color: #8a6423; font-weight: 700; margin-top: 6px;
}
.registered dt:first-child { margin-top: 0; }
.registered dd { margin: 0; }
.copy {
	font: inherit; color: inherit; background: none;
	border: none; border-bottom: 1px dashed var(--gold);
	padding: 0 2px; cursor: copy;
}
.copy:hover { background: rgba(185, 140, 58, .12); }
.copy .done {
	margin-left: 8px; font-size: 12px; letter-spacing: 1.5px;
	text-transform: uppercase; color: #8a6423;
}
.registered .reg-link { font-size: 14px; margin-left: 10px; white-space: nowrap; }

/* ─── Companies ───────────────────────────────────────── */
.companies { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 6px; }
.company {
	display: block; background: var(--card);
	border: 1px solid var(--line); border-radius: 6px;
	padding: 22px 24px; text-decoration: none; color: inherit;
	transition: transform .1s ease, box-shadow .15s ease;
}
.company:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(35, 34, 42, .1); color: inherit; }
.company b { font-size: 19px; font-weight: 700; color: var(--navy); display: block; }
.company span { display: block; margin-top: 6px; font-size: 15px; color: var(--ink-soft); line-height: 1.6; }
.company em { display: block; margin-top: 10px; font-style: normal; font-size: 14px; color: var(--red); }

/* ─── Footer ──────────────────────────────────────────── */
footer {
	margin-top: 56px; padding: 26px 0 44px;
	border-top: 3px double var(--gold);
	text-align: center;
	font-size: 13.5px; color: var(--ink-soft);
	letter-spacing: 0.4px;
}

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 560px) {
	.ubo { flex-direction: column; }
	.companies { grid-template-columns: 1fr; }
	header.sheet { padding-top: 48px; }
	.legend b { flex-basis: 6.5em; }
}
