/* =============================================================
   Kirsten Leslie — one stylesheet, no build step, no framework.
   Scroll animations are pure CSS (animation-timeline: view()).
   ============================================================= */

:root {
	--paper: #f3f2ed;
	--paper-2: #e9e7e0;
	--ink: #0e0e0d;
	--ink-2: #4a4a45;
	--ink-3: #7b7a73;
	--rule: #d3d0c6;
	--accent: #1f3bff;
	--accent-soft: #dfe3ff;
	--bar: 62px;
	--wrap: 1180px;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--bar) + 16px);
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: ui-sans-serif, system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
	font-size: 17px;
	line-height: 1.6;
	font-synthesis-weight: none;
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
	margin: 0 0 0.4em;
	font-weight: 500;
	letter-spacing: -0.035em;
	line-height: 0.98;
	text-wrap: balance;
}

h1 {
	font-size: clamp(2.9rem, 7.5vw, 6rem);
}
h2 {
	font-size: clamp(2rem, 4.4vw, 3.4rem);
}
h3 {
	font-size: 1.18rem;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

p {
	margin: 0 0 1em;
	color: var(--ink-2);
	text-wrap: pretty;
}

a {
	color: inherit;
	text-decoration: none;
}

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

button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
}

::selection {
	background: var(--accent);
	color: #fff;
}

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

/* ---------- layout ---------- */
.wrap {
	width: 100%;
	max-width: var(--wrap);
	margin-inline: auto;
	padding-inline: clamp(18px, 4vw, 34px);
}

.sect {
	padding-block: clamp(56px, 8vw, 104px);
	border-top: 1px solid var(--rule);
}

.narrow {
	max-width: 720px;
}

.lede {
	font-size: clamp(1.05rem, 1.8vw, 1.3rem);
	line-height: 1.5;
	color: var(--ink);
	letter-spacing: -0.015em;
	max-width: 30ch;
}

.label {
	display: block;
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ink-3);
	margin-bottom: 18px;
}

.num {
	font-variant-numeric: tabular-nums;
}

/* Two-column section: sticky index on the left, content on the right */
.split {
	display: grid;
	grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
	gap: clamp(24px, 5vw, 70px);
	align-items: start;
}

.split > .side {
	position: sticky;
	top: calc(var(--bar) + 30px);
}

.side h2 {
	margin-bottom: 14px;
}

/* ---------- top bar ---------- */
.skip {
	position: absolute;
	left: -9999px;
}

.skip:focus {
	left: 12px;
	top: 12px;
	z-index: 200;
	background: var(--ink);
	color: var(--paper);
	padding: 10px 16px;
}

.bar {
	position: sticky;
	top: 0;
	z-index: 100;
	height: var(--bar);
	display: flex;
	align-items: center;
	background: var(--paper);
	border-bottom: 1px solid var(--rule);
}

.bar-in {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.mark {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
	letter-spacing: -0.02em;
}

.mark i {
	width: 13px;
	height: 13px;
	background: var(--accent);
	transition: transform 0.4s;
}

.mark:hover i {
	transform: rotate(45deg);
}

.links {
	display: flex;
	gap: 4px;
	margin-left: auto;
}

.links a {
	position: relative;
	padding: 6px 12px;
	font-size: 0.9rem;
	color: var(--ink-2);
	overflow: hidden;
}

.links a::after {
	content: '';
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 4px;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.35s;
}

.links a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

/* the button to the right covers this on desktop */
.links .m-only {
	display: none;
}

.links a[aria-current='page'] {
	color: var(--ink);
}

.links a[aria-current='page']::after {
	transform: scaleX(1);
	background: var(--accent);
}

.bar .go {
	margin-left: 16px;
}

.burger {
	display: none;
	width: 38px;
	height: 32px;
	border: 1px solid var(--rule);
	background: none;
	cursor: pointer;
	position: relative;
}

.burger span,
.burger::before,
.burger::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 15px;
	height: 1.5px;
	background: var(--ink);
	transform: translate(-50%, -50%);
	transition: transform 0.3s;
}

.burger::before {
	transform: translate(-50%, -5px);
}

.burger::after {
	transform: translate(-50%, 4px);
}

.burger[aria-expanded='true']::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.burger[aria-expanded='true']::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.burger[aria-expanded='true'] span {
	opacity: 0;
}

/* ---------- buttons ---------- */
.go {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 13px 22px;
	border: 1px solid var(--ink);
	background: none;
	font-size: 0.92rem;
	font-weight: 500;
	cursor: pointer;
	overflow: hidden;
	isolation: isolate;
	transition: color 0.3s;
}

.go::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	background: var(--ink);
	transform: translateY(100%);
	transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.go:hover {
	color: var(--paper);
}

.go:hover::before {
	transform: translateY(0);
}

.go[disabled] {
	opacity: 0.4;
	cursor: not-allowed;
}

.go-fill {
	background: var(--accent);
	border-color: var(--accent);
	color: #fff;
}

.go-fill::before {
	background: var(--ink);
}

.go-light {
	border-color: rgba(255, 255, 255, 0.4);
	color: #fff;
}

.go-light::before {
	background: #fff;
}

.go-light:hover {
	color: var(--ink);
}

.txt {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
	border-bottom: 1px solid var(--accent);
	padding-bottom: 2px;
	color: var(--ink);
	transition: gap 0.3s;
}

.txt:hover {
	gap: 14px;
	color: var(--accent);
}

/* ---------- dark blocks ---------- */
.dark {
	background: var(--ink);
	color: var(--paper);
	border-top: 0;
}

.dark p {
	color: #a3a29b;
}

.dark .label {
	color: var(--accent-soft);
}

.dark .lede {
	color: var(--paper);
}

/* ---------- hero ---------- */
.hero {
	background: var(--ink);
	color: var(--paper);
	padding-block: clamp(56px, 9vw, 110px) clamp(40px, 6vw, 74px);
	overflow: hidden;
}

.hero .tag {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	font-size: 0.72rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #97968f;
	padding-bottom: 26px;
	margin-bottom: clamp(28px, 5vw, 54px);
	border-bottom: 1px solid #2a2a27;
}

.hero .tag b {
	color: var(--accent-soft);
	font-weight: 500;
}

.hero h1 {
	margin: 0 0 clamp(24px, 4vw, 42px);
	color: #fff;
}

.hero .line {
	display: block;
	overflow: hidden;
}

.hero .line > span {
	display: block;
	animation: up 1s cubic-bezier(0.2, 0.85, 0.2, 1) both;
}

.hero .line:nth-child(2) > span {
	animation-delay: 0.09s;
}
.hero .line:nth-child(3) > span {
	animation-delay: 0.18s;
}

.hero .accent {
	color: var(--accent-soft);
}

.hero-foot {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
	gap: clamp(24px, 4vw, 60px);
	align-items: end;
	animation: fade 1.1s 0.4s both;
}

.hero-foot p {
	color: #b9b8b1;
	max-width: 42ch;
	font-size: 1.02rem;
}

.hero-acts {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 22px;
}

.facts {
	margin: 0;
	border-top: 1px solid var(--rule);
}

.facts div {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 12px 0;
	border-bottom: 1px solid var(--rule);
	font-size: 0.88rem;
}

.facts dt {
	color: var(--ink-3);
}

.facts dd {
	margin: 0;
	color: var(--ink);
}

/* The hero's background is dark, so its facts list needs the light-on-dark
   variant instead of the site-wide light-background default above. */
.hero .facts {
	border-top-color: #2a2a27;
}

.hero .facts div {
	border-bottom-color: #2a2a27;
}

.hero .facts dt {
	color: #85847d;
}

.hero .facts dd {
	color: #fff;
}

/* ---------- page head (inner pages) ---------- */
.head {
	background: var(--ink);
	color: var(--paper);
	padding-block: clamp(44px, 6vw, 84px);
}

.head h1 {
	color: #fff;
	max-width: 14ch;
	animation: up 0.9s cubic-bezier(0.2, 0.85, 0.2, 1) both;
}

.head p {
	max-width: 52ch;
	color: #b9b8b1;
	margin: 18px 0 0;
	animation: fade 1s 0.2s both;
}

.head .label {
	color: var(--accent-soft);
	animation: fade 0.7s both;
}

/* ---------- stacking process panels ---------- */
.stack > li {
	position: sticky;
	top: calc(var(--bar) + 18px);
	list-style: none;
	background: var(--paper);
	border: 1px solid var(--ink);
	padding: clamp(24px, 3.4vw, 40px);
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr);
	gap: clamp(16px, 3vw, 40px);
	margin-bottom: 14px;
}

.stack {
	margin: 0;
	padding: 0 0 4vh;
}

.stack > li:nth-child(2) {
	top: calc(var(--bar) + 36px);
}
.stack > li:nth-child(3) {
	top: calc(var(--bar) + 54px);
	background: var(--paper-2);
}
.stack > li:nth-child(4) {
	top: calc(var(--bar) + 72px);
	background: var(--ink);
	color: var(--paper);
}

.stack > li:nth-child(4) p {
	color: #a3a29b;
}

.stack .n {
	font-size: 0.72rem;
	letter-spacing: 0.16em;
	color: var(--accent);
	padding-top: 6px;
}

.stack > li:nth-child(4) .n {
	color: var(--accent-soft);
}

.stack h3 {
	font-size: clamp(1.4rem, 2.6vw, 2rem);
	margin-bottom: 10px;
}

.stack p {
	margin: 0;
	max-width: 56ch;
}

/* ---------- service rows ---------- */
.rows {
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid var(--rule);
}

.rows > li {
	border-bottom: 1px solid var(--rule);
}

.rows a,
.rows .row {
	display: grid;
	grid-template-columns: 56px minmax(0, 0.9fr) minmax(0, 1.1fr) auto;
	gap: clamp(14px, 3vw, 34px);
	align-items: baseline;
	padding: 26px 4px;
	transition:
		background-color 0.35s,
		padding-inline 0.35s,
		color 0.35s;
}

.rows a:hover {
	background: var(--ink);
	color: var(--paper);
	padding-inline: 18px;
}

.rows a:hover p,
.rows a:hover .n {
	color: #b9b8b1;
}

.rows .n {
	font-size: 0.74rem;
	letter-spacing: 0.14em;
	color: var(--accent);
}

.rows h3 {
	margin: 0;
}

.rows p {
	margin: 0;
	font-size: 0.94rem;
}

.rows .arw {
	font-size: 1.1rem;
	transition: transform 0.35s;
}

.rows a:hover .arw {
	transform: translateX(6px);
}

/* ---------- figures / numbers ---------- */
.figs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1px;
	background: var(--rule);
	border: 1px solid var(--rule);
}

.figs > div {
	background: var(--paper);
	padding: clamp(22px, 3vw, 34px);
}

.figs b {
	display: block;
	font-size: clamp(2.6rem, 6vw, 4.2rem);
	font-weight: 400;
	letter-spacing: -0.05em;
	line-height: 1;
	margin-bottom: 12px;
}

.figs span {
	font-size: 0.88rem;
	color: var(--ink-3);
}

/* ---------- quotes ---------- */
.quotes {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 16px;
}

.quotes blockquote {
	margin: 0;
	padding: 26px 24px;
	border: 1px solid var(--rule);
	background: var(--paper);
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.quotes p {
	margin: 0;
	font-size: 1.06rem;
	letter-spacing: -0.015em;
	color: var(--ink);
	line-height: 1.42;
}

.quotes cite {
	margin-top: auto;
	font-size: 0.72rem;
	font-style: normal;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-3);
}

/* ---------- cta ---------- */
.cta {
	background: var(--accent);
	color: #fff;
	padding-block: clamp(50px, 7vw, 90px);
}

.cta .label {
	color: var(--accent-soft);
}

.cta h2 {
	color: #fff;
	max-width: 16ch;
}

.cta p {
	color: #d6dcff;
	max-width: 44ch;
}

.cta .acts {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
}

/* ---------- faq ---------- */
.faq {
	border-top: 1px solid var(--rule);
}

.faq details {
	border-bottom: 1px solid var(--rule);
}

.faq summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 22px 4px;
	cursor: pointer;
	list-style: none;
	font-size: clamp(1.02rem, 2vw, 1.22rem);
	letter-spacing: -0.02em;
	transition: color 0.3s;
}

.faq summary::-webkit-details-marker {
	display: none;
}

.faq summary:hover {
	color: var(--accent);
}

.faq summary::after {
	content: '';
	flex: none;
	width: 13px;
	height: 13px;
	background:
		linear-gradient(var(--ink), var(--ink)) center / 100% 1.5px no-repeat,
		linear-gradient(var(--ink), var(--ink)) center / 1.5px 100% no-repeat;
	transition: transform 0.35s;
}

.faq details[open] summary::after {
	transform: rotate(135deg);
}

.faq .a {
	padding: 0 4px 24px;
	max-width: 68ch;
	color: var(--ink-2);
	animation: fade 0.4s both;
}

/* ---------- forms ---------- */
.form {
	display: grid;
	gap: 18px;
}

.field {
	display: grid;
	gap: 7px;
}

.field > span {
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-3);
}

.two {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

input[type='text'],
input[type='email'],
input[type='tel'],
select,
textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--rule);
	border-radius: 0;
	background: #fff;
	transition:
		border-color 0.25s,
		box-shadow 0.25s;
}

input:focus,
select:focus,
textarea:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: inset 0 0 0 1px var(--accent);
}

textarea {
	resize: vertical;
}

/* radio "chips" — the selected state is pure CSS */
.pick {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	border: 0;
	margin: 0;
	padding: 0;
}

.pick legend {
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-3);
	margin-bottom: 10px;
	padding: 0;
}

.pick label {
	position: relative;
	padding: 10px 16px;
	border: 1px solid var(--rule);
	background: #fff;
	font-size: 0.9rem;
	cursor: pointer;
	transition:
		background-color 0.25s,
		color 0.25s,
		border-color 0.25s;
}

.pick input {
	position: absolute;
	opacity: 0;
	inset: 0;
	cursor: pointer;
}

.pick label:hover {
	border-color: var(--ink);
}

.pick label:has(input:checked) {
	background: var(--ink);
	border-color: var(--ink);
	color: var(--paper);
}

.pick label:has(input:disabled) {
	opacity: 0.35;
	cursor: not-allowed;
	text-decoration: line-through;
}

.pick.times label {
	min-width: 92px;
	text-align: center;
	font-variant-numeric: tabular-nums;
}

.check {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	font-size: 0.9rem;
	color: var(--ink-2);
	cursor: pointer;
}

.check input {
	margin-top: 4px;
	accent-color: var(--accent);
	width: 17px;
	height: 17px;
}

.note {
	border: 1px solid var(--rule);
	background: var(--paper-2);
	padding: 18px 20px;
	font-size: 0.88rem;
	color: var(--ink-2);
}

.note strong {
	color: var(--ink);
}

.done {
	border: 1px solid var(--ink);
	padding: clamp(24px, 4vw, 40px);
	animation: fade 0.5s both;
}

.done h2 {
	margin-bottom: 12px;
}

.done dl {
	margin: 22px 0;
	border-top: 1px solid var(--rule);
}

.done dl div {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 11px 0;
	border-bottom: 1px solid var(--rule);
	font-size: 0.92rem;
}

.done dt {
	color: var(--ink-3);
}

.done dd {
	margin: 0;
	font-weight: 500;
}

[hidden] {
	display: none !important;
}

/* ---------- price cards ---------- */
.prices {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 1px;
	background: var(--rule);
	border: 1px solid var(--rule);
}

.prices > div {
	background: var(--paper);
	padding: clamp(22px, 3vw, 32px);
	display: flex;
	flex-direction: column;
	transition: background-color 0.35s;
}

.prices > div:hover {
	background: #fff;
}

.prices .p {
	font-size: clamp(1.9rem, 3.6vw, 2.6rem);
	letter-spacing: -0.04em;
	margin: 6px 0 4px;
}

.prices small {
	color: var(--ink-3);
	font-size: 0.82rem;
}

.prices ul {
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 8px;
	font-size: 0.88rem;
	color: var(--ink-2);
}

.prices li::before {
	content: '— ';
	color: var(--accent);
}

/* ---------- footer ---------- */
.foot {
	border-top: 1px solid var(--rule);
	padding-block: clamp(40px, 5vw, 64px) 24px;
}

.foot-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.6fr));
	gap: 28px;
	padding-bottom: 32px;
	border-bottom: 1px solid var(--rule);
}

.foot h3 {
	font-size: 0.7rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ink-3);
	margin-bottom: 14px;
}

.foot ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 8px;
	font-size: 0.9rem;
	color: var(--ink-2);
}

.foot ul a:hover {
	color: var(--accent);
}

.foot .sig {
	font-size: clamp(1.4rem, 3vw, 2rem);
	letter-spacing: -0.03em;
	line-height: 1.1;
	max-width: 18ch;
}

.foot-end {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px;
	padding-top: 20px;
	font-size: 0.8rem;
	color: var(--ink-3);
}

/* =============================================================
   Motion — everything below is optional decoration
   ============================================================= */
@keyframes up {
	from {
		transform: translateY(105%);
	}
}

@keyframes fade {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
}

@keyframes rise {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
}

@keyframes wipe {
	from {
		clip-path: inset(0 100% 0 0);
	}
}

@keyframes draw {
	from {
		transform: scaleX(0);
	}
}

@keyframes prog {
	from {
		transform: scaleX(0);
	}
}

/* scroll progress bar — CSS only, driven by the document scroll */
.prog {
	position: fixed;
	inset: 0 0 auto;
	height: 2px;
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: 0 50%;
	z-index: 150;
}

@media (prefers-reduced-motion: no-preference) {
	@supports (animation-timeline: view()) {
		/* fades up as it enters the viewport */
		.rise {
			animation: rise linear both;
			animation-timeline: view();
			animation-range: entry 4% cover 26%;
		}

		/* wipes in from the left */
		.wipe {
			animation: wipe linear both;
			animation-timeline: view();
			animation-range: entry 6% cover 30%;
		}

		/* hairline rules that draw themselves across */
		.line-draw {
			transform-origin: left;
			animation: draw linear both;
			animation-timeline: view();
			animation-range: entry 10% cover 24%;
		}

		/* stagger: children inherit the effect, offset by index */
		.stagger > * {
			animation: rise linear both;
			animation-timeline: view();
			animation-range: entry 4% cover 26%;
		}

		.stagger > :nth-child(2) {
			animation-range: entry 4% cover 34%;
		}
		.stagger > :nth-child(3) {
			animation-range: entry 4% cover 42%;
		}
		.stagger > :nth-child(n + 4) {
			animation-range: entry 4% cover 50%;
		}

		.prog {
			animation: prog linear;
			animation-timeline: scroll(root);
		}
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
	}

	.stack > li {
		position: static;
	}
}

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 900px) {
	.split,
	.hero-foot,
	.foot-grid {
		grid-template-columns: 1fr;
	}

	.split > .side {
		position: static;
	}

	.foot-grid {
		gap: 26px;
	}

	.rows a,
	.rows .row {
		grid-template-columns: 40px minmax(0, 1fr);
		row-gap: 8px;
	}

	.rows .arw {
		display: none;
	}

	.rows p {
		grid-column: 2;
	}
}

@media (max-width: 760px) {
	.links {
		position: fixed;
		inset: var(--bar) 0 auto;
		flex-direction: column;
		gap: 0;
		background: var(--paper);
		border-bottom: 1px solid var(--rule);
		padding: 8px 18px 20px;
		transform: translateY(-8px);
		opacity: 0;
		pointer-events: none;
		transition:
			opacity 0.25s,
			transform 0.25s;
	}

	.links[data-open] {
		opacity: 1;
		transform: none;
		pointer-events: auto;
	}

	.links a {
		padding: 14px 0;
		font-size: 1.4rem;
		letter-spacing: -0.02em;
		border-bottom: 1px solid var(--rule);
	}

	.links a::after {
		display: none;
	}

	.burger,
	.links .m-only {
		display: block;
	}

	.bar .go {
		display: none;
	}

	.stack > li {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.two {
		grid-template-columns: 1fr;
	}
}

/* ---------- two-column list (added for the real build) ---------- */
.two-col-list {
	columns: 1;
	list-style: none;
	padding: 0;
	margin: 20px 0;
}

@media (min-width: 640px) {
	.two-col-list {
		columns: 2;
		column-gap: 40px;
	}
}

.two-col-list li {
	break-inside: avoid;
	padding: 10px 0;
	border-bottom: 1px solid var(--rule);
}

/* ---------- portrait (added for the real build) ---------- */
.portrait-box {
	position: relative;
	width: 100%;
	max-width: 280px;
	border: 1px solid var(--rule);
}

.portrait-box::before {
	content: '';
	display: block;
	padding-top: 146.7%; /* native photo ratio, 286 / 195 */
}

.portrait-box img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ---------- accreditation badges (added for the real build) ---------- */
.badges {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 16px 0;
}

.badge-placeholder {
	width: 120px;
	height: 64px;
	border: 1px dashed var(--rule);
	background: var(--paper-2);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 6px;
	color: var(--ink-3);
	font-size: 0.7rem;
	line-height: 1.3;
}

.badge-placeholder img {
	max-width: 100%;
	max-height: 100%;
}

.badge-placeholder-sm {
	width: 84px;
	height: 44px;
	font-size: 0.6rem;
}
