/*
Theme Name: MARKSAKE Atelier
Theme URI: https://marksake.com/
Author: MARKSAKE
Description: A lightweight, human-first editorial theme for the MARKSAKE personalized keepsake studio.
Version: 1.0.3
Requires at least: 6.4
Requires PHP: 7.4
Text Domain: marksake
*/

:root {
	--paper: #f6f1e7;
	--paper-light: #fbf8f1;
	--ink: #1e211d;
	--muted: #696a62;
	--line: rgba(30, 33, 29, 0.17);
	--cinnabar: #a34731;
	--cinnabar-dark: #7f3324;
	--jade: #60776a;
	--thread: #bd9660;
	--white: #fffdf8;
	--serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
	--sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
	--shadow: 0 24px 64px rgba(47, 42, 32, 0.11);
	--radius: 3px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

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

button,
input,
textarea {
	font: inherit;
}

button,
.button {
	cursor: pointer;
}

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

.skip-link:focus {
	position: fixed;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	margin: 0;
	clip: auto;
	background: var(--ink);
	color: var(--white);
	z-index: 9999;
}

.site-shell {
	width: min(100% - 40px, 1280px);
	margin-inline: auto;
}

.narrow-shell {
	width: min(100% - 40px, 820px);
	margin-inline: auto;
}

.eyebrow {
	margin: 0 0 18px;
	color: var(--cinnabar);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.17em;
	line-height: 1.3;
	text-transform: uppercase;
}

.section-title {
	max-width: 820px;
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(2.2rem, 5vw, 4.7rem);
	font-weight: 400;
	letter-spacing: -0.035em;
	line-height: 0.98;
}

.section-copy {
	max-width: 620px;
	color: var(--muted);
	font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.text-link {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-decoration: none;
	text-transform: uppercase;
}

.text-link::after {
	content: "↗";
	font-size: 1rem;
	font-weight: 400;
	transition: transform 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
	transform: translate(3px, -3px);
}

.button {
	display: inline-flex;
	min-height: 52px;
	padding: 14px 25px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--ink);
	border-radius: 999px;
	background: var(--ink);
	color: var(--white);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.11em;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
	background: var(--cinnabar);
	border-color: var(--cinnabar);
	transform: translateY(-1px);
}

.button--ghost {
	background: transparent;
	color: var(--ink);
}

.button--ghost:hover,
.button--ghost:focus-visible {
	color: var(--white);
}

.announcement {
	padding: 9px 20px;
	background: var(--ink);
	color: #f9f3e8;
	font-size: 0.67rem;
	letter-spacing: 0.13em;
	text-align: center;
	text-transform: uppercase;
}

.site-header {
	position: relative;
	z-index: 50;
	border-bottom: 1px solid var(--line);
	background: rgba(246, 241, 231, 0.94);
}

.header-inner {
	display: grid;
	min-height: 86px;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
}

.site-logo {
	display: inline-flex;
	justify-self: center;
	align-items: center;
	gap: 9px;
	color: var(--ink);
	font-size: 1rem;
	font-weight: 750;
	letter-spacing: 0.24em;
	text-decoration: none;
}

.site-logo__seal {
	display: block;
	width: 27px;
	height: 27px;
	object-fit: contain;
}

.desktop-nav {
	display: flex;
	align-items: center;
	gap: 28px;
}

.nav-collections { position: relative; }
.nav-collections__panel { position: absolute; z-index: 12; top: calc(100% + 13px); left: -18px; display: grid; grid-template-columns: repeat(3, minmax(92px, 1fr)); gap: 11px 16px; width: 340px; padding: 19px; background: var(--paper-light); border: 1px solid var(--line); box-shadow: 0 16px 32px rgba(30, 33, 29, .11); opacity: 0; pointer-events: none; transform: translateY(-4px); transition: opacity .16s ease, transform .16s ease; }
.nav-collections:hover .nav-collections__panel, .nav-collections:focus-within .nav-collections__panel { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-collections__panel a { font-size: .63rem !important; letter-spacing: .08em !important; }

.marksake-upload { margin: 28px 0; padding: 24px; border: 1px solid var(--line); background: var(--paper-light); }
.marksake-upload h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 1.55rem; }
.marksake-upload label, .marksake-upload select { display: block; margin-top: 15px; }
.marksake-upload select { width: 100%; max-width: 420px; padding: 11px; background: #fffdf9; border: 1px solid var(--line); }
.marksake-upload__drop { padding: 24px; border: 1px dashed var(--cinnabar); text-align: center; cursor: pointer; }
.marksake-upload__drop span, .marksake-upload__drop small { display: block; }
.marksake-upload__drop small, .marksake-upload__filename { margin-top: 5px; color: var(--muted); font-size: .8rem; }
.marksake-upload input[type="file"] { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.marksake-upload__consent { font-size: .79rem; line-height: 1.55; }
.marksake-upload__consent input { position: static !important; width: auto !important; height: auto !important; margin-right: 7px; clip: auto !important; }

.desktop-nav a,
.header-actions a {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-decoration: none;
	text-transform: uppercase;
}

.desktop-nav a {
	position: relative;
	padding-block: 8px;
}

.desktop-nav a::after {
	position: absolute;
	right: 0;
	bottom: 2px;
	left: 0;
	height: 1px;
	background: var(--cinnabar);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav .is-current::after {
	transform: scaleX(1);
	transform-origin: left;
}

.header-actions {
	display: flex;
	justify-self: end;
	align-items: center;
	gap: 19px;
}

.header-actions .studio-link {
	padding: 10px 17px;
	border: 1px solid var(--ink);
	border-radius: 999px;
	transition: background 180ms ease, color 180ms ease;
}

.header-actions .studio-link:hover,
.header-actions .studio-link:focus-visible {
	background: var(--ink);
	color: var(--white);
}

.menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--ink);
}

.menu-toggle span {
	display: block;
	width: 24px;
	height: 1px;
	margin: 6px auto;
	background: currentColor;
	transition: transform 180ms ease;
}

.mobile-panel {
	display: none;
}

.hero {
	position: relative;
	overflow: hidden;
	padding: clamp(70px, 9vw, 132px) 0 clamp(80px, 10vw, 145px);
}

.hero::before {
	position: absolute;
	top: 14%;
	left: -5%;
	width: 45%;
	height: 75%;
	border: 1px solid rgba(163, 71, 49, 0.14);
	border-radius: 50%;
	content: "";
	transform: rotate(18deg);
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
	gap: clamp(58px, 8vw, 120px);
	align-items: center;
}

.hero h1 {
	max-width: 700px;
	margin: 0 0 28px;
	font-family: var(--serif);
	font-size: clamp(4rem, 8.6vw, 8.1rem);
	font-weight: 400;
	letter-spacing: -0.057em;
	line-height: 0.82;
}

.hero h1 em {
	display: block;
	color: var(--cinnabar);
	font-weight: 400;
}

.hero-copy {
	max-width: 565px;
	margin: 0 0 34px;
	color: var(--muted);
	font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.art-stack {
	position: relative;
	min-height: 590px;
}

.hero-photo {
	position: relative;
	width: min(100%, 560px);
	margin: 0 0 0 auto;
}

.hero-photo::before {
	position: absolute;
	z-index: -1;
	top: -26px;
	right: -28px;
	width: 68%;
	height: 54%;
	border: 1px solid rgba(163, 71, 49, 0.28);
	content: "";
	transform: rotate(4deg);
}

.hero-photo__frame {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background: #e7ddcb;
	box-shadow: var(--shadow);
	transform: rotate(1.8deg);
}

.hero-photo__frame::after {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 253, 248, 0.4);
	box-shadow: inset 0 0 80px rgba(63, 49, 31, 0.05);
	content: "";
	pointer-events: none;
}

.hero-photo img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center 52%;
	filter: saturate(0.9) contrast(0.98);
}

.hero-photo figcaption {
	display: flex;
	margin-top: 22px;
	align-items: center;
	justify-content: center;
	gap: 13px;
	color: var(--muted);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hero-photo__line {
	width: 38px;
	height: 1px;
	background: var(--cinnabar);
}

.art-card {
	position: absolute;
	overflow: hidden;
	background: #fffaf0;
	box-shadow: var(--shadow);
}

.art-card--main {
	top: 4%;
	right: 7%;
	width: 70%;
	padding: 18px 18px 24px;
	transform: rotate(3.5deg);
}

.art-card--note {
	right: 0;
	bottom: 0;
	width: 54%;
	padding: 29px 25px;
	background: #ede3cd;
	transform: rotate(-4deg);
}

.art-card--small {
	bottom: 6%;
	left: 2%;
	width: 45%;
	padding: 15px;
	background: var(--white);
	transform: rotate(6deg);
}

.art-label {
	display: flex;
	margin-top: 15px;
	justify-content: space-between;
	color: #77736a;
	font-size: 0.62rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.handwritten {
	margin: 0;
	font-family: "Segoe Print", "Bradley Hand", cursive;
	font-size: clamp(1.3rem, 2.6vw, 2.1rem);
	line-height: 1.35;
}

.thread-path {
	position: absolute;
	top: 0;
	left: -9%;
	width: 116%;
	height: 100%;
	pointer-events: none;
}

.marquee {
	overflow: hidden;
	padding: 20px 0;
	border-block: 1px solid var(--line);
	background: var(--paper-light);
	white-space: nowrap;
}

.marquee-track {
	display: inline-flex;
	min-width: 100%;
	justify-content: space-around;
	gap: 40px;
	color: var(--muted);
	font-family: var(--serif);
	font-size: clamp(1rem, 1.8vw, 1.35rem);
	font-style: italic;
}

.marquee-track span::before {
	margin-right: 40px;
	color: var(--cinnabar);
	content: "✦";
	font-size: 0.62em;
	font-style: normal;
	vertical-align: middle;
}

.intro {
	padding: clamp(90px, 12vw, 170px) 0;
}

.intro-grid {
	display: grid;
	grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
	gap: clamp(55px, 10vw, 160px);
	align-items: start;
}

.intro-note {
	max-width: 360px;
	padding-top: 8px;
}

.intro-note p:last-child {
	color: var(--muted);
}

.intro .section-title {
	max-width: 900px;
}

.intro .section-title em {
	color: var(--cinnabar);
	font-weight: 400;
}

.mark-types {
	padding: 0 0 clamp(100px, 13vw, 180px);
}

.mark-type-grid {
	display: grid;
	border-top: 1px solid var(--line);
	grid-template-columns: repeat(3, 1fr);
}

.mark-type {
	position: relative;
	min-height: 520px;
	padding: 44px 35px 36px;
	overflow: hidden;
	border-right: 1px solid var(--line);
}

.mark-type:last-child {
	border-right: 0;
}

.mark-type__number {
	color: var(--cinnabar);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.16em;
}

.mark-type h3 {
	margin: 34px 0 12px;
	font-family: var(--serif);
	font-size: clamp(2.1rem, 3.4vw, 3.6rem);
	font-weight: 400;
	letter-spacing: -0.04em;
	line-height: 1;
}

.mark-type p {
	max-width: 310px;
	color: var(--muted);
	font-size: 0.95rem;
}

.mark-type__art {
	position: absolute;
	right: 20px;
	bottom: 22px;
	left: 20px;
	height: 195px;
	opacity: 0.93;
	transition: transform 250ms ease;
}

.mark-type:hover .mark-type__art {
	transform: translateY(-5px) rotate(-1deg);
}

.pathways {
	padding: clamp(85px, 11vw, 150px) 0;
	background: var(--ink);
	color: var(--paper);
}

.pathways-header {
	display: flex;
	margin-bottom: 58px;
	justify-content: space-between;
	gap: 40px;
	align-items: end;
}

.pathways .section-title {
	max-width: 770px;
}

.pathways .eyebrow {
	color: #d29479;
}

.pathways .section-copy {
	max-width: 390px;
	color: rgba(246, 241, 231, 0.66);
}

.pathway-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	background: rgba(246, 241, 231, 0.2);
}

.pathway-card {
	position: relative;
	min-height: 530px;
	padding: clamp(35px, 5vw, 65px);
	overflow: hidden;
	background: #262a25;
}

.pathway-card:nth-child(2) {
	background: #31332d;
}

.pathway-card h3 {
	max-width: 470px;
	margin: 0 0 19px;
	font-family: var(--serif);
	font-size: clamp(2.7rem, 5vw, 5.3rem);
	font-weight: 400;
	letter-spacing: -0.045em;
	line-height: 0.95;
}

.pathway-card p {
	max-width: 430px;
	color: rgba(246, 241, 231, 0.68);
}

.pathway-card .text-link {
	position: absolute;
	bottom: 55px;
	left: clamp(35px, 5vw, 65px);
	color: #f6f1e7;
}

.pathway-mark {
	position: absolute;
	right: -60px;
	bottom: -70px;
	width: 310px;
	height: 310px;
	border: 1px solid rgba(212, 151, 117, 0.43);
	border-radius: 50%;
}

.pathway-mark::before,
.pathway-mark::after {
	position: absolute;
	border: 1px solid rgba(212, 151, 117, 0.28);
	border-radius: 50%;
	content: "";
}

.pathway-mark::before {
	inset: 28px;
}

.pathway-mark::after {
	inset: 63px;
}

.process {
	padding: clamp(100px, 13vw, 180px) 0;
}

.process-header {
	display: grid;
	margin-bottom: 70px;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: end;
}

.process-header .section-copy {
	justify-self: end;
}

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

.step {
	min-height: 310px;
	padding: 29px 28px 34px;
	border-top: 1px solid var(--ink);
	border-right: 1px solid var(--line);
}

.step:last-child {
	border-right: 0;
}

.step-number {
	display: grid;
	width: 42px;
	height: 42px;
	margin-bottom: 65px;
	place-items: center;
	border: 1px solid var(--cinnabar);
	border-radius: 50%;
	color: var(--cinnabar);
	font-family: var(--serif);
	font-style: italic;
}

.step h3 {
	margin: 0 0 13px;
	font-family: var(--serif);
	font-size: 1.65rem;
	font-weight: 400;
}

.step p {
	margin: 0;
	color: var(--muted);
	font-size: 0.9rem;
}

.standard {
	padding: clamp(90px, 12vw, 160px) 0;
	background: #e8dfce;
}

.standard-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(60px, 10vw, 150px);
	align-items: center;
}

.standard-visual {
	position: relative;
	min-height: 540px;
}

.fabric-swatch {
	position: absolute;
	top: 6%;
	right: 4%;
	width: 72%;
	height: 80%;
	background:
		repeating-linear-gradient(0deg, transparent 0 4px, rgba(69, 74, 63, 0.055) 4px 5px),
		repeating-linear-gradient(90deg, transparent 0 5px, rgba(69, 74, 63, 0.045) 5px 6px),
		#ded1b9;
	box-shadow: var(--shadow);
	transform: rotate(4deg);
}

.fabric-swatch svg {
	position: absolute;
	inset: 12%;
	width: 76%;
	height: 76%;
}

.seal-card {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 42%;
	padding: 25px 23px;
	background: var(--cinnabar);
	color: var(--white);
	box-shadow: var(--shadow);
	transform: rotate(-4deg);
}

.seal-card strong {
	display: block;
	margin-bottom: 37px;
	font-family: var(--serif);
	font-size: 1.4rem;
	font-weight: 400;
}

.seal-card span {
	font-size: 0.63rem;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.principles {
	margin-top: 47px;
	border-top: 1px solid rgba(30, 33, 29, 0.35);
}

.principle {
	display: grid;
	padding: 19px 0;
	border-bottom: 1px solid rgba(30, 33, 29, 0.25);
	grid-template-columns: 35px 1fr;
	gap: 12px;
}

.principle span {
	color: var(--cinnabar);
	font-family: var(--serif);
	font-style: italic;
}

.principle p {
	margin: 0;
	font-size: 0.93rem;
}

.collection {
	padding: clamp(100px, 13vw, 180px) 0;
}

.collection-header {
	display: flex;
	margin-bottom: 60px;
	justify-content: space-between;
	gap: 40px;
	align-items: end;
}

.collection-note {
	max-width: 370px;
	padding: 20px 22px;
	border-left: 2px solid var(--cinnabar);
	color: var(--muted);
	font-size: 0.88rem;
}

.collection-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr 0.85fr;
	gap: 16px;
}

.collection-card {
	position: relative;
	min-height: 440px;
	padding: 30px;
	overflow: hidden;
	background: #ebe1cf;
}

.collection-card:nth-child(2) {
	background: #d9ded5;
}

.collection-card:nth-child(3) {
	background: #d9cec1;
}

.collection-card h3 {
	position: relative;
	z-index: 2;
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(1.8rem, 3vw, 3.2rem);
	font-weight: 400;
}

.collection-card p {
	position: absolute;
	bottom: 25px;
	left: 30px;
	z-index: 2;
	margin: 0;
	color: var(--muted);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.collection-shape {
	position: absolute;
	top: 27%;
	left: 15%;
	width: 70%;
	height: 53%;
	border: 1px solid rgba(30, 33, 29, 0.22);
	border-radius: 48% 52% 42% 58% / 53% 43% 57% 47%;
	transform: rotate(-8deg);
}

.collection-card:nth-child(2) .collection-shape {
	border-radius: 50%;
	transform: rotate(10deg);
}

.collection-card:nth-child(3) .collection-shape {
	border-radius: 2px;
	transform: rotate(5deg);
}

.manifesto {
	padding: clamp(100px, 13vw, 180px) 0;
	border-block: 1px solid var(--line);
	text-align: center;
}

.manifesto blockquote {
	max-width: 1010px;
	margin: 0 auto 35px;
	font-family: var(--serif);
	font-size: clamp(2.4rem, 5.5vw, 5.8rem);
	font-weight: 400;
	letter-spacing: -0.045em;
	line-height: 1;
}

.manifesto blockquote em {
	color: var(--cinnabar);
	font-weight: 400;
}

.manifesto p {
	color: var(--muted);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.faq-section {
	padding: clamp(95px, 12vw, 160px) 0;
}

.faq-grid {
	display: grid;
	grid-template-columns: 0.72fr 1.28fr;
	gap: clamp(55px, 10vw, 150px);
}

.faq-list {
	border-top: 1px solid var(--ink);
}

.faq-item {
	border-bottom: 1px solid var(--line);
}

.faq-item summary {
	position: relative;
	padding: 24px 45px 24px 0;
	cursor: pointer;
	font-family: var(--serif);
	font-size: 1.28rem;
	list-style: none;
}

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

.faq-item summary::after {
	position: absolute;
	top: 21px;
	right: 3px;
	content: "+";
	color: var(--cinnabar);
	font-family: var(--sans);
	font-size: 1.4rem;
	font-weight: 300;
}

.faq-item[open] summary::after {
	content: "−";
}

.faq-item div {
	max-width: 630px;
	padding: 0 45px 26px 0;
	color: var(--muted);
	font-size: 0.94rem;
}

.closing-cta {
	padding: clamp(90px, 12vw, 155px) 0;
	background: var(--cinnabar);
	color: var(--white);
	text-align: center;
}

.closing-cta h2 {
	max-width: 900px;
	margin: 0 auto 27px;
	font-family: var(--serif);
	font-size: clamp(3.2rem, 7vw, 7rem);
	font-weight: 400;
	letter-spacing: -0.055em;
	line-height: 0.9;
}

.closing-cta p {
	max-width: 560px;
	margin: 0 auto 32px;
	color: rgba(255, 253, 248, 0.78);
}

.closing-cta .button {
	border-color: var(--white);
	background: var(--white);
	color: var(--cinnabar);
}

.closing-cta .button:hover,
.closing-cta .button:focus-visible {
	background: var(--ink);
	border-color: var(--ink);
	color: var(--white);
}

.site-footer {
	padding: 74px 0 28px;
	background: #191c18;
	color: var(--paper);
}

.footer-main {
	display: grid;
	padding-bottom: 70px;
	grid-template-columns: 1.4fr repeat(3, 0.7fr);
	gap: 50px;
}

.footer-brand p {
	max-width: 350px;
	color: rgba(246, 241, 231, 0.62);
	font-family: var(--serif);
	font-size: 1.4rem;
}

.site-footer .site-logo {
	justify-self: start;
	color: var(--paper);
}

.footer-column h3 {
	margin: 3px 0 21px;
	color: #bd8f78;
	font-size: 0.67rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.footer-column a {
	display: block;
	width: fit-content;
	margin: 10px 0;
	color: rgba(246, 241, 231, 0.75);
	font-size: 0.86rem;
	text-decoration: none;
}

.footer-column a:hover,
.footer-column a:focus-visible {
	color: var(--white);
	text-decoration: underline;
}

.footer-bottom {
	display: flex;
	padding-top: 24px;
	border-top: 1px solid rgba(246, 241, 231, 0.16);
	justify-content: space-between;
	gap: 30px;
	color: rgba(246, 241, 231, 0.48);
	font-size: 0.65rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.page-hero {
	padding: clamp(80px, 11vw, 145px) 0 80px;
	border-bottom: 1px solid var(--line);
}

.page-hero h1 {
	max-width: 980px;
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(3.7rem, 8vw, 7.9rem);
	font-weight: 400;
	letter-spacing: -0.055em;
	line-height: 0.9;
}

.page-hero__intro {
	max-width: 650px;
	margin: 36px 0 0 auto;
	color: var(--muted);
	font-size: clamp(1.06rem, 1.7vw, 1.3rem);
}

.page-content {
	padding: 80px 0 130px;
}

.prose {
	color: #343731;
}

.prose > *:first-child {
	margin-top: 0;
}

.prose h2 {
	margin: 2.2em 0 0.6em;
	font-family: var(--serif);
	font-size: clamp(2.2rem, 4.5vw, 4rem);
	font-weight: 400;
	letter-spacing: -0.04em;
	line-height: 1;
}

.prose h3 {
	margin: 2em 0 0.5em;
	font-family: var(--serif);
	font-size: 1.6rem;
	font-weight: 400;
}

.prose p,
.prose li {
	color: #565950;
}

.prose a {
	color: var(--cinnabar-dark);
}

.prose blockquote {
	margin: 2.3em 0;
	padding: 0 0 0 28px;
	border-left: 2px solid var(--cinnabar);
	font-family: var(--serif);
	font-size: 1.8rem;
}

.prose blockquote p {
	color: var(--ink);
}

.prose hr {
	margin: 65px 0;
	border: 0;
	border-top: 1px solid var(--line);
}

.content-cards {
	display: grid;
	margin: 50px 0;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.content-card {
	padding: 32px;
	background: var(--paper-light);
	border: 1px solid var(--line);
}

.content-card h3 {
	margin-top: 0;
}

.contact-layout {
	display: grid;
	padding: 80px 0 130px;
	grid-template-columns: 0.75fr 1.25fr;
	gap: clamp(55px, 10vw, 150px);
}

.contact-aside p {
	color: var(--muted);
}

.contact-form {
	padding: clamp(30px, 5vw, 58px);
	background: var(--paper-light);
	border: 1px solid var(--line);
}

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

.field {
	margin-bottom: 20px;
}

.field label {
	display: block;
	margin-bottom: 8px;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.field input,
.field textarea {
	width: 100%;
	padding: 13px 14px;
	border: 1px solid rgba(30, 33, 29, 0.3);
	border-radius: 0;
	background: var(--white);
	color: var(--ink);
	outline: none;
}

.field input:focus,
.field textarea:focus {
	border-color: var(--cinnabar);
	box-shadow: 0 0 0 2px rgba(163, 71, 49, 0.12);
}

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

.field--checkbox {
	display: grid;
	grid-template-columns: 18px 1fr;
	gap: 10px;
	align-items: start;
}

.field--checkbox input {
	width: 16px;
	height: 16px;
	margin-top: 4px;
}

.field--checkbox label {
	margin: 0;
	color: var(--muted);
	font-size: 0.76rem;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
}

.field--hidden {
	position: absolute;
	left: -9999px;
}

.form-notice {
	margin: 0 0 24px;
	padding: 13px 16px;
	border-left: 3px solid var(--jade);
	background: rgba(96, 119, 106, 0.1);
}

.form-notice--error {
	border-color: var(--cinnabar);
	background: rgba(163, 71, 49, 0.1);
}

.shop-empty {
	padding: clamp(95px, 12vw, 160px) 0;
	text-align: center;
}

.shop-empty__mark {
	display: grid;
	width: 92px;
	height: 92px;
	margin: 0 auto 35px;
	place-items: center;
	border: 1px solid var(--cinnabar);
	color: var(--cinnabar);
	font-family: var(--serif);
	font-size: 2.6rem;
	font-style: italic;
	transform: rotate(-3deg);
}

.shop-empty h1 {
	max-width: 850px;
	margin: 0 auto 25px;
	font-family: var(--serif);
	font-size: clamp(3rem, 6vw, 6rem);
	font-weight: 400;
	letter-spacing: -0.05em;
	line-height: 0.95;
}

.shop-empty p {
	max-width: 590px;
	margin: 0 auto 32px;
	color: var(--muted);
}

.woocommerce .woocommerce-breadcrumb {
	margin: 32px auto;
	color: var(--muted);
	font-size: 0.74rem;
}

.woocommerce-notices-wrapper,
.woocommerce-form-coupon-toggle {
	width: min(100% - 40px, 1100px);
	margin-inline: auto;
}

.woocommerce .cart-collaterals,
.woocommerce-cart-form,
.woocommerce-checkout,
.woocommerce-account .woocommerce {
	width: min(100% - 40px, 1100px);
	margin: 70px auto 120px;
}

.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	border-radius: 999px;
	background: var(--ink);
	color: var(--white);
	font-size: 0.78rem;
	letter-spacing: 0.08em;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover {
	background: var(--cinnabar);
	color: var(--white);
}

.woocommerce-info,
.woocommerce-message {
	border-top-color: var(--cinnabar);
	background: var(--paper-light);
}

.woocommerce-info::before,
.woocommerce-message::before {
	color: var(--cinnabar);
}

.not-found {
	padding: 130px 0;
	text-align: center;
}

.not-found h1 {
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(5rem, 15vw, 12rem);
	font-weight: 400;
	color: var(--cinnabar);
	line-height: 0.8;
}

.not-found h2 {
	font-family: var(--serif);
	font-size: 2.5rem;
	font-weight: 400;
}

@media (max-width: 980px) {
	.header-inner {
		grid-template-columns: 1fr auto 1fr;
	}

	.desktop-nav,
	.header-actions .account-link {
		display: none;
	}

	.menu-toggle {
		display: block;
	}

	.header-actions .studio-link {
		display: none;
	}

	.mobile-panel {
		position: fixed;
		inset: 117px 0 0;
		display: flex;
		padding: 46px 28px;
		flex-direction: column;
		background: var(--paper);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-10px);
		transition: opacity 180ms ease, transform 180ms ease;
	}

	.menu-open .mobile-panel {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.mobile-panel a {
		padding: 13px 0;
		border-bottom: 1px solid var(--line);
		font-family: var(--serif);
		font-size: 1.7rem;
		text-decoration: none;
	}

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

	.hero-copy {
		max-width: 650px;
	}

	.art-stack {
		width: min(100%, 650px);
		min-height: 570px;
		margin-inline: auto;
	}

	.hero-photo {
		width: min(100%, 590px);
		margin-inline: auto;
	}

	.intro-grid,
	.standard-grid,
	.faq-grid,
	.contact-layout {
		grid-template-columns: 1fr;
	}

	.intro-note {
		max-width: 600px;
	}

	.pathways-header,
	.collection-header {
		display: block;
	}

	.pathways-header .section-copy,
	.collection-note {
		margin-top: 28px;
	}

	.process-header {
		grid-template-columns: 1fr;
	}

	.process-header .section-copy {
		justify-self: start;
	}

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

	.step:nth-child(2) {
		border-right: 0;
	}

	.step:nth-child(n+3) {
		border-top-color: var(--line);
	}

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

	.collection-card:first-child {
		grid-column: 1 / -1;
	}

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

	.footer-brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 720px) {
	.site-shell,
	.narrow-shell {
		width: min(100% - 28px, 1280px);
	}

	.announcement {
		padding-inline: 10px;
		font-size: 0.59rem;
		letter-spacing: 0.08em;
	}

	.header-inner {
		min-height: 72px;
	}

	.site-logo {
		font-size: 0.86rem;
	}

	.site-logo__seal {
		width: 22px;
		height: 22px;
	}

	.mobile-panel {
		inset: 102px 0 0;
	}

	.hero {
		padding-top: 62px;
	}

	.hero-grid {
		gap: 35px;
	}

	.hero h1 {
		font-size: clamp(3.7rem, 18vw, 5.7rem);
	}

	.hero-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.hero-actions .button {
		width: 100%;
	}

	.art-stack {
		min-height: 450px;
	}

	.hero-photo {
		width: calc(100% - 14px);
	}

	.hero-photo::before {
		top: -14px;
		right: -11px;
	}

	.art-card--main {
		right: 4%;
		width: 76%;
	}

	.art-card--small {
		left: 0;
		width: 48%;
	}

	.art-card--note {
		width: 62%;
	}

	.mark-type-grid,
	.pathway-grid,
	.collection-grid {
		grid-template-columns: 1fr;
	}

	.mark-type {
		min-height: 450px;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.mark-type:last-child {
		border-bottom: 0;
	}

	.pathway-card {
		min-height: 470px;
	}

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

	.step {
		min-height: 260px;
		border-right: 0;
		border-top-color: var(--line);
	}

	.step:first-child {
		border-top-color: var(--ink);
	}

	.step-number {
		margin-bottom: 45px;
	}

	.standard-visual {
		min-height: 430px;
	}

	.fabric-swatch {
		width: 80%;
	}

	.seal-card {
		width: 52%;
	}

	.collection-card:first-child {
		grid-column: auto;
	}

	.collection-card {
		min-height: 390px;
	}

	.form-row,
	.content-cards {
		grid-template-columns: 1fr;
	}

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

	.footer-brand {
		grid-column: 1 / -1;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}
}

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

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
