@charset "utf-8";
/* ==========================================================================
   LensCap Color Labs — design system
   --------------------------------------------------------------------------
   Direction: earthy, natural, refined. A warm limestone "room" with
   true-neutral white reserved for surfaces that hold photographs, because
   prints must be judged against neutral. Palette is a step wedge in earth
   pigments — the lab's own calibration target, restated as brand.

   Type       Fraunces (display, SOFT+WONK) / Karla (body) / Plex Mono (data)
   Signature  the calibration strip + gallery wall labels
   ========================================================================== */

/* ---------- tokens ---------- */
:root {
	/* surfaces */
	--stone: #eae6dc;
	/* page ground — warm limestone */
	--stone-deep: #ded8ca;
	/* rules, wells */
	--bone: #f6f4ef;
	/* raised paper surfaces */
	--white: #ffffff;
	/* prints only — neutral by function */

	/* ink */
	--ink: #1c2721;
	/* body text, green-black */
	--juniper: #26382f;
	/* primary brand */
	--juniper-deep: #16211c;
	/* footer ground */
	--slate: #6e7370;
	/* secondary text — wet stone */
	--slate-soft: #8b8f8a;

	/* accents */
	--moss: #5b6f52;
	/* links, secondary action */
	--ochre: #b8863b;
	/* the one accent: CTA + price emphasis */
	--ochre-deep: #966b2c;
	--rust: #97503a;
	/* strip patch only */
	--rose: #b98a7b;
	/* strip patch only */

	/* type */
	--display: "Fraunces", "Iowan Old Style", Georgia, serif;
	--body: "Karla", "Helvetica Neue", Arial, sans-serif;
	--mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

	/* scale */
	--s1: .5rem;
	--s2: .75rem;
	--s3: 1rem;
	--s4: 1.5rem;
	--s5: 2rem;
	--s6: 3rem;
	--s7: 4.5rem;
	--s8: 6.5rem;

	--r-sm: 8px;
	--r-md: 14px;
	--r-lg: 22px;
	--r-xl: 32px;

	--line: 1px solid var(--stone-deep);
	--shadow-soft: 0 1px 2px rgba(28, 39, 33, .04), 0 8px 24px -12px rgba(28, 39, 33, .14);
	--shadow-lift: 0 2px 4px rgba(28, 39, 33, .05), 0 18px 40px -18px rgba(28, 39, 33, .22);

	--wrap: 1200px;
	--ease: cubic-bezier(.22, .61, .36, 1);
}

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--stone);
	color: var(--ink);
	font-family: var(--body);
	font-size: 1.0625rem;
	line-height: 1.7;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

a {
	color: var(--moss);
	text-decoration-thickness: 1px;
	text-underline-offset: .18em;
}

a:hover {
	color: var(--juniper);
}

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

button {
	font: inherit;
	/* color: inherit; */
}

table {
	border-collapse: collapse;
	width: 100%;
}

h1,
h2,
h3,
h4 {
	margin: 0;
	font-weight: 400;
}

/* paper tooth — the lab sells surface texture, so the page has some */
body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 9999;
	opacity: .035;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23g)'/%3E%3C/svg%3E");
}

/* ---------- type ---------- */
.display {
	font-family: var(--display);
	font-variation-settings: "SOFT" 60, "WONK" 1, "opsz" 96;
	font-weight: 400;
	line-height: 1.04;
	letter-spacing: -.021em;
	color: var(--juniper);
	text-wrap: balance;
}

.d-xl {
	font-size: clamp(2.75rem, 6.4vw, 5rem);
}

.d-lg {
	font-size: clamp(2.1rem, 4.1vw, 3.1rem);
}

.d-md {
	font-size: clamp(1.6rem, 2.6vw, 2.1rem);
}

.d-sm {
	font-size: clamp(1.25rem, 1.8vw, 1.5rem);
	font-variation-settings: "SOFT" 40, "WONK" 0, "opsz" 32;
	letter-spacing: -.012em;
}

.eyebrow {
	font-family: var(--mono);
	font-size: .6875rem;
	font-weight: 500;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--slate);
	margin: 0 0 var(--s3);
}

.eyebrow--ochre {
	color: var(--ochre-deep);
}

.deck {
	font-size: clamp(1.0625rem, 1.35vw, 1.25rem);
	line-height: 1.62;
	color: var(--slate);
	max-width: 56ch;
	margin: var(--s4) 0 0;
	text-wrap: pretty;
}

.prose > * + * {
	margin-top: var(--s3);
}

.prose p {
	margin: 0;
	max-width: 68ch;
	text-wrap: pretty;
}

.prose h3 {
	font-family: var(--display);
	font-variation-settings: "SOFT" 40, "WONK" 0, "opsz" 32;
	font-size: 1.375rem;
	color: var(--juniper);
	margin-top: var(--s5);
	letter-spacing: -.01em;
}

.prose ul {
	margin: 0;
	padding-left: 1.1rem;
	max-width: 68ch;
}

.prose li + li {
	margin-top: .4rem;
}

.prose strong {
	font-weight: 700;
	color: var(--juniper);
}

.prose--tight p {
	max-width: 62ch;
}

.lede {
	font-size: 1.1875rem;
	line-height: 1.62;
	color: var(--ink);
}

.fine {
	font-size: .875rem;
	color: var(--slate);
	line-height: 1.6;
}

.mono {
	font-family: var(--mono);
	font-variant-numeric: tabular-nums;
}

/* ---------- layout ---------- */
.wrap {
	width: 100%;
	max-width: var(--wrap);
	margin-inline: auto;
	padding-inline: var(--s4);
}

.wrap--narrow {
	max-width: 820px;
}

.section {
	padding-block: var(--s7);
}

.section--tight {
	padding-block: var(--s6);
}

.section--bone {
	background: var(--bone);
}

.section__head {
	max-width: 62ch;
	margin-bottom: var(--s6);
}

.rule {
	height: 1px;
	background: var(--stone-deep);
	border: 0;
	margin: 0;
}

/* ---------- calibration strip — the signature ---------- */
/* Eight earth pigments standing in for the lab's step wedge. It rules the
   header, divides sections, and closes the footer. Nothing else decorates. */
.strip {
	display: flex;
	height: 4px;
	width: 100%;
}

.strip span {
	flex: 1 1 0;
}

.strip span:nth-child(1) {
	background: #e8e2d4;
}

.strip span:nth-child(2) {
	background: var(--ochre);
}

.strip span:nth-child(3) {
	background: var(--rust);
}

.strip span:nth-child(4) {
	background: var(--rose);
}

.strip span:nth-child(5) {
	background: var(--moss);
}

.strip span:nth-child(6) {
	background: var(--juniper);
}

.strip span:nth-child(7) {
	background: var(--slate);
}

.strip span:nth-child(8) {
	background: var(--juniper-deep);
}

.strip--tall {
	height: 10px;
	border-radius: 99px;
	overflow: hidden;
}

/* ---------- header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 200;
	background: rgba(234, 230, 220, .88);
	backdrop-filter: saturate(140%) blur(12px);
	-webkit-backdrop-filter: saturate(140%) blur(12px);
}

.site-header__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s4);
	min-height: 78px;
}

.brand {
	display: inline-flex;
	align-items: baseline;
	gap: .55rem;
	text-decoration: none;
}

.brand__mark {
	font-family: var(--display);
	font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 48;
	font-size: 1.75rem;
	font-weight: 600;
	letter-spacing: -.02em;
	color: var(--juniper);
	line-height: 1;
}

.brand__sub {
	font-family: var(--mono);
	font-size: .625rem;
	font-weight: 500;
	letter-spacing: .17em;
	text-transform: uppercase;
	color: var(--slate);
}

.brand:hover .brand__mark {
	color: var(--moss);
}

/* nav */
.nav {
	display: flex;
	align-items: center;
	gap: .15rem;
}

.nav__link {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	padding: .55rem .7rem;
	border-radius: var(--r-sm);
	font-size: .9375rem;
	font-weight: 500;
	color: var(--ink);
	text-decoration: none;
	white-space: nowrap;
	transition: background .18s var(--ease), color .18s var(--ease);
}

.nav__link:hover {
	background: rgba(38, 56, 47, .07);
	color: var(--juniper);
}

.nav__link[aria-current="page"] {
	color: var(--juniper);
	font-weight: 700;
}

.nav__link[aria-current="page"]::after {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 99px;
	background: var(--ochre);
}

/* parent of the current page, for the dropdown groups */
.nav__link.is-active {
	color: var(--juniper);
	font-weight: 700;
}

.nav__caret {
	width: 9px;
	height: 9px;
	stroke: currentColor;
	stroke-width: 2;
	fill: none;
	opacity: .5;
}

.nav__group {
	position: relative;
}

.nav__panel {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	min-width: 260px;
	padding: .5rem;
	background: var(--bone);
	border: var(--line);
	border-radius: var(--r-md);
	box-shadow: var(--shadow-lift);
	list-style: none;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}

.nav__group:hover .nav__panel,
.nav__group:focus-within .nav__panel {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav__panel a {
	display: block;
	padding: .5rem .65rem;
	border-radius: var(--r-sm);
	font-size: .9375rem;
	color: var(--ink);
	text-decoration: none;
}

.nav__panel a:hover {
	background: rgba(91, 111, 82, .11);
	color: var(--juniper);
}

.nav__panel a[aria-current="page"] {
	color: var(--juniper);
	font-weight: 700;
	background: rgba(184, 134, 59, .12);
}

.nav__panel .is-sep {
	margin: .35rem .65rem;
	height: 1px;
	background: var(--stone-deep);
}

.nav-toggle {
	display: none;
	align-items: center;
	gap: .5rem;
	background: none;
	border: var(--line);
	border-radius: var(--r-sm);
	padding: .5rem .75rem;
	cursor: pointer;
	font-size: .875rem;
	font-weight: 500;
}

.nav-toggle__bars {
	display: grid;
	gap: 3px;
}

.nav-toggle__bars i {
	display: block;
	width: 16px;
	height: 1.5px;
	background: var(--ink);
}

/* header phone */
.header-tel {
	font-family: var(--mono);
	font-size: .8125rem;
	font-weight: 500;
	color: var(--juniper);
	text-decoration: none;
	white-space: nowrap;
	padding: .5rem .8rem;
	border: 1px solid rgba(38, 56, 47, .2);
	border-radius: 99px;
}

.header-tel:hover {
	border-color: var(--ochre);
	color: var(--ochre-deep);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: .55rem;
	flex: 0 0 auto;
}

/* ---------- notice bar ---------- */
.notice {
	background: var(--juniper);
	color: #dfe4dc;
	font-size: .875rem;
}

.notice__inner {
	display: flex;
	align-items: flex-start;
	gap: var(--s3);
	padding-block: .7rem;
}

.notice__tag {
	font-family: var(--mono);
	font-size: .625rem;
	font-weight: 500;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--ochre);
	border: 1px solid rgba(184, 134, 59, .45);
	border-radius: 99px;
	padding: .2rem .55rem;
	flex: 0 0 auto;
	margin-top: .1rem;
}

.notice__body {
	margin: 0;
	line-height: 1.55;
}

.notice__body a {
	color: #fff;
	text-decoration-color: rgba(255, 255, 255, .5);
}

.notice__close {
	margin-left: auto;
	flex: 0 0 auto;
	background: none;
	border: 0;
	cursor: pointer;
	color: rgba(255, 255, 255, .65);
	font-size: 1.1rem;
	line-height: 1;
	padding: .2rem .35rem;
}

.notice__close:hover {
	color: #fff;
}

/* ---------- buttons ---------- */
.bttn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	padding: .8rem 1.4rem;
	border-radius: 99px;
	font-family: var(--body);
	font-size: .9375rem;
	font-weight: 600;
	letter-spacing: .005em;
	text-decoration: none;
	cursor: pointer;
	border: 1px solid transparent;
	transition: transform .18s var(--ease), background .18s var(--ease),
		border-color .18s var(--ease), color .18s var(--ease), box-shadow .18s var(--ease);
}

.btn:hover {
	transform: translateY(-1px);
}

.btn--primary {
	background: var(--juniper);
	color: #f4f2ea;
	box-shadow: var(--shadow-soft);
}

.btn--primary:hover {
	background: var(--juniper-deep);
	color: #fff;
}

.btn--ochre {
	background: var(--ochre);
	color: #241704;
}

.btn--ochre:hover {
	background: var(--ochre-deep);
	color: #fff;
}

.btn--ghost {
	border-color: rgba(38, 56, 47, .25);
	color: var(--juniper);
	background: transparent;
}

.btn--ghost:hover {
	border-color: var(--juniper);
	background: rgba(38, 56, 47, .05);
}

.btn--sm {
	padding: .55rem 1rem;
	font-size: .875rem;
}

.btn__arrow {
	transition: transform .2s var(--ease);
}

.btn:hover .btn__arrow {
	transform: translateX(3px);
}

.btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s2);
	margin-top: var(--s5);
}

/* ---------- hero ---------- */
.hero {
	padding-block: clamp(var(--s6), 8vw, var(--s8)) var(--s7);
}

.hero__grid {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: clamp(var(--s5), 5vw, var(--s7));
	align-items: center;
}

.hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s4);
	margin-top: var(--s6);
	padding-top: var(--s4);
	border-top: var(--line);
}

.hero__stat {
	min-width: 118px;
}

.hero__stat dt {
	font-family: var(--mono);
	font-size: .625rem;
	font-weight: 500;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--slate);
	margin-bottom: .3rem;
}

.hero__stat dd {
	margin: 0;
	font-family: var(--display);
	font-size: 1.5rem;
	color: var(--juniper);
	font-variation-settings: "SOFT" 40, "WONK" 0, "opsz" 32;
	line-height: 1.1;
}

/* ---------- plate: a print, shown on neutral white, with a wall label ---------- */
.plate {
	background: var(--white);
	border-radius: var(--r-lg);
	padding: var(--s3);
	box-shadow: var(--shadow-lift);
	border: 1px solid rgba(28, 39, 33, .06);
}

.plate__img {
	border-radius: var(--r-md);
	overflow: hidden;
	background: var(--white);
}

.plate__img img {
	width: 100%;
}

.plate__label {
	display: flex;
	flex-wrap: wrap;
	gap: .3rem var(--s3);
	padding: var(--s3) var(--s2) var(--s1);
}

.plate__label dt {
	font-family: var(--mono);
	font-size: .5625rem;
	font-weight: 500;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--slate-soft);
	width: 100%;
	margin: 0;
}

.plate__label dd {
	margin: 0;
	font-family: var(--mono);
	font-size: .75rem;
	color: var(--ink);
	font-variant-numeric: tabular-nums;
}

.plate__label dd + dt {
	margin-top: .45rem;
}

.plate--flush {
	padding: var(--s2);
}

.plate--tint {
	background: var(--bone);
}

/* wall label used beside body copy */
.wall-label {
	font-family: var(--mono);
	font-size: .6875rem;
	line-height: 1.6;
	color: var(--slate);
	letter-spacing: .02em;
	padding-top: var(--s2);
	margin-top: var(--s2);
	border-top: var(--line);
}

.wall-label b {
	color: var(--juniper);
	font-weight: 500;
}

/* ---------- cards ---------- */
.card {
	background: var(--bone);
	border: var(--line);
	border-radius: var(--r-lg);
	padding: var(--s5);
	display: flex;
	flex-direction: column;
	gap: var(--s2);
	transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}

.card--link:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-lift);
	border-color: rgba(184, 134, 59, .5);
}

.card__title {
	font-family: var(--display);
	font-variation-settings: "SOFT" 40, "WONK" 0, "opsz" 32;
	font-size: 1.3125rem;
	color: var(--juniper);
	letter-spacing: -.01em;
	line-height: 1.2;
}

.card--link .card__title {
	text-decoration: none;
}

.card__body {
	margin: 0;
	font-size: .9375rem;
	color: var(--slate);
	line-height: 1.6;
}

.card__foot {
	margin-top: auto;
	padding-top: var(--s3);
	font-family: var(--mono);
	font-size: .75rem;
	font-weight: 500;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--ochre-deep);
	display: inline-flex;
	align-items: center;
	gap: .4rem;
}

.card--link:hover .card__foot .btn__arrow {
	transform: translateX(3px);
}

.card__price {
	font-family: var(--mono);
	font-size: .8125rem;
	color: var(--juniper);
	font-variant-numeric: tabular-nums;
}

.card__media {
	margin: calc(var(--s5) * -1) calc(var(--s5) * -1) 0;
	border-radius: var(--r-lg) var(--r-lg) 0 0;
	overflow: hidden;
	background: var(--white);
}

.grid {
	display: grid;
	gap: var(--s4);
}

.grid--2 {
	grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
	grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
	grid-template-columns: repeat(4, 1fr);
}

.grid--center {
	align-items: center;
}

/* ---------- product page shell ---------- */
.page-head {
	padding-block: var(--s6) var(--s5);
}

.page-head__grid {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: var(--s6);
	align-items: end;
}

.crumb {
	font-family: var(--mono);
	font-size: .6875rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--slate);
	margin-bottom: var(--s3);
}

.crumb a {
	color: var(--slate);
	text-decoration: none;
}

.crumb a:hover {
	color: var(--juniper);
	text-decoration: underline;
}

.crumb span {
	opacity: .45;
	margin-inline: .4rem;
}

.layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: clamp(var(--s5), 4vw, var(--s7));
	align-items: start;
}

.layout__aside {
	position: sticky;
	top: 104px;
	display: grid;
	gap: var(--s4);
}

.block + .block {
	margin-top: var(--s7);
}

.block__title {
	margin-bottom: var(--s4);
}

/* ---------- spec sheet (Fast Facts) ---------- */
.spec {
	background: var(--bone);
	border: var(--line);
	border-radius: var(--r-lg);
	overflow: hidden;
}

.spec__head {
	padding: var(--s3) var(--s4);
	background: var(--juniper);
	color: #e4e8e0;
	font-family: var(--mono);
	font-size: .6875rem;
	font-weight: 500;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.spec__list {
	margin: 0;
	padding: var(--s2) var(--s4) var(--s4);
	list-style: none;
}

.spec__list li {
	padding: var(--s3) 0;
	border-bottom: var(--line);
	font-size: .875rem;
	line-height: 1.6;
	color: var(--ink);
	display: grid;
	grid-template-columns: 14px 1fr;
	gap: .7rem;
	align-items: start;
}

.spec__list li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.spec__list li::before {
	content: "";
	width: 6px;
	height: 6px;
	margin-top: .55rem;
	border-radius: 99px;
	background: var(--ochre);
	grid-column: 1;
}

.spec__list b {
	font-weight: 700;
	color: var(--juniper);
}

/* soft-proofing steps — a real sequence, so it is genuinely numbered */
.steps {
	margin: 0;
	padding: var(--s2) var(--s4) var(--s4) 0;
	list-style: none;
	counter-reset: step;
}

.steps li {
	position: relative;
	counter-increment: step;
	padding: var(--s3) 0 var(--s3) 3.2rem;
	border-bottom: var(--line);
	font-size: .9375rem;
	line-height: 1.65;
}

.steps li:last-child {
	border-bottom: 0;
}

.steps li::before {
	content: counter(step, decimal-leading-zero);
	position: absolute;
	left: var(--s4);
	top: var(--s3);
	font-family: var(--mono);
	font-size: .6875rem;
	font-weight: 500;
	color: var(--ochre-deep);
	letter-spacing: .06em;
}

.steps b {
	color: var(--juniper);
	font-weight: 700;
}

.steps em {
	font-style: italic;
	color: var(--juniper);
}

code {
	font-family: var(--mono);
	font-size: .8125em;
	background: rgba(38, 56, 47, .07);
	color: var(--juniper);
	padding: .1em .38em;
	border-radius: 5px;
}

/* keyed spec rows: label / value */
.keys {
	margin: 0;
	display: grid;
}

.keys div {
	display: flex;
	justify-content: space-between;
	gap: var(--s3);
	padding: .7rem 0;
	border-bottom: var(--line);
}

.keys div:last-child {
	border-bottom: 0;
}

.keys dt {
	font-size: .875rem;
	color: var(--slate);
}

.keys dd {
	margin: 0;
	font-family: var(--mono);
	font-size: .8125rem;
	color: var(--juniper);
	font-variant-numeric: tabular-nums;
	text-align: right;
}

/* ---------- price tables — set like a printer's spec sheet ---------- */
.ptable-wrap {
	background: var(--bone);
	border: var(--line);
	border-radius: var(--r-lg);
	overflow: hidden;
}

.ptable-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.ptable {
	font-variant-numeric: tabular-nums;
	min-width: 100%;
}

.ptable caption {
	text-align: left;
	padding: var(--s4) var(--s4) var(--s3);
	font-family: var(--mono);
	font-size: .6875rem;
	font-weight: 500;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--slate);
	border-bottom: var(--line);
}

.ptable th,
.ptable td {
	padding: .7rem var(--s3);
	text-align: right;
}

.ptable thead th {
	position: sticky;
	top: 0;
	z-index: 2;
	background: var(--stone);
	color: var(--juniper);
	font-family: var(--mono);
	font-size: .625rem;
	font-weight: 500;
	letter-spacing: .1em;
	text-transform: uppercase;
	line-height: 1.45;
	vertical-align: bottom;
	border-bottom: 1px solid var(--slate-soft);
}

.ptable thead th small {
	display: block;
	font-weight: 400;
	letter-spacing: .06em;
	opacity: .7;
	text-transform: none;
}

.ptable th:first-child,
.ptable td:first-child {
	text-align: left;
	padding-left: var(--s4);
	font-family: var(--mono);
	font-size: .8125rem;
	color: var(--juniper);
}

.ptable td:last-child,
.ptable th:last-child {
	padding-right: var(--s4);
}

.ptable tbody th {
	font-weight: 500;
}

.ptable tbody td {
	font-family: var(--mono);
	font-size: .8125rem;
	color: var(--ink);
}

.ptable tbody tr + tr th,
.ptable tbody tr + tr td {
	border-top: var(--line);
}

.ptable tbody tr:hover th,
.ptable tbody tr:hover td {
	background: rgba(184, 134, 59, .09);
}

.ptable .na {
	color: var(--slate-soft);
}

.ptable__note {
	padding: var(--s3) var(--s4);
	border-top: var(--line);
	font-size: .8125rem;
	color: var(--slate);
	background: rgba(222, 216, 202, .35);
}

/* simple two-column price list */
.plist {
	margin: 0;
	border: var(--line);
	border-radius: var(--r-lg);
	overflow: hidden;
	background: var(--bone);
}

.plist__rows {
	margin: 0;
}

.plist div {
	display: flex;
	justify-content: space-between;
	gap: var(--s3);
	padding: .7rem var(--s4);
	border-bottom: var(--line);
}

.plist div:last-child {
	border-bottom: 0;
}

.plist div:hover {
	background: rgba(184, 134, 59, .09);
}

.plist dt {
	font-family: var(--mono);
	font-size: .8125rem;
	color: var(--juniper);
}

.plist dd {
	margin: 0;
	font-family: var(--mono);
	font-size: .8125rem;
	color: var(--ink);
	font-variant-numeric: tabular-nums;
}

.plist__head {
	padding: var(--s3) var(--s4);
	background: var(--juniper);
	color: #e4e8e0;
	font-family: var(--mono);
	font-size: .6875rem;
	font-weight: 500;
	letter-spacing: .15em;
	text-transform: uppercase;
}

/* ---------- FAQ ---------- */
.faq {
	border-top: var(--line);
}

.faq details {
	border-bottom: var(--line);
}

.faq summary {
	display: flex;
	align-items: flex-start;
	gap: var(--s3);
	padding: var(--s4) 0;
	cursor: pointer;
	list-style: none;
	font-size: 1.0625rem;
	font-weight: 500;
	color: var(--juniper);
	line-height: 1.5;
}

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

.faq summary::after {
	content: "";
	flex: 0 0 auto;
	margin-left: auto;
	margin-top: .45rem;
	width: 11px;
	height: 11px;
	background: currentColor;
	clip-path: polygon(46% 0, 54% 0, 54% 46%, 100% 46%, 100% 54%, 54% 54%, 54% 100%, 46% 100%, 46% 54%, 0 54%, 0 46%, 46% 46%);
	transition: transform .24s var(--ease);
	color: var(--ochre);
}

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

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

.faq__answer {
	padding: 0 0 var(--s4);
}

.faq__answer p {
	margin: 0;
	max-width: 70ch;
	color: var(--slate);
}

.faq__answer p + p {
	margin-top: var(--s3);
}

/* ---------- ordering ---------- */
.order-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--s4);
}

.order-card {
	background: var(--bone);
	border: var(--line);
	border-radius: var(--r-lg);
	padding: var(--s5);
	display: flex;
	flex-direction: column;
	gap: var(--s3);
}

.order-card__top {
	display: flex;
	align-items: center;
	gap: var(--s4);
}

.order-card__mark {
	flex: 0 0 auto;
	width: 92px;
	padding: .5rem;
	background: var(--white);
	border: 1px solid rgba(28, 39, 33, .08);
	border-radius: var(--r-md);
}

.order-card__kind {
	font-family: var(--mono);
	font-size: .625rem;
	font-weight: 500;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: var(--ochre-deep);
	margin-bottom: .3rem;
}

.order-card ol {
	margin: 0;
	padding-left: 1.15rem;
	font-size: .875rem;
	color: var(--slate);
	line-height: 1.65;
}

.order-card ol li + li {
	margin-top: .45rem;
}

.order-card .btn {
	align-self: flex-start;
	margin-top: auto;
}

/* ---------- reference wedge (color management) ---------- */
/* A printed step wedge, not a control — the values are always readable,
   the way they are on a real reference target. */
.wedge {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	border-radius: var(--r-md);
	overflow: hidden;
	border: 1px solid rgba(28, 39, 33, .08);
}

.wedge div {
	aspect-ratio: 1 / 1.4;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: .45rem;
}

.wedge span {
	font-family: var(--mono);
	font-size: .5rem;
	letter-spacing: .01em;
	line-height: 1;
}

/* profile download list */
.dl-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.dl-list li {
	border-bottom: var(--line);
}

.dl-list li:last-child {
	border-bottom: 0;
}

.dl-list a {
	display: flex;
	align-items: center;
	gap: var(--s3);
	padding: .8rem 0;
	text-decoration: none;
	color: var(--ink);
	font-size: .9375rem;
}

.dl-list a:hover {
	color: var(--juniper);
}

.dl-list a:hover .dl-list__cue {
	color: var(--ochre-deep);
	border-color: var(--ochre);
}

.dl-list__cue {
	margin-left: auto;
	flex: 0 0 auto;
	font-family: var(--mono);
	font-size: .625rem;
	font-weight: 500;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--slate);
	border: 1px solid var(--stone-deep);
	border-radius: 99px;
	padding: .2rem .6rem;
}

/* ---------- forms ---------- */
.form {
	display: grid;
	gap: var(--s4);
}

.field {
	display: grid;
	gap: .45rem;
}

.field label {
	font-family: var(--mono);
	font-size: .6875rem;
	font-weight: 500;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--slate);
}

.field input,
.field textarea,
.field select {
	font-family: var(--body);
	font-size: 1rem;
	color: var(--ink);
	background: var(--white);
	border: 1px solid var(--stone-deep);
	border-radius: var(--r-md);
	padding: .8rem var(--s3);
	width: 100%;
	transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}

.field textarea {
	min-height: 168px;
	resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
	outline: 0;
	border-color: var(--moss);
	box-shadow: 0 0 0 3px rgba(91, 111, 82, .16);
}

.field__hint {
	font-size: .8125rem;
	color: var(--slate-soft);
}

.form__status {
	margin: 0;
	padding: var(--s3) var(--s4);
	border-radius: var(--r-md);
	font-size: .9375rem;
	line-height: 1.6;
}

.form__status.is-warn {
	background: rgba(184, 134, 59, .14);
	border: 1px solid rgba(184, 134, 59, .4);
	color: var(--ink);
}

/* ---------- contact ---------- */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: clamp(var(--s5), 4vw, var(--s7));
	align-items: start;
}

.info-card {
	background: var(--bone);
	border: var(--line);
	border-radius: var(--r-lg);
	padding: var(--s5);
}

.info-card + .info-card {
	margin-top: var(--s4);
}

.info-card__title {
	font-family: var(--mono);
	font-size: .6875rem;
	font-weight: 500;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: var(--slate);
	margin-bottom: var(--s3);
}

.info-card address {
	font-style: normal;
	line-height: 1.75;
}

.tel-big {
	font-family: var(--display);
	font-variation-settings: "SOFT" 40, "WONK" 0, "opsz" 40;
	font-size: 1.75rem;
	color: var(--juniper);
	text-decoration: none;
	letter-spacing: -.01em;
}

.tel-big:hover {
	color: var(--ochre-deep);
}

/* ---------- footer ---------- */
.site-footer {
	background: var(--juniper-deep);
	color: #b9c2b8;
	margin-top: var(--s7);
}

.site-footer a {
	color: #d7dcd4;
	text-decoration: none;
}

.site-footer a:hover {
	color: #fff;
	text-decoration: underline;
}

.footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: var(--s5);
	padding-block: var(--s7) var(--s6);
}

.footer__brand .brand__mark {
	color: #f2f0e6;
}

.footer__brand .brand__sub {
	color: #8a9488;
}

.footer__blurb {
	font-size: .875rem;
	line-height: 1.7;
	color: #9aa598;
	max-width: 34ch;
	margin: var(--s4) 0 0;
}

.footer__col h3 {
	font-family: var(--mono);
	font-size: .625rem;
	font-weight: 500;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: #7e8a7d;
	margin-bottom: var(--s3);
}

.footer__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer__col li + li {
	margin-top: .55rem;
}

.footer__col a {
	font-size: .9375rem;
}

.footer__meta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s3) var(--s5);
	justify-content: space-between;
	padding-block: var(--s4);
	border-top: 1px solid rgba(255, 255, 255, .09);
	font-size: .8125rem;
	color: #7e8a7d;
}

.footer__meta p {
	margin: 0;
}

.social {
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	text-decoration: none;
}

.social img {
	width: 26px;
	height: 26px;
	border-radius: 7px;
}

.footer address {
	font-style: normal;
	font-size: .875rem;
	line-height: 1.7;
	color: #9aa598;
}

/* ---------- motion ---------- */
.reveal {
	opacity: 0;
	transform: translateY(18px);
}

.reveal.is-in {
	opacity: 1;
	transform: none;
	transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-in[data-delay="1"] {
	transition-delay: .08s;
}

.reveal.is-in[data-delay="2"] {
	transition-delay: .16s;
}

.reveal.is-in[data-delay="3"] {
	transition-delay: .24s;
}

/* ---------- utilities ---------- */
.stack-lg > * + * {
	margin-top: var(--s5);
}

.mt-0 {
	margin-top: 0;
}

.mt-4 {
	margin-top: var(--s4);
}

.mt-5 {
	margin-top: var(--s5);
}

.center {
	text-align: center;
	margin-inline: auto;
}

.center .deck {
	margin-inline: auto;
}

.btn-row--center {
	justify-content: center;
}

/* cards and plates that are themselves links, or hold one */
a.card,
a.card:hover {
	text-decoration: none;
}

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

.card__title a:hover {
	color: var(--moss);
}

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

figure.plate {
	margin: 0;
}

.keys--inset {
	padding: 0 var(--s4) var(--s4);
}

.brand--static {
	pointer-events: none;
}

.mt-3 {
	margin-top: var(--s3);
}

.mb-4 {
	margin: 0 0 var(--s4);
}

.pad-4 {
	padding: var(--s4);
}

.pad-body {
	padding: 0 var(--s4) var(--s3);
}

.on-light {
	color: #1c2721;
}

.on-dark {
	color: #f2f0e6;
}

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

.tag {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	font-family: var(--mono);
	font-size: .625rem;
	font-weight: 500;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--ochre-deep);
	background: rgba(184, 134, 59, .14);
	border-radius: 99px;
	padding: .3rem .7rem;
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
	.layout {
		grid-template-columns: 1fr;
	}

	.layout__aside {
		position: static;
		grid-template-columns: repeat(2, 1fr);
	}

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

	.grid--4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 900px) {
	.nav {
		display: none;
	}

	.nav-toggle {
		display: inline-flex;
	}

	.site-header.is-open .nav {
		display: block;
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		background: var(--bone);
		border-top: var(--line);
		border-bottom: var(--line);
		padding: var(--s3) var(--s4) var(--s4);
		box-shadow: var(--shadow-lift);
		max-height: calc(100vh - 78px);
		overflow-y: auto;
	}

	.site-header.is-open .nav__group {
		position: static;
	}

	.site-header.is-open .nav__link {
		width: 100%;
		justify-content: space-between;
		padding: .7rem .25rem;
	}

	.site-header.is-open .nav__panel {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: 0;
		background: transparent;
		padding: 0 0 var(--s3) var(--s3);
		min-width: 0;
		border-left: 2px solid var(--stone-deep);
		margin-left: .25rem;
	}

	.header-tel {
		display: none;
	}

	.hero__grid,
	.page-head__grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.page-head__grid {
		align-items: start;
		gap: var(--s5);
	}

	.grid--3 {
		grid-template-columns: repeat(2, 1fr);
	}

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

@media (max-width: 640px) {
	body {
		font-size: 1rem;
	}

	.section {
		padding-block: var(--s6);
	}

	.grid--2,
	.grid--3,
	.grid--4 {
		grid-template-columns: 1fr;
	}

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

	.footer__grid {
		grid-template-columns: 1fr;
		gap: var(--s5);
		padding-block: var(--s6) var(--s5);
	}

	.hero__meta {
		gap: var(--s3) var(--s4);
	}

	.wedge {
		grid-template-columns: repeat(4, 1fr);
	}

	.card {
		padding: var(--s4);
	}

	.card__media {
		margin: calc(var(--s4) * -1) calc(var(--s4) * -1) 0;
	}

	.notice__inner {
		flex-wrap: wrap;
	}

	.ptable th:first-child,
	.ptable td:first-child {
		padding-left: var(--s3);
	}
}

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

	*,
	*::before,
	*::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
		scroll-behavior: auto !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}

@media print {

	.site-header,
	.site-footer,
	.notice,
	.btn-row,
	.nav-toggle {
		display: none;
	}

	body {
		background: #fff;
	}

	body::before {
		display: none;
	}
}