:root {
	--black: #000000;
	--white: #ffffff;
	--paper: #f7f7f7;
	--soft: #e9e9e9;
	--ink-soft: #2b2b2b;
	--rule: #c9c9c9;
	--accent: #9b7ab8;
	--accent-rgb: 155, 122, 184;
	--olive: var(--accent);
	--heading: "Jost", Arial, sans-serif;
	--body: "Tenor Sans", Georgia, serif;
	--content-max: 1180px;
	--radius: 0.4em;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--black);
	font-family: var(--body);
	font-size: 17px;
	line-height: 1.75;
}

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

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

.fas,
.far,
.fab,
[class^="fa-"],
[class*=" fa-"] {
	color: var(--olive);
}

p {
	margin: 0;
}

h1,
h2,
h3 {
	margin: 0;
	color: var(--black);
	font-family: var(--heading);
	font-weight: 600;
	line-height: 1.02;
	letter-spacing: 0;
	text-transform: uppercase;
}

h1 {
	max-width: 10ch;
	font-size: clamp(3.5rem, 8.7vw, 8rem);
}

h2 {
	font-size: clamp(2.5rem, 6vw, 5.8rem);
}

h3 {
	font-size: 1.35rem;
}

.site-header {
	min-height: 100vh;
	background: var(--white);
	border-bottom: 1px solid var(--black);
}

.page-header {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background: var(--white);
	border-bottom: 1px solid var(--black);
}

.nav {
	position: sticky;
	top: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem clamp(1rem, 4vw, 3rem);
	background: var(--black);
	color: var(--white);
	border-bottom: 1px solid var(--black);
}

.brand-mark {
	position: relative;
	z-index: 20;
	display: block;
	width: clamp(3.6rem, 6vw, 5rem);
	height: clamp(3.6rem, 6vw, 5rem);
	padding: 0.18rem;
	background: var(--white);
	border: 3px solid var(--black);
	border-radius: var(--radius);
	box-shadow: 0.12em 0.12em 0 var(--white);
	overflow: hidden;
	transform-origin: top left;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.brand-mark:hover,
.brand-mark:focus-visible {
	z-index: 30;
	border-color: transparent;
	box-shadow: 0.18em 0.18em 0 var(--white);
	transform: scale(2.05);
}

.brand-mark img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	text-transform: uppercase;
}

.nav-links a,
.nav-menu-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.65rem;
	padding: 0.6em 1.05em;
	background: var(--white);
	border: 3px solid var(--black);
	border-radius: var(--radius);
	box-shadow: 0.12em 0.12em 0 var(--white);
	color: var(--black);
	cursor: pointer;
	font-family: var(--heading);
	font-size: 0.8rem;
	font-weight: 700;
	line-height: 1;
	transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-menu-button:hover,
.nav-menu-button:focus-visible,
.nav-toggle:focus-visible + .nav-menu-button {
	background: var(--olive);
	color: var(--black);
	transform: translate(-0.05em, -0.05em);
	box-shadow: 0.18em 0.18em 0 var(--white);
}

.nav-links a[aria-current="page"] {
	background: var(--olive);
	color: var(--black);
}

.nav-links a:active,
.nav-menu-button:active {
	transform: translate(0.05em, 0.05em);
	box-shadow: 0.05em 0.05em 0 var(--white);
}

.nav-toggle,
.nav-menu-button {
	display: none;
}

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

.hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
	gap: clamp(1.5rem, 4vw, 4rem);
	align-items: center;
	min-height: calc(100vh - 5.05rem);
	max-width: var(--content-max);
	margin: 0 auto;
	padding: clamp(0.75rem, 2vw, 1.5rem) clamp(1rem, 4vw, 3rem) clamp(4.5rem, 9vw, 7rem);
}

.page-hero {
	position: relative;
	z-index: 2;
	isolation: isolate;
	overflow: hidden;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(10rem, 0.3fr);
	gap: clamp(1.25rem, 3vw, 3rem);
	align-items: center;
	max-width: var(--content-max);
	margin: 0 auto;
	padding: clamp(1.25rem, 3.5vw, 3rem) clamp(1rem, 4vw, 3rem) clamp(1.5rem, 3.5vw, 3rem);
}

.page-header:not(.faq-page-header)::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: url("../images/photos/wide/balms-shelf-assortment-wide.webp") center center / cover no-repeat;
	content: "";
	opacity: 0.18;
	pointer-events: none;
}

.faq-page-header::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: var(--accent);
	content: "";
	opacity: 0.18;
	pointer-events: none;
}

.page-header .nav,
.page-header .page-hero {
	position: relative;
	z-index: 1;
}

.page-hero-copy {
	position: relative;
	z-index: 5;
	display: grid;
	gap: 1rem;
}

.page-hero h1 {
	max-width: 16ch;
	font-size: clamp(2.4rem, 5.2vw, 4.6rem);
}

.page-hero-logo {
	position: relative;
	z-index: 2;
	justify-self: end;
	width: min(100%, 14rem);
	margin: 0;
	padding: 0.55rem;
	background: var(--white);
	border: 3px solid var(--black);
	border-radius: var(--radius);
	box-shadow: 0.18em 0.18em 0 var(--black);
	transform: rotate(2deg);
}

.page-hero-logo img {
	width: 100%;
	border-radius: var(--radius);
	filter: grayscale(1);
}

.page-hero-photo {
	background: var(--paper);
}

.page-hero-photo img {
	aspect-ratio: 1;
	object-fit: cover;
	filter: none;
}

.hero-copy {
	position: relative;
	z-index: 5;
	display: grid;
	gap: 1.4rem;
	align-content: end;
}

.eyebrow,
.section-label {
	font-family: var(--body);
	font-size: 0.76rem;
	line-height: 1.25;
	text-transform: uppercase;
}

.eyebrow {
	max-width: max-content;
	padding: 0.45rem 0.65rem;
	border: 1px solid var(--black);
	border-radius: var(--radius);
	background: var(--white);
}

.hero-text {
	max-width: 36rem;
	font-size: clamp(1.15rem, 2vw, 1.55rem);
	color: var(--ink-soft);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 0.6rem;
}

.button {
	position: relative;
	z-index: 6;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.05rem;
	padding: 0.7em 1.35em;
	border: 3px solid var(--black);
	border-radius: var(--radius);
	box-shadow: 0.12em 0.12em 0 var(--black);
	cursor: pointer;
	font-family: var(--heading);
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button-dark {
	background: var(--black);
	color: var(--white);
}

.button-light {
	background: var(--white);
	color: var(--black);
}

.button:hover,
.button:focus-visible {
	transform: translate(-0.05em, -0.05em);
	box-shadow: 0.18em 0.18em 0 var(--black);
}

.button-dark:hover,
.button-dark:focus-visible {
	background: var(--black);
	color: var(--olive);
}

.button-light:hover,
.button-light:focus-visible {
	background: var(--olive);
	color: var(--black);
}

.button:active {
	transform: translate(0.05em, 0.05em);
	box-shadow: 0.05em 0.05em 0 var(--black);
}

.hero-media {
	margin: 0;
	background: var(--paper);
	border: 1px solid var(--black);
	border-radius: var(--radius);
	overflow: hidden;
}

.hero-media {
	position: relative;
	z-index: 1;
	align-self: center;
	justify-self: center;
	max-width: clamp(14rem, 25vw, 22rem);
	margin-left: clamp(-5rem, -5vw, -1.5rem);
	margin-top: 0;
	margin-bottom: 0;
	padding: clamp(0.5rem, 1.5vw, 1rem);
	transform: rotate(-6deg);
	transform-origin: 54% 48%;
	animation: hero-card-idle-wiggle 12s ease-in-out 2s infinite;
}

.hero-media:hover,
.hero-media:focus-within {
	animation: hero-card-hover-wiggle 520ms ease-in-out;
}

.hero-media img,
.process img {
	width: 100%;
}

.hero-photo-card {
	max-width: clamp(20rem, 32vw, 31rem);
	margin-left: 0;
	padding: 0.65rem;
	background: var(--white);
	box-shadow: 0.18em 0.18em 0 var(--black);
	transform: rotate(-4deg);
	translate: 0 -0.5rem;
	animation: none;
}

.hero-photo-card:hover,
.hero-photo-card:focus-within {
	transform: rotate(-4deg) translateY(-0.08rem);
	animation: none;
}

.hero-photo-card img {
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-radius: calc(var(--radius) * 0.7);
	filter: none;
}

.hero-photo-card figcaption {
	padding: 0.75rem 0.2rem 0.1rem;
	color: var(--ink-soft);
	font-family: var(--heading);
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1.25;
	text-transform: uppercase;
}

@keyframes hero-card-hover-wiggle {
	0% {
		transform: rotate(-6deg) translateX(1.5rem);
	}

	22% {
		transform: rotate(-8deg) translateX(1.35rem) translateY(-0.1rem);
	}

	45% {
		transform: rotate(-4deg) translateX(1.65rem) translateY(0.08rem);
	}

	68% {
		transform: rotate(-7deg) translateX(1.45rem) translateY(-0.05rem);
	}

	100% {
		transform: rotate(-6deg) translateX(1.5rem);
	}
}

@keyframes hero-card-idle-wiggle {
	0%,
	62%,
	100% {
		transform: rotate(-6deg) translateX(1.5rem);
	}

	66% {
		transform: rotate(-6.9deg) translateX(1.42rem) translateY(-0.06rem);
	}

	70% {
		transform: rotate(-5.2deg) translateX(1.58rem) translateY(0.04rem);
	}

	74% {
		transform: rotate(-6.4deg) translateX(1.48rem);
	}

	78% {
		transform: rotate(-6deg) translateX(1.5rem);
	}
}

@keyframes process-card-hover-wiggle {
	0% {
		transform: rotate(-3deg);
	}

	22% {
		transform: rotate(-7deg) translateY(-0.18rem);
	}

	45% {
		transform: rotate(1deg) translateX(0.2rem) translateY(0.08rem);
	}

	68% {
		transform: rotate(-5deg) translateX(-0.16rem);
	}

	100% {
		transform: rotate(-3deg);
	}
}

@keyframes process-card-idle-wiggle {
	0%,
	48%,
	100% {
		transform: rotate(-3deg);
	}

	52% {
		transform: rotate(-5.5deg) translateY(-0.1rem);
	}

	56% {
		transform: rotate(-0.8deg) translateX(0.14rem);
	}

	60% {
		transform: rotate(-4deg) translateX(-0.08rem);
	}

	64% {
		transform: rotate(-3deg);
	}
}

@keyframes icon-bell-ring {
	0%,
	100% {
		transform: rotate(0deg) translateY(0);
	}

	10% {
		transform: rotate(14deg) translateY(-0.08rem);
	}

	20% {
		transform: rotate(-14deg) translateY(0.04rem);
	}

	30% {
		transform: rotate(10deg) translateY(-0.04rem);
	}

	40% {
		transform: rotate(-9deg);
	}

	50% {
		transform: rotate(5deg);
	}

	60% {
		transform: rotate(-4deg);
	}
}

.section {
	padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
	border-bottom: 1px solid var(--black);
}

.section-label {
	max-width: var(--content-max);
	margin-bottom: clamp(1.5rem, 4vw, 3rem);
	margin-left: auto;
	margin-right: auto;
	color: var(--ink-soft);
}

.split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.8fr);
	gap: clamp(2rem, 6vw, 6rem);
	align-items: start;
	max-width: var(--content-max);
	margin: 0 auto;
}

.copy-stack {
	display: grid;
	gap: 1.2rem;
	color: var(--ink-soft);
}

.section-heading-button {
	margin-top: clamp(1rem, 3vw, 1.5rem);
}

.intro-band {
	background: var(--paper);
	padding-top: clamp(7rem, 12vw, 10rem);
}

.values {
	background: var(--black);
	color: var(--white);
}

.values .section-label,
.values h3 {
	color: var(--white);
}

.value-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	max-width: var(--content-max);
	margin: 0 auto;
	background: var(--white);
	border: 1px solid var(--white);
	border-radius: var(--radius);
	overflow: hidden;
}

.value-grid article {
	display: grid;
	gap: 1.1rem;
	align-content: start;
	min-height: 20rem;
	padding: clamp(1.2rem, 3vw, 2rem);
	background: var(--black);
}

.value-grid .value-icon,
.faq-grid .value-icon,
.process-steps .step-icon {
	display: inline-grid;
	width: 3rem;
	height: 3rem;
	place-items: center;
	align-self: start;
	background: var(--white);
	border: 3px solid var(--black);
	border-radius: var(--radius);
	box-shadow: 0.12em 0.12em 0 var(--white);
	color: var(--olive);
	font-family: "Font Awesome 5 Free";
	font-size: 1.1rem;
	font-weight: 900;
	transform-origin: 50% 12%;
	will-change: transform;
}

.value-grid article:hover .value-icon,
.faq-grid article:hover .value-icon,
.process-steps article:hover .step-icon {
	animation: icon-bell-ring 0.68s ease-in-out infinite;
}

.value-grid span:not(.value-icon) {
	font-family: var(--body);
	font-size: 0.74rem;
	line-height: 1.25;
	text-transform: uppercase;
}

.value-grid p {
	color: var(--soft);
}

.photo-showcase {
	background: var(--white);
}

.photo-showcase-grid {
	display: grid;
	gap: clamp(1rem, 3vw, 1.5rem);
	max-width: var(--content-max);
	margin: 0 auto;
}

.photo-feature {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.65fr);
	gap: clamp(1.25rem, 4vw, 3rem);
	align-items: center;
	padding: clamp(0.7rem, 2vw, 1rem);
	background: var(--paper);
	border: 1px solid var(--black);
	border-radius: var(--radius);
	box-shadow: 0.18em 0.18em 0 var(--black);
}

.photo-feature img,
.shop-gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: calc(var(--radius) * 0.7);
	filter: none;
}

.photo-feature img {
	aspect-ratio: 16 / 9;
}

.photo-feature div {
	display: grid;
	gap: 1rem;
	padding: clamp(0.4rem, 1vw, 0.8rem);
}

.photo-feature span,
.shop-gallery span {
	font-family: var(--body);
	font-size: 0.74rem;
	line-height: 1.25;
	text-transform: uppercase;
}

.photo-feature p,
.shop-gallery p {
	color: var(--ink-soft);
}

.photo-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(0.8rem, 2vw, 1.2rem);
}

.photo-card-grid article,
.shop-gallery-grid > article {
	display: grid;
	gap: 0.85rem;
	align-content: start;
	padding: 0.65rem;
	background: var(--white);
	border: 1px solid var(--black);
	border-radius: var(--radius);
	box-shadow: 0.12em 0.12em 0 var(--black);
}

.photo-card-grid img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: calc(var(--radius) * 0.7);
	filter: none;
}

.photo-card-grid h3,
.shop-gallery h3 {
	padding: 0 0.2rem 0.15rem;
	font-size: 1rem;
}

.photo-feature h2,
.shop-gallery-main h2 {
	font-size: clamp(1.9rem, 4vw, 4rem);
}

.process {
	position: relative;
	overflow: hidden;
	background: var(--white);
	padding-bottom: clamp(6.5rem, 12vw, 10rem);
}

.process-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(16rem, 0.58fr);
	gap: clamp(2rem, 6vw, 6rem);
	align-items: center;
	max-width: var(--content-max);
	margin: 0 auto;
}

.process-grid > div {
	position: relative;
	z-index: 5;
	display: grid;
	gap: 1.2rem;
}

.process-grid p {
	color: var(--ink-soft);
}

.section-logo-card {
	position: absolute;
	right: max(clamp(1rem, 9vw, 8rem), calc((100vw - var(--content-max)) / 2 + 1rem));
	bottom: clamp(1rem, 4vw, 3rem);
	z-index: 1;
	width: clamp(13rem, 22vw, 20rem);
	margin: 0;
	padding: clamp(0.5rem, 1.5vw, 0.9rem);
	background: var(--paper);
	border: 1px solid var(--black);
	border-radius: var(--radius);
	box-shadow: 0.18em 0.18em 0 var(--black);
	overflow: hidden;
	transform: rotate(4deg);
	transform-origin: 50% 50%;
	animation: process-card-idle-wiggle 7s ease-in-out 1s infinite;
}

.section-logo-card:hover,
.section-logo-card:focus-within {
	animation: process-card-hover-wiggle 520ms ease-in-out;
}

.section-logo-card img {
	width: 100%;
	border-radius: var(--radius);
	filter: grayscale(1);
}

.section-logo-card.photo-card-tilt img {
	aspect-ratio: 1;
	object-fit: cover;
	filter: none;
}

.process-story {
	background: var(--paper);
}

.process-story-first {
	padding-top: clamp(7rem, 13vw, 12rem);
}

.process-steps-section {
	background: var(--black);
	color: var(--white);
}

.process-steps-section .section-label,
.process-steps-section h3 {
	color: var(--white);
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	max-width: var(--content-max);
	margin: 0 auto;
	background: var(--white);
	border: 1px solid var(--white);
	border-radius: var(--radius);
	overflow: hidden;
}

.process-steps-title {
	max-width: var(--content-max);
	margin: 0 auto clamp(1.5rem, 4vw, 3rem);
	color: var(--white);
}

.process-steps article {
	display: grid;
	gap: 1rem;
	align-content: start;
	min-height: 22rem;
	padding: clamp(1.2rem, 2.8vw, 2rem);
	background: var(--black);
}

.process-steps span:not(.step-icon),
.product-list-grid span {
	font-family: var(--body);
	font-size: 0.74rem;
	line-height: 1.25;
	text-transform: uppercase;
}

.process-steps p {
	color: var(--soft);
}

.process-feature {
	position: relative;
	overflow: hidden;
	background: var(--white);
	padding-bottom: clamp(6.5rem, 12vw, 10rem);
}

.process-feature-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(18rem, 1fr);
	gap: clamp(2rem, 6vw, 6rem);
	align-items: center;
	max-width: var(--content-max);
	margin: 0 auto;
}

.process-feature-grid > div {
	display: grid;
	gap: 1.2rem;
}

.process-feature-grid figure {
	margin: 0;
	padding: 0.7rem;
	background: var(--paper);
	border: 1px solid var(--black);
	border-radius: var(--radius);
	overflow: hidden;
	transform: rotate(-3deg);
	transform-origin: 50% 50%;
	animation: process-card-idle-wiggle 7s ease-in-out 1s infinite;
}

.process-feature-grid figure:hover,
.process-feature-grid figure:focus-within {
	animation: process-card-hover-wiggle 520ms ease-in-out;
}

.process-feature-grid img {
	width: 100%;
	filter: none;
}

.process-products {
	background: var(--paper);
	padding-bottom: clamp(7rem, 12vw, 11rem);
}

.product-list-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.8rem;
	max-width: var(--content-max);
	margin: 0 auto;
}

.product-list-grid span {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	min-height: 3rem;
	padding: 0.75rem 1rem;
	background: var(--white);
	border: 3px solid var(--black);
	border-radius: var(--radius);
	box-shadow: 0.12em 0.12em 0 var(--black);
	text-align: center;
}

.product-list-grid .product-list-wide {
	grid-column: 1 / -1;
}

.product-list-grid i {
	font-size: 1rem;
	color: var(--olive);
}

.product-placeholder-section {
	background: var(--paper);
}

.product-placeholder-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(0.9rem, 2vw, 1.2rem);
	max-width: var(--content-max);
	margin: 0 auto;
}

.product-card {
	display: grid;
	grid-template-rows: auto 1fr auto;
	gap: 1rem;
	min-height: 24rem;
	padding: clamp(1rem, 2.4vw, 1.35rem);
	background: var(--white);
	border: 3px solid var(--black);
	border-radius: var(--radius);
	box-shadow: 0.12em 0.12em 0 var(--black);
}

.product-card-wide {
	grid-column: 1 / -1;
	min-height: 0;
	grid-template-columns: auto minmax(0, 1fr) minmax(15rem, 0.42fr);
	grid-template-rows: auto;
	align-items: center;
}

.product-card-placeholder {
	display: grid;
	width: 100%;
	min-height: 7.5rem;
	place-items: center;
	background:
		linear-gradient(135deg, rgba(var(--accent-rgb), 0.12), rgba(var(--accent-rgb), 0) 62%),
		var(--paper);
	border: 1px dashed var(--black);
	border-radius: calc(var(--radius) * 0.8);
}

.product-card-wide .product-card-placeholder {
	width: clamp(7rem, 12vw, 9rem);
	min-height: clamp(5.5rem, 9vw, 7rem);
}

.product-card-placeholder i {
	color: var(--olive);
	font-size: clamp(1.4rem, 3vw, 2rem);
}

.product-card-copy {
	display: grid;
	gap: 0.8rem;
	align-content: start;
}

.product-card-copy span,
.product-card-footer label {
	font-family: var(--body);
	font-size: 0.72rem;
	line-height: 1.25;
	text-transform: uppercase;
}

.product-card-copy h3 {
	font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.product-card-copy p {
	color: var(--ink-soft);
	font-size: 0.95rem;
	line-height: 1.6;
}

.product-card-footer {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 0.55rem 0.8rem;
	align-items: end;
}

.product-card-footer label {
	grid-column: 1 / -1;
	color: var(--ink-soft);
}

.product-card-footer select {
	width: 100%;
	min-height: 2.8rem;
	padding: 0.55em 0.85em;
	background: var(--white);
	border: 3px solid var(--black);
	border-radius: var(--radius);
	box-shadow: 0.08em 0.08em 0 var(--black);
	color: var(--black);
	font-family: var(--heading);
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1.1;
	text-transform: uppercase;
}

.product-card-footer select:focus {
	outline: 0;
	transform: translate(-0.04em, -0.04em);
	box-shadow: 0.14em 0.14em 0 var(--black);
}

.product-card-footer strong {
	align-self: stretch;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.8rem;
	padding: 0.55em 0.85em;
	background: var(--black);
	border: 3px solid var(--black);
	border-radius: var(--radius);
	color: var(--white);
	font-family: var(--heading);
	font-size: 0.9rem;
	line-height: 1.1;
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
}

.product-card-footer .add-to-cart-button {
	grid-column: 1 / -1;
	width: 100%;
	min-height: 2.85rem;
	font-size: 0.82rem;
}

.cart-panel {
	display: grid;
	gap: clamp(1rem, 2vw, 1.3rem);
	max-width: var(--content-max);
	margin: clamp(1.2rem, 3vw, 2rem) auto 0;
	padding: clamp(1rem, 2.4vw, 1.5rem);
	background: var(--white);
	border: 3px solid var(--black);
	border-radius: var(--radius);
	box-shadow: 0.18em 0.18em 0 var(--black);
}

.cart-heading {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 1rem;
}

.cart-heading div {
	display: grid;
	gap: 0.5rem;
}

.cart-heading span,
.cart-summary span {
	font-family: var(--body);
	font-size: 0.72rem;
	line-height: 1.25;
	text-transform: uppercase;
}

.cart-heading h2 {
	font-size: clamp(1.8rem, 4vw, 3.4rem);
}

.cart-clear-button {
	flex: 0 0 auto;
	min-height: 2.7rem;
	padding-inline: 1rem;
	font-size: 0.78rem;
}

.cart-empty {
	padding: 1rem;
	background: var(--paper);
	border: 1px dashed var(--black);
	border-radius: var(--radius);
	color: var(--ink-soft);
}

.cart-empty[hidden] {
	display: none;
}

.cart-items {
	display: grid;
	gap: 0.75rem;
}

.cart-item {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto auto;
	gap: 0.8rem;
	align-items: center;
	padding: 0.85rem;
	background: var(--paper);
	border: 1px solid var(--black);
	border-radius: var(--radius);
}

.cart-item-copy {
	display: grid;
	gap: 0.3rem;
}

.cart-item-copy h3 {
	font-size: 1rem;
}

.cart-item-copy p {
	color: var(--ink-soft);
	font-size: 0.92rem;
	line-height: 1.45;
}

.cart-item-controls {
	display: grid;
	grid-template-columns: 2.25rem 2.25rem 2.25rem;
	align-items: center;
	background: var(--white);
	border: 3px solid var(--black);
	border-radius: var(--radius);
	overflow: hidden;
}

.cart-item-controls button,
.cart-remove-button {
	min-height: 2.25rem;
	background: var(--white);
	border: 0;
	color: var(--black);
	cursor: pointer;
	font-family: var(--heading);
	font-size: 0.85rem;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.cart-item-controls button:hover,
.cart-item-controls button:focus-visible,
.cart-remove-button:hover,
.cart-remove-button:focus-visible {
	background: var(--olive);
	outline: 0;
}

.cart-item-controls span {
	display: grid;
	min-height: 2.25rem;
	place-items: center;
	border-left: 3px solid var(--black);
	border-right: 3px solid var(--black);
	font-family: var(--heading);
	font-size: 0.85rem;
	font-weight: 700;
}

.cart-item > strong {
	font-family: var(--heading);
	font-size: 1rem;
	text-align: right;
	white-space: nowrap;
}

.cart-remove-button {
	padding: 0.55rem 0.85rem;
	border: 3px solid var(--black);
	border-radius: var(--radius);
	box-shadow: 0.08em 0.08em 0 var(--black);
}

.cart-summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 1rem;
	border-top: 3px solid var(--black);
}

.cart-summary strong {
	font-family: var(--heading);
	font-size: clamp(1.5rem, 3vw, 2.3rem);
	line-height: 1;
}

.checkout-button:disabled {
	cursor: not-allowed;
	opacity: 0.72;
}

.faq-section {
	background: var(--paper);
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	max-width: var(--content-max);
	margin: 0 auto;
	background: var(--black);
	border: 1px solid var(--black);
	border-radius: var(--radius);
	overflow: hidden;
}

.faq-grid article {
	display: grid;
	gap: 1rem;
	align-content: start;
	min-height: 18rem;
	padding: clamp(1.2rem, 3vw, 2rem);
	background: var(--white);
}

.faq-grid p {
	color: var(--ink-soft);
}

.store-band {
	position: relative;
	overflow: hidden;
	background: var(--black);
	color: var(--white);
	text-align: center;
}

.store-band::after {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(0, 0, 0, 0.58);
	content: "";
}

.store-video {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.store-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: contrast(1.18);
	opacity: 0.82;
}

.store-photo-backdrop {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: url("../images/photos/wide/balm-jars-closeup-wide.webp") center center / cover no-repeat;
	filter: contrast(1.08) saturate(0.9);
	opacity: 0.82;
}

.store-photo-backdrop-shop {
	background-image: url("../images/photos/wide/store-display-wide-wide.webp");
}

.store-inner {
	position: relative;
	z-index: 5;
	display: grid;
	gap: 1.2rem;
	justify-items: center;
	max-width: 50rem;
	margin: 0 auto;
}

.store-inner h2 {
	color: var(--white);
}

.store-inner .eyebrow {
	background: var(--black);
	border-color: var(--white);
	color: var(--white);
}

.store-inner p:not(.eyebrow) {
	max-width: 38rem;
	color: var(--soft);
}

.store-inner .button {
	background: var(--white);
	color: var(--black);
	box-shadow: 0.12em 0.12em 0 var(--white);
}

.store-inner .button:hover,
.store-inner .button:focus-visible {
	background: var(--olive);
	color: var(--black);
	box-shadow: 0.18em 0.18em 0 var(--white);
}

.store-inner .button:active {
	box-shadow: 0.05em 0.05em 0 var(--white);
}

.store-page-cta {
	min-height: auto;
	padding-top: clamp(1.4rem, 3vw, 2.5rem);
	padding-bottom: clamp(1.4rem, 3vw, 2.5rem);
}

.store-page-cta::after {
	background: rgba(0, 0, 0, 0.66);
}

.store-page-cta .store-inner {
	grid-template-columns: auto minmax(0, 0.95fr) minmax(16rem, 0.7fr);
	gap: clamp(1rem, 3vw, 2rem);
	align-items: center;
	justify-items: start;
	max-width: var(--content-max);
	text-align: left;
}

.store-page-cta .store-inner h2 {
	font-size: clamp(1.9rem, 4.2vw, 4.2rem);
}

.store-page-cta .store-inner p:not(.eyebrow) {
	max-width: 30rem;
}

.shop-gallery {
	background: var(--white);
}

.shop-gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(0.8rem, 2vw, 1.2rem);
	max-width: var(--content-max);
	margin: 0 auto;
}

.shop-gallery-main {
	grid-column: span 2;
	grid-row: span 2;
}

.shop-gallery-main div {
	display: grid;
	gap: 0.85rem;
	padding: 0 0.2rem 0.2rem;
}

.shop-gallery-main img {
	aspect-ratio: 16 / 10;
}

.shop-gallery-grid > article:not(.shop-gallery-main) img {
	aspect-ratio: 1;
}

.contact {
	background: var(--white);
}

.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.55fr);
	gap: clamp(2rem, 6vw, 6rem);
	align-items: start;
	max-width: var(--content-max);
	margin: 0 auto;
}

.contact-grid p {
	max-width: 42rem;
	margin-top: 1.2rem;
	color: var(--ink-soft);
}

.contact-button {
	margin-top: 1.3rem;
}

address {
	display: grid;
	gap: 1rem;
	margin: 0;
	padding: 1.5rem 0 0;
	border-top: 1px solid var(--black);
	font-style: normal;
}

address a {
	border-bottom: 1px solid var(--black);
	width: max-content;
	max-width: 100%;
	overflow-wrap: anywhere;
}

address .social-link {
	border-bottom: 0;
}

.social-link {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	width: max-content;
	max-width: 100%;
}

.social-icon {
	display: inline-grid;
	width: 1.75rem;
	height: 1.75rem;
	place-items: center;
	flex: 0 0 auto;
	background: var(--white);
	border: 2px solid currentColor;
	border-radius: var(--radius);
	color: var(--black);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1rem;
	font-weight: 900;
	line-height: 1;
	text-transform: lowercase;
}

.contact-page {
	background: var(--white);
}

.contact-hero .page-hero-logo {
	transform: rotate(2deg);
}

.contact-page-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.65fr) minmax(20rem, 0.85fr);
	gap: clamp(2rem, 6vw, 6rem);
	align-items: start;
	max-width: var(--content-max);
	margin: 0 auto;
}

.contact-page-details {
	margin-top: 1rem;
}

.contact-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.form-field {
	display: grid;
	gap: 0.45rem;
}

.form-field-wide,
.form-submit {
	grid-column: 1 / -1;
}

.form-field label {
	font-family: var(--heading);
	font-size: 0.8rem;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	min-height: 3.05rem;
	padding: 0.7em 1em;
	background: var(--white);
	border: 3px solid var(--black);
	border-radius: var(--radius);
	box-shadow: 0.12em 0.12em 0 var(--black);
	color: var(--black);
	font: inherit;
	line-height: 1.45;
	transition: box-shadow 180ms ease, transform 180ms ease;
}

.form-field textarea {
	resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	outline: 0;
	transform: translate(-0.05em, -0.05em);
	box-shadow: 0.18em 0.18em 0 var(--black);
}

.form-submit {
	width: 100%;
}

.footer {
	--footer-pad-x: clamp(1rem, 4vw, 3rem);
	position: relative;
	overflow: hidden;
	background: var(--black);
	color: var(--white);
	padding: clamp(3rem, 6vw, 5rem) var(--footer-pad-x) 0;
}

.footer::before,
.footer::after {
	position: absolute;
	inset: 0;
	content: "";
	pointer-events: none;
}

.footer::before {
	z-index: 0;
	background: url("../images/photos/wide/balms-shelf-assortment-wide.webp") center center / cover no-repeat;
	filter: contrast(1.16);
	opacity: 0.42;
}

.footer::after {
	z-index: 1;
	background: rgba(0, 0, 0, 0.56);
}

.footer-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(10rem, 0.45fr) minmax(14rem, 0.65fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
	max-width: var(--content-max);
	margin: 0 auto;
}

.footer-brand {
	display: grid;
	grid-template-columns: clamp(7rem, 12vw, 10rem) minmax(0, 1fr);
	gap: clamp(1.25rem, 3vw, 2rem);
	align-items: center;
}

.footer-logo {
	display: block;
	padding: 0.35rem;
	background: var(--white);
	border: 1px solid var(--white);
	border-radius: var(--radius);
	overflow: hidden;
}

.footer-logo img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: var(--radius);
}

.footer-kicker {
	margin-bottom: 0.8rem;
	font-family: var(--heading);
	font-size: clamp(1.5rem, 3vw, 2.3rem);
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
}

.footer-brand p:not(.footer-kicker) {
	max-width: 31rem;
	color: var(--soft);
}

.footer-links,
.footer-contact {
	display: grid;
	gap: 0.75rem;
	line-height: 1.4;
	text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	width: max-content;
	max-width: 100%;
	min-height: 2.65rem;
	padding: 0.6em 1.05em;
	background: var(--white);
	border: 3px solid var(--black);
	border-radius: var(--radius);
	box-shadow: 0.12em 0.12em 0 var(--white);
	color: var(--black);
	font-family: var(--heading);
	font-size: 0.8rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
	background: var(--olive);
	color: var(--black);
	transform: translate(-0.05em, -0.05em);
	box-shadow: 0.18em 0.18em 0 var(--white);
}

.footer-links a:active,
.footer-contact a:active {
	transform: translate(0.05em, 0.05em);
	box-shadow: 0.05em 0.05em 0 var(--white);
}

.footer-contact {
	color: var(--soft);
}

.footer-contact a {
	overflow-wrap: anywhere;
}

.footer-contact .social-icon {
	background: var(--white);
	color: var(--black);
}

.footer-bottom {
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.65rem;
	justify-content: center;
	margin: clamp(2.5rem, 5vw, 4rem) calc(var(--footer-pad-x) * -1) 0;
	padding: 1rem var(--footer-pad-x);
	background: var(--black);
	border-top: 1px solid rgba(255, 255, 255, 0.24);
	color: var(--soft);
	font-family: var(--heading);
	font-size: 0.78rem;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
	text-transform: uppercase;
}

.footer-bottom a {
	color: var(--white);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
	color: var(--olive);
}

@media (max-width: 1180px) and (min-width: 901px) {
	.hero-media {
		margin-bottom: 0;
	}
}

@media (max-width: 900px) {
	.hero,
	.page-hero,
	.split,
	.photo-feature,
	.process-grid,
	.process-feature-grid,
	.contact-grid,
	.contact-page-grid {
		grid-template-columns: 1fr;
	}

	.hero {
		min-height: auto;
	}

	.hero-actions {
		margin-bottom: clamp(2rem, 6vw, 4rem);
	}

	.hero-media {
		justify-self: end;
		width: min(18rem, 58vw);
		max-width: 100%;
		margin-left: 0;
		margin-bottom: 0;
		transform: rotate(-5deg);
	}

	.page-hero-logo {
		justify-self: center;
		transform: rotate(2deg);
	}

	.section-logo-card {
		position: relative;
		right: auto;
		bottom: auto;
		width: min(15rem, 62vw);
		margin: clamp(1.5rem, 6vw, 2.5rem) auto 0;
	}

	.process-story-first {
		padding-top: clamp(5.5rem, 16vw, 8rem);
	}

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

	.value-grid article {
		min-height: 15rem;
	}

	.footer-inner {
		grid-template-columns: 1fr;
	}

	.process-steps,
	.faq-grid,
	.product-list-grid,
	.product-placeholder-grid,
	.photo-card-grid,
	.shop-gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.shop-gallery-main {
		grid-column: 1 / -1;
	}

	.product-card-wide {
		grid-template-columns: 1fr;
		grid-template-rows: auto 1fr auto;
	}

	.product-card-wide .product-card-placeholder {
		width: 100%;
		min-height: 7.5rem;
	}

	.cart-item {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.cart-item-controls,
	.cart-remove-button {
		justify-self: start;
	}

	.cart-item > strong {
		justify-self: end;
	}

	.store-page-cta .store-inner {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
	}
}

@media (max-width: 760px) {
	.nav {
		flex-wrap: wrap;
		align-items: center;
	}

	.brand-mark:hover,
	.brand-mark:focus-visible {
		transform: scale(1.5);
	}

	.nav-menu-button {
		display: inline-flex;
		margin-left: auto;
	}

	.nav-links {
		display: none;
		width: 100%;
		margin-top: 0.8rem;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.8rem;
	}

	.nav-toggle:checked ~ .nav-links {
		display: grid;
	}

	.nav-links a {
		width: 100%;
	}
}

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

	h1 {
		font-size: clamp(2.45rem, 12vw, 4rem);
	}

	.footer-brand {
		grid-template-columns: 1fr;
	}

	.footer-logo {
		width: min(12rem, 70vw);
	}

	.page-hero-logo {
		width: min(18rem, 80vw);
	}

	.contact-form {
		grid-template-columns: 1fr;
	}

	.process-steps,
	.faq-grid,
	.product-list-grid,
	.product-placeholder-grid,
	.photo-card-grid,
	.shop-gallery-grid {
		grid-template-columns: 1fr;
	}

	.shop-gallery-main {
		grid-column: auto;
	}

	.process-steps article {
		min-height: 14rem;
	}

	.product-card {
		min-height: 0;
	}

	.product-card-footer {
		grid-template-columns: 1fr;
	}

	.product-card-footer strong {
		white-space: normal;
	}

	.cart-heading,
	.cart-summary {
		display: grid;
	}

	.cart-clear-button,
	.checkout-button {
		width: 100%;
	}

	.cart-item {
		grid-template-columns: 1fr;
	}

	.cart-item > strong {
		justify-self: start;
		text-align: left;
	}

	.hero-actions {
		display: grid;
	}

	.button {
		width: 100%;
	}
}

@media (max-width: 420px) {
	.nav-links {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-media,
	.hero-media:hover,
	.hero-media:focus-within,
	.process figure,
	.process figure:hover,
	.process figure:focus-within,
	.process-feature-grid figure,
	.process-feature-grid figure:hover,
	.process-feature-grid figure:focus-within,
	.value-grid article:hover .value-icon,
	.faq-grid article:hover .value-icon,
	.process-steps article:hover .step-icon {
		animation: none;
	}
}
