/* Dachdeckerei Madersbacher – Stylesheet
   Ohne Framework, ohne externe Schriften. Mobile first.
   Farben aus dem Firmenlogo: Ziegelrot, Anthrazit, Grau. */

:root {
	--c-ink: #1f2326;
	--c-text: #2b2f33;
	--c-muted: #5b6166;
	--c-red: #a8171d;
	--c-red-dark: #86111a;
	--c-paper: #f5f3ef;
	--c-line: #e2ddd5;
	--c-slate: #2d3337;
	--c-white: #fff;
	--c-focus: #f2b705;

	--font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
	--radius: 4px;
	--shadow: 0 1px 2px rgb(0 0 0 / .06), 0 6px 20px rgb(0 0 0 / .07);
	--header-h: 4.5rem;
	--gutter: clamp(1rem, 4vw, 2rem);
	--section: clamp(3rem, 7vw, 5.5rem);
}

*, *::before, *::after { box-sizing: border-box; }

html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
	margin: 0;
	font-family: var(--font);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--c-text);
	background: var(--c-white);
	overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4 {
	margin: 0 0 .6em;
	color: var(--c-ink);
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: -.01em;
	text-wrap: balance;
}

p, ul, ol, address { margin: 0 0 1em; }
address { font-style: normal; }

a { color: var(--c-red); text-underline-offset: .18em; }
a:hover { color: var(--c-red-dark); }

:focus-visible {
	outline: 3px solid var(--c-focus);
	outline-offset: 2px;
}

main:focus { outline: none; }

.container {
	width: 100%;
	max-width: 74rem;
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.visually-hidden {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.skip-link {
	position: absolute;
	left: 1rem; top: -4rem;
	z-index: 100;
	padding: .75rem 1rem;
	background: var(--c-ink);
	color: var(--c-white);
	border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; color: var(--c-white); }

.muted { color: var(--c-muted); }
.small { font-size: .9rem; }

.lead {
	font-size: clamp(1.1rem, 1rem + .4vw, 1.25rem);
	line-height: 1.6;
	color: var(--c-text);
}

/* ---------- Icons (SVG-Dateien als Maske, einfärbbar) ---------- */

.icon {
	display: inline-block;
	flex: none;
	width: 1.15em;
	height: 1.15em;
	background: currentColor;
	-webkit-mask: var(--icon) center / contain no-repeat;
	mask: var(--icon) center / contain no-repeat;
}
.icon--phone { --icon: url("../icons/phone.svg"); }
.icon--mail  { --icon: url("../icons/mail.svg"); }

/* ---------- Buttons ---------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .55rem;
	min-height: 3rem;
	padding: .7rem 1.25rem;
	border: 2px solid transparent;
	border-radius: var(--radius);
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn--primary { background: var(--c-red); color: var(--c-white); }
.btn--primary:hover { background: var(--c-red-dark); color: var(--c-white); }
.btn--secondary { background: var(--c-ink); color: var(--c-white); }
.btn--secondary:hover { background: #000; color: var(--c-white); }
.btn--ghost { border-color: rgb(255 255 255 / .85); color: var(--c-white); }
.btn--ghost:hover { background: var(--c-white); color: var(--c-ink); }
.btn--light { background: var(--c-white); color: var(--c-ink); }
.btn--light:hover { background: var(--c-paper); color: var(--c-ink); }
.btn--outline-light { border-color: rgb(255 255 255 / .6); color: var(--c-white); }
.btn--outline-light:hover { background: rgb(255 255 255 / .1); color: var(--c-white); }

.text-link {
	font-weight: 600;
	text-decoration: none;
}
.text-link:hover { text-decoration: underline; }

/* ---------- Topbar & Header ---------- */

.topbar {
	display: none;
	background: var(--c-ink);
	color: #d9dcde;
	font-size: .875rem;
}
.topbar__inner {
	display: flex;
	justify-content: flex-end;
	gap: 1.75rem;
	padding-block: .45rem;
}
.topbar__item { display: inline-block; padding-block: .15rem; color: inherit; text-decoration: none; }
.topbar__item { white-space: nowrap; }
.topbar__item:first-child { display: none; margin-right: auto; }
@media (min-width: 64em) { .topbar__item:first-child { display: inline-block; } }
a.topbar__item:hover { color: var(--c-white); text-decoration: underline; }

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--c-white);
	border-bottom: 1px solid var(--c-line);
}
.site-header__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: .5rem 1rem;
	min-height: var(--header-h);
	padding-block: .5rem;
}

.brand { display: block; flex: none; }
.brand img { width: 11rem; height: auto; }

.nav-toggle {
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	min-height: 3rem;
	padding: .5rem .9rem;
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	background: var(--c-white);
	color: var(--c-ink);
	font: inherit;
	font-weight: 600;
	cursor: pointer;
}
.nav-toggle[hidden] { display: none; }
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
	display: block;
	width: 1.25rem;
	height: 2px;
	background: currentColor;
	transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before,
.nav-toggle__bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-6px) rotate(-45deg); }

.main-nav { width: 100%; }
.main-nav__list {
	display: flex;
	flex-wrap: wrap;
	gap: .25rem 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}
.main-nav__list a {
	display: flex;
	align-items: center;
	min-height: 2.75rem;
	color: var(--c-ink);
	font-weight: 600;
	text-decoration: none;
	border-bottom: 3px solid transparent;
}
.main-nav__list a:hover { color: var(--c-red); }
.main-nav__list a[aria-current="page"] { border-bottom-color: var(--c-red); }
.main-nav__call { display: none; }

/* Mobilmenü (nur wenn JavaScript das Umschalten übernimmt) */
.has-js-nav .main-nav { display: none; }
.has-js-nav.is-open .main-nav {
	display: block;
	padding-bottom: 1rem;
}
.has-js-nav .main-nav__list { flex-direction: column; gap: 0; }
.has-js-nav .main-nav__list a {
	min-height: 3.25rem;
	border-bottom: 1px solid var(--c-line);
	font-size: 1.125rem;
}
.has-js-nav .main-nav__list a[aria-current="page"] {
	color: var(--c-red);
	border-bottom-color: var(--c-line);
	box-shadow: inset 4px 0 0 var(--c-red);
	padding-left: .9rem;
}
.has-js-nav.is-open .main-nav__call {
	display: flex;
	width: 100%;
	margin-top: 1rem;
}

@media (min-width: 48em) {
	.topbar { display: block; }
	.brand img { width: 15rem; }
}

@media (min-width: 64em) {
	:root { --header-h: 5.5rem; }
	.nav-toggle, .nav-toggle:not([hidden]) { display: none; }
	.main-nav,
	.has-js-nav .main-nav {
		display: flex;
		align-items: center;
		gap: 1.75rem;
		width: auto;
		padding: 0;
	}
	.has-js-nav .main-nav__list,
	.main-nav__list { flex-direction: row; gap: 1.5rem; }
	.has-js-nav .main-nav__list a,
	.main-nav__list a {
		min-height: var(--header-h);
		font-size: 1rem;
		border-bottom: 3px solid transparent;
		box-shadow: none;
		padding-left: 0;
	}
	.has-js-nav .main-nav__list a[aria-current="page"],
	.main-nav__list a[aria-current="page"] { color: var(--c-ink); border-bottom-color: var(--c-red); box-shadow: none; padding-left: 0; }
	.main-nav__call,
	.has-js-nav .main-nav__call { display: inline-flex; width: auto; margin: 0; }
	.site-header__inner { flex-wrap: nowrap; padding-block: 0; }
	.brand img { width: 16.25rem; }
}

/* ---------- Hero ---------- */

.hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: clamp(30rem, 78vh, 42rem);
	color: var(--c-white);
	background: var(--c-ink);
	isolation: isolate;
}
.hero picture { position: absolute; inset: 0; z-index: -2; }
.hero__image { width: 100%; height: 100%; object-fit: cover; object-position: 60% 40%; }
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgb(20 22 24 / .15) 0%, rgb(20 22 24 / .55) 45%, rgb(20 22 24 / .88) 100%);
}
.hero__content { padding-block: 3rem clamp(2.5rem, 7vw, 5rem); }
.hero__kicker {
	display: inline-block;
	margin-bottom: 1rem;
	padding: .3rem .7rem;
	background: var(--c-red);
	font-size: .85rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
}
.hero__title {
	max-width: 16ch;
	color: var(--c-white);
	font-size: clamp(2.25rem, 1.5rem + 4vw, 4rem);
	letter-spacing: -.02em;
}
.hero__lead {
	max-width: 38rem;
	font-size: clamp(1.1rem, 1rem + .5vw, 1.3rem);
	color: #eef0f1;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }

@media (min-width: 62em) {
	.hero { align-items: center; }
	.hero::before {
		background: linear-gradient(90deg, rgb(20 22 24 / .88) 0%, rgb(20 22 24 / .6) 45%, rgb(20 22 24 / .1) 80%);
	}
}

/* ---------- Abschnitte ---------- */

.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(2rem, 5vw, 3.5rem); }
.section--muted { background: var(--c-paper); }
.section__title { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.25rem); }
.section__head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: .5rem 1.5rem;
	margin-bottom: 1.5rem;
}
.section__head .section__title { margin: 0; }

.intro { max-width: 46rem; margin-bottom: 2.5rem; }
.intro .section__title::after,
.profile .section__title::after,
.service .section__title::after {
	content: "";
	display: block;
	width: 3rem;
	height: 4px;
	margin-top: .75rem;
	background: var(--c-red);
}

/* Leistungskarten */
.cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
	gap: 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}
.card {
	background: var(--c-white);
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: box-shadow .2s ease, border-color .2s ease;
}
.card:hover { box-shadow: var(--shadow); border-color: #d2ccc2; }
.card__link { display: flex; flex-direction: column; height: 100%; color: inherit; text-decoration: none; }
.card__image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card__body { display: flex; flex-direction: column; flex: 1; padding: 1.25rem 1.25rem 1.4rem; }
.card__title { margin-bottom: .6rem; font-size: 1.25rem; font-weight: 700; color: var(--c-ink); }
.card__list { display: flex; flex-direction: column; gap: .15rem; margin-bottom: 1rem; color: var(--c-muted); }
.card__list span::before { content: "– "; color: var(--c-red); }
.card__more { margin-top: auto; color: var(--c-red); font-weight: 600; }
.card__link:hover .card__more { text-decoration: underline; }

/* Steckbrief */
.profile { display: grid; gap: 2rem; align-items: start; }
.profile__image { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.timeline { margin: 0 0 1.5rem; padding: 0; list-style: none; border-left: 3px solid var(--c-line); }
.timeline li { position: relative; padding: 0 0 1.1rem 1.5rem; }
.timeline li::before {
	content: "";
	position: absolute;
	left: -9px; top: .45rem;
	width: 15px; height: 15px;
	border: 3px solid var(--c-red);
	border-radius: 50%;
	background: var(--c-paper);
}
.timeline__year { display: block; font-weight: 700; color: var(--c-red); font-size: 1.1rem; }
.timeline p { margin: 0; }

@media (min-width: 62em) {
	.profile { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 4rem; }
	.profile__media { position: sticky; top: calc(var(--header-h) + 2rem); }
}

/* Foto-Teaser */
.photo-strip {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: .75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}
.photo-strip a { position: relative; display: block; overflow: hidden; border-radius: var(--radius); color: var(--c-white); text-decoration: none; }
.photo-strip__image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .3s ease; }
.photo-strip a:hover .photo-strip__image { transform: scale(1.03); }
.photo-strip__label {
	position: absolute;
	inset: auto 0 0 0;
	padding: 1.5rem .75rem .6rem;
	background: linear-gradient(transparent, rgb(0 0 0 / .75));
	font-weight: 600;
	font-size: .875rem;
	line-height: 1.3;
	overflow-wrap: anywhere;
	hyphens: auto;
}
@media (min-width: 62em) {
	.photo-strip__label { font-size: .95rem; }
	.photo-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
}

/* Kontaktband */
.contact-band { background: var(--c-slate); color: #e7e9ea; padding-block: clamp(2.5rem, 6vw, 4rem); }
.contact-band__inner { display: grid; gap: 1.5rem; align-items: center; }
.contact-band__title { color: var(--c-white); font-size: clamp(1.35rem, 1.1rem + 1vw, 1.75rem); max-width: 30ch; }
.contact-band p { margin: 0; }
.contact-band__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
@media (min-width: 62em) {
	.contact-band__inner { grid-template-columns: 1fr auto; gap: 3rem; }
}

/* ---------- Seitenkopf ---------- */

.page-head {
	position: relative;
	padding-block: clamp(2rem, 5vw, 3.5rem);
	background: var(--c-paper);
	border-bottom: 1px solid var(--c-line);
	isolation: isolate;
}
.page-head__title { font-size: clamp(2rem, 1.4rem + 2.6vw, 3rem); margin-bottom: .4em; }
.page-head__lead { max-width: 44rem; font-size: 1.15rem; color: var(--c-muted); }
.page-head--image { color: var(--c-white); background: var(--c-ink); border: 0; padding-block: clamp(3rem, 9vw, 6rem) clamp(2rem, 5vw, 3rem); }
.page-head--image picture { position: absolute; inset: 0; z-index: -2; }
.page-head__image { width: 100%; height: 100%; object-fit: cover; }
.page-head--image::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgb(20 22 24 / .45), rgb(20 22 24 / .85)); }
.page-head--image .page-head__title { color: var(--c-white); }
.page-head--image .breadcrumb, .page-head--image .breadcrumb a { color: #e5e7e8; }

.breadcrumb { margin-bottom: .75rem; font-size: .9rem; color: var(--c-muted); }
.breadcrumb a { display: inline-block; padding-block: .2rem; color: var(--c-muted); }

.chip-nav { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.25rem 0 0; padding: 0; list-style: none; }
.chip-nav a {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	min-height: 2.75rem;
	padding: .35rem .95rem;
	border: 1px solid var(--c-line);
	border-radius: 999px;
	background: var(--c-white);
	color: var(--c-ink);
	font-weight: 600;
	font-size: .95rem;
	text-decoration: none;
}
.chip-nav a:hover { border-color: var(--c-red); color: var(--c-red); }
.chip-nav__count { color: var(--c-muted); font-weight: 400; font-size: .85rem; }
.page-head--image .chip-nav a { background: rgb(255 255 255 / .12); border-color: rgb(255 255 255 / .45); color: var(--c-white); }
.page-head--image .chip-nav a:hover { background: var(--c-white); color: var(--c-ink); }

/* ---------- Leistungen ---------- */

.service__grid { display: grid; gap: 2rem; align-items: center; }
.service__image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
@media (min-width: 62em) {
	.service__grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 4rem; }
	.service--flip .service__media { order: 2; }
	.service--flip .service__grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
}

.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: .35rem 0 .35rem 1.9rem; border-bottom: 1px solid var(--c-line); break-inside: avoid; }
.check-list li::before {
	content: "";
	position: absolute;
	left: .25rem; top: .8rem;
	width: .45rem; height: .8rem;
	border: solid var(--c-red);
	border-width: 0 3px 3px 0;
	transform: rotate(45deg);
}
@media (min-width: 40em) {
	.check-list--columns { columns: 2; column-gap: 2.5rem; }
}

/* ---------- Fotos ---------- */

.gallery { padding-block: 2rem; border-bottom: 1px solid var(--c-line); }
.gallery:last-child { border-bottom: 0; }
.gallery__title { display: flex; flex-wrap: wrap; align-items: baseline; gap: .25rem .75rem; font-size: clamp(1.4rem, 1.2rem + .8vw, 1.75rem); }
.gallery__count { font-size: .95rem; font-weight: 400; color: var(--c-muted); }
.gallery__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: .5rem;
	margin: 0 0 .75rem;
	padding: 0;
	list-style: none;
}
.gallery__item { display: block; overflow: hidden; border-radius: var(--radius); background: var(--c-paper); }
.gallery__image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .3s ease, opacity .3s ease; }
.gallery__item:hover .gallery__image { transform: scale(1.03); }
.gallery__top { margin: 0; text-align: right; font-size: .9rem; }
.gallery__top a { text-decoration: none; }
@media (min-width: 40em) { .gallery__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .75rem; } }
@media (min-width: 75em) { .gallery__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.lightbox {
	width: 100vw;
	max-width: 100vw;
	height: 100vh;
	height: 100dvh;
	max-height: 100dvh;
	margin: 0;
	padding: 0;
	border: 0;
	background: rgb(12 13 14 / .96);
	color: var(--c-white);
}
.lightbox::backdrop { background: rgb(0 0 0 / .6); }
.lightbox[open] { display: flex; align-items: center; justify-content: center; }
.lightbox__figure { margin: 0; padding: 3.5rem 1rem 1rem; text-align: center; }
.lightbox__figure img { max-width: min(92vw, 1440px); max-height: calc(100dvh - 8rem); width: auto; height: auto; margin-inline: auto; }
.lightbox__caption { margin-top: .75rem; font-size: .95rem; color: #d7dadb; }
.lightbox__btn {
	position: absolute;
	display: grid;
	place-items: center;
	width: 3rem; height: 3rem;
	border: 0;
	border-radius: 50%;
	background: rgb(255 255 255 / .12);
	color: var(--c-white);
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
}
.lightbox__btn:hover { background: rgb(255 255 255 / .25); }
.lightbox__close { top: .75rem; right: .75rem; }
.lightbox__prev { left: .75rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: .75rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 39.99em) {
	.lightbox__prev, .lightbox__next { top: auto; bottom: 1rem; transform: none; }
}

/* ---------- Kontakt ---------- */

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr)); gap: 1.25rem; margin-bottom: 2rem; }
.contact-card { padding: 1.5rem; border: 1px solid var(--c-line); border-radius: var(--radius); background: var(--c-white); }
.contact-card--primary { border-top: 4px solid var(--c-red); }
.contact-card__title { font-size: 1rem; text-transform: uppercase; letter-spacing: .06em; color: var(--c-muted); }
.contact-card__big { font-size: 1.6rem; font-weight: 700; color: var(--c-ink); text-decoration: none; overflow-wrap: anywhere; }
.contact-card__big--small { font-size: 1.15rem; }
.contact-card__big:hover { color: var(--c-red); text-decoration: underline; }
.contact-note { max-width: 46rem; }
.contact-note a { overflow-wrap: anywhere; }

/* ---------- Rechtstexte ---------- */

.prose { max-width: 50rem; }
.prose h2 { margin-top: 2rem; font-size: 1.45rem; }
.prose h3 { margin-top: 1.5rem; font-size: 1.15rem; }
.prose p { overflow-wrap: break-word; hyphens: auto; }

.review-note {
	margin-bottom: 2rem;
	padding: 1.1rem 1.25rem;
	border: 1px solid #e6c65c;
	border-left: 6px solid #d9a300;
	border-radius: var(--radius);
	background: #fff8e1;
	color: #3d3200;
	font-size: .95rem;
}
.review-note__title { font-weight: 700; margin-bottom: .4rem; }
.review-note ul { margin: 0; padding-left: 1.2rem; }

/* ---------- Footer ---------- */

.site-footer { background: var(--c-ink); color: #c9cdd0; font-size: .95rem; }
.site-footer a { color: #eef0f1; }
.site-footer a:hover { color: var(--c-white); }
.site-footer__grid { display: grid; gap: 2rem; padding-block: 3rem 2rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr)); }
.site-footer__name { color: var(--c-white); font-weight: 700; font-size: 1.1rem; margin-bottom: .3rem; }
.site-footer__title { color: var(--c-white); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; }
.site-footer__links { margin: 0; padding: 0; list-style: none; }
.site-footer__links a { display: inline-flex; align-items: center; min-height: 2.25rem; text-decoration: none; }
.site-footer__links a:hover { text-decoration: underline; }
.site-footer__bottom { padding-block: 1.25rem; border-top: 1px solid rgb(255 255 255 / .12); font-size: .875rem; }
.site-footer__bottom p { margin: 0; }
.site-footer address a { overflow-wrap: anywhere; }

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

@media print {
	.topbar, .nav-toggle, .main-nav, .contact-band, .skip-link, .lightbox { display: none !important; }
	.site-header { position: static; }
	.hero { min-height: 0; color: var(--c-ink); background: none; }
	.hero picture, .hero::before { display: none; }
	.hero__title, .hero__lead { color: var(--c-ink); }
}
