/*
Theme Name: Store Laf Journal
Version: 1.0.1
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Author: Aster Line Studio
Description: A lightweight classic WordPress magazine theme for store-laf.org with dynamic content, Customizer controls, and a warm editorial layout.
Text Domain: store-laf-theme
Tags: blog, news, custom-colors, custom-menu, featured-images, right-sidebar, responsive-layout
*/

:root {
	--store-laf-primary: #b27647;
	--store-laf-accent: #8f213e;
	--store-laf-bg: #fff9f5;
	--store-laf-soft: #fff0dd;
	--store-laf-soft-alt: #fff5ee;
	--store-laf-text: #2f1908;
	--store-laf-muted: #7d7a77;
	--store-laf-border: rgba(178, 118, 71, 0.22);
	--store-laf-white: #ffffff;
	--store-laf-heading-font: Impact, "Arial Narrow", "Franklin Gothic Condensed", sans-serif;
	--store-laf-body-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--store-laf-radius: 10px;
	--store-laf-content: 1348px;
}

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

html {
	min-height: 100%;
	scroll-behavior: smooth;
}

body.store-laf-body {
	margin: 0;
	background: var(--store-laf-bg);
	color: var(--store-laf-text);
	font-family: var(--store-laf-body-font);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

.store-laf-body a {
	color: inherit;
	text-decoration: none;
}

.store-laf-body img {
	display: block;
	max-width: 100%;
	height: auto;
}

.store-laf-skip-link {
	position: absolute;
	left: -999px;
	top: 16px;
	z-index: 999;
	padding: 10px 14px;
	background: var(--store-laf-accent);
	color: var(--store-laf-white);
	border-radius: 6px;
}

.store-laf-skip-link:focus {
	left: 16px;
}

.store-laf-container {
	width: min(100% - 60px, var(--store-laf-content));
	margin-inline: auto;
}

.store-laf-topbar {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 52px;
	background: var(--store-laf-white);
	color: var(--store-laf-primary);
	font-size: 14px;
	font-weight: 700;
	text-align: center;
}

.store-laf-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	padding: 0 30px;
	background: linear-gradient(to bottom, rgba(255, 249, 245, 0.94), rgba(255, 249, 245, 0));
}

.store-laf-adminbar .store-laf-site-header {
	top: 32px;
}

.store-laf-nav-shell {
	width: min(100%, var(--store-laf-content));
	margin: 0 auto;
	min-height: 70px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 16px 50px;
	background: var(--store-laf-primary);
	color: var(--store-laf-white);
	border-radius: var(--store-laf-radius);
	box-shadow: 0 18px 40px rgba(47, 25, 8, 0.08);
}

.store-laf-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: max-content;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

.store-laf-brand-mark {
	display: grid;
	place-items: center;
	width: 26px;
	height: 26px;
	border: 2px solid currentColor;
	border-radius: 50%;
	position: relative;
}

.store-laf-brand-mark::before,
.store-laf-brand-mark::after {
	content: "";
	position: absolute;
	width: 2px;
	height: 22px;
	background: currentColor;
	top: 2px;
}

.store-laf-brand-mark::before {
	left: -5px;
}

.store-laf-brand-mark::after {
	right: -5px;
}

.store-laf-brand-name {
	font-family: var(--store-laf-body-font);
	font-size: 17px;
	font-weight: 900;
	line-height: 1;
}

.store-laf-custom-logo {
	max-height: 42px;
	width: auto;
}

.store-laf-primary-nav {
	flex: 1;
	display: flex;
	justify-content: center;
}

.store-laf-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(20px, 3vw, 46px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.store-laf-menu-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	color: var(--store-laf-white);
}

.store-laf-menu-link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 4px;
	height: 2px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 160ms ease;
}

.store-laf-menu-link:hover::after,
.store-laf-menu-link:focus-visible::after,
.store-laf-menu-item-current .store-laf-menu-link::after {
	transform: scaleX(1);
}

.store-laf-nav-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	border: 1px solid rgba(255, 255, 255, 0.82);
	border-radius: 999px;
	background: transparent;
	color: var(--store-laf-white);
	cursor: pointer;
}

.store-laf-nav-toggle-bars,
.store-laf-nav-toggle-bars::before,
.store-laf-nav-toggle-bars::after {
	display: block;
	width: 18px;
	height: 2px;
	background: currentColor;
	border-radius: 999px;
}

.store-laf-nav-toggle-bars {
	position: relative;
}

.store-laf-nav-toggle-bars::before,
.store-laf-nav-toggle-bars::after {
	content: "";
	position: absolute;
	left: 0;
}

.store-laf-nav-toggle-bars::before {
	top: -6px;
}

.store-laf-nav-toggle-bars::after {
	top: 6px;
}

.store-laf-main {
	overflow: hidden;
}

.store-laf-hero {
	position: relative;
	min-height: 745px;
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
	align-items: center;
	gap: 48px;
	padding: 92px max(30px, calc((100vw - var(--store-laf-content)) / 2)) 82px;
	background: var(--store-laf-soft);
	isolation: isolate;
}

.store-laf-hero::before,
.store-laf-hero::after {
	content: "";
	position: absolute;
	z-index: -1;
	border-radius: 999px;
	background: rgba(255, 184, 94, 0.62);
}

.store-laf-hero::before {
	width: 390px;
	height: 390px;
	left: -150px;
	top: -170px;
}

.store-laf-hero::after {
	width: 720px;
	height: 420px;
	right: -145px;
	bottom: -190px;
	transform: rotate(-12deg);
}

.store-laf-hero-copy {
	position: relative;
	z-index: 2;
	max-width: 590px;
}

.store-laf-eyebrow {
	display: inline-flex;
	align-items: center;
	margin-bottom: 18px;
	color: var(--store-laf-primary);
	font-weight: 900;
	font-size: 13px;
	text-transform: uppercase;
}

.store-laf-hero-title,
.store-laf-section-title,
.store-laf-entry-title,
.store-laf-archive-title,
.store-laf-compact-title {
	margin: 0;
	font-family: var(--store-laf-heading-font);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
	color: var(--store-laf-primary);
}

.store-laf-hero-title {
	max-width: 680px;
	font-size: clamp(4.2rem, 8.2vw, 8.8rem);
	line-height: 0.88;
	overflow-wrap: anywhere;
}

.store-laf-hero-title .store-laf-hero-inline {
	display: inline-block;
	margin-inline-start: 12px;
	font-size: clamp(1rem, 1.6vw, 1.45rem);
	line-height: 1;
	vertical-align: middle;
}

.store-laf-hero-summary {
	max-width: 520px;
	margin: 24px 0 0;
	color: var(--store-laf-muted);
	font-size: 18px;
	font-weight: 650;
}

.store-laf-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	margin-top: 34px;
	padding: 0 30px;
	background: var(--store-laf-accent);
	color: var(--store-laf-white);
	border-radius: 8px;
	border: 0;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform 160ms ease, opacity 160ms ease;
}

.store-laf-button:hover,
.store-laf-button:focus-visible {
	transform: translateY(-1px);
	opacity: 0.92;
}

.store-laf-button-icon {
	font-size: 21px;
	line-height: 0;
}

.store-laf-hero-media {
	position: relative;
	min-height: 560px;
}

.store-laf-hero-image,
.store-laf-featured-image,
.store-laf-card-image,
.store-laf-process-image,
.store-laf-entry-image,
.store-laf-card-media-image,
.store-laf-large-visual-image,
.store-laf-mini-visual-image,
.store-laf-process-media-image,
.store-laf-entry-media-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.store-laf-hero-image-frame {
	position: absolute;
	inset: 5% 0 auto auto;
	width: min(76%, 650px);
	height: 68%;
	border-radius: 12px;
	overflow: hidden;
	transform: rotate(-8deg);
	box-shadow: 0 28px 65px rgba(47, 25, 8, 0.16);
}

.store-laf-hero-image-frame + .store-laf-hero-image-frame {
	inset: auto 12% 6% auto;
	width: min(62%, 520px);
	height: 52%;
	transform: rotate(-18deg);
}

.store-laf-hero-placeholder {
	position: absolute;
	inset: 0;
	border-radius: 18px;
	background:
		radial-gradient(circle at 72% 16%, rgba(143, 33, 62, 0.14) 0 10%, transparent 11%),
		radial-gradient(circle at 25% 46%, rgba(178, 118, 71, 0.25) 0 8%, transparent 9%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(255, 240, 221, 0.3));
}

.store-laf-hero-placeholder::before,
.store-laf-hero-placeholder::after {
	content: "";
	position: absolute;
	border-radius: 14px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.38)),
		linear-gradient(90deg, rgba(178, 118, 71, 0.52), rgba(143, 33, 62, 0.18));
	box-shadow: 0 26px 70px rgba(47, 25, 8, 0.14);
}

.store-laf-hero-placeholder::before {
	width: 58%;
	height: 38%;
	top: 14%;
	right: 6%;
	transform: rotate(-12deg);
}

.store-laf-hero-placeholder::after {
	width: 50%;
	height: 34%;
	left: 10%;
	bottom: 12%;
	transform: rotate(-18deg);
}

.store-laf-orbit-label {
	position: absolute;
	right: 27%;
	top: 47%;
	color: var(--store-laf-primary);
	font-weight: 900;
	text-transform: uppercase;
	transform: rotate(-16deg);
}

.store-laf-section {
	padding: 96px 0;
}

.store-laf-intro {
	background: var(--store-laf-bg);
}

.store-laf-intro-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
	gap: clamp(38px, 7vw, 120px);
	align-items: start;
}

.store-laf-section-title {
	font-size: clamp(2.5rem, 4.3vw, 5rem);
	line-height: 0.94;
}

.store-laf-section-copy {
	max-width: 760px;
	margin-top: 28px;
	color: var(--store-laf-muted);
	font-weight: 650;
}

.store-laf-intro-collage {
	display: grid;
	grid-template-columns: 1fr 1.35fr;
	gap: 34px;
	align-items: end;
	min-height: 420px;
}

.store-laf-mini-visual,
.store-laf-large-visual,
.store-laf-card-media,
.store-laf-process-media,
.store-laf-entry-media {
	position: relative;
	overflow: hidden;
	border-radius: var(--store-laf-radius);
	background: linear-gradient(135deg, rgba(178, 118, 71, 0.15), rgba(143, 33, 62, 0.1));
}

.store-laf-mini-visual {
	aspect-ratio: 1.18 / 1;
	margin-bottom: 26px;
}

.store-laf-large-visual {
	aspect-ratio: 0.98 / 1.05;
}

.store-laf-placeholder-pattern {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.72) 0 8%, transparent 9%),
		radial-gradient(circle at 68% 62%, rgba(178, 118, 71, 0.32) 0 14%, transparent 15%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 240, 221, 0.62));
}

.store-laf-card-media .store-laf-process-index,
.store-laf-mini-visual .store-laf-process-index,
.store-laf-large-visual .store-laf-process-index,
.store-laf-process-media .store-laf-process-index,
.store-laf-entry-media .store-laf-process-index {
	position: absolute;
	right: 18px;
	bottom: 14px;
	opacity: 0.22;
}

.store-laf-intro-note {
	align-self: center;
	color: var(--store-laf-muted);
	font-size: 18px;
	font-weight: 650;
}

.store-laf-metrics {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border: 1px solid var(--store-laf-border);
	margin-top: 64px;
}

.store-laf-metric {
	min-height: 156px;
	padding: 32px 52px;
	border-right: 1px solid var(--store-laf-border);
}

.store-laf-metric:last-child {
	border-right: 0;
}

.store-laf-metric-value {
	display: block;
	font-family: var(--store-laf-heading-font);
	color: var(--store-laf-primary);
	font-size: clamp(2.4rem, 3.7vw, 4.5rem);
	line-height: 0.9;
	text-transform: uppercase;
}

.store-laf-metric-label {
	display: block;
	margin-top: 18px;
	color: var(--store-laf-primary);
	font-weight: 900;
	text-transform: uppercase;
}

.store-laf-metric-copy {
	margin: 10px 0 0;
	color: var(--store-laf-muted);
	font-weight: 650;
}

.store-laf-news {
	background: var(--store-laf-bg);
}

.store-laf-section-heading {
	max-width: 620px;
	margin: 0 auto 58px;
	text-align: center;
}

.store-laf-content-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 46px;
	align-items: start;
}

.store-laf-sidebar-left .store-laf-content-layout {
	grid-template-columns: 320px minmax(0, 1fr);
}

.store-laf-sidebar-left .store-laf-post-column {
	order: 2;
}

.store-laf-sidebar-left .store-laf-sidebar {
	order: 1;
}

.store-laf-sidebar-none .store-laf-content-layout {
	display: block;
}

.store-laf-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.store-laf-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	background: var(--store-laf-soft-alt);
	border: 1px solid rgba(178, 118, 71, 0.1);
	border-radius: 8px;
	overflow: hidden;
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.store-laf-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 22px 55px rgba(47, 25, 8, 0.1);
}

.store-laf-card-media {
	aspect-ratio: 1.18 / 0.86;
	border-radius: 0;
}

.store-laf-card-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 24px;
}

.store-laf-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	margin-bottom: 12px;
	color: var(--store-laf-primary);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.store-laf-card-title {
	margin: 0;
	font-size: 24px;
	line-height: 1.08;
	color: var(--store-laf-primary);
	font-family: var(--store-laf-heading-font);
	text-transform: uppercase;
	overflow-wrap: anywhere;
}

.store-laf-card-summary {
	margin: 14px 0 0;
	color: var(--store-laf-muted);
	font-size: 15px;
	font-weight: 650;
}

.store-laf-card-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: max-content;
	margin-top: auto;
	padding-top: 22px;
	color: var(--store-laf-accent);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.store-laf-pagination {
	margin-top: 48px;
}

.store-laf-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.store-laf-pagination a,
.store-laf-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 0 13px;
	border: 1px solid var(--store-laf-border);
	border-radius: 999px;
	color: var(--store-laf-primary);
	font-weight: 900;
}

.store-laf-pagination .current {
	background: var(--store-laf-primary);
	color: var(--store-laf-white);
}

.store-laf-process {
	background: var(--store-laf-bg);
}

.store-laf-process-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-top: 1px solid var(--store-laf-border);
	border-left: 1px solid var(--store-laf-border);
}

.store-laf-process-card {
	min-height: 260px;
	display: grid;
	align-content: center;
	gap: 18px;
	padding: 32px;
	border-right: 1px solid var(--store-laf-border);
	border-bottom: 1px solid var(--store-laf-border);
}

.store-laf-process-media {
	aspect-ratio: 1.4 / 1;
}

.store-laf-process-index {
	color: var(--store-laf-primary);
	font-family: var(--store-laf-heading-font);
	font-size: 40px;
	line-height: 1;
}

.store-laf-process-title {
	color: var(--store-laf-primary);
	font-weight: 900;
	text-transform: uppercase;
}

.store-laf-process-copy {
	margin: 0;
	color: var(--store-laf-muted);
	font-size: 14px;
	font-weight: 650;
}

.store-laf-services {
	background: var(--store-laf-soft-alt);
}

.store-laf-services-grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	border-top: 1px solid var(--store-laf-border);
	border-left: 1px solid var(--store-laf-border);
}

.store-laf-services-visual,
.store-laf-services-list {
	padding: 42px;
	border-right: 1px solid var(--store-laf-border);
	border-bottom: 1px solid var(--store-laf-border);
}

.store-laf-services-visual .store-laf-mini-visual {
	max-width: 270px;
	margin: 0;
}

.store-laf-service-links {
	display: grid;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.store-laf-service-link {
	display: inline-flex;
	width: max-content;
	max-width: 100%;
	color: rgba(178, 118, 71, 0.42);
	font-family: var(--store-laf-heading-font);
	font-size: clamp(2rem, 3.6vw, 4.4rem);
	line-height: 0.95;
	text-transform: uppercase;
	transition: color 160ms ease, transform 160ms ease;
	overflow-wrap: anywhere;
}

.store-laf-service-link:hover,
.store-laf-service-link:focus-visible,
.store-laf-service-link.store-laf-service-link-active {
	color: var(--store-laf-primary);
	transform: translateX(4px);
}

.store-laf-sidebar {
	position: sticky;
	top: 118px;
	display: grid;
	gap: 24px;
}

.store-laf-widget,
.store-laf-sidebar .widget {
	padding: 28px;
	background: var(--store-laf-soft-alt);
	border: 1px solid rgba(178, 118, 71, 0.16);
	border-radius: 8px;
}

.store-laf-widget-title,
.store-laf-sidebar .widgettitle,
.store-laf-sidebar .wp-block-heading {
	margin: 0 0 18px;
	color: var(--store-laf-primary);
	font-family: var(--store-laf-heading-font);
	font-size: 30px;
	line-height: 1;
	text-transform: uppercase;
}

.store-laf-category-list,
.store-laf-recent-list {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.store-laf-category-link,
.store-laf-recent-link {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	color: var(--store-laf-muted);
	font-weight: 800;
}

.store-laf-category-link:hover,
.store-laf-recent-link:hover {
	color: var(--store-laf-primary);
}

.store-laf-search-form {
	display: flex;
	gap: 8px;
}

.store-laf-search-field {
	min-width: 0;
	flex: 1;
	height: 44px;
	border: 1px solid var(--store-laf-border);
	border-radius: 8px;
	padding: 0 13px;
	background: var(--store-laf-white);
	color: var(--store-laf-text);
}

.store-laf-search-submit {
	min-width: 44px;
	border: 0;
	border-radius: 8px;
	background: var(--store-laf-accent);
	color: var(--store-laf-white);
	font-weight: 900;
	cursor: pointer;
}

.store-laf-entry-hero,
.store-laf-archive-hero {
	padding: 96px 0 70px;
	background: var(--store-laf-soft);
}

.store-laf-entry-shell {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 52px;
	padding-block: 76px;
}

.store-laf-sidebar-left .store-laf-entry-shell {
	grid-template-columns: 320px minmax(0, 1fr);
}

.store-laf-sidebar-left .store-laf-entry-content {
	order: 2;
}

.store-laf-sidebar-left .store-laf-entry-shell .store-laf-sidebar {
	order: 1;
}

.store-laf-sidebar-none .store-laf-entry-shell {
	display: block;
}

.store-laf-entry-title,
.store-laf-archive-title {
	max-width: 980px;
	font-size: clamp(3.4rem, 6vw, 7rem);
	line-height: 0.9;
	overflow-wrap: anywhere;
}

.store-laf-entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	margin-top: 22px;
	color: var(--store-laf-primary);
	font-weight: 900;
	text-transform: uppercase;
}

.store-laf-entry-media {
	aspect-ratio: 1.86 / 1;
	margin-top: 44px;
	border-radius: 12px;
}

.store-laf-entry-content {
	min-width: 0;
}

.store-laf-entry-content > * {
	max-width: 780px;
}

.store-laf-entry-content p,
.store-laf-entry-content li {
	color: var(--store-laf-muted);
	font-size: 18px;
	font-weight: 550;
}

.store-laf-entry-content h2,
.store-laf-entry-content h3,
.store-laf-entry-content h4 {
	margin-top: 1.6em;
	color: var(--store-laf-primary);
	font-family: var(--store-laf-heading-font);
	line-height: 1;
	text-transform: uppercase;
}

.store-laf-entry-content a {
	color: var(--store-laf-accent);
	font-weight: 800;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.store-laf-entry-content blockquote {
	max-width: 860px;
	margin: 36px 0;
	padding: 28px 34px;
	background: var(--store-laf-soft-alt);
	border-left: 5px solid var(--store-laf-primary);
	color: var(--store-laf-primary);
	font-weight: 800;
}

.store-laf-entry-footer {
	margin-top: 44px;
	padding-top: 24px;
	border-top: 1px solid var(--store-laf-border);
}

.store-laf-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.store-laf-tags a {
	display: inline-flex;
	padding: 7px 12px;
	border: 1px solid var(--store-laf-border);
	border-radius: 999px;
	color: var(--store-laf-primary);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.store-laf-post-nav {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 42px;
}

.store-laf-post-nav a {
	display: block;
	min-height: 96px;
	padding: 22px;
	background: var(--store-laf-soft-alt);
	border: 1px solid var(--store-laf-border);
	border-radius: 8px;
	color: var(--store-laf-primary);
	font-weight: 900;
	text-transform: uppercase;
}

.store-laf-related {
	padding: 72px 0;
	background: var(--store-laf-bg);
}

.store-laf-footer {
	background: var(--store-laf-text);
	color: var(--store-laf-white);
	padding: 76px 0 34px;
}

.store-laf-footer-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.8fr 0.8fr 1fr;
	gap: 42px;
}

.store-laf-footer-title {
	margin: 0 0 20px;
	color: var(--store-laf-white);
	font-family: var(--store-laf-heading-font);
	font-size: 32px;
	line-height: 1;
	text-transform: uppercase;
}

.store-laf-footer-copy,
.store-laf-footer-contact,
.store-laf-footer a {
	color: rgba(255, 255, 255, 0.82);
}

.store-laf-footer-copy {
	margin: 18px 0 0;
}

.store-laf-footer-list {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.store-laf-footer-list a:hover {
	color: var(--store-laf-white);
}

.store-laf-footer-contact {
	display: grid;
	gap: 12px;
}

.store-laf-footer-bottom {
	margin-top: 58px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	text-align: center;
}

.store-laf-empty {
	padding: 34px;
	border: 1px solid var(--store-laf-border);
	border-radius: 8px;
	background: var(--store-laf-soft-alt);
	color: var(--store-laf-muted);
	font-weight: 700;
}

.store-laf-style-minimal .store-laf-process,
.store-laf-style-minimal .store-laf-services,
.store-laf-style-minimal .store-laf-metrics {
	display: none;
}

@media (max-width: 1199px) {
	.store-laf-nav-shell {
		padding-inline: 28px;
	}

	.store-laf-menu {
		gap: 22px;
	}

	.store-laf-hero {
		grid-template-columns: 1fr;
		min-height: auto;
		padding-top: 86px;
	}

	.store-laf-hero-copy {
		max-width: 760px;
	}

	.store-laf-hero-media {
		min-height: 520px;
	}

	.store-laf-post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.store-laf-process-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.store-laf-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 860px) {
	.store-laf-container {
		width: min(100% - 40px, var(--store-laf-content));
	}

	.store-laf-topbar {
		display: none;
	}

	.store-laf-site-header {
		padding: 16px 0 0 68px;
	}

	.store-laf-nav-shell {
		width: 100%;
		border-top-right-radius: 0;
		border-bottom-right-radius: 0;
		padding: 14px 16px 14px 18px;
		min-height: 66px;
	}

	.store-laf-primary-nav {
		position: absolute;
		top: calc(100% + 8px);
		right: 0;
		left: 68px;
		display: none;
		padding: 14px;
		background: var(--store-laf-primary);
		border-radius: 0 0 0 var(--store-laf-radius);
	}

	.store-laf-nav-open .store-laf-primary-nav {
		display: block;
	}

	.store-laf-menu {
		display: grid;
		justify-content: stretch;
		gap: 0;
	}

	.store-laf-menu-link {
		min-height: 46px;
		width: 100%;
	}

	.store-laf-hero {
		grid-template-columns: 1fr;
		gap: 28px;
		padding: 58px 20px 54px;
	}

	.store-laf-hero::before {
		width: 270px;
		height: 270px;
		left: -145px;
		top: -138px;
	}

	.store-laf-hero::after {
		width: 340px;
		height: 230px;
		right: -130px;
		bottom: -80px;
	}

	.store-laf-hero-title {
		font-size: clamp(2.85rem, 14.4vw, 4.1rem);
		line-height: 0.9;
	}

	.store-laf-hero-title .store-laf-hero-inline {
		display: block;
		margin: 10px 0 0;
		font-size: 1.05rem;
	}

	.store-laf-hero-summary {
		font-size: 16px;
	}

	.store-laf-hero-media {
		min-height: 360px;
	}

	.store-laf-hero-image-frame {
		position: relative;
		inset: auto;
		width: 76%;
		height: 230px;
		margin-left: 18%;
	}

	.store-laf-hero-image-frame + .store-laf-hero-image-frame {
		position: absolute;
		width: 62%;
		height: 210px;
		right: 18%;
		bottom: 0;
	}

	.store-laf-section {
		padding: 64px 0;
	}

	.store-laf-intro-grid,
	.store-laf-content-layout,
	.store-laf-entry-shell,
	.store-laf-services-grid {
		display: block;
	}

	.store-laf-intro-collage {
		grid-template-columns: 1fr;
		min-height: auto;
		margin-top: 34px;
	}

	.store-laf-metrics {
		grid-template-columns: 1fr;
	}

	.store-laf-metric {
		border-right: 0;
		border-bottom: 1px solid var(--store-laf-border);
		padding: 28px;
	}

	.store-laf-metric:last-child {
		border-bottom: 0;
	}

	.store-laf-post-grid {
		grid-template-columns: 1fr;
	}

	.store-laf-sidebar {
		position: static;
		margin-top: 36px;
	}

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

	.store-laf-services-visual,
	.store-laf-services-list {
		padding: 28px;
	}

	.store-laf-service-link {
		font-size: clamp(2.25rem, 14vw, 4rem);
	}

	.store-laf-entry-title,
	.store-laf-archive-title {
		font-size: clamp(3rem, 15vw, 4.6rem);
	}

	.store-laf-entry-media {
		aspect-ratio: 1.15 / 1;
	}

	.store-laf-post-nav {
		grid-template-columns: 1fr;
	}

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

@media (max-width: 600px) {
	.store-laf-adminbar .store-laf-site-header {
		top: 46px;
	}

	.store-laf-brand-name {
		font-size: 16px;
	}

	.store-laf-button {
		width: min(100%, 220px);
	}

	.store-laf-section-title {
		font-size: clamp(2.55rem, 13vw, 3.7rem);
	}

	.store-laf-card-body {
		padding: 22px;
	}
}
