@font-face {
	font-family: 'Inter Tight';
	src: url('../fonts/InterTight-Variable.woff2') format('woff2-variations'), url('../fonts/InterTight-Variable.woff2') format('woff2');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

:root {
	--bg: #FAFAFA;
	--ink: #28282A;
	--ink-soft: rgba(40, 40, 42, 0.65);
	--line: rgba(40, 40, 42, 0.12);
	--white: #FFFFFF;
	--header-h: 76px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
	-webkit-font-smoothing: antialiased;
}

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

/* ---------- Header ---------- */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: var(--header-h);
	z-index: 200;
	display: flex;
	align-items: center;
	padding: 0 32px;
	background: transparent;
	transition: background 0.3s ease, border-color 0.3s ease;
	border-bottom: 1px solid transparent;
}

.header-left {
	display: flex;
	align-items: center;
	gap: 8px;
}

.site-header.is-scrolled {
	background: rgba(250, 250, 250, 0.92);
	backdrop-filter: blur(8px);
	border-bottom-color: var(--line);
}

.menu-toggle {
	appearance: none;
	background: none;
	border: none;
	cursor: pointer;
	width: 44px;
	height: 44px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 0;
	z-index: 400;
}

.menu-toggle span {
	display: block;
	width: 26px;
	height: 2px;
	background: var(--white);
	transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.site-header.is-scrolled .menu-toggle span { background: var(--ink); }
.nav-overlay.is-open ~ .site-header .menu-toggle span,
body.nav-open .menu-toggle span { background: var(--ink); }

body.nav-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.account-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	color: var(--white);
	transition: color 0.3s ease;
	z-index: 400;
}

.account-link svg { width: 24px; height: 24px; }

.site-header.is-scrolled .account-link { color: var(--ink); }

/* ---------- Hero logo (big, independent of header) ---------- */

.hero-logo {
	position: fixed;
	top: 26px;
	right: 40px;
	display: block;
	width: clamp(360px, 40vw, 760px);
	z-index: 150;
	transition: opacity 0.15s linear;
}

.hero-logo img { width: 100%; }

/* Home page with the hero photo hidden: the logo has no photo of its own to
   sit on, so it borrows the white/black swap from the page's own top
   section instead (shop-split photos at first, same as any real hero) —
   toggled by main.js in lockstep with the header's own is-scrolled swap.
   Not used on a real photo hero, which only ever renders the white image. */
.hero-logo-black { display: none; }

/* ---------- Scroll hint ---------- */

.scroll-hint {
	position: absolute;
	bottom: 56px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	color: var(--white);
	z-index: 5;
	pointer-events: none;
	transition: opacity 0.2s linear;
}

.scroll-hint span {
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.16em;
}

.scroll-hint svg {
	width: 18px;
	height: 18px;
	animation: scroll-hint-bounce 1.8s ease-in-out infinite;
}

@keyframes scroll-hint-bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(6px); }
}

/* ---------- Nav overlay (menu) ---------- */

.nav-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(20, 20, 20, 0.35);
	z-index: 290;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nav-backdrop.is-open { opacity: 1; visibility: visible; }

.nav-overlay {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: 33.333vw;
	background: var(--bg);
	z-index: 300;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 40px;
	box-shadow: 8px 0 32px rgba(0, 0, 0, 0.12);
	transform: translateX(-100%);
	transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

.nav-overlay.is-open { transform: translateX(0); }

.nav-close {
	position: absolute;
	top: 20px;
	right: 24px;
	background: none;
	border: none;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
	color: var(--ink);
	padding: 4px;
}

.nav-links {
	list-style: none;
	margin: 0 0 40px;
	padding: 0;
}

.nav-links li { margin-bottom: 10px; }

.nav-links a {
	font-size: clamp(1.5rem, 2.6vw, 2.4rem);
	font-weight: 600;
	text-decoration: none;
	color: var(--ink);
	text-transform: uppercase;
	letter-spacing: -0.01em;
	transition: opacity 0.2s ease;
}

.nav-links a:hover { opacity: 0.5; }

.nav-login-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.nav-login-link svg {
	width: 0.9em;
	height: 0.9em;
	flex-shrink: 0;
}

.nav-follow {
	display: flex;
	gap: 24px;
	align-items: center;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.nav-follow span { color: var(--ink-soft); }

.nav-follow a {
	color: var(--ink);
	text-decoration: none;
	border-bottom: 1px solid var(--ink);
	padding-bottom: 2px;
}

/* ---------- Hero ---------- */

.hero {
	height: 100vh;
	width: 100%;
	position: relative;
}

.hero-image {
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* ---------- Hero title ---------- */

.hero-title {
	padding: 48px 48px;
	width: 100%;
	text-align: center;
}

.hero-title h1 {
	font-size: clamp(1.9rem, 4.2vw, 3.8rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
	margin: 0;
	max-width: none;
}

/* ---------- Shop split (2 full-page photos) ---------- */

.shop-split {
	display: flex;
	width: 100%;
}

.shop-panel {
	position: relative;
	width: 50%;
	height: 100vh;
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}

.shop-panel::after {
	content: '';
	position: absolute;
	inset: auto 0 0 0;
	height: 160px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
	pointer-events: none;
	z-index: 1;
}

.panel-caption {
	position: absolute;
	bottom: 36px;
	left: 36px;
	color: var(--white);
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	z-index: 5;
}

/* ---------- Hotspots ---------- */

.hotspot {
	position: absolute;
	transform: translate(-50%, -50%);
	width: 28px;
	height: 28px;
	border: none;
	background: none;
	padding: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
}

.hotspot-dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--white);
	border: 2px solid var(--ink);
	box-shadow: 0 0 0 0 rgba(40, 40, 42, 0.45);
	animation: hotspot-pulse 2.4s ease-out infinite;
	transition: transform 0.2s ease;
}

.hotspot:hover .hotspot-dot { transform: scale(1.25); }

@keyframes hotspot-pulse {
	0% { box-shadow: 0 0 0 0 rgba(40, 40, 42, 0.45); }
	70% { box-shadow: 0 0 0 16px rgba(40, 40, 42, 0); }
	100% { box-shadow: 0 0 0 0 rgba(40, 40, 42, 0); }
}

/* ---------- Product popup ---------- */

.product-popup {
	position: fixed;
	inset: 0;
	z-index: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.product-popup.is-open { visibility: visible; opacity: 1; }

.product-popup-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(20, 20, 20, 0.55);
}

.product-popup-card {
	position: relative;
	background: var(--white);
	width: min(720px, 90vw);
	max-height: 85vh;
	display: flex;
	overflow: hidden;
	transform: translateY(16px);
	transition: transform 0.25s ease;
}

.product-popup.is-open .product-popup-card { transform: translateY(0); }

.product-popup-image {
	width: 45%;
	flex-shrink: 0;
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}

.product-popup-info {
	padding: 40px 36px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.product-popup-info h3 {
	margin: 0 0 10px;
	font-size: 1.4rem;
	text-transform: uppercase;
}

.product-popup-info p {
	margin: 0 0 28px;
	font-size: 1.1rem;
	color: var(--ink-soft);
}

.product-popup-cta {
	display: inline-block;
	background: var(--ink);
	color: var(--white);
	text-decoration: none;
	text-align: center;
	padding: 14px 20px;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	transition: opacity 0.2s ease;
}

.product-popup-cta:hover { opacity: 0.8; }

.product-popup-close {
	position: absolute;
	top: 14px;
	right: 16px;
	background: none;
	border: none;
	font-size: 1.8rem;
	line-height: 1;
	cursor: pointer;
	color: var(--ink);
	z-index: 2;
}

/* ---------- Page hero overlay (LANES / CORE headline over photo) ---------- */

.hero-overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 64px 48px 80px;
	z-index: 5;
	color: var(--white);
	background: linear-gradient(to top, rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0) 60%);
}

.hero-kicker {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	margin-bottom: 18px;
	opacity: 0.85;
}

.hero-overlay h1 {
	font-size: clamp(2.6rem, 7vw, 5.5rem);
	font-weight: 700;
	line-height: 0.95;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	margin: 0 0 22px;
}

.hero-intro {
	font-size: clamp(1rem, 1.6vw, 1.25rem);
	line-height: 1.55;
	max-width: 560px;
	margin: 0 0 28px;
	opacity: 0.92;
}

/* ---------- Buttons ---------- */

.btn {
	display: inline-block;
	padding: 15px 26px;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.btn:hover { opacity: 0.8; }

.btn-light { background: var(--white); color: var(--ink); }
.btn-dark { background: var(--ink); color: var(--white); }

/* ---------- Section container + manifesto reuse ---------- */

.section {
	max-width: 1120px;
	margin: 0 auto;
	padding: 96px 48px;
}

.section-narrow { max-width: 760px; }

/* Flush left against the true page edge (not centred/padded like .section)
   — used right before a full-bleed grid (card-grid, shop-grid…) so the
   intro text lines up with the grid instead of floating in the middle. */
.section-flush {
	width: 100%;
	padding: 64px 33px 20px;
}

.section-eyebrow {
	display: block;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--ink-soft);
	margin-bottom: 16px;
}

.section h2, .section-flush h2 {
	font-size: clamp(1.8rem, 3.6vw, 2.8rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.01em;
	margin: 0 0 24px;
}

.section p, .section-flush p {
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--ink-soft);
	margin: 0 0 18px;
}

.section p:last-child, .section-flush p:last-child { margin-bottom: 0; }

/* ---------- Split block (alternating full-bleed photo + text) ---------- */

.split-block {
	display: flex;
	min-height: 80vh;
}

.split-block.reverse { flex-direction: row-reverse; }

.split-media {
	width: 50%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.split-text {
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 80px;
}

.split-text .section-eyebrow { margin-bottom: 16px; }

.split-text h2 {
	font-size: clamp(1.7rem, 3vw, 2.4rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.01em;
	margin: 0 0 20px;
	max-width: 480px;
}

.split-text p {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--ink-soft);
	max-width: 480px;
	margin: 0 0 16px;
}

.split-text p:last-child { margin-bottom: 0; }

/* ---------- Runs grid (4 cards) ---------- */

.card-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
}

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

.grid-card {
	padding: 40px 32px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.grid-card-icon { display: block; margin-bottom: 20px; color: var(--ink); }

.grid-card-icon svg { width: 32px; height: 32px; }

.grid-card h3 {
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin: 0 0 12px;
}

.grid-card p {
	font-size: 0.92rem;
	line-height: 1.6;
	color: var(--ink-soft);
	margin: 0;
}

/* ---------- Perks grid (checklist) ---------- */

.perks-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 48px;
}

.perk-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px 0;
	border-bottom: 1px solid var(--line);
}

.perk-check {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--ink);
	color: var(--white);
	font-size: 0.7rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}

.perk-item p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.5;
	color: var(--ink);
}

/* ---------- Pricing ---------- */

.pricing {
	background: var(--ink);
	color: var(--white);
}

.pricing .section { padding-top: 100px; padding-bottom: 100px; }

.pricing-cards {
	display: flex;
	gap: 1px;
	background: rgba(255, 255, 255, 0.15);
}

.pricing-card {
	flex: 1;
	background: var(--ink);
	padding: 48px 40px;
	text-align: center;
}

.pricing-card .price {
	font-size: clamp(2.6rem, 5vw, 3.6rem);
	font-weight: 700;
	letter-spacing: -0.02em;
}

.pricing-card .price span {
	font-size: 1rem;
	font-weight: 500;
	opacity: 0.7;
}

.pricing-card .price-label {
	display: block;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	opacity: 0.75;
	margin-bottom: 18px;
}

.pricing-card p.price-note {
	font-size: 0.9rem;
	opacity: 0.75;
	margin: 20px 0 0;
	line-height: 1.5;
}

.pricing-card .btn { margin-top: 28px; }

/* Membership pricing bands specifically (Lanes/Core "#pricing") — shorter
   and set in bigger type than the generic dark CTA band reused elsewhere
   (e.g. About's Strava/WhatsApp callout, which stays at the base sizing). */
#pricing .section { padding-top: 36px; padding-bottom: 36px; }

#pricing .section h2 { font-size: clamp(2rem, 4vw, 3.2rem); }

#pricing .section > p { font-size: 1.15rem; }

#pricing .pricing-card { padding: 40px 40px 36px; }

#pricing .price-label { font-size: 0.9rem; }

#pricing .pricing-card .price { font-size: clamp(2.8rem, 5.2vw, 4rem); }

#pricing .price-note { font-size: 1rem; opacity: 0.9; }

/* ---------- FAQ accordion ---------- */

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

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

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 24px 4px;
	background: none;
	border: none;
	text-align: left;
	font-family: inherit;
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--ink);
	cursor: pointer;
}

.faq-icon {
	flex-shrink: 0;
	font-size: 1.3rem;
	font-weight: 400;
	transition: transform 0.25s ease;
}

.faq-item.is-open .faq-icon { transform: rotate(45deg); }

.faq-answer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s ease;
}

.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }

.faq-answer-inner { overflow: hidden; }

.faq-answer p {
	margin: 0;
	padding: 0 4px 24px;
	font-size: 0.98rem;
	line-height: 1.65;
	color: var(--ink-soft);
	max-width: 640px;
}

.faq-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 48px;
}

/* ---------- Contact form ---------- */

.contact-form { margin-top: 8px; }

.form-row { display: flex; gap: 24px; }

.form-field { flex: 1; margin-bottom: 28px; }

.form-field label {
	display: block;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--ink-soft);
	margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
	width: 100%;
	border: none;
	border-bottom: 1px solid var(--line);
	background: none;
	padding: 10px 0;
	font-family: inherit;
	font-size: 1rem;
	color: var(--ink);
}

.form-field input:focus,
.form-field textarea:focus { outline: none; border-bottom-color: var(--ink); }

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

.contact-form .btn { margin-top: 8px; }

.contact-alt {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--line);
	font-size: 0.95rem;
	color: var(--ink-soft);
}

.contact-alt a { color: var(--ink); }

.contact-social {
	display: flex;
	gap: 20px;
	margin-top: 16px;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.contact-social a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--ink); padding-bottom: 2px; }

/* ---------- Footer ---------- */

.site-footer {
	padding: 32px 48px;
	border-top: 1px solid var(--line);
}

.footer-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--ink-soft);
}

.footer-links { display: flex; gap: 24px; }

.footer-links a { color: var(--ink); text-decoration: none; }

.footer-admin-link { color: inherit; text-decoration: none; }

.footer-credit {
	margin-top: 16px;
	font-size: 0.75rem;
	color: var(--ink-soft);
}

.footer-credit a { color: var(--ink-soft); }

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
	:root { --header-h: 64px; }
	.site-header { padding: 0 20px; }
	.hero-logo { top: 16px; right: 20px; width: clamp(200px, 58vw, 360px); }
	.nav-overlay { width: 82vw; padding: 0 28px; }
	.shop-split { flex-direction: column; }
	.shop-panel { width: 100%; height: 70vh; }
	.hero-title { padding: 36px 24px; }
	.product-popup-card { flex-direction: column; width: 92vw; max-height: 90vh; overflow-y: auto; }
	.product-popup-image { width: 100%; height: 220px; }

	.hero-overlay { padding: 40px 24px 56px; }
	.section { padding: 64px 24px; }
	.section-flush { padding: 40px 33px 16px; }
	.split-block { flex-direction: column; min-height: 0; }
	.split-block.reverse { flex-direction: column; }
	.split-media { width: 100%; height: 55vh; }
	.split-text { width: 100%; padding: 48px 24px; }
	.split-text h2, .split-text p { max-width: none; }
	.card-grid { grid-template-columns: 1fr 1fr; }
	.card-grid.cols-3 { grid-template-columns: 1fr; }
	.perks-grid { grid-template-columns: 1fr; }
	.pricing-cards { flex-direction: column; }
	.faq-columns { grid-template-columns: 1fr; }
	.form-row { flex-direction: column; gap: 0; }
	.footer-top { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ---------- Generic page content (block editor output, e.g. temporary event pages) ---------- */

.page-content { max-width: 760px; }

.page-content p {
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--ink-soft);
	margin: 0 0 20px;
}

.page-content h2, .page-content h3, .page-content h4 {
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: var(--ink);
	margin: 40px 0 18px;
}

.page-content h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.page-content h3 { font-size: 1.3rem; }

.page-content ul, .page-content ol {
	color: var(--ink-soft);
	font-size: 1.05rem;
	line-height: 1.7;
	padding-left: 24px;
	margin: 0 0 20px;
}

.page-content a { color: var(--ink); }

.page-content img { max-width: 100%; height: auto; margin: 24px 0; }

.page-content blockquote {
	margin: 32px 0;
	padding-left: 24px;
	border-left: 2px solid var(--ink);
	font-style: italic;
	color: var(--ink);
}

/* ---------- Shop grid ---------- */

.shop-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
}

.shop-card {
	background: var(--bg);
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	padding: 56px;
	display: flex;
	flex-direction: column;
}

.shop-card-image {
	position: relative;
	aspect-ratio: 1;
	margin-bottom: 24px;
}

.shop-slides {
	position: relative;
	width: 100%;
	height: 100%;
}

.shop-slides img {
	position: absolute;
	inset: 0;
	margin: auto;
	max-width: 78%;
	max-height: 100%;
	object-fit: contain;
	opacity: 0;
	transition: opacity 0.6s ease;
}

.shop-slides img.is-active { opacity: 1; }

.shop-slideshow-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-bottom: 24px;
}

.shop-slideshow-dots button {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--line);
	border: none;
	padding: 0;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.shop-slideshow-dots button.is-active {
	background: var(--ink);
	transform: scale(1.4);
}

.shop-card h3 {
	font-size: 1.15rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin: 0 0 8px;
}

.shop-card .shop-price {
	font-size: 1rem;
	color: var(--ink-soft);
	margin: 0 0 16px;
}

.shop-card .shop-desc {
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--ink-soft);
	margin: 0 0 28px;
}

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

@media (max-width: 768px) {
	.shop-grid { grid-template-columns: 1fr; }
	.shop-card { padding: 40px 24px; }
}
