/* SAFIM — layout follows the homepage mockup. */

:root {
	--sf-bg: #f8f7f2;
	--sf-surface: #ffffff;
	--sf-ink: #141414;
	--sf-muted: #6b6b6b;
	--sf-line: #e8e6df;
	--sf-soft: #efeee8;
	--sf-dark: #1a2b22;
	--sf-star: #d4a017;
	--sf-max: 1180px;
	--sf-pad: clamp(1.25rem, 4vw, 3.5rem);
	--sf-header: 4.75rem;
	--sf-display: "Montserrat", sans-serif;
	--sf-serif: "Playfair Display", serif;
	--sf-body: "Montserrat", sans-serif;
	--sf-script: "Caveat", cursive;
	--sf-shadow: 0 8px 24px rgba(20, 20, 20, 0.06);
	--sf-radius: 14px;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--sf-bg);
	color: var(--sf-ink);
	font-family: var(--sf-body);
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

.site {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background: var(--sf-bg);
}

.site-body {
	flex: 1 0 auto;
}

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

a:visited,
a:hover,
a:focus,
a:active {
	color: inherit;
}

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

h1, h2, h3, h4 {
	font-family: var(--sf-display);
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1.1;
	margin: 0;
}

p {
	margin: 0;
}

ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

button {
	font: inherit;
	color: inherit;
	background: none;
	border: 0;
	padding: 0;
	cursor: pointer;
}

/* Shared */

.sf-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin-bottom: 0.85rem;
	color: var(--sf-muted);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.sf-eyebrow--light {
	color: rgba(255, 255, 255, 0.7);
}

.sf-lead {
	max-width: 34rem;
	color: var(--sf-muted);
	font-size: 1.02rem;
}

.sf-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	min-height: 2.9rem;
	padding: 0.75rem 1.35rem;
	border-radius: 999px;
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	transition: transform 0.15s ease, background 0.15s ease;
}

.sf-btn svg {
	width: 16px;
	height: 16px;
}

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

.sf-btn--dark {
	background: var(--sf-dark);
	color: #fff;
}

.sf-btn--light {
	background: #fff;
	color: var(--sf-ink);
}

.sf-btn--ghost {
	padding-left: 0.15rem;
	color: var(--sf-ink);
}

.sf-btn--ghost small {
	display: block;
	margin-top: 0.15rem;
	color: var(--sf-muted);
	font-size: 0.72rem;
	font-weight: 500;
}

.sf-btn--ghost span {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1.15;
}

.sf-btn--line {
	border: 1.5px solid currentColor;
	background: transparent;
	color: var(--sf-ink);
}

.sf-btn--on-dark {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.88);
}

.sf-text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: 1.25rem;
	font-size: 0.92rem;
	font-weight: 600;
}

.sf-text-link svg {
	width: 16px;
	height: 16px;
}

.sf-icon-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 999px;
	background: var(--sf-surface);
	box-shadow: var(--sf-shadow);
	color: var(--sf-ink);
}

.sf-icon-btn svg,
.sf-menu-toggle svg,
.sf-social svg,
.sf-footer-note svg {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
}

.sf-icon-btn:hover {
	background: var(--sf-soft);
}

.sf-perk-icon,
.sf-step-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.85);
	box-shadow: var(--sf-shadow);
	color: var(--sf-ink);
}

.sf-perk-icon svg,
.sf-step-icon svg {
	width: 16px;
	height: 16px;
}

/* Header */

.sf-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(248, 247, 242, 0.92);
	backdrop-filter: blur(16px);
}

.sf-ticker {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 1.5rem;
	padding: 0.5rem var(--sf-pad);
	background: #141414;
	color: #fff;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.sf-ticker-mark {
	color: rgba(255, 255, 255, 0.78);
}

.sf-header-inner {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1rem;
	max-width: none;
	min-height: 4.25rem;
	margin: 0 auto;
	padding: 0.55rem var(--sf-pad);
}

.sf-brand {
	min-width: 10rem;
}

.sf-logo,
.sf-logo a,
.custom-logo-link {
	display: block;
	margin: 0;
	font-family: var(--sf-display);
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	line-height: 1;
	text-transform: uppercase;
}

.custom-logo-link img {
	max-height: 2rem;
	width: auto;
}

.sf-tagline {
	margin: 0.35rem 0 0;
	color: var(--sf-muted);
	font-size: 0.58rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.sf-nav {
	display: flex;
	justify-content: center;
}

.sf-nav-list,
.sf-nav .menu {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	gap: 1.6rem;
	margin: 0;
}

.sharemypost-share-bar,
.sharemypost-modal-overlay {
	display: none !important;
}

.sf-nav-list a,
.sf-nav .menu a {
	position: relative;
	font-size: 0.92rem;
	font-weight: 500;
}

.sf-nav-list .current-menu-item a,
.sf-nav .current-menu-item a {
	font-weight: 700;
}

.sf-nav-list .current-menu-item a::after,
.sf-nav .current-menu-item a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -0.45rem;
	height: 1px;
	background: currentColor;
}

.sf-menu-toggle {
	display: none;
}

.sf-header-actions {
	display: flex;
	align-items: center;
	gap: 0.2rem;
}

.sf-header-actions .sf-icon-btn {
	background: transparent;
	box-shadow: none;
}

.sf-header-cta {
	margin-left: 0.55rem;
}

.sf-cart-count {
	position: absolute;
	top: 2px;
	right: 2px;
	display: none;
	min-width: 1rem;
	height: 1rem;
	padding: 0 0.25rem;
	border-radius: 999px;
	background: var(--sf-dark);
	color: #fff;
	font-size: 0.62rem;
	font-weight: 700;
	line-height: 1rem;
	text-align: center;
}

.sf-cart-count.is-on {
	display: block;
}

.sf-search {
	border-top: 1px solid var(--sf-line);
	background: var(--sf-surface);
}

.sf-search-form {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	max-width: calc(var(--sf-max) + 4rem);
	margin: 0 auto;
	padding: 0.85rem var(--sf-pad);
}

.sf-search-form input[type="search"] {
	flex: 1;
	min-height: 2.85rem;
	padding: 0.6rem 1rem;
	border: 1px solid var(--sf-line);
	border-radius: 999px;
	background: var(--sf-bg);
	color: var(--sf-ink);
}

/* Footer */

.sf-footer {
	background: var(--sf-bg);
	border-top: 1px solid var(--sf-line);
}

.sf-footer-inner {
	display: grid;
	grid-template-columns: auto 1fr auto auto;
	align-items: center;
	gap: 1.5rem;
	max-width: calc(var(--sf-max) + 4rem);
	margin: 0 auto;
	padding: 1.7rem var(--sf-pad);
}

.sf-footer-nav,
.sf-footer .menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.4rem;
	margin: 0;
	padding: 0 1rem;
	border-left: 1px solid var(--sf-line);
	border-right: 1px solid var(--sf-line);
}

.sf-footer-nav a,
.sf-footer .menu a {
	font-size: 0.9rem;
	font-weight: 500;
}

.sf-social {
	display: flex;
	gap: 0.55rem;
	padding-right: 1rem;
	border-right: 1px solid var(--sf-line);
}

.sf-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.8rem;
	height: 1.8rem;
	color: var(--sf-ink);
}

.sf-footer-note {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: var(--sf-ink);
	font-size: 0.78rem;
	line-height: 1.3;
	max-width: 9rem;
}

/* Inner pages */

.site-main:not(.is-home):not(.is-design):not(.is-brand) {
	max-width: var(--sf-max);
	margin: 0 auto;
	padding: 3rem var(--sf-pad) 5rem;
}

.site-main:not(.is-home) .entry-title,
.site-main:not(.is-home) .page-title {
	margin-bottom: 1.25rem;
	font-size: clamp(2rem, 4vw, 3rem);
}

.site-main:not(.is-home) .entry-content,
.site-main:not(.is-home) .page-content {
	max-width: 42rem;
	color: #3d3d39;
}

.site-main:not(.is-home) .entry-content p,
.site-main:not(.is-home) .page-content p {
	margin-bottom: 1.15rem;
}

/* Homepage */

.is-home {
	overflow: hidden;
}

.sf-hero,
.sf-fabrics,
.sf-nine,
.sf-clock,
.sf-process,
.sf-impact,
.sf-stories,
.sf-canvas,
.sf-manifesto,
.sf-edition-manifesto,
.sf-preview,
.sf-bring-home,
.sf-next {
	max-width: calc(var(--sf-max) + 4rem);
	margin: 0 auto;
	padding: 0 var(--sf-pad);
}

.sf-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
	gap: 2rem;
	align-items: center;
	padding-top: 2.2rem;
	padding-bottom: 3rem;
}

.sf-hero-title {
	margin-bottom: 1.15rem;
	font-size: clamp(2.5rem, 5.8vw, 4.1rem);
}

.sf-hero-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
	margin: 1.6rem 0 2.2rem;
}

.sf-hero-perks {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.sf-hero-perks li,
.sf-impact-grid li {
	display: grid;
	justify-items: start;
	gap: 0.45rem;
}

.sf-hero-perks strong,
.sf-impact-grid strong,
.sf-fabric strong,
.sf-steps strong,
.sf-story-meta strong {
	font-size: 0.92rem;
	font-weight: 700;
}

.sf-hero-perks span:last-child,
.sf-impact-grid span:last-child,
.sf-fabric span,
.sf-steps > li > span:last-child,
.sf-story-meta span {
	color: var(--sf-muted);
	font-size: 0.82rem;
}

.sf-hero-visual {
	position: relative;
	margin: 0;
}

.sf-hero-visual img {
	width: 100%;
	border-radius: 0;
	object-fit: contain;
}

.sf-side-caption {
	position: absolute;
	top: 10%;
	right: -0.4rem;
	max-width: 7.5rem;
	color: var(--sf-muted);
	font-family: var(--sf-script);
	font-size: 1.35rem;
	line-height: 1.15;
	text-align: right;
	transform: rotate(8deg);
}

.sf-hero-stamp {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	max-width: 14rem;
	margin-top: 0.85rem;
	margin-left: auto;
	color: var(--sf-muted);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.sf-africa {
	flex: 0 0 auto;
	width: 1.5rem;
	height: 1.7rem;
	background: var(--sf-dark);
	clip-path: polygon(45% 0, 70% 8%, 85% 28%, 92% 52%, 78% 78%, 58% 100%, 40% 88%, 22% 70%, 12% 48%, 18% 22%, 32% 8%);
}

/* Fabrics — rounded squares, not circles */

.sf-fabrics {
	display: grid;
	grid-template-columns: minmax(14rem, 0.72fr) minmax(0, 1.28fr);
	gap: 2rem;
	align-items: center;
	padding-top: 1rem;
	padding-bottom: 4rem;
}

.sf-fabrics h2,
.sf-process h2,
.sf-impact h2,
.sf-stories h2,
.sf-canvas h2,
.sf-preview h2 {
	margin-bottom: 0.85rem;
	font-size: clamp(2rem, 4vw, 2.75rem);
}

.sf-fabrics-copy p,
.sf-impact-copy p,
.sf-canvas p:not(.sf-eyebrow):not(.sf-statement),
.sf-preview p:not(.sf-eyebrow):not(.sf-statement),
.sf-bring-home p:not(.sf-eyebrow):not(.sf-statement),
.sf-stories > p,
.sf-manifesto p:not(.sf-statement) {
	max-width: 36rem;
	color: var(--sf-muted);
}

.sf-canvas,
.sf-manifesto,
.sf-preview,
.sf-bring-home {
	padding-top: 2.5rem;
	padding-bottom: 4.5rem;
	scroll-margin-top: calc(var(--sf-header) + 0.75rem);
}

.sf-canvas p + p,
.sf-preview p + p,
.sf-bring-home p + p,
.sf-stories > p + p,
.sf-impact-copy p + p,
.sf-fabrics-copy p + p,
.sf-manifesto p + p {
	margin-top: 0.85rem;
}

.sf-stack {
	display: grid;
	gap: 0.35rem;
	margin: 1.15rem 0 1.5rem;
	font-size: clamp(1.45rem, 3vw, 2.15rem);
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1.15;
}

.sf-cities {
	display: grid;
	gap: 0.2rem;
	margin: 0.85rem 0 1.25rem;
	font-size: clamp(1.5rem, 3.2vw, 2.2rem);
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1.15;
}

.sf-statement {
	margin-top: 1.15rem;
	font-size: clamp(1.35rem, 2.4vw, 1.9rem);
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1.2;
}

.sf-close {
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: -0.02em;
}

.sf-manifesto h2 {
	margin-bottom: 1.4rem;
	font-size: clamp(2.4rem, 6vw, 4rem);
}

.sf-fabrics-track-wrap {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 0.55rem;
}

.sf-fabrics-track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(6.8rem, 1fr);
	gap: 0.85rem;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding: 0.35rem 0 0.5rem;
	scrollbar-width: none;
}

.sf-fabrics-track::-webkit-scrollbar {
	display: none;
}

.sf-fabric {
	display: grid;
	justify-items: center;
	gap: 0.55rem;
	text-align: center;
}

.sf-swatch {
	display: block;
	width: 5.1rem;
	height: 5.1rem;
	border-radius: var(--sf-radius);
	box-shadow: var(--sf-shadow);
	overflow: hidden;
}

.sf-swatch--photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sf-swatch--kente {
	background:
		repeating-linear-gradient(90deg, #111 0 10px, #d4a017 10px 18px, #b42318 18px 26px, #1b6b3a 26px 34px),
		repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.18) 0 6px, transparent 6px 14px);
}

.sf-swatch--sankofa {
	background:
		radial-gradient(circle at 30% 30%, #f3d27a 0 8%, transparent 9%),
		radial-gradient(circle at 70% 65%, #f3d27a 0 7%, transparent 8%),
		repeating-conic-gradient(#111 0 18deg, #f6efe0 18deg 36deg);
}

.sf-swatch--zebra {
	background: repeating-linear-gradient(118deg, #111 0 8px, #f4efe6 8px 14px, #c45a12 14px 18px, #111 18px 26px);
}

.sf-swatch--savanna {
	background: repeating-linear-gradient(90deg, #ead7b0 0 7px, #c9a36a 7px 12px, #8b5a2b 12px 16px, #ead7b0 16px 22px);
}

.sf-swatch--bantu {
	background: repeating-linear-gradient(45deg, #7a1212 0 12px, #111 12px 18px, #c43b2a 18px 28px);
}

.sf-swatch--nile {
	background:
		radial-gradient(circle at 50% 50%, #d4a017 0 10%, transparent 11%),
		repeating-conic-gradient(#16324a 0 20deg, #0e2233 20deg 28deg, #d4a017 28deg 32deg);
}

.sf-fabrics-prev svg {
	transform: rotate(180deg);
}

/* Process */

.sf-process {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr 0.55fr;
	gap: 1.75rem;
	align-items: center;
	padding-top: 1rem;
	padding-bottom: 4.5rem;
}

.sf-process-photo {
	position: relative;
	margin: 0;
	overflow: hidden;
	border-radius: 0 50% 50% 0 / 0 42% 42% 0;
}

.sf-process-photo img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: 35% 30%;
}

.sf-process-photo figcaption,
.sf-process-detail figcaption {
	position: absolute;
	left: 8%;
	bottom: 14%;
	max-width: 10rem;
	color: #fff;
	font-family: var(--sf-script);
	font-size: 1.55rem;
	font-weight: 500;
	line-height: 1.15;
	text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.sf-steps {
	display: grid;
	grid-template-columns: 1fr auto 1fr auto 1fr;
	gap: 0.65rem;
	align-items: start;
	margin: 1.8rem 0 1.8rem;
}

.sf-steps > li:not(.sf-steps-arrow) {
	display: grid;
	justify-items: center;
	gap: 0.45rem;
	text-align: center;
}

.sf-step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.35rem;
	height: 1.35rem;
	border: 1px solid var(--sf-ink);
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
}

.sf-steps-arrow {
	align-self: center;
	color: #c8c8c2;
	padding-top: 0.6rem;
}

.sf-steps-arrow svg {
	width: 18px;
	height: 18px;
}

.sf-process-detail {
	position: relative;
	margin: 0;
}

.sf-process-detail img {
	width: 100%;
	max-width: 12rem;
	margin-left: auto;
	object-fit: contain;
}

.sf-process-detail figcaption {
	position: static;
	display: block;
	margin-top: 0.75rem;
	margin-left: auto;
	color: var(--sf-dark);
	font-size: 1.25rem;
	text-align: right;
	text-shadow: none;
	transform: rotate(-4deg);
}

/* Impact */

.sf-impact {
	display: grid;
	grid-template-columns: 0.75fr 1.25fr;
	gap: 2rem;
	align-items: start;
	padding-bottom: 4.5rem;
}

.sf-impact-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.9rem;
}

.sf-impact-grid li {
	padding: 1.2rem 1rem;
	border-radius: 1.15rem;
	background: var(--sf-surface);
	box-shadow: var(--sf-shadow);
}

/* Stories */

.sf-stories {
	padding-bottom: 4rem;
}

.sf-stories-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.6rem;
}

.sf-stories-head .sf-text-link {
	margin-top: 0;
}

.sf-stories-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.sf-story {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.9rem;
	align-items: start;
	padding: 1.2rem;
	border-radius: 1.15rem;
	background: var(--sf-surface);
	box-shadow: var(--sf-shadow);
}

.sf-story > img {
	width: 3.2rem;
	height: 3.2rem;
	border-radius: 999px;
	object-fit: cover;
}

.sf-story blockquote {
	margin: 0 0 0.85rem;
	font-size: 0.92rem;
	line-height: 1.45;
}

.sf-story-meta {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 0.6rem;
}

.sf-story-meta div {
	display: grid;
}

.sf-stars {
	display: flex;
	gap: 0.08rem;
	color: var(--sf-star);
}

.sf-stars svg {
	width: 12px;
	height: 12px;
	fill: currentColor;
}

/* CTA banner */

.sf-cta {
	padding: 0 var(--sf-pad) 2.5rem;
}

.sf-cta-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
	align-items: stretch;
	gap: 0;
	overflow: hidden;
	border-radius: 1.75rem;
	background: var(--sf-dark);
	color: #fff;
}

.sf-cta-copy {
	padding: 2.6rem 2.4rem;
}

.sf-cta h2 {
	margin-bottom: 0.7rem;
	font-size: clamp(1.9rem, 3.5vw, 2.6rem);
}

.sf-cta p:not(.sf-eyebrow) {
	margin-bottom: 1.4rem;
	color: rgba(255, 255, 255, 0.72);
}

.sf-cta-visual {
	margin: 0;
	min-height: 100%;
	background: #132019;
}

.sf-cta-visual img {
	width: 100%;
	height: 100%;
	min-height: 14rem;
	object-fit: cover;
	object-position: center;
}

/* WooCommerce */

.sf-made-to-order,
.sf-checkout-ondemand {
	margin: 0.85rem 0 1rem;
	color: var(--sf-muted);
	font-size: 0.88rem;
}

.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
	gap: 1.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.woocommerce ul.products li.product {
	float: none;
	width: auto;
	margin: 0;
}

.woocommerce ul.products li.product a img {
	width: 100%;
	border-radius: var(--sf-radius);
	margin-bottom: 0.85rem;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-family: var(--sf-display);
	font-size: 1.15rem;
	font-weight: 600;
	letter-spacing: -0.02em;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--sf-ink);
	font-weight: 600;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce div.product form.cart .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.85rem;
	padding: 0.7rem 1.25rem;
	border: 0;
	border-radius: 999px;
	background: var(--sf-dark);
	color: #fff;
	font-weight: 600;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce div.product form.cart .button:hover {
	background: #243830;
	color: #fff;
}

.woocommerce div.product {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 2.5rem;
	align-items: start;
}

.woocommerce div.product .woocommerce-product-gallery,
.woocommerce div.product .summary {
	float: none;
	width: auto;
}

@media (max-width: 1100px) {
	.sf-impact-grid {
		grid-template-columns: 1fr 1fr;
	}

	.sf-process {
		grid-template-columns: 0.9fr 1.1fr;
	}

	.sf-process-detail {
		display: none;
	}
}

@media (max-width: 980px) {
	.sf-hero,
	.sf-fabrics,
	.sf-process,
	.sf-impact,
	.sf-cta-inner {
		grid-template-columns: 1fr;
	}

	.sf-header-inner,
	.sf-footer-inner {
		grid-template-columns: 1fr auto;
	}

	.sf-nav {
		grid-column: 1 / -1;
		order: 3;
		justify-content: stretch;
	}

	.sf-menu-toggle {
		position: absolute;
		top: 1.15rem;
		right: var(--sf-pad);
		display: inline-flex;
	}

	.sf-header-actions {
		margin-right: 2.5rem;
	}

	.sf-nav .sf-nav-list,
	.sf-nav .menu,
	.sf-nav ul {
		display: none;
		width: 100%;
		flex-direction: column;
		gap: 0.85rem;
		padding: 0.4rem 0 0.8rem;
	}

	.sf-nav.toggled .sf-nav-list,
	.sf-nav.toggled .menu,
	.sf-nav.toggled ul {
		display: flex;
	}

	.sf-header-cta {
		display: none;
	}

	.sf-hero-perks,
	.sf-impact-grid,
	.sf-stories-grid,
	.sf-steps {
		grid-template-columns: 1fr;
	}

	.sf-steps-arrow,
	.sf-side-caption {
		display: none;
	}

	.sf-process-photo {
		border-radius: 1.5rem;
		max-width: 22rem;
	}

	.sf-footer-nav,
	.sf-footer .menu,
	.sf-social {
		border: 0;
		padding: 0;
		justify-content: flex-start;
	}

	.sf-footer-inner {
		justify-items: start;
	}

	.sf-cta-inner {
		border-radius: 1.25rem;
	}
}

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

	.sf-fabrics-track-wrap {
		grid-template-columns: 1fr;
	}

	.sf-fabrics-prev,
	.sf-fabrics-next {
		display: none;
	}

	.sf-stories-head {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 800px) {
	.woocommerce div.product {
		grid-template-columns: 1fr;
	}
}

/* Language */

.sf-lang {
	display: inline-flex;
	gap: 0.45rem;
	margin-right: 0.35rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.sf-lang a[aria-current="true"] {
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.sf-footer-end {
	display: grid;
	justify-items: end;
	gap: 0.5rem;
}

/* Community empty */

.sf-community-empty {
	display: grid;
	justify-items: start;
	gap: 1rem;
	max-width: 36rem;
	color: var(--sf-muted);
}

.sf-community-empty img {
	width: 4.5rem;
	height: 4.5rem;
	border-radius: 999px;
	object-fit: cover;
}

/* Configurator */

.is-design {
	max-width: none;
	padding: 0;
}

.sf-configurator {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
	gap: 2rem;
	max-width: calc(var(--sf-max) + 4rem);
	margin: 0 auto;
	padding: 1.5rem var(--sf-pad) 6rem;
	align-items: start;
}

.sf-config-preview h1 {
	margin-bottom: 0.7rem;
	font-size: clamp(2rem, 4vw, 3.1rem);
}

.sf-config-preview .sf-lead {
	margin-bottom: 1.35rem;
}

.sf-config-preview img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: contain;
}

.sf-config-story {
	margin-top: 1rem;
	color: var(--sf-muted);
	max-width: 36rem;
}

.sf-config-live {
	margin-top: 0.75rem;
	font-weight: 600;
	letter-spacing: -0.02em;
}

.sf-config-hint {
	margin: 0 0 0.85rem;
	color: var(--sf-muted);
	font-size: 0.88rem;
}

.sf-config-block legend + .sf-config-hint {
	margin-top: -0.25rem;
}

.sf-fabric-grid + .sf-config-hint {
	margin-top: 0.75rem;
}

.sf-config-block .sf-text-link {
	margin-top: 0.65rem;
}

.sf-config-close {
	margin: 0 0 0.85rem;
	font-weight: 600;
	letter-spacing: -0.02em;
}

.sf-config-note {
	margin-top: 0.85rem;
	color: var(--sf-muted);
	font-size: 0.82rem;
}

.sf-config-note strong {
	display: block;
	margin-bottom: 0.25rem;
	color: var(--sf-ink);
	font-size: 0.88rem;
}

.sf-config-summary {
	display: grid;
	gap: 0.4rem;
	margin: 0 0 1.1rem;
	font-size: 0.88rem;
}

.sf-config-summary div {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
}

.sf-config-summary dt {
	color: var(--sf-muted);
}

.sf-config-panel h1 {
	margin-bottom: 1.5rem;
	font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.sf-config-block {
	border: 0;
	margin: 0 0 1.5rem;
	padding: 0;
}

.sf-config-block legend {
	margin-bottom: 0.75rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.sf-model-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}

.sf-model-card,
.sf-size {
	border: 1px solid var(--sf-line);
	border-radius: var(--sf-radius);
	background: var(--sf-surface);
	text-align: left;
}

.sf-model-card {
	display: grid;
	gap: 0.45rem;
	padding: 0.75rem;
}

.sf-model-card img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: contain;
}

.sf-model-card.is-selected,
.sf-fabric--select.is-selected,
.sf-size.is-selected {
	outline: 2px solid var(--sf-dark);
	outline-offset: 2px;
}

.sf-fabric-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
}

.sf-fabric--select {
	width: 100%;
	justify-items: center;
}

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

.sf-size {
	min-height: 2.7rem;
	padding: 0.45rem 0.6rem;
	font-size: 0.82rem;
	font-weight: 600;
	text-align: center;
}

.sf-config-qty {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.sf-config-qty input {
	width: 4.5rem;
	min-height: 2.6rem;
	border: 1px solid var(--sf-line);
	border-radius: 999px;
	text-align: center;
}

.sf-config-error {
	color: #b8202f;
	font-size: 0.88rem;
	margin-bottom: 0.75rem;
}

.sf-config-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.sf-price {
	font-size: 1.15rem;
	font-weight: 700;
}

.sf-config-sticky {
	display: none;
}

.sf-config-fabric-name {
	margin-bottom: 0.65rem;
	font-weight: 600;
}

/* Brand pages */

.is-brand {
	max-width: calc(var(--sf-max) + 4rem);
	margin: 0 auto;
	padding: 3rem var(--sf-pad) 5rem;
}

.sf-page-hero {
	max-width: 44rem;
	margin-bottom: 3.25rem;
}

.sf-page-hero h1 {
	margin-bottom: 1rem;
	font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.sf-page-hero .sf-lead {
	margin-bottom: 0.35rem;
}

.sf-prose {
	display: grid;
	gap: 3.25rem;
	max-width: 44rem;
}

.sf-prose h2 {
	margin-bottom: 0.65rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
}

.sf-prose section {
	display: grid;
	gap: 0.85rem;
}

.sf-prose .sf-stack,
.sf-prose .sf-cities {
	margin: 0.15rem 0 0.35rem;
}

.sf-prose .sf-btn {
	margin-top: 0.5rem;
	justify-self: start;
}

.sf-prose a:not(.sf-btn) {
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.sf-prose--entry {
	display: block;
}

.sf-prose--entry > * + * {
	margin-top: 1.15rem;
}

.sf-prose--entry h2,
.sf-prose--entry h3 {
	margin-top: 2.25rem;
	margin-bottom: 0.5rem;
}

.sf-prose--entry ul,
.sf-prose--entry ol {
	padding-left: 1.25rem;
}

.sf-prose--entry ul {
	list-style: disc;
}

.sf-prose--entry ol {
	list-style: decimal;
}

.sf-prose--entry li + li {
	margin-top: 0.35rem;
}

.sf-prose--entry blockquote {
	padding-left: 1rem;
	border-left: 3px solid var(--sf-line);
	color: var(--sf-muted);
	font-family: var(--sf-serif);
}

.sf-page-media {
	max-width: 44rem;
	margin: 0 0 2rem;
	overflow: hidden;
	border-radius: var(--sf-radius);
}

.sf-page-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 2rem;
}

.sf-search-form--page {
	max-width: 44rem;
	margin: 0 0 2.5rem;
	padding: 0;
}

.sf-feed {
	display: grid;
	gap: 0;
	max-width: 44rem;
}

.sf-feed-item {
	padding: 1.35rem 0;
	border-bottom: 1px solid var(--sf-line);
}

.sf-feed-item h2 {
	margin-bottom: 0.4rem;
	font-size: clamp(1.2rem, 2.5vw, 1.55rem);
}

.sf-feed-item p {
	color: var(--sf-muted);
}

.sf-empty {
	display: grid;
	gap: 1.15rem;
	max-width: 44rem;
}

.is-brand .posts-navigation,
.is-brand .post-navigation,
.is-brand .comments-navigation {
	max-width: 44rem;
	margin-top: 2.5rem;
}

.is-brand .nav-links {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	font-weight: 600;
}

.sf-comments {
	max-width: 44rem;
	margin-top: 3.25rem;
	padding-top: 2rem;
	border-top: 1px solid var(--sf-line);
}

.sf-comments .comment-list {
	display: grid;
	gap: 1.25rem;
	margin: 1.25rem 0;
}

.sf-comments .comment-body {
	padding: 1rem 0;
	border-bottom: 1px solid var(--sf-line);
}

.sf-comments textarea,
.sf-comments input[type="text"],
.sf-comments input[type="email"],
.sf-comments input[type="url"] {
	width: 100%;
	min-height: 2.85rem;
	padding: 0.6rem 1rem;
	border: 1px solid var(--sf-line);
	border-radius: 12px;
	background: var(--sf-surface);
	color: var(--sf-ink);
}

.sf-comments textarea {
	min-height: 8rem;
}

.sf-comments .form-submit input {
	display: inline-flex;
	min-height: 2.9rem;
	padding: 0.75rem 1.35rem;
	border: 0;
	border-radius: 999px;
	background: var(--sf-dark);
	color: #fff;
	font-weight: 600;
}

.sf-sidebar {
	max-width: var(--sf-max);
	margin: 0 auto;
	padding: 0 var(--sf-pad) 4rem;
}

.is-store {
	max-width: var(--sf-max);
}

.sf-faq details {
	padding: 1rem 0;
	border-bottom: 1px solid var(--sf-line);
}

.sf-faq summary {
	cursor: pointer;
	font-weight: 650;
}

.sf-fabric-page-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
	gap: 1.25rem;
}

.sf-fabric-card {
	display: grid;
	gap: 0.55rem;
	padding: 1rem;
	border-radius: 1.15rem;
	background: var(--sf-surface);
	box-shadow: var(--sf-shadow);
}

.sf-swatch--lg {
	width: 100%;
	height: 10rem;
}

.sf-fabric-card em {
	font-style: normal;
	font-weight: 700;
	font-size: 0.88rem;
}

.sf-empty-cart,
.sf-thankyou-intro {
	display: grid;
	gap: 0.85rem;
	max-width: 36rem;
	margin: 2rem 0 2.5rem;
}

.sf-timeline ol {
	display: grid;
	gap: 0.65rem;
	margin: 1.5rem 0;
}

.sf-timeline li {
	display: flex;
	gap: 0.75rem;
	align-items: center;
	color: var(--sf-muted);
}

.sf-timeline li.is-done {
	color: var(--sf-ink);
	font-weight: 600;
}

@media (max-width: 980px) {
	.sf-configurator {
		grid-template-columns: 1fr;
		padding-bottom: 7rem;
	}

	.sf-config-cta {
		display: none;
	}

	.sf-config-sticky {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 30;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 1rem;
		padding: 0.85rem var(--sf-pad);
		background: rgba(248, 247, 242, 0.96);
		backdrop-filter: blur(12px);
		border-top: 1px solid var(--sf-line);
	}
}

.sf-btn--outline {
	border: 1px solid rgba(255, 255, 255, 0.55);
	background: transparent;
	color: #fff;
	border-radius: 0.35rem;
}

.sf-btn--outline:hover {
	background: #fff;
	color: var(--sf-dark);
}

/* Editorial pages — Our Story, Impact */

.is-editorial {
	max-width: none;
	padding: 0;
}

.is-editorial h1,
.is-editorial h2,
.is-editorial .sf-ed-name {
	font-family: var(--sf-serif);
	font-weight: 500;
	letter-spacing: -0.025em;
}

.sf-ed-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
	gap: 2rem;
	align-items: center;
	max-width: calc(var(--sf-max) + 4rem);
	margin: 0 auto;
	padding: 1.6rem var(--sf-pad) 2.8rem;
}

.sf-ed-hero-visual {
	position: relative;
	margin: 0;
	overflow: hidden;
	aspect-ratio: 5 / 6;
	min-height: 0;
	background: #e8d7c0;
}

.sf-ed-hero-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 1rem 0 2rem;
}

.sf-ed-hero h1 {
	margin-bottom: 1.15rem;
	font-size: clamp(2.5rem, 5.4vw, 4.35rem);
	line-height: 1.05;
}

.sf-ed-hero .sf-lead {
	max-width: 28rem;
}

.sf-ed-hero .sf-btn {
	margin-top: 1.6rem;
	width: max-content;
}

.sf-ed-hero h1,
.sf-ed-band,
.sf-ed-finale,
.sf-ed-closeout {
	scroll-margin-top: calc(var(--sf-header) + 0.5rem);
}

.sf-ed-jump {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	margin-top: 2.2rem;
	color: var(--sf-ink);
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.sf-ed-jump::before {
	content: "";
	width: 1px;
	height: 2.6rem;
	background: var(--sf-ink);
}

.sf-ed-hero-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sf-ed-subhead {
	margin: -0.55rem 0 1.15rem;
	font-family: var(--sf-serif);
	font-size: clamp(1.45rem, 3vw, 2.15rem);
	font-weight: 500;
	line-height: 1.15;
}

.sf-ed-split-shot,
.sf-ed-curve-shot,
.sf-ed-closeout-shot {
	position: relative;
	margin: 0;
	overflow: hidden;
	min-height: 16rem;
	background: #e8d7c0;
}

.sf-ed-curve-shot {
	aspect-ratio: 3 / 4;
	min-height: 0;
	border-radius: 0 50% 50% 0 / 0 42% 42% 0;
}

.sf-ed-cell--split-photo.is-photo-start {
	grid-template-columns: 0.82fr 1.18fr;
	padding: 0;
}

.sf-ed-cell--split-photo.is-photo-start > div {
	padding: clamp(1.75rem, 4vw, 3.4rem) clamp(1.4rem, 3vw, 2.6rem);
}

.sf-ed-cell--split-photo.is-photo-start > .sf-ed-split-shot {
	height: 100%;
	min-height: 22rem;
}

.sf-ed-hero-cities,
.sf-ed-hero-visual .sf-ed-script,
.sf-ed-hero-visual .sf-ed-aside {
	z-index: 1;
}

.sf-ed-cell--with-shot {
	grid-template-columns: minmax(0, 1.15fr) minmax(8rem, 0.85fr);
	gap: 1.25rem;
	align-items: center;
}

.sf-ed-hero-cities {
	position: absolute;
	top: 8%;
	right: 6%;
	display: grid;
	gap: 0.12rem;
	color: rgba(92, 74, 54, 0.55);
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	line-height: 1.35;
	text-align: right;
	text-transform: uppercase;
}

.sf-ed-script {
	font-family: var(--sf-script);
	font-size: clamp(1.45rem, 2.2vw, 2rem);
	font-weight: 500;
	line-height: 1.05;
}

.sf-ed-script--tr {
	position: absolute;
	top: 8%;
	right: 7%;
	max-width: 8rem;
	color: var(--sf-ink);
	text-align: right;
	transform: rotate(8deg);
}

.sf-ed-aside {
	color: var(--sf-muted);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	line-height: 1.45;
	text-transform: uppercase;
}

.sf-ed-hero-visual .sf-ed-aside {
	position: absolute;
	right: 7%;
	bottom: 10%;
	text-align: right;
}

.sf-ed-band {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.sf-ed-band--3 {
	grid-template-columns: 1.05fr 0.9fr 1.05fr;
}

.sf-ed-cell {
	position: relative;
	display: grid;
	align-content: center;
	gap: 0.9rem;
	padding: clamp(1.75rem, 4vw, 3.4rem);
	min-height: 22rem;
	background: var(--sf-bg);
}

.sf-ed-cell p:not(.sf-ed-kicker):not(.sf-ed-emph):not(.sf-ed-rule-text):not(.sf-ed-aside) {
	max-width: 32rem;
	color: var(--sf-muted);
	font-size: 0.95rem;
}

.sf-ed-cell h2 {
	max-width: 20ch;
	font-size: clamp(1.7rem, 3.2vw, 2.55rem);
}

.sf-ed-kicker {
	margin: 0;
	color: var(--sf-muted);
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.sf-ed-kicker--light {
	color: rgba(255, 255, 255, 0.62);
}

.sf-ed-emph {
	color: inherit;
	font-weight: 600;
}

.sf-ed-rule-text {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: 0.35rem;
	color: inherit;
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.sf-ed-rule-text::before {
	content: "";
	width: 1.6rem;
	height: 1px;
	background: currentColor;
	opacity: 0.55;
}

.sf-ed-cell--photo {
	padding: 0;
	overflow: hidden;
	background: #1a1a18;
}

.sf-ed-cell--photo > img,
.sf-ed-cell--photo > .sf-ed-swatch {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border-radius: 0;
	box-shadow: none;
	object-fit: cover;
}

.sf-ed-hero-visual > img.sf-ed-crop,
.sf-ed-cell--photo > img.sf-ed-crop,
.sf-ed-split-shot > img.sf-ed-crop,
.sf-ed-curve-shot > img.sf-ed-crop,
.sf-ed-closeout-shot > img.sf-ed-crop {
	position: absolute;
	inset: auto;
	top: 50%;
	left: 50%;
	width: 148%;
	height: 148%;
	max-width: none;
	transform: translate(-50%, -50%);
	object-fit: cover;
	object-position: 52% 32%;
}

.sf-ed-hero-visual > img.sf-ed-crop {
	width: 142%;
	height: 142%;
	top: 56%;
	object-position: 50% 50%;
}

.sf-ed-hero-visual > img.sf-ed-crop.sf-ed-crop--wide,
.sf-ed-cell--photo > img.sf-ed-crop.sf-ed-crop--wide,
.sf-ed-split-shot > img.sf-ed-crop.sf-ed-crop--wide,
.sf-ed-curve-shot > img.sf-ed-crop.sf-ed-crop--wide {
	top: 32%;
	object-position: 42% 50%;
}

.sf-ed-cell--photo > img.sf-ed-crop.sf-ed-crop--portrait {
	width: 210%;
	height: 210%;
	top: 62%;
	object-position: 54% 50%;
}

.sf-ed-crop--bw {
	filter: grayscale(1) contrast(1.06);
}

.sf-ed-overlay {
	position: relative;
	z-index: 1;
	display: grid;
	align-content: end;
	gap: 0.85rem;
	height: 100%;
	padding: clamp(1.75rem, 4vw, 3.2rem);
	background: linear-gradient(180deg, rgba(10, 12, 10, 0.08) 20%, rgba(10, 12, 10, 0.72) 100%);
}

.sf-ed-cell--on-dark,
.sf-ed-cell--dark,
.sf-ed-cell--forest,
.sf-ed-overlay {
	color: #f4f1ea;
}

.sf-ed-cell--on-dark p:not(.sf-ed-kicker):not(.sf-ed-emph):not(.sf-ed-rule-text):not(.sf-ed-aside),
.sf-ed-cell--dark p:not(.sf-ed-kicker):not(.sf-ed-emph):not(.sf-ed-rule-text):not(.sf-ed-aside),
.sf-ed-cell--forest p:not(.sf-ed-kicker):not(.sf-ed-emph):not(.sf-ed-rule-text):not(.sf-ed-aside),
.sf-ed-overlay p:not(.sf-ed-kicker):not(.sf-ed-emph):not(.sf-ed-rule-text):not(.sf-ed-aside) {
	color: rgba(255, 255, 255, 0.78);
}

.sf-ed-cell--dark {
	background: #111410;
}

.sf-ed-cell--forest {
	background: var(--sf-dark);
}

.sf-ed-cell--split-photo {
	grid-template-columns: 1fr 0.72fr;
	gap: 1.25rem;
	align-items: stretch;
	padding-right: 0;
}

.sf-ed-swatch--panel {
	position: relative;
	width: auto;
	height: auto;
	min-height: 100%;
	border-radius: 0;
	box-shadow: none;
}

.sf-ed-inset {
	width: min(100%, 14rem);
	margin-bottom: 0.5rem;
	object-fit: contain;
}

.sf-ed-inset--soft {
	width: min(100%, 13rem);
	aspect-ratio: 3 / 4;
	margin-top: 0.4rem;
	object-fit: cover;
	border-radius: 0 50% 50% 0 / 0 42% 42% 0;
	justify-self: end;
}

.sf-ed-name {
	font-size: clamp(2.6rem, 5vw, 4rem);
	letter-spacing: 0.08em;
}

.sf-ed-cities {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem 0.9rem;
	margin-top: 0.4rem;
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.sf-ed-curve-shot .sf-ed-script,
.sf-ed-cell--photo .sf-ed-script {
	position: absolute;
	right: 8%;
	bottom: 10%;
	z-index: 1;
	max-width: 7rem;
	color: #fff;
	text-align: right;
	transform: rotate(-8deg);
}

.sf-ed-tiles {
	display: grid;
	justify-items: end;
	gap: 0.55rem;
	margin-top: 0.5rem;
}

.sf-ed-tiles .sf-swatch {
	width: 4.4rem;
	height: 4.4rem;
}

.sf-ed-tiles .sf-ed-aside {
	max-width: 5.5rem;
	text-align: right;
}

.sf-ed-caption-stack {
	position: absolute;
	right: 8%;
	bottom: 10%;
	z-index: 1;
	display: grid;
	gap: 0.15rem;
	color: #fff;
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-align: right;
}

.sf-ed-rings {
	position: relative;
	width: 4.8rem;
	height: 3.1rem;
	margin-top: 0.35rem;
}

.sf-ed-rings span {
	position: absolute;
	top: 0;
	width: 2.7rem;
	height: 2.7rem;
	border: 1.5px solid var(--sf-ink);
	border-radius: 999px;
}

.sf-ed-rings span:first-child {
	left: 0;
}

.sf-ed-rings span:last-child {
	left: 1.5rem;
}

.sf-ed-next {
	display: grid;
	gap: 0.55rem;
}

.sf-ed-next li {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	color: var(--sf-muted);
	font-size: 0.9rem;
}

.sf-ed-next li::before {
	content: "";
	flex: 0 0 auto;
	width: 0.7rem;
	height: 0.7rem;
	margin-top: 0.35rem;
	border: 1.5px solid currentColor;
	border-radius: 999px;
}

.sf-ed-finale {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) auto;
	gap: 2rem;
	align-items: end;
	padding: clamp(2.4rem, 5vw, 4.5rem) var(--sf-pad);
	background:
		radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.04), transparent 28%),
		repeating-linear-gradient(-32deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 18px),
		#0e1410;
	color: #f4f1ea;
}

.sf-ed-finale-copy {
	display: grid;
	gap: 0.9rem;
	max-width: 40rem;
}

.sf-ed-finale h2 {
	font-size: clamp(2rem, 4vw, 3.2rem);
}

.sf-ed-finale p:not(.sf-ed-kicker):not(.sf-ed-rule-text) {
	color: rgba(255, 255, 255, 0.72);
}

.sf-ed-closeout {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 0.95fr);
	gap: 2rem;
	align-items: stretch;
	max-width: calc(var(--sf-max) + 4rem);
	margin: 0 auto;
	padding: 3.2rem var(--sf-pad) 4.5rem;
}

.sf-ed-closeout h2 {
	margin-bottom: 0.75rem;
	font-size: clamp(1.9rem, 3.4vw, 2.7rem);
}

.sf-ed-closeout p:not(.sf-ed-rule-text) {
	max-width: 36rem;
	color: var(--sf-muted);
}

.sf-ed-closeout-shot {
	min-height: 18rem;
	background: #2a241c;
}

.sf-ed-closeout-shot > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sf-ed-closeout-shot .sf-btn {
	position: absolute;
	right: 8%;
	bottom: 12%;
	z-index: 1;
}

@media (max-width: 980px) {
	.sf-ed-hero,
	.sf-ed-band,
	.sf-ed-band--3,
	.sf-ed-cell--split-photo,
	.sf-ed-cell--split-photo.is-photo-start,
	.sf-ed-cell--with-shot,
	.sf-ed-finale,
	.sf-ed-closeout {
		grid-template-columns: 1fr;
	}

	.sf-ed-hero {
		align-items: stretch;
	}

	.sf-ed-hero-visual {
		aspect-ratio: 4 / 5;
		min-height: 0;
	}

	.sf-ed-cell,
	.sf-ed-cell--photo,
	.sf-ed-split-shot,
	.sf-ed-closeout-shot {
		min-height: 18rem;
	}

	.sf-ed-hero-cities,
	.sf-ed-hero-visual .sf-ed-aside {
		display: none;
	}

	.sf-ed-cell--split-photo:not(.is-photo-start) {
		padding: clamp(1.75rem, 4vw, 3.4rem);
	}

	.sf-ed-cell--split-photo.is-photo-start > div {
		padding: clamp(1.75rem, 4vw, 3.4rem);
	}

	.sf-ed-curve-shot {
		max-width: 16rem;
		justify-self: end;
	}

	.sf-ed-swatch--panel {
		min-height: 10rem;
	}

	.sf-ed-finale .sf-btn,
	.sf-ed-closeout .sf-btn {
		justify-self: start;
	}
}

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

	.sf-btn:hover {
		transform: none;
	}
}

/* Editions */

.sf-clock {
	display: grid;
	gap: 0.35rem;
	padding-top: 2.5rem;
	padding-bottom: 1rem;
	text-align: center;
}

.sf-clock-id {
	font-family: var(--sf-display);
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 600;
	letter-spacing: -0.03em;
}

.sf-clock-days,
.sf-clock-next {
	color: var(--sf-muted);
	font-size: 0.88rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.sf-nine {
	padding-top: 3rem;
	padding-bottom: 4rem;
}

.sf-nine-head,
.sf-nine > .sf-eyebrow {
	margin-bottom: 0.5rem;
}

.sf-nine h2 {
	margin-bottom: 0.85rem;
	font-size: clamp(2rem, 4vw, 3.2rem);
}

.sf-nine-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	margin-top: 1.75rem;
}

.sf-nine-card {
	display: grid;
	gap: 0.7rem;
	padding: 1.1rem;
	border-radius: var(--sf-radius);
	background: var(--sf-surface);
	box-shadow: var(--sf-shadow);
}

.sf-nine-card .sf-swatch--lg {
	width: 100%;
	height: auto;
	aspect-ratio: 1;
}

.sf-nine-num {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--sf-muted);
}

.sf-nine-card span:last-child,
.sf-nine-card em {
	color: var(--sf-muted);
	font-size: 0.88rem;
	font-style: normal;
}

.sf-edition-manifesto {
	padding-top: 3rem;
	padding-bottom: 4rem;
	max-width: 42rem;
}

.sf-edition-manifesto h2,
.sf-next h2 {
	margin-bottom: 1.1rem;
	font-size: clamp(2rem, 5vw, 3.4rem);
}

.sf-edition-manifesto p + p {
	margin-top: 0.85rem;
}

.sf-next {
	padding-top: 3rem;
	padding-bottom: 4rem;
}

.sf-next-form {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.25rem;
	max-width: 32rem;
}

.sf-next-form input[type="email"] {
	flex: 1;
	min-width: 12rem;
	min-height: 2.9rem;
	padding: 0.6rem 1rem;
	border: 1px solid var(--sf-line);
	border-radius: 999px;
	background: var(--sf-surface);
}

.sf-next-note {
	margin-top: 0.75rem;
	color: var(--sf-muted);
}

.sf-archive-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.sf-archive-card {
	display: grid;
	gap: 0.45rem;
	padding: 1.4rem;
	border-radius: var(--sf-radius);
	background: var(--sf-surface);
	box-shadow: var(--sf-shadow);
}

.sf-archive-card strong {
	font-size: 1.4rem;
}

.sf-edition-dates {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin: 1rem 0 1.5rem;
	color: var(--sf-muted);
	font-size: 0.88rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.sf-edition-hero-visual {
	margin: 1.5rem 0;
}

.sf-edition-hero-visual img {
	width: 100%;
	max-height: 28rem;
	object-fit: cover;
	border-radius: var(--sf-radius);
}

.sf-edition-status {
	margin-bottom: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.sf-config-edition {
	margin-top: 0.85rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.sf-fabric--select .sf-nine-num {
	justify-self: start;
}

.sf-fabric--select em {
	justify-self: start;
	font-size: 0.68rem;
	font-style: normal;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sf-muted);
}

.sf-return-badge {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--sf-muted);
}

.sf-bring-home {
	padding-top: 2.5rem;
	padding-bottom: 3.5rem;
	max-width: 36rem;
}

.sf-bring-home h2 {
	margin-bottom: 0.85rem;
	font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.sf-bring-home p + p {
	margin-top: 0.55rem;
}

.sf-bring-home .sf-text-link {
	margin-top: 1.1rem;
}

.sf-bring-back {
	padding-bottom: 2.5rem;
	max-width: 40rem;
}

.sf-bring-back h2 {
	margin-bottom: 0.9rem;
	font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.sf-bring-back p + p {
	margin-top: 0.55rem;
}

.sf-archive-nav {
	display: flex;
	gap: 1.5rem;
	margin-top: 1.5rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.sf-archive-nav .is-current {
	box-shadow: inset 0 -1px 0 var(--sf-ink);
}

.sf-vote-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	margin: 1.5rem 0 3rem;
}

.sf-vote-grid > li {
	display: grid;
	gap: 0.6rem;
}

.sf-wanted-rank {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: var(--sf-muted);
}

.sf-vote-card {
	display: grid;
	gap: 0.55rem;
	padding: 1.25rem;
	border-radius: var(--sf-radius);
	background: var(--sf-surface);
	box-shadow: var(--sf-shadow);
}

.sf-vote-card h1,
.sf-vote-card h3 {
	font-size: 1.45rem;
}

.sf-vote-count {
	font-size: 0.92rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.sf-vote-meter {
	height: 2px;
	background: var(--sf-line);
	border-radius: 999px;
	overflow: hidden;
}

.sf-vote-meter span {
	display: block;
	height: 100%;
	background: var(--sf-dark);
	transition: width 0.45s ease;
}

.sf-vote-done,
.sf-vote-status {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.sf-vote-promise,
.sf-vote-card p {
	color: var(--sf-ink);
}

.sf-vote-flash {
	min-height: 1.1em;
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	opacity: 0;
	transition: opacity 0.35s ease;
}

.sf-vote-card.is-voted .sf-vote-flash {
	opacity: 1;
}

.sf-vote-form {
	margin-top: 0.4rem;
}

.is-archive-fabric .sf-vote-card {
	max-width: 36rem;
	padding: 0;
	background: transparent;
	box-shadow: none;
}

.sf-want-back {
	max-width: 36rem;
	margin: 2rem 0;
}

.sf-want-back h2 {
	margin-bottom: 0.85rem;
	font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.sf-want-back p + p {
	margin-top: 0.55rem;
}

.sf-asked {
	padding: 3rem 0 2rem;
	max-width: 36rem;
}

.sf-asked h2 + h2 {
	margin-bottom: 1rem;
}

.sf-past-editions {
	padding-top: 2rem;
}

.sf-my-votes {
	padding: 1rem 0 3rem;
}

@media (max-width: 980px) {
	.sf-nine-grid,
	.sf-archive-grid,
	.sf-vote-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {
	.sf-nine-grid,
	.sf-archive-grid,
	.sf-vote-grid {
		grid-template-columns: 1fr;
	}
}

/* Homepage — mockup 2026 */

.is-home .sf-btn {
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.sf-stage {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 16.5rem;
	min-height: min(78vh, 46rem);
	overflow: hidden;
	background: #ead9c4;
	color: var(--sf-ink);
}

.sf-stage--next {
	grid-template-columns: 1fr;
}

.sf-stage-photo {
	position: absolute;
	inset: 0;
	margin: 0;
}

.sf-stage-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 68% 72%;
}

.sf-stage::before {
	content: "";
	position: absolute;
	inset: 0 16.5rem 0 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(248, 247, 242, 0.62) 0%, rgba(248, 247, 242, 0.28) 34%, rgba(248, 247, 242, 0.04) 62%, transparent 100%);
	pointer-events: none;
}

.sf-stage--next::before {
	right: 0;
}

.sf-stage-copy {
	position: relative;
	z-index: 2;
	display: grid;
	align-content: center;
	gap: 0;
	max-width: 38rem;
	padding: clamp(2.2rem, 6vw, 4.5rem) var(--sf-pad) 3.2rem;
}

.sf-stage-title {
	margin-bottom: 1.15rem;
	font-family: var(--sf-serif);
	font-size: clamp(2.7rem, 6.2vw, 5.1rem);
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 0.95;
	text-wrap: balance;
}

.sf-stage-copy .sf-lead {
	max-width: 28rem;
	font-size: 0.98rem;
	line-height: 1.55;
}

.sf-stage-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.85rem;
	margin: 1.6rem 0 2.4rem;
}

.sf-stage-caption {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	color: var(--sf-muted);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.sf-stage-caption::before {
	content: "";
	width: 1.6rem;
	height: 1px;
	background: currentColor;
}

.sf-stage-cities {
	position: absolute;
	top: 18%;
	left: min(52%, 38rem);
	z-index: 2;
	display: grid;
	gap: 0.28rem;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	line-height: 1;
	text-transform: uppercase;
	color: rgba(20, 20, 20, 0.72);
	text-shadow: 0 1px 10px rgba(248, 247, 242, 0.95);
}

.sf-stage-clock {
	position: relative;
	z-index: 2;
	display: grid;
	align-content: center;
	gap: 0.35rem;
	padding: 2.2rem 1.5rem;
	background: #141414;
	color: #fff;
}

.sf-stage-clock .sf-eyebrow {
	margin-bottom: 0.4rem;
}

.sf-stage-clock-num,
.sf-stage-clock-name {
	font-family: var(--sf-serif);
	font-size: clamp(2.4rem, 3vw, 3.1rem);
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 0.95;
	text-transform: uppercase;
}

.sf-stage-clock-until,
.sf-stage-clock-next {
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.sf-stage-clock-until {
	margin: 0.85rem 0 1.1rem;
}

.sf-count {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.6rem;
	margin-bottom: 1.4rem;
}

.sf-count strong {
	display: block;
	font-family: var(--sf-serif);
	font-size: 1.85rem;
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1;
}

.sf-count span {
	display: block;
	margin-top: 0.25rem;
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.58rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.sf-meet {
	max-width: 1280px;
	margin: 0 auto;
	padding: 3.4rem var(--sf-pad) 3.6rem;
}

.sf-meet-head {
	display: grid;
	grid-template-columns: 1fr minmax(12rem, 18rem) auto;
	align-items: end;
	gap: 1.5rem 2rem;
	margin-bottom: 1.8rem;
}

.sf-meet-head h2 {
	font-family: var(--sf-serif);
	font-size: clamp(2.2rem, 4.5vw, 3.4rem);
}

.sf-meet-head p {
	max-width: 16rem;
	color: var(--sf-muted);
	font-size: 0.88rem;
	line-height: 1.45;
}

.sf-meet-head .sf-btn {
	justify-self: end;
}

.sf-meet-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(6.2rem, 1fr));
	gap: 0.85rem;
}

.sf-meet-card {
	display: grid;
	align-content: start;
	gap: 0.5rem;
}

.sf-meet-card .sf-swatch {
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	border-radius: 14px;
}

.sf-meet-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.4rem;
}

.sf-meet-num {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.14em;
}

.sf-meet-card strong {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.sf-meet-card span:last-child {
	color: var(--sf-muted);
	font-size: 0.72rem;
	line-height: 1.35;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.sf-board,
.sf-trio {
	display: grid;
}

.sf-board {
	grid-template-columns: 1.18fr 0.92fr 0.72fr;
	min-height: 28rem;
}

.sf-board-curated,
.sf-board-archive,
.sf-board-portrait,
.sf-trio-card {
	position: relative;
	overflow: hidden;
	min-height: 22rem;
}

.sf-board-curated {
	color: #fff;
}

.sf-board-swatch {
	position: absolute;
	inset: 0;
	width: auto;
	height: auto;
	border-radius: 0;
	box-shadow: none;
}

.sf-board-curated::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 10, 10, 0.18) 0%, rgba(10, 10, 10, 0.55) 100%);
}

.sf-board-copy {
	position: relative;
	z-index: 1;
	display: grid;
	align-content: end;
	gap: 0.85rem;
	max-width: 34rem;
	height: 100%;
	padding: clamp(1.6rem, 4vw, 2.8rem);
}

.sf-board-copy h2,
.sf-board-archive h2,
.sf-trio-card h2,
.sf-closeout h2 {
	font-family: var(--sf-serif);
	font-weight: 600;
	letter-spacing: -0.03em;
}

.sf-board-copy h2 {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	text-wrap: balance;
}

.sf-board-copy p {
	max-width: 32rem;
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.92rem;
}

.sf-board-rule {
	margin-top: 0.4rem;
	font-size: 0.92rem;
	font-weight: 600;
}

.sf-board-rule::before {
	content: "— ";
}

.sf-board-archive {
	display: grid;
	align-content: center;
	gap: 0.9rem;
	padding: clamp(1.8rem, 4vw, 3rem);
	background: #fff;
	color: var(--sf-ink);
}

.sf-board-archive h2 {
	font-size: clamp(1.7rem, 2.6vw, 2.35rem);
	text-wrap: balance;
}

.sf-board-archive p {
	color: var(--sf-muted);
	font-size: 0.92rem;
}

.sf-board-archive .sf-btn {
	justify-self: start;
	margin-top: 0.4rem;
}

.sf-board-portrait {
	margin: 0;
	background: #1c1c1c;
}

.sf-board-portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 18%;
	filter: grayscale(1);
}

.sf-crop-fill {
	transform: scale(1.55);
}

.sf-board-portrait figcaption {
	position: absolute;
	top: 1.4rem;
	right: 1.2rem;
	max-width: 6.5rem;
	color: #fff;
	font-family: var(--sf-script);
	font-size: 1.55rem;
	line-height: 1.15;
	text-align: right;
	transform: rotate(8deg);
}

.sf-trio {
	grid-template-columns: 1fr 1fr 1fr;
}

.sf-trio-card {
	display: grid;
	color: #fff;
	min-height: 24rem;
}

.sf-trio-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sf-trio-card:first-child {
	background: #c4b196;
}

.sf-trio-card:first-child img {
	transform: scale(1.7);
	object-position: 50% 22%;
}

.sf-trio-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8, 10, 9, 0.08) 0%, rgba(8, 10, 9, 0.62) 100%);
}

.sf-trio-card--next::after {
	background: linear-gradient(180deg, rgba(8, 12, 10, 0.35) 0%, rgba(8, 12, 10, 0.78) 100%);
}

.sf-trio-card > div {
	position: relative;
	z-index: 1;
	display: grid;
	align-content: end;
	justify-items: start;
	gap: 0.85rem;
	padding: clamp(1.5rem, 3vw, 2.4rem);
}

.sf-trio-card h2 {
	font-size: clamp(1.55rem, 2.4vw, 2.05rem);
	text-wrap: balance;
}

.sf-trio-card p {
	max-width: 22rem;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.9rem;
}

.sf-trio-join {
	margin-top: 0.2rem;
	font-size: 0.62rem !important;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.sf-next-form--arrow {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	width: 100%;
	max-width: 22rem;
	margin-top: 0.2rem;
	padding-bottom: 0.45rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.sf-next-form--arrow input[type="email"] {
	flex: 1;
	min-width: 0;
	min-height: 2.2rem;
	padding: 0.2rem 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #fff;
}

.sf-next-form--arrow input[type="email"]::placeholder {
	color: rgba(255, 255, 255, 0.62);
}

.sf-next-go {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.35rem;
	height: 2.35rem;
	border-radius: 999px;
	background: #fff;
	color: var(--sf-ink);
}

.sf-next-go svg {
	width: 16px;
	height: 16px;
}

.sf-trio-card .sf-next-note {
	color: rgba(255, 255, 255, 0.8);
}

.sf-closeout {
	max-width: 1280px;
	margin: 0 auto;
	padding: 4.6rem var(--sf-pad) 5rem;
	text-align: center;
}

.sf-closeout h2 {
	font-size: clamp(2rem, 4.2vw, 3.15rem);
}

.sf-closeout > p {
	margin: 0.85rem auto 0;
	max-width: 34rem;
	color: var(--sf-muted);
}

.sf-closeout-row {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 1.5rem;
	margin-top: 2.4rem;
}

.sf-closeout-row p {
	color: var(--sf-muted);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.sf-closeout-row p:last-child {
	text-align: right;
}

@media (max-width: 1100px) {
	.sf-meet-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.2rem 1rem;
	}

	.sf-stage-cities {
		display: none;
	}
}

@media (max-width: 980px) {
	.sf-ticker {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.sf-ticker-mark {
		display: none;
	}

	.sf-stage,
	.sf-board,
	.sf-trio,
	.sf-meet-head,
	.sf-closeout-row {
		grid-template-columns: 1fr;
	}

	.sf-stage {
		min-height: 0;
	}

	.sf-stage::before {
		right: 0;
		background: linear-gradient(180deg, rgba(248, 247, 242, 0.88) 0%, rgba(248, 247, 242, 0.42) 42%, rgba(20, 20, 20, 0.2) 100%);
	}

	.sf-stage-copy {
		min-height: 28rem;
		padding-bottom: 2rem;
	}

	.sf-stage-clock {
		min-height: 0;
		padding: 1.6rem var(--sf-pad) 1.8rem;
	}

	.sf-meet-head .sf-btn,
	.sf-closeout-row p:last-child {
		justify-self: start;
		text-align: left;
	}

	.sf-board-portrait {
		min-height: 18rem;
	}

	.sf-trio-card {
		min-height: 20rem;
	}
}

@media (max-width: 640px) {
	.sf-meet-grid {
		grid-template-columns: 1fr 1fr;
	}

	.sf-stage-title {
		font-size: clamp(2.2rem, 12vw, 3.2rem);
	}
}
