@charset "UTF-8";
/* ==========================================================================
   Wristcraft — wristcraft.app
   Design system + landing page styles
   Layers: tokens → reset → type → components → sections → prose → utilities
   ========================================================================== */

/* --------------------------------------------------------------- tokens -- */
:root {
	/* palette */
	--ink:          #17130F;
	--ink-2:        #221C16;
	--ink-3:        #2E261E;
	--cognac:       #A9522B;
	--cognac-deep:  #8E4322;
	--brass:        #E8C36B;
	--brass-deep:   #D6AC4C;
	--patina:       #2E6B5E;
	--stone:        #E2DBCE;
	--stone-2:      #D5CCBB;
	--bone:         #F6F3ED;
	--white:        #FFFFFF;

	/* Surface tokens. Any element that flips to a dark ground re-declares
	   these, and every component below reads them instead of hard-coding a
	   colour — so a white card inside the dark section themes itself. */
	--text:       var(--ink);
	/* Both muted tiers clear 4.5:1 on --bone, --stone and --white. Anything
	   lighter than --text-faint is reserved for non-text ornament. */
	--text-muted: color-mix(in srgb, var(--ink) 74%, transparent);
	--text-faint: color-mix(in srgb, var(--ink) 64%, transparent);
	--rule:       color-mix(in srgb, var(--ink) 13%, transparent);
	--rule-soft:  color-mix(in srgb, var(--ink) 8%, transparent);
	--surface:    var(--white);
	--link-hover: var(--cognac);

	--on-dark:       #FFFFFF;
	--on-dark-muted: rgba(255, 255, 255, .74);
	--on-dark-faint: rgba(255, 255, 255, .54);
	--rule-dark:     rgba(255, 255, 255, .15);

	/* type */
	--font-display: "Schibsted Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--font-mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	--font-serif:   "Instrument Serif", Georgia, "Times New Roman", serif;

	--fs-display-xl: clamp(2.6rem, 5.9vw, 5rem);
	--fs-display-lg: clamp(2rem, 4.2vw, 3.5rem);
	--fs-display-md: clamp(1.3rem, 1.6vw, 1.75rem);
	--fs-display-sm: clamp(1.08rem, 1.15vw, 1.25rem);
	--fs-mega:       clamp(3rem, 9.6vw, 8.5rem);
	--fs-figure:     clamp(2.75rem, 7.6vw, 6.5rem);
	--fs-lede:       clamp(1rem, 1.05vw, 1.1875rem);
	--fs-body:       1rem;
	--fs-sm:         .875rem;
	--fs-xs:         .8125rem;
	--fs-eyebrow:    .6875rem;
	--fs-spec:       .75rem;

	/* space */
	--gutter:      clamp(1.25rem, 4.2vw, 4rem);
	--maxw:        1300px;
	--maxw-narrow: 740px;
	--section-y:   clamp(4.25rem, 8vw, 8.5rem);
	--stack:       clamp(1.5rem, 2.6vw, 2.5rem);

	/* form */
	--r-card:  18px;
	--r-media: 14px;
	--r-pill:  999px;
	--shadow-card: 0 1px 2px rgba(23, 19, 15, .05), 0 12px 30px -18px rgba(23, 19, 15, .28);
	--shadow-lift: 0 2px 4px rgba(23, 19, 15, .07), 0 30px 64px -26px rgba(23, 19, 15, .4);
	--ease: cubic-bezier(.2, .7, .3, 1);
}

/* Dark grounds re-point the surface tokens rather than overriding components. */
.is-dark,
.on-dark {
	--text:       var(--on-dark);
	--text-muted: var(--on-dark-muted);
	--text-faint: var(--on-dark-faint);
	--rule:       var(--rule-dark);
	--rule-soft:  rgba(255, 255, 255, .08);
	--surface:    var(--ink-2);
	--link-hover: var(--brass);
	/* Re-pointing the tokens is not enough on its own: a nested card never
	   inherits a colour from the section, so it has to paint itself. */
	color: var(--text);
}

.on-light {
	--text:       var(--ink);
	--text-muted: color-mix(in srgb, var(--ink) 74%, transparent);
	--text-faint: color-mix(in srgb, var(--ink) 64%, transparent);
	--rule:       color-mix(in srgb, var(--ink) 13%, transparent);
	--rule-soft:  color-mix(in srgb, var(--ink) 8%, transparent);
	--surface:    var(--white);
	--link-hover: var(--cognac);
	color: var(--text);
}

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 96px;
}

body {
	margin: 0;
	background: var(--bone);
	color: var(--text);
	font-family: var(--font-body);
	font-size: var(--fs-body);
	line-height: 1.62;
	font-feature-settings: "kern", "liga", "cv05";
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
hr { border: 0; border-top: 1px solid var(--rule); margin: 0; }
table { border-collapse: collapse; }

:focus-visible {
	outline: 3px solid var(--cognac);
	outline-offset: 3px;
	border-radius: 4px;
}
.is-dark :focus-visible,
.wrist-footer :focus-visible { outline-color: var(--brass); }

::selection { background: var(--brass); color: var(--ink); }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
	white-space: nowrap; border: 0;
}

.skip-link {
	position: absolute; top: -100px; left: 1rem; z-index: 999;
	background: var(--ink); color: var(--white);
	padding: .85rem 1.25rem; border-radius: var(--r-pill);
	font-weight: 600; font-size: var(--fs-sm);
	transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ------------------------------------------------------------ typography -- */
.display {
	font-family: var(--font-display);
	font-weight: 800;
	line-height: 1.0;
	letter-spacing: -.031em;
	text-wrap: balance;
}
.display--xl { font-size: var(--fs-display-xl); letter-spacing: -.036em; }
.display--lg { font-size: var(--fs-display-lg); }
.display--md { font-size: var(--fs-display-md); line-height: 1.14; letter-spacing: -.02em; font-weight: 700; }
.display--sm { font-size: var(--fs-display-sm); line-height: 1.2;  letter-spacing: -.015em; font-weight: 700; }

/* The second, quieter line of a two-part section heading. */
.display .dim { display: block; color: var(--text-faint); font-weight: 700; }

.mega {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: var(--fs-mega);
	line-height: .9;
	letter-spacing: -.045em;
}

.figure-num {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: var(--fs-figure);
	line-height: .88;
	letter-spacing: -.04em;
	font-feature-settings: "tnum";
}

.eyebrow {
	display: block;
	font-family: var(--font-mono);
	font-size: var(--fs-eyebrow);
	font-weight: 500;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--text-faint);
}

.lede {
	font-size: var(--fs-lede);
	line-height: 1.6;
	color: var(--text-muted);
	max-width: 56ch;
	text-wrap: pretty;
}

.mono {
	font-family: var(--font-mono);
	font-size: var(--fs-spec);
	font-weight: 500;
	letter-spacing: .04em;
	font-feature-settings: "tnum";
}

.serif {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 400;
	letter-spacing: -.01em;
}

/* ---------------------------------------------------------------- layout -- */
.wrap {
	width: 100%;
	max-width: var(--maxw);
	margin-inline: auto;
	padding-inline: var(--gutter);
}
.wrap--narrow { max-width: calc(var(--maxw-narrow) + var(--gutter) * 2); }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: calc(var(--section-y) * .6); }
.section--flush-top { padding-top: 0; }

.is-dark { background: var(--ink); color: var(--text); }
.is-stone { background: var(--stone); }
.is-bone  { background: var(--bone); }

/* Measure in rem, not ch: this is a wrapper at body font-size, so `ch` here
   resolves against 16px and silently squeezes a 3.5rem heading to ~370px. */
.section__head { max-width: 46rem; margin-bottom: clamp(2rem, 3.6vw, 3.25rem); }
.section__head--center { margin-inline: auto; text-align: center; max-width: 40rem; }
.section__head .lede { margin-top: 1rem; }
.section__head--center .lede { margin-inline: auto; }
/* Sections that compose their own head rather than using .section__head still
   need the heading rhythm — atelier and concierge both do. */
.eyebrow + .display { margin-top: .85rem; }
.display + .lede { margin-top: 1.1rem; }

/* A link or button set that follows body copy. */
.after-copy { margin-top: clamp(1.25rem, 2vw, 1.75rem); }

/* --------------------------------------------------------------- buttons -- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	padding: .95rem 1.6rem;
	border: 1px solid transparent;
	border-radius: var(--r-pill);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: var(--fs-sm);
	letter-spacing: -.005em;
	line-height: 1;
	cursor: pointer;
	white-space: nowrap;
	transition: background-color .18s var(--ease), color .18s var(--ease),
	            border-color .18s var(--ease), transform .18s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.05em; height: 1.05em; flex: none; }

.btn--brass { background: var(--brass); color: var(--ink); }
.btn--brass:hover { background: var(--brass-deep); }

.btn--ink { background: var(--ink); color: var(--white); }
.btn--ink:hover { background: var(--ink-3); }

.btn--cognac { background: var(--cognac); color: var(--white); }
.btn--cognac:hover { background: var(--cognac-deep); }

.btn--ghost { border-color: var(--rule); color: var(--text); background: transparent; }
.btn--ghost:hover { border-color: currentColor; background: color-mix(in srgb, currentColor 7%, transparent); }

.btn--sm { padding: .68rem 1.15rem; font-size: var(--fs-xs); }
.btn--lg { padding: 1.1rem 2rem; font-size: 1rem; }

.arrowlink {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	font-weight: 600;
	font-size: var(--fs-sm);
	color: var(--text);
	border-bottom: 1px solid var(--rule);
	padding-bottom: 2px;
	transition: color .18s var(--ease), border-color .18s var(--ease);
}
.arrowlink svg { width: 1em; height: 1em; transition: transform .18s var(--ease); }
.arrowlink:hover { color: var(--link-hover); border-color: currentColor; }
.arrowlink:hover svg { transform: translateX(3px); }

.btnrow { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }

/* ----------------------------------------------------------------- chips -- */
.chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.chip {
	font-family: var(--font-mono);
	font-size: var(--fs-spec);
	font-weight: 500;
	letter-spacing: .06em;
	padding: .34rem .6rem;
	border-radius: 6px;
	background: color-mix(in srgb, var(--ink) 6%, transparent);
	color: var(--text-muted);
	white-space: nowrap;
	font-feature-settings: "tnum";
}
.is-dark .chip, .on-dark .chip { background: rgba(255, 255, 255, .09); }
.chip--brass { background: var(--brass); color: var(--ink); }
.chip--live {
	background: color-mix(in srgb, var(--patina) 16%, transparent);
	color: var(--patina);
	display: inline-flex; align-items: center; gap: .4rem;
}
.chip--live::before {
	content: ""; width: 6px; height: 6px; border-radius: 50%;
	background: var(--patina); animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1 } 50% { opacity: .3 } }

/* ---------------------------------------------------------------- motif -- */
.motif {
	position: absolute;
	inset-inline: 0;
	pointer-events: none;
	color: color-mix(in srgb, var(--cognac) 9%, transparent);
	z-index: 0;
}
.motif svg { width: 100%; height: auto; }

/* --------------------------------------------------------------- top bar -- */
.topbar {
	background: var(--ink);
	color: var(--on-dark);
	font-size: var(--fs-xs);
}
.topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 40px;
	padding-block: .35rem;
}
.topbar__tabs { display: flex; gap: .25rem; flex: none; }
.topbar__tab {
	padding: .3rem .7rem;
	border-radius: var(--r-pill);
	color: var(--on-dark-faint);
	font-size: var(--fs-xs);
	transition: color .18s var(--ease), background-color .18s var(--ease);
}
.topbar__tab:hover { color: var(--on-dark); }
.topbar__tab.is-active { background: rgba(255, 255, 255, .12); color: var(--on-dark); }
.topbar__note {
	color: var(--on-dark-muted);
	text-align: right;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

@media (max-width: 860px) {
	.topbar__tabs { display: none; }
	.topbar__note { text-align: center; width: 100%; }
}

/* -------------------------------------------------------------- masthead -- */
.masthead {
	position: sticky;
	top: 0;
	z-index: 100;
	background: color-mix(in srgb, var(--bone) 88%, transparent);
	backdrop-filter: saturate(150%) blur(14px);
	-webkit-backdrop-filter: saturate(150%) blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.masthead.is-stuck { border-bottom-color: var(--rule); }

.masthead__inner {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 2.4vw, 2.5rem);
	min-height: 66px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	flex: none;
	color: var(--ink);
}
.brand__mark { width: 27px; height: 27px; }
.brand__word {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: .95rem;
	letter-spacing: .085em;
}

.nav { flex: 1; }
.nav__list { display: flex; gap: clamp(.5rem, 1.4vw, 1.4rem); }
.nav__link {
	font-size: var(--fs-sm);
	font-weight: 500;
	color: var(--text-muted);
	padding: .4rem 0;
	transition: color .18s var(--ease);
}
.nav__link:hover { color: var(--ink); }

.masthead__actions { display: flex; align-items: center; gap: .6rem; flex: none; }
.masthead__login {
	font-size: var(--fs-sm);
	font-weight: 500;
	color: var(--text-muted);
	padding: .4rem .5rem;
}
.masthead__login:hover { color: var(--ink); }

.navtoggle {
	display: none;
	width: 40px; height: 40px;
	border: 1px solid var(--rule);
	border-radius: 10px;
	background: transparent;
	padding: 0;
	place-items: center;
	cursor: pointer;
}
.navtoggle span {
	display: block; width: 16px; height: 1.5px;
	background: var(--ink); margin: 2.5px auto;
	transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.navtoggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.navtoggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navtoggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }

.drawer {
	display: none;
	border-top: 1px solid var(--rule);
	background: var(--bone);
	padding-block: 1.25rem 1.75rem;
}
.drawer.is-open { display: block; }
.drawer__list { display: grid; gap: .25rem; margin-bottom: 1.25rem; }
.drawer__link {
	display: block;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.35rem;
	letter-spacing: -.02em;
	padding: .5rem 0;
	border-bottom: 1px solid var(--rule-soft);
}
.drawer__actions { display: grid; gap: .6rem; }
.drawer__actions .btn { justify-content: center; }

@media (max-width: 1000px) {
	.nav, .masthead__login { display: none; }
	.navtoggle { display: grid; }
	.masthead__inner { justify-content: space-between; }
}

/* Below 360px the wordmark, the CTA and the toggle no longer fit on one row.
   The CTA is the one that is duplicated elsewhere — top of the drawer, and
   the reference field 200px down the hero — so it is the one that goes. */
@media (max-width: 360px) {
	.masthead__actions .btn { display: none; }
}

/* ------------------------------------------------------------------ hero -- */
.hero {
	position: relative;
	padding-top: clamp(3rem, 6vw, 6rem);
	padding-bottom: clamp(2rem, 3.5vw, 3.5rem);
	overflow: hidden;
}
.hero .motif { top: -6%; opacity: .8; }
.hero__inner { position: relative; z-index: 1; }
/* The headline sets its own measure: constraining it with the lede's 62ch
   broke "Dress it that way." onto a second line at display-xl. */
.hero__title { margin-bottom: 1.35rem; max-width: 20ch; }
.hero__title span { display: block; }
.hero__title span:last-child { color: var(--cognac); }
.hero .lede { max-width: 58ch; }

.fitform { margin-top: 1.9rem; max-width: 34rem; }
.fitform__row {
	display: flex;
	gap: .5rem;
	padding: .4rem;
	background: var(--white);
	border: 1px solid var(--rule);
	border-radius: var(--r-pill);
	box-shadow: var(--shadow-card);
	transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.fitform__row:focus-within {
	border-color: var(--cognac);
	box-shadow: var(--shadow-lift);
}
.fitform input {
	flex: 1;
	min-width: 0;
	border: 0;
	background: transparent;
	padding: .7rem .5rem .7rem 1.05rem;
	font-size: var(--fs-sm);
	font-family: var(--font-mono);
	letter-spacing: .02em;
}
.fitform input::placeholder { color: var(--text-faint); letter-spacing: 0; font-family: var(--font-body); }
.fitform input:focus { outline: none; }
.fitform__note {
	margin-top: .8rem;
	font-size: var(--fs-xs);
	color: var(--text-faint);
}
.fitform__note.is-done { color: var(--patina); font-weight: 500; }

.hero__alt { margin-top: 1.1rem; }

/* ----------------------------------------------------------------- stage -- */
.stage { padding-bottom: calc(var(--section-y) * .65); }
.stage__frame {
	position: relative;
	background: var(--stone);
	border-radius: clamp(16px, 2vw, 28px);
	padding: clamp(1rem, 2.2vw, 2rem);
	overflow: hidden;
}
.stage__frame::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow: inset 0 0 0 1px rgba(23, 19, 15, .07);
	pointer-events: none;
}

.stage__rail {
	display: flex;
	gap: .35rem;
	overflow-x: auto;
	scrollbar-width: none;
	margin-bottom: clamp(.75rem, 1.4vw, 1.25rem);
	padding-bottom: 2px;
}
.stage__rail::-webkit-scrollbar { display: none; }

.step {
	flex: 1 1 0;
	min-width: 152px;
	text-align: left;
	background: rgba(255, 255, 255, .55);
	border: 1px solid transparent;
	border-radius: 12px;
	padding: .7rem .85rem;
	cursor: pointer;
	transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.step:hover { background: rgba(255, 255, 255, .85); }
.step.is-active {
	background: var(--ink);
	color: var(--on-dark);
	border-color: var(--ink);
}
.step__n {
	font-family: var(--font-mono);
	font-size: var(--fs-eyebrow);
	letter-spacing: .14em;
	color: var(--text-faint);
	display: block;
}
.step.is-active .step__n { color: var(--brass); }
.step__name {
	display: block;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: var(--fs-sm);
	letter-spacing: -.01em;
	margin-top: .15rem;
}
.step__note {
	display: block;
	font-size: var(--fs-xs);
	color: var(--text-faint);
	margin-top: .1rem;
	line-height: 1.35;
}
.step.is-active .step__note { color: var(--on-dark-faint); }

.stage__canvas {
	position: relative;
	background: var(--white);
	border-radius: var(--r-card);
	overflow: hidden;
	box-shadow: var(--shadow-card);
}
.stage__canvas img { width: 100%; }

.stage__foot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: .75rem;
	margin-top: clamp(.75rem, 1.4vw, 1.25rem);
}
.stage__caption { font-size: var(--fs-xs); color: var(--text-muted); }

/* ----------------------------------------------------------------- proof -- */
.proof { padding-block: calc(var(--section-y) * .55); }
.proof__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
	gap: clamp(1.5rem, 3vw, 3rem);
	align-items: stretch;
}
/* Title at the top, stockists pushed to the foot, so the column ends level
   with the stat card instead of leaving a void under it. */
/* min-width:0 is load-bearing. The marquee track inside .logorow is sized
   `width: max-content`, and a grid item defaults to min-width:auto — so the
   track's intrinsic 2,200px became this column's minimum and blew the page
   out horizontally. overflow:hidden on .logorow does not shrink a block's
   min-content contribution; only this does. */
.proof__left { display: flex; flex-direction: column; min-width: 0; }
.proof__left .logorow { margin-top: auto; }
.proof__title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(1.15rem, 1.75vw, 1.55rem);
	line-height: 1.28;
	letter-spacing: -.02em;
	max-width: 34ch;
}
.proof__title em { font-style: normal; color: var(--text-faint); }
.proof__link { margin-top: .9rem; }

.logorow {
	margin-top: clamp(1.75rem, 3vw, 2.75rem);
	border-top: 1px solid var(--rule);
	border-bottom: 1px solid var(--rule);
	padding-block: clamp(1rem, 1.8vw, 1.6rem);
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
	        mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.logorow__track {
	display: flex;
	align-items: center;
	gap: clamp(2.5rem, 6vw, 5.5rem);
	width: max-content;
	animation: marquee 46s linear infinite;
}
.logorow:hover .logorow__track,
.logorow.is-paused .logorow__track { animation-play-state: paused; }
.logorow img {
	height: 22px;
	width: auto;
	opacity: .5;
	filter: grayscale(1);
	transition: opacity .2s var(--ease);
}
.logorow img:hover { opacity: .95; }
@keyframes marquee { to { transform: translateX(-50%); } }

.proof__stat {
	background: var(--ink);
	color: var(--on-dark);
	border-radius: var(--r-card);
	padding: clamp(1.4rem, 2.2vw, 1.9rem);
	position: relative;
	overflow: hidden;
	align-self: stretch;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1.25rem;
	min-height: 260px;
}
.proof__stat::before {
	content: "";
	position: absolute;
	inset: auto -20% -45% -20%;
	height: 78%;
	background: radial-gradient(closest-side, color-mix(in srgb, var(--cognac) 55%, transparent), transparent);
	opacity: .55;
}
.proof__stat > * { position: relative; }
.proof__quote { font-size: var(--fs-sm); color: var(--on-dark-muted); line-height: 1.5; }
.proof__num {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(2.1rem, 3.4vw, 3rem);
	letter-spacing: -.04em;
	line-height: 1;
	font-feature-settings: "tnum";
}
.proof__numlabel { font-size: var(--fs-xs); color: var(--on-dark-faint); margin-top: .3rem; }
.proof__by { font-size: var(--fs-xs); color: var(--on-dark-faint); }
.proof__by strong { display: block; color: var(--on-dark); font-weight: 600; }

@media (max-width: 900px) {
	.proof__grid { grid-template-columns: minmax(0, 1fr); }
	.proof__stat { min-height: 0; }
}

/* -------------------------------------------------------------- platform -- */
.pills {
	display: inline-flex;
	gap: .25rem;
	padding: .25rem;
	background: color-mix(in srgb, var(--ink) 6%, transparent);
	border-radius: var(--r-pill);
	margin-bottom: clamp(1.5rem, 2.6vw, 2.25rem);
}
.pill {
	border: 0;
	background: transparent;
	border-radius: var(--r-pill);
	padding: .5rem 1rem;
	font-size: var(--fs-xs);
	font-weight: 600;
	color: var(--text-muted);
	cursor: pointer;
	transition: background-color .18s var(--ease), color .18s var(--ease);
}
.pill:hover { color: var(--ink); }
.pill.is-active { background: var(--ink); color: var(--white); }

.bento {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: clamp(.75rem, 1.2vw, 1rem);
}
.bento__card {
	grid-column: span 2;
	display: flex;
	flex-direction: column;
	border-radius: var(--r-card);
	padding: clamp(1.15rem, 1.8vw, 1.6rem);
	overflow: hidden;
	position: relative;
	min-height: 300px;
	background: var(--white);
	box-shadow: inset 0 0 0 1px var(--rule-soft);
}
.bento__card--wide { grid-column: span 3; min-height: 380px; }
.bento__card--stone { background: var(--stone); box-shadow: none; }
.bento__card--bone  { background: var(--bone); box-shadow: inset 0 0 0 1px var(--rule-soft); }
.bento__card--ink   { background: var(--ink); box-shadow: none; }

.bento__title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(1rem, 1.3vw, 1.2rem);
	line-height: 1.3;
	letter-spacing: -.018em;
	max-width: 24ch;
}
.bento__title .lead { color: var(--text-faint); font-weight: 500; }
.bento__body {
	margin-top: .65rem;
	font-size: var(--fs-sm);
	color: var(--text-muted);
	line-height: 1.55;
	max-width: 40ch;
}
.bento__media {
	margin-top: auto;
	padding-top: 1.4rem;
	display: flex;
	justify-content: center;
}
.bento__media img { width: 100%; max-width: 460px; }
.bento__card--third .bento__media img { max-width: 200px; }

@media (max-width: 1000px) {
	.bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.bento__card, .bento__card--wide { grid-column: span 1; min-height: 280px; }
}
@media (max-width: 640px) {
	.bento { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------- bridge -- */
.bridge { text-align: center; }
.bridge__art { margin: clamp(2rem, 4vw, 3.5rem) auto 0; max-width: 1000px; }
.bridge__nodes {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: clamp(1rem, 2vw, 2rem);
	margin-top: clamp(1.75rem, 3vw, 2.75rem);
	max-width: 900px;
	margin-inline: auto;
	text-align: left;
}
.bridge__node { border-top: 2px solid var(--cognac); padding-top: .85rem; }
.bridge__node dt {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: var(--fs-sm);
	letter-spacing: -.01em;
}
.bridge__node dd { font-size: var(--fs-xs); color: var(--text-muted); margin-top: .2rem; }

/* ------------------------------------------------------------------ band -- */
.band {
	background: var(--ink);
	color: var(--on-dark);
	text-align: center;
	position: relative;
	overflow: hidden;
}
.band .motif { top: 12%; color: rgba(255, 255, 255, .05); }
.band__inner { position: relative; z-index: 1; }
.band__title { max-width: 22ch; margin-inline: auto; }
.band__title span:last-child { color: var(--brass); display: block; }
.band .btn { margin-top: clamp(1.5rem, 2.4vw, 2.25rem); }

.statstrip {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 1px;
	margin-top: clamp(2.5rem, 4.5vw, 4rem);
	background: var(--rule-dark);
	border-top: 1px solid var(--rule-dark);
	border-bottom: 1px solid var(--rule-dark);
}
.statstrip__cell { background: var(--ink); padding: clamp(1.1rem, 2vw, 1.75rem) 1rem; }
.statstrip__v {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(1.35rem, 2.2vw, 1.9rem);
	letter-spacing: -.03em;
	font-feature-settings: "tnum";
}
.statstrip__l {
	font-family: var(--font-mono);
	font-size: var(--fs-eyebrow);
	letter-spacing: .13em;
	text-transform: uppercase;
	color: var(--on-dark-faint);
	margin-top: .35rem;
}

/* ----------------------------------------------------------------- split -- */
.split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
	gap: clamp(1.75rem, 4vw, 4.5rem);
	align-items: center;
}
.split--reverse .split__text { order: 2; }
.split__media img { width: 100%; border-radius: var(--r-media); }
.split__text .eyebrow { margin-bottom: .85rem; }
.split__text .lede { margin-top: 1.1rem; }
.split__text .arrowlink { margin-top: 1.4rem; }

@media (max-width: 900px) {
	.split { grid-template-columns: 1fr; }
	.split--reverse .split__text { order: 0; }
}

.speclist {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 1rem;
	margin-top: clamp(1.5rem, 2.4vw, 2rem);
	padding-top: 1.25rem;
	border-top: 1px solid var(--rule);
}
.speclist dt {
	font-family: var(--font-mono);
	font-size: var(--fs-eyebrow);
	letter-spacing: .13em;
	text-transform: uppercase;
	color: var(--text-faint);
}
.speclist dd {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.15rem;
	letter-spacing: -.02em;
	margin-top: .15rem;
	font-feature-settings: "tnum";
}

/* ------------------------------------------------------------ pull quote -- */
.pull { position: relative; }
.pull__text {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: clamp(1.5rem, 3.2vw, 2.6rem);
	line-height: 1.22;
	letter-spacing: -.015em;
	text-wrap: balance;
	max-width: 22ch;
}
.pull--center { text-align: center; }
.pull--center .pull__text { margin-inline: auto; max-width: 26ch; }
.pull__by {
	margin-top: clamp(1.25rem, 2vw, 1.75rem);
	font-size: var(--fs-sm);
}
.pull__by strong { display: block; font-weight: 600; }
.pull__by span { display: block; color: var(--text-faint); }
.pull__by .arrowlink { margin-top: .75rem; }
.pull--center .pull__by .arrowlink { margin-inline: auto; }

.pull--card {
	background: var(--stone);
	border-radius: var(--r-card);
	padding: clamp(1.75rem, 4vw, 3.5rem);
}
/* Two columns so the attribution occupies the space the balanced quote
   leaves behind, rather than a third of the card sitting empty. */
@media (min-width: 860px) {
	.pull--card {
		display: grid;
		grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
		gap: clamp(2rem, 4vw, 4rem);
		align-items: end;
	}
	.pull--card .pull__text { max-width: 26ch; }
	.pull--card .pull__by { margin-top: 0; padding-bottom: .35rem; }
}

/* --------------------------------------------------------------- atelier -- */
.atelier__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	gap: clamp(1.75rem, 3.5vw, 4rem);
	align-items: center;
}
.atelier__media { position: relative; border-radius: var(--r-card); overflow: hidden; }
.atelier__media img { width: 100%; }
.atelier__cap {
	position: absolute;
	left: 1rem; bottom: 1rem; right: 1rem;
	font-family: var(--font-mono);
	font-size: var(--fs-eyebrow);
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #fff;
	background: rgba(23, 19, 15, .74);
	backdrop-filter: blur(6px);
	padding: .5rem .75rem;
	border-radius: 8px;
}
.points { margin-top: clamp(1.5rem, 2.4vw, 2rem); display: grid; gap: 1.1rem; }
.points > div { display: grid; grid-template-columns: 22px 1fr; gap: .8rem; }
.points svg { width: 20px; height: 20px; color: var(--cognac); margin-top: .2rem; }
.points dt {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: var(--fs-sm);
	letter-spacing: -.01em;
}
.points dd { font-size: var(--fs-sm); color: var(--text-muted); margin-top: .15rem; line-height: 1.5; }

@media (max-width: 900px) { .atelier__grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------- concierge -- */
.concierge__grid {
	display: grid;
	grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
	gap: clamp(1.75rem, 3.5vw, 4rem);
	align-items: center;
}
@media (max-width: 900px) { .concierge__grid { grid-template-columns: 1fr; } }

.uicard {
	background: var(--white);
	border-radius: var(--r-card);
	box-shadow: var(--shadow-lift);
	overflow: hidden;
	font-size: var(--fs-sm);
}
.uicard__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.15rem 1.35rem;
	border-bottom: 1px solid var(--rule-soft);
}
.uicard__title {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.3rem;
	letter-spacing: -.028em;
}
.uicard__ref {
	font-family: var(--font-mono);
	font-size: var(--fs-spec);
	color: var(--cognac);
	background: color-mix(in srgb, var(--cognac) 10%, transparent);
	padding: .25rem .5rem;
	border-radius: 6px;
	white-space: nowrap;
}
.uicard__meta {
	display: flex;
	flex-wrap: wrap;
	gap: .35rem 1.4rem;
	padding: .9rem 1.35rem;
	border-bottom: 1px solid var(--rule-soft);
	background: var(--bone);
}
.uicard__meta div { display: flex; align-items: baseline; gap: .4rem; }
.uicard__meta dt {
	font-family: var(--font-mono);
	font-size: var(--fs-eyebrow);
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--text-faint);
}
.uicard__meta dd { font-size: var(--fs-xs); font-weight: 600; }

.uicard__rows { padding: .35rem 0; }
.uicard__row {
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: .85rem;
	padding: .85rem 1.35rem;
	align-items: start;
}
.uicard__row + .uicard__row { border-top: 1px solid var(--rule-soft); }
.uicard__swatch {
	width: 34px; height: 34px;
	border-radius: 8px;
	box-shadow: inset 0 0 0 1px rgba(23, 19, 15, .12);
}
.uicard__name { font-weight: 600; letter-spacing: -.005em; }
.uicard__spec {
	font-family: var(--font-mono);
	font-size: var(--fs-spec);
	color: var(--text-faint);
	letter-spacing: .03em;
	margin-top: .1rem;
}
.uicard__note { font-size: var(--fs-xs); color: var(--text-muted); margin-top: .25rem; }

.uicard__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.1rem 1.35rem;
	border-top: 1px solid var(--rule-soft);
	background: var(--bone);
}
.uicard__total {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.35rem;
	letter-spacing: -.03em;
}
.uicard__footnote {
	padding: 0 1.35rem 1.2rem;
	font-size: var(--fs-xs);
	color: var(--text-faint);
	background: var(--bone);
}

/* -------------------------------------------------------------- wardrobe -- */
.matgrid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: clamp(.75rem, 1.2vw, 1rem);
}
/* Nine materials: pinned to three columns so the last row is full rather
   than leaving one orphan card at four-up. */
@media (min-width: 1000px) {
	.matgrid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.matcard {
	background: var(--white);
	border-radius: var(--r-card);
	padding: 1.1rem;
	box-shadow: inset 0 0 0 1px var(--rule-soft);
	display: flex;
	flex-direction: column;
	transition: box-shadow .2s var(--ease), transform .2s var(--ease);
}
.matcard:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.matcard__media {
	background: var(--bone);
	border-radius: var(--r-media);
	padding: 1rem;
	margin-bottom: .95rem;
	display: grid;
	place-items: center;
}
.matcard__media img { width: 100%; max-width: 170px; }
.matcard__name {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: -.015em;
}
.matcard__mat { font-size: var(--fs-xs); color: var(--text-muted); margin-top: .1rem; }
.matcard__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .5rem;
	margin-top: .85rem;
	padding-top: .75rem;
	border-top: 1px solid var(--rule-soft);
}
.matcard__spec {
	font-family: var(--font-mono);
	font-size: var(--fs-eyebrow);
	letter-spacing: .05em;
	color: var(--text-faint);
}
.matcard__price { font-weight: 600; font-size: var(--fs-sm); font-feature-settings: "tnum"; }

.wardrobe__note {
	margin-top: clamp(1.25rem, 2vw, 1.75rem);
	font-size: var(--fs-xs);
	color: var(--text-faint);
	max-width: 70ch;
}

/* -------------------------------------------------------------- packages -- */
.plans {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: clamp(.85rem, 1.4vw, 1.25rem);
	align-items: start;
}
.plan {
	background: var(--white);
	border-radius: var(--r-card);
	padding: clamp(1.35rem, 2vw, 1.85rem);
	box-shadow: inset 0 0 0 1px var(--rule-soft);
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}
.plan--featured {
	background: var(--ink);
	color: var(--on-dark);
	box-shadow: var(--shadow-lift);
}
.plan__flag {
	position: absolute;
	top: 1.1rem; right: 1.1rem;
	font-family: var(--font-mono);
	font-size: var(--fs-eyebrow);
	letter-spacing: .12em;
	text-transform: uppercase;
	background: var(--brass);
	color: var(--ink);
	padding: .25rem .5rem;
	border-radius: 5px;
}
.plan__name {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.15rem;
	letter-spacing: -.022em;
	padding-right: 5rem;
}
.plan__sub { font-size: var(--fs-sm); color: var(--text-muted); margin-top: .3rem; min-height: 2.9em; }
.plan__price {
	display: flex;
	align-items: baseline;
	gap: .4rem;
	margin: 1.2rem 0 .35rem;
}
.plan__amount {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(2.1rem, 3.2vw, 2.75rem);
	letter-spacing: -.04em;
	line-height: 1;
	font-feature-settings: "tnum";
}
.plan__period { font-size: var(--fs-xs); color: var(--text-faint); }
.plan__sku {
	font-family: var(--font-mono);
	font-size: var(--fs-eyebrow);
	letter-spacing: .12em;
	color: var(--text-faint);
}
.plan__list { margin: 1.35rem 0; display: grid; gap: .6rem; flex: 1; }
.plan__list li { display: grid; grid-template-columns: 18px 1fr; gap: .6rem; font-size: var(--fs-sm); line-height: 1.45; }
.plan__list svg { width: 16px; height: 16px; color: var(--cognac); margin-top: .28rem; }
.plan--featured .plan__list svg { color: var(--brass); }
.plan .btn { justify-content: center; width: 100%; }

.packages__note {
	margin-top: clamp(1.25rem, 2vw, 1.75rem);
	font-size: var(--fs-xs);
	color: var(--text-faint);
	max-width: 74ch;
}
.packages__note a { border-bottom: 1px solid var(--rule); }
.packages__note a:hover { color: var(--link-hover); }

/* ------------------------------------------------------------------- faq -- */
.faq__grid {
	display: grid;
	grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
	gap: clamp(1.5rem, 3.5vw, 4rem);
	align-items: start;
}
@media (max-width: 860px) { .faq__grid { grid-template-columns: 1fr; } }

.faq__list { border-top: 1px solid var(--rule); }
.faq__item { border-bottom: 1px solid var(--rule); }
.faq__item summary {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1.15rem 0;
	cursor: pointer;
	list-style: none;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(.98rem, 1.15vw, 1.08rem);
	letter-spacing: -.015em;
	line-height: 1.35;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
	content: "";
	flex: none;
	width: 15px; height: 15px;
	margin-top: .3rem;
	background:
		linear-gradient(currentColor, currentColor) center / 100% 1.5px no-repeat,
		linear-gradient(currentColor, currentColor) center / 1.5px 100% no-repeat;
	transition: transform .22s var(--ease);
	opacity: .65;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item summary:hover { color: var(--link-hover); }
.faq__answer { padding-bottom: 1.3rem; font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.6; max-width: 62ch; }

/* ---------------------------------------------------------------- finale -- */
.finale {
	background: var(--brass);
	color: var(--ink);
	position: relative;
	overflow: hidden;
	text-align: center;
}
.finale .motif { top: 20%; color: rgba(23, 19, 15, .07); }
.finale__inner { position: relative; z-index: 1; }
.finale__title span { display: block; }
.finale__title span:last-child { color: var(--cognac-deep); }
.finale .lede { color: color-mix(in srgb, var(--ink) 78%, transparent); margin: 1.25rem auto 0; }
.finale .btnrow { justify-content: center; margin-top: clamp(1.5rem, 2.4vw, 2.25rem); }
.finale__note {
	margin-top: 1.15rem;
	font-family: var(--font-mono);
	font-size: var(--fs-eyebrow);
	letter-spacing: .13em;
	text-transform: uppercase;
	/* 60% only reaches 3.97:1 on brass — 11px uppercase needs 4.5:1. */
	color: color-mix(in srgb, var(--ink) 72%, transparent);
}

/* ----------------------------------------------------------------- press -- */
.press { padding-block: calc(var(--section-y) * .5); }
.press__label {
	text-align: center;
	margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}
.press__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: clamp(1.5rem, 4.5vw, 4rem);
}
.press__row img { height: 20px; width: auto; opacity: .42; filter: grayscale(1); }
.press__quote {
	margin-top: clamp(1.75rem, 3vw, 2.5rem);
	text-align: center;
	font-family: var(--font-serif);
	font-style: italic;
	font-size: clamp(1.15rem, 1.9vw, 1.5rem);
	line-height: 1.3;
	max-width: 30ch;
	margin-inline: auto;
}
.press__source {
	display: block;
	margin-top: .75rem;
	font-family: var(--font-mono);
	font-style: normal;
	font-size: var(--fs-eyebrow);
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--text-faint);
}

/* ---------------------------------------------------------------- footer -- */
.wrist-footer {
	background: var(--ink);
	color: var(--on-dark);
	--text:       var(--on-dark);
	--text-muted: var(--on-dark-muted);
	--text-faint: var(--on-dark-faint);
	--rule:       var(--rule-dark);
	--link-hover: var(--brass);
	padding-block: clamp(3rem, 5vw, 4.5rem) clamp(1.75rem, 2.5vw, 2.5rem);
}
.footer__top {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
	gap: clamp(1.75rem, 3vw, 3rem);
	padding-bottom: clamp(2rem, 3.5vw, 3rem);
	border-bottom: 1px solid var(--rule);
}
@media (max-width: 820px) { .footer__top { grid-template-columns: 1fr; } }

.footer__brand { color: var(--on-dark); }
.footer__tagline {
	margin-top: .75rem;
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 1.35rem;
	color: var(--on-dark-muted);
}

.signup__label {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-size: var(--fs-sm);
	font-weight: 600;
	margin-bottom: .75rem;
}
.signup__label svg { width: 17px; height: 17px; color: var(--brass); }
.signup__row {
	display: flex;
	gap: .4rem;
	padding: .3rem;
	border: 1px solid var(--rule-dark);
	border-radius: var(--r-pill);
	background: rgba(255, 255, 255, .05);
}
.signup__row:focus-within { border-color: var(--brass); }
.signup input {
	flex: 1; min-width: 0;
	border: 0; background: transparent;
	padding: .6rem .5rem .6rem 1rem;
	font-size: var(--fs-sm);
	color: var(--on-dark);
}
.signup input::placeholder { color: var(--on-dark-faint); }
.signup input:focus { outline: none; }
.signup button {
	flex: none;
	width: 40px; height: 40px;
	display: grid; place-items: center;
	border: 0; border-radius: 50%;
	background: var(--brass); color: var(--ink);
	cursor: pointer;
	transition: background-color .18s var(--ease);
}
.signup button:hover { background: var(--brass-deep); }
.signup button svg { width: 17px; height: 17px; }
.signup__note { margin-top: .7rem; font-size: var(--fs-xs); color: var(--on-dark-faint); }
.signup__done { margin-top: .7rem; font-size: var(--fs-xs); color: var(--brass); font-weight: 500; }

.footer__cols {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: clamp(1.5rem, 2.5vw, 2.5rem);
	padding-block: clamp(2rem, 3.5vw, 3rem);
}
.footer__col h3 {
	font-family: var(--font-mono);
	font-size: var(--fs-eyebrow);
	font-weight: 500;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--on-dark-faint);
	margin-bottom: .9rem;
}
.footer__col li + li { margin-top: .5rem; }
.footer__col a {
	font-size: var(--fs-sm);
	color: var(--on-dark-muted);
	transition: color .18s var(--ease);
}
.footer__col a:hover { color: var(--brass); }
.footer__tag {
	display: inline-block;
	margin-left: .4rem;
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: .1em;
	text-transform: uppercase;
	background: var(--brass);
	color: var(--ink);
	padding: .1rem .3rem;
	border-radius: 4px;
	vertical-align: 1px;
}

.footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: .85rem 1.5rem;
	padding-top: clamp(1.25rem, 2vw, 1.75rem);
	border-top: 1px solid var(--rule);
	font-size: var(--fs-xs);
	color: var(--on-dark-faint);
}
.footer__legal, .footer__social { display: flex; flex-wrap: wrap; gap: .5rem 1.1rem; }
.footer__legal a:hover, .footer__social a:hover { color: var(--brass); }

/* ------------------------------------------------------- legal / prose --- */
.pagehero {
	position: relative;
	background: var(--stone);
	overflow: hidden;
	padding-block: clamp(2.75rem, 5vw, 4.5rem);
	margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.pagehero .motif { top: 8%; color: rgba(169, 82, 43, .1); }
.pagehero__inner { position: relative; z-index: 1; max-width: 46ch; }
.pagehero__meta {
	margin-top: 1.1rem;
	font-family: var(--font-mono);
	font-size: var(--fs-eyebrow);
	letter-spacing: .13em;
	text-transform: uppercase;
	color: var(--text-faint);
}

.breadcrumb {
	display: flex;
	gap: .5rem;
	font-size: var(--fs-xs);
	color: var(--text-faint);
	margin-bottom: 1.1rem;
}
.breadcrumb a:hover { color: var(--cognac); }

.page-doc { padding-bottom: var(--section-y); }

.prose {
	max-width: var(--maxw-narrow);
	margin-inline: auto;
	font-size: 1.0125rem;
	line-height: 1.72;
	color: var(--text-muted);
}
.prose > * + * { margin-top: 1.15rem; }
.prose h2 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(1.25rem, 2vw, 1.6rem);
	letter-spacing: -.024em;
	line-height: 1.2;
	color: var(--text);
	margin-top: 2.75rem;
	scroll-margin-top: 100px;
}
.prose h3 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.05rem;
	letter-spacing: -.015em;
	color: var(--text);
	margin-top: 1.9rem;
}
.prose strong { color: var(--text); font-weight: 600; }
.prose a { color: var(--cognac); border-bottom: 1px solid color-mix(in srgb, var(--cognac) 35%, transparent); }
.prose a:hover { border-bottom-color: currentColor; }
.prose ul, .prose ol { padding-left: 1.15rem; display: grid; gap: .5rem; }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose li::marker { color: var(--cognac); }

.prose__note {
	background: color-mix(in srgb, var(--brass) 26%, var(--bone));
	border-left: 3px solid var(--brass-deep);
	border-radius: 0 10px 10px 0;
	padding: 1rem 1.15rem;
	font-size: var(--fs-sm);
	color: var(--text);
}

.prose__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.prose table { width: 100%; min-width: 480px; font-size: var(--fs-sm); }
.prose th, .prose td {
	text-align: left;
	padding: .7rem .8rem;
	border-bottom: 1px solid var(--rule);
	vertical-align: top;
}
.prose th {
	font-family: var(--font-mono);
	font-size: var(--fs-eyebrow);
	font-weight: 500;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--text-faint);
	border-bottom-color: var(--text-faint);
}

.legal-toc {
	background: var(--white);
	border-radius: var(--r-card);
	padding: 1.35rem 1.5rem;
	box-shadow: inset 0 0 0 1px var(--rule-soft);
	margin-bottom: 2.5rem;
}
.legal-toc h2 {
	margin: 0 0 .85rem;
	font-family: var(--font-mono);
	font-size: var(--fs-eyebrow);
	font-weight: 500;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--text-faint);
}
.legal-toc ol { counter-reset: toc; display: grid; gap: .4rem; padding: 0; }
/* The TOC is rendered inside .prose, whose `.prose ol li { list-style: decimal }`
   outranks a bare `.legal-toc li` — which put a native marker next to the
   counter and numbered every entry twice. */
.legal-toc li,
.prose .legal-toc li { counter-increment: toc; list-style: none; font-size: var(--fs-sm); }
.legal-toc li::before {
	content: counter(toc) ".";
	font-family: var(--font-mono);
	font-size: var(--fs-eyebrow);
	color: var(--text-faint);
	margin-right: .5rem;
}
.legal-toc a { color: var(--text); border-bottom: 1px solid transparent; }
.legal-toc a:hover { color: var(--cognac); border-bottom-color: currentColor; }

/* ----------------------------------------------------------- blog / 404 -- */
.postlist { display: grid; gap: 1.5rem; max-width: var(--maxw-narrow); margin-inline: auto; }
.postcard {
	background: var(--white);
	border-radius: var(--r-card);
	padding: clamp(1.25rem, 2vw, 1.75rem);
	box-shadow: inset 0 0 0 1px var(--rule-soft);
}
.postcard h2 { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; letter-spacing: -.024em; }
.postcard time {
	display: block;
	font-family: var(--font-mono);
	font-size: var(--fs-eyebrow);
	letter-spacing: .13em;
	text-transform: uppercase;
	color: var(--text-faint);
	margin-bottom: .5rem;
}
.postcard p { margin-top: .6rem; color: var(--text-muted); font-size: var(--fs-sm); }

.notfound { text-align: center; padding-block: clamp(4rem, 9vw, 8rem); position: relative; overflow: hidden; }
.notfound .motif { top: 18%; }
.notfound__inner { position: relative; z-index: 1; }
.notfound .mega { color: var(--cognac); }
.notfound .lede { margin: 1.25rem auto 0; }
.notfound .btnrow { justify-content: center; margin-top: 2rem; }

.searchform { display: flex; gap: .4rem; max-width: 26rem; margin: 1.5rem auto 0; }
.searchform input {
	flex: 1;
	border: 1px solid var(--rule);
	border-radius: var(--r-pill);
	padding: .7rem 1.1rem;
	background: var(--white);
	font-size: var(--fs-sm);
}
.searchform button {
	flex: none;
	border: 0;
	border-radius: 50%;
	width: 44px; height: 44px;
	display: grid; place-items: center;
	background: var(--ink); color: var(--white);
	cursor: pointer;
}
.searchform button svg { width: 17px; height: 17px; }

/* ------------------------------------------------------------ utilities -- */
.reveal { opacity: 1; transform: none; }
.js .reveal {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.js .reveal.is-in { opacity: 1; transform: none; }
.js .reveal--instant { transition: none; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
	}
	.js .reveal { opacity: 1; transform: none; }
	.logorow__track { animation: none; }
}

/* Print: drop the furniture, keep the document. */
@media print {
	.topbar, .masthead, .wrist-footer, .motif, .legal-toc, .skip-link { display: none !important; }
	body { background: #fff; color: #000; }
	.pagehero { background: #fff; padding-block: 0 1rem; }
	.prose { max-width: none; font-size: 11pt; }
	.prose a { color: #000; border: 0; }
	.prose a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
}
