/*
Theme Name: igsl-theme
Theme URI: https://example.com/
Author: miloud
Description: IGSL theme integration for the Site Inhalt content plugin.
Version: 1.0.11
Text Domain: igsl-theme
*/

:root {
	--bg: #fbfcfa;
	--bg-alt: #f3f6f3;
	--bg-card: #ffffff;
	--ink: #26333f;
	--ink-soft: #5e6a73;
	--ink-faint: #8c959b;
	--line: #d9dedc;
	--line-soft: #e9ecea;
	--accent: #2f638e;
	--accent-hover: #244f75;
	--accent-soft: #e7f0f7;
	--radius: 4px;
	--radius-lg: 10px;
	--shadow: 0 1px 2px rgba(38, 51, 63, 0.04), 0 4px 16px rgba(38, 51, 63, 0.05);
	--shadow-lg: 0 20px 60px rgba(38, 51, 63, 0.12);
	--maxw: 1280px;
	--ff-display: "Source Serif 4", Georgia, serif;
	--ff-body: "Inter Tight", "Inter", system-ui, sans-serif;
	--ff-mono: "JetBrains Mono", ui-monospace, monospace;
}

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

html,
body {
	margin: 0;
	padding: 0;
}

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

h1,
h2,
h3,
h4 {
	font-family: var(--ff-display);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.1;
	color: var(--ink);
	margin: 0;
	text-wrap: balance;
}

h1 { font-size: clamp(2.2rem, 4.2vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 2.8vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.container {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 32px;
}

.eyebrow {
	font-family: var(--ff-mono);
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--accent);
	font-weight: 500;
}

section { padding: 96px 0; }
.compact-section { padding: 64px 0; }
.section-alt { background: var(--bg); }
.section-block {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 96px 32px;
}

.section-block > h1 {
	margin-bottom: 32px;
}

.nav {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(251, 252, 250, 0.92);
	backdrop-filter: saturate(1.4) blur(10px);
	border-bottom: 1px solid var(--line);
	width: 100%;
}

.nav-inner {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 16px 32px;
	display: flex;
	align-items: center;
	gap: 40px;
	min-height: 69px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

img.brand-logo {
	height: 44px;
	width: auto;
	object-fit: contain;
	flex-shrink: 0;
}

.brand-mark {
	width: 36px;
	height: 36px;
	display: grid;
	place-items: center;
	background: var(--accent);
	color: var(--bg);
	border-radius: 50%;
	font-family: var(--ff-display);
	font-size: 16px;
	font-weight: 500;
}

.brand-name,
.brand-tag {
	display: block;
}

.brand-name {
	font-family: var(--ff-display);
	font-size: 1.15rem;
	letter-spacing: 0.01em;
}

.brand-tag {
	font-family: var(--ff-mono);
	font-size: 0.65rem;
	color: var(--ink-faint);
	text-transform: uppercase;
	letter-spacing: 0.16em;
	margin-top: 2px;
}

.nav-links {
	display: flex;
	gap: 4px;
	flex: 1;
	justify-content: flex-end;
	align-items: center;
	min-width: 0;
	overflow: visible;
}

.nav-item { position: relative; }

.nav-item::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: 12px;
}

.nav-link {
	padding: 8px 14px;
	border-radius: var(--radius);
	font-size: 0.92rem;
	color: var(--ink-soft);
	cursor: pointer;
	transition: background 0.15s, color 0.15s;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	border: 0;
	background: transparent;
	font-family: inherit;
}

.nav-link:hover,
.nav-item:hover > .nav-link {
	color: var(--ink);
	background: var(--bg-alt);
}

.nav-item--active > .nav-link {
	color: var(--ink);
	font-weight: 600;
}

.nav-caret {
	font-size: 0.65em;
	opacity: 0.55;
	transition: transform 0.15s;
}

.nav-item:hover .nav-caret { transform: rotate(180deg); opacity: 0.9; }

.nav-dropdown {
	position: absolute;
	top: calc(100% + 2px);
	left: 50%;
	transform: translateX(-50%);
	min-width: 280px;
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	padding: 16px;
	z-index: 1001;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.16s ease, transform 0.16s ease;
}

.nav-item:hover > .nav-dropdown,
.nav-item:focus-within > .nav-dropdown {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}

.nav-dropdown::before {
	content: "";
	position: absolute;
	top: -5px;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	width: 10px;
	height: 10px;
	background: var(--bg-card);
	border-left: 1px solid var(--line);
	border-top: 1px solid var(--line);
}

.nav-dropdown-head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 4px 8px 12px;
	margin-bottom: 8px;
	border-bottom: 1px solid var(--line-soft);
	gap: 20px;
}

.nav-dropdown-all {
	font-size: 0.78rem;
	color: var(--accent);
	font-weight: 500;
}

.nav-dropdown ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.nav-dropdown li a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 9px 10px;
	font-size: 0.9rem;
	color: var(--ink);
	border-radius: var(--radius);
	transition: background 0.12s, color 0.12s;
}

.nav-dropdown li a:hover {
	background: var(--accent-soft);
	color: var(--accent);
}

.nav-dropdown-wide {
	min-width: 360px;
	left: auto;
	right: 0;
	transform: none;
}

.nav-more:hover > .nav-dropdown-wide,
.nav-more:focus-within > .nav-dropdown-wide {
	transform: translateY(0);
}

.nav-dropdown-wide::before {
	left: auto;
	right: 30px;
}

.nav-overflow-row {
	position: relative;
}

.nav-overflow-row > ul {
	display: none;
	position: absolute;
	top: 0;
	left: calc(100% + 10px);
	width: 260px;
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	padding: 12px;
}

.nav-overflow-row:hover > ul,
.nav-overflow-row:focus-within > ul {
	display: flex;
}

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

.nav-search {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 6px;
	min-width: 38px;
}

.nav-search input {
	width: 0;
	min-width: 0;
	height: 38px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: var(--bg-card);
	color: var(--ink);
	font: inherit;
	font-size: 0.9rem;
	padding: 0;
	opacity: 0;
	transition: width 0.18s ease, opacity 0.18s ease, padding 0.18s ease, border-color 0.18s ease;
}

.nav-search:focus-within input,
.nav-search:hover input,
.nav-search input:not(:placeholder-shown) {
	width: min(220px, 24vw);
	border-color: var(--line);
	padding: 0 12px;
	opacity: 1;
}

.nav-search button {
	width: 38px;
	height: 38px;
	flex: 0 0 38px;
	border-radius: 50%;
	border: 1px solid var(--line);
	background: transparent;
	display: grid;
	place-items: center;
	cursor: pointer;
}

.nav-search button span {
	width: 15px;
	height: 15px;
	border: 2px solid var(--ink-soft);
	border-radius: 50%;
	position: relative;
}

.nav-search button span::after {
	content: "";
	position: absolute;
	width: 7px;
	height: 2px;
	background: var(--ink-soft);
	right: -6px;
	bottom: -3px;
	transform: rotate(45deg);
}

.nav-cart {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--ink);
	padding: 6px;
	margin-left: 4px;
	transition: color 0.15s;
	order: 5;
}

.nav-cart:hover { color: var(--accent); }

.nav-cart-count {
	position: absolute;
	top: -2px;
	right: -6px;
	background: var(--accent);
	color: #fff;
	font-size: 0.65rem;
	font-weight: 600;
	min-width: 18px;
	height: 18px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	font-family: var(--ff-body);
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	z-index: 10;
}

.nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--ink);
	border-radius: 2px;
	transition: transform 0.3s, opacity 0.3s;
}

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

.search-result-list {
	display: grid;
	gap: 18px;
	margin-top: 28px;
}

.search-result {
	display: block;
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 22px 24px;
	box-shadow: var(--shadow);
	transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}

.search-result:hover {
	border-color: var(--accent);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.search-result h2 {
	font-size: 1.35rem;
	margin-bottom: 8px;
}

.search-result p {
	color: var(--ink-soft);
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 24px;
	border-radius: 999px;
	font-size: 0.95rem;
	font-weight: 500;
	cursor: pointer;
	border: 0;
	font-family: inherit;
	transition: all 0.15s;
}

.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--bg-alt); border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
.btn-arrow::after { content: "→"; font-size: 1.1em; }

.hero {
	position: relative;
	min-height: 72vh;
	display: grid;
	align-items: end;
	padding: 80px 0 64px;
	overflow: hidden;
	isolation: isolate;
}

.hero-bg {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.hero-bg img,
.hero-bg .photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(25, 44, 58, 0.18) 0%, rgba(20, 38, 52, 0.72) 72%, rgba(14, 28, 40, 0.9) 100%);
}

.hero-content {
	position: relative;
	z-index: 1;
	color: #fff;
	max-width: 780px;
}

.hero h1 {
	color: #fff;
	font-size: clamp(2.6rem, 5.5vw, 4.8rem);
	line-height: 1.02;
}

.hero-kicker {
	font-family: var(--ff-mono);
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: rgba(255,255,255,0.82);
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.hero-kicker::before {
	content: "";
	width: 32px;
	height: 1px;
	background: rgba(255,255,255,0.6);
}

.hero-sub {
	font-size: 1.15rem;
	max-width: 560px;
	color: rgba(255,255,255,0.88);
	margin-top: 20px;
	line-height: 1.5;
}

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

.hero-actions .btn-ghost {
	color: #fff;
	border-color: rgba(255,255,255,0.4);
	background: rgba(255,255,255,0.06);
}

.hero-stats {
	margin-top: 32px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	max-width: 680px;
}

.hero-stat {
	border-top: 1px solid rgba(255,255,255,0.34);
	padding-top: 14px;
	color: rgba(255,255,255,0.82);
}

.hero-stat strong {
	display: block;
	font-family: var(--ff-display);
	font-size: clamp(1.55rem, 2.6vw, 2.25rem);
	line-height: 1;
	color: #fff;
	font-weight: 400;
}

.hero-stat span {
	display: block;
	margin-top: 6px;
	font-size: 0.86rem;
	color: rgba(255,255,255,0.82);
}

.hero-split {
	height: 64vh;
	min-height: 560px;
	max-height: 760px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	padding: 0;
}

.hero-split .hero-bg {
	position: relative;
	height: 100%;
	min-height: 0;
}

.hero-split .hero-bg::after {
	background: linear-gradient(180deg, rgba(25, 44, 58, 0.25) 0%, rgba(20, 38, 52, 0.55) 100%);
}

.hero-split .container {
	width: 100%;
	padding: 0;
	height: 100%;
	min-height: 0;
}

.hero-split .hero-content {
	color: var(--ink);
	padding: 64px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	min-height: 0;
	overflow: hidden;
}

.hero-split .hero-content h1 { color: var(--ink); }
.hero-split .hero-kicker { color: var(--accent); }
.hero-split .hero-kicker::before { background: var(--accent); }
.hero-split .hero-sub { color: var(--ink-soft); }
.hero-split .hero-actions .btn-ghost { color: var(--ink); border-color: var(--line); background: transparent; }
.hero-split .hero-stat {
	border-top-color: var(--line);
	color: var(--ink-soft);
}
.hero-split .hero-stat strong { color: var(--accent); }
.hero-split .hero-stat span { color: var(--ink-soft); }

.home-events-banner-section {
	padding: 48px max(32px, calc((100vw - var(--maxw)) / 2));
	position: relative;
	z-index: 2;
	width: 100%;
}

.home-events-banner {
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: space-between;
	gap: 32px;
	align-items: center;
	width: 100%;
	min-height: 0;
	padding: 40px 48px;
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 18px;
	background:
		linear-gradient(135deg, #1565c0 0%, #0d47a1 55%, #0a3d8f 100%);
	box-shadow:
		0 4px 24px rgba(10, 50, 120, 0.18),
		inset 0 1px 0 rgba(255,255,255,0.08);
	color: #fff;
}

.home-events-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 0% 50%, rgba(255,255,255,0.10), transparent 50%),
		radial-gradient(ellipse at 100% 0%, rgba(100, 180, 255, 0.12), transparent 45%);
	pointer-events: none;
}

.home-events-banner__text,
.home-events-banner__button { position: relative; z-index: 1; }

.home-events-banner__text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
	max-width: 52ch;
	color: rgba(255,255,255,0.9);
	line-height: 1.4;
}

.home-events-banner__text strong {
	color: #fff;
	font-family: var(--ff-display);
	font-size: clamp(1.35rem, 2.4vw, 1.65rem);
	font-weight: 700;
	line-height: 1.15;
}

.home-events-banner__text span {
	color: rgba(255,255,255,0.78);
	font-size: clamp(0.92rem, 1.1vw, 1.02rem);
}

.home-events-banner__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 11px 28px;
	border-radius: 999px;
	background: #fff;
	color: #0b4f9f;
	font-size: 0.9rem;
	font-weight: 700;
	white-space: nowrap;
	box-shadow: 0 2px 12px rgba(6, 41, 91, 0.16);
	transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
	flex-shrink: 0;
}

.home-events-banner__button:hover {
	color: #07396f;
	background: #f0f4fa;
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(6, 41, 91, 0.22);
}

.section-head {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 48px;
	margin-bottom: 56px;
	align-items: end;
}

.section-head .meta {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.section-head h2 { max-width: 20ch; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; max-width: 56ch; }

.section-head-stacked {
	display: block;
	max-width: 1180px;
	margin-bottom: 0;
}

.section-head-stacked h2 {
	max-width: 46ch;
	margin-top: 10px;
}

.section-head-stacked .section-lede {
	margin-top: 22px;
	max-width: 98ch;
}

.section-head-stacked + .features {
	margin-top: 56px;
}

.features,
.shop-grid,
.entity-grid,
.products,
.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.feature,
.product,
.products .product,
.woocommerce ul.products li.product {
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none;
}

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

.product-card-link {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	color: inherit;
}

.feature:hover,
.product:hover,
.products .product:hover,
.woocommerce ul.products li.product:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-lg);
	border-color: var(--accent);
}

.feature-image,
.product-img {
	aspect-ratio: 4 / 3;
	position: relative;
	overflow: hidden;
	background: var(--bg-alt);
}

.product-img,
.products .product img,
.woocommerce ul.products li.product img {
	aspect-ratio: 1;
	object-fit: cover;
	width: 100%;
	height: 100%;
	margin: 0;
	display: block;
}

.feature-image img,
.feature-image .photo,
.product-img .photo,
.pdp-main-img img,
.pdp-main-img .photo,
.pdp-thumb img,
.pdp-thumb .photo,
.map-panel .photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.feature-body,
.product-body {
	padding: 24px 24px 28px;
	gap: 10px;
	min-width: 0;
}

.feature-body {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.feature-body .eyebrow,
.product-body .eyebrow { color: var(--ink-faint); }
.feature-body h3 { font-size: 1.35rem; line-height: 1.2; }
.feature-body p,
.product-body p { color: var(--ink-soft); font-size: 0.95rem; }

.feature-more {
	margin-top: auto;
	padding-top: 16px;
	font-size: 0.88rem;
	color: var(--accent);
	font-weight: 500;
}

.feature-more::after { content: " →"; }

.photo {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(ellipse at 28% 22%, #b8d27d 0%, transparent 55%),
		radial-gradient(ellipse at 68% 62%, #3d7f66 0%, transparent 60%),
		linear-gradient(145deg, #214f44 0%, #2f638e 100%);
}

.photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(115deg, transparent 0 38%, rgba(255,255,255,0.12) 38% 39%, transparent 39% 100%);
	opacity: 0.55;
}

.photo-tone-1 { background: radial-gradient(ellipse at 40% 30%, #69a8b9, transparent 58%), linear-gradient(145deg, #173b5c, #2f638e); }
.photo-tone-2 { background: radial-gradient(ellipse at 24% 42%, #d9c88e, transparent 60%), linear-gradient(145deg, #4a537d, #6f89ae); }
.photo-tone-3 { background: radial-gradient(ellipse at 66% 38%, #c99b55, transparent 58%), linear-gradient(145deg, #4f3428, #8a633d); }
.photo-tone-4 { background: radial-gradient(ellipse at 55% 34%, #d89b62, transparent 60%), linear-gradient(145deg, #542f2a, #9b5a31); }
.photo-tone-5 { background: radial-gradient(ellipse at 38% 28%, #b8d27d, transparent 58%), linear-gradient(145deg, #2f664f, #6a9b54); }
.photo-tone-6 { background: radial-gradient(ellipse at 70% 34%, #5795a4, transparent 60%), linear-gradient(145deg, #18385f, #2e5f72); }
.photo-tone-7 { background: radial-gradient(ellipse at 32% 24%, #b5c6c7, transparent 55%), linear-gradient(145deg, #515d66, #7d8c91); }

.ph-label {
	position: absolute;
	bottom: 10px;
	left: 10px;
	z-index: 2;
	font-family: var(--ff-mono);
	font-size: 0.62rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: rgba(255,255,255,0.82);
	background: rgba(0,0,0,0.35);
	padding: 4px 8px;
	border-radius: 2px;
	backdrop-filter: blur(3px);
}

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

.stat {
	padding: 40px 28px;
	border-right: 1px solid var(--line);
}

.stat:last-child { border-right: 0; }
.stat-num { font-family: var(--ff-display); font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1; color: var(--accent); }
.stat-label { margin-top: 10px; color: var(--ink-soft); font-size: 0.95rem; }

.cta-band {
	background: var(--accent);
	color: #fff;
	padding: 80px 0;
}

.cta-band h2 { color: #fff; max-width: 22ch; }
.cta-band p { color: rgba(255,255,255,0.85); margin-top: 16px; max-width: 52ch; font-size: 1.05rem; }
.cta-band .btn-primary { background: #fff; color: var(--accent); margin-top: 32px; }
.cta-band-inner { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: end; }

.footer {
	background: var(--bg);
	border-top: 1px solid var(--line);
	padding: 80px 0 32px;
	margin-top: 40px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 56px;
}

.footer h4 {
	font-family: var(--ff-body);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--ink-faint);
	font-weight: 500;
	margin: 0 0 16px;
}

.footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer li,
.footer-brand p {
	color: var(--ink-soft);
	font-size: 0.92rem;
}

.footer li:hover { color: var(--accent); }
.footer-brand p { margin-top: 16px; max-width: 36ch; }
.footer-socials { display: flex; gap: 14px; margin-top: 18px; }
.footer-socials a { color: var(--ink-soft); transition: color .2s; }
.footer-socials a:hover { color: var(--accent); }
.footer-socials svg { display: block; }
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 24px;
	border-top: 1px solid var(--line);
	font-size: 0.82rem;
	color: var(--ink-faint);
	font-family: var(--ff-mono);
}

.product-body {
	padding: 20px 22px 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.product-tag {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--bg-card);
	color: var(--ink);
	padding: 4px 10px;
	font-family: var(--ff-mono);
	font-size: 0.65rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	border-radius: 999px;
	border: 1px solid var(--line);
	z-index: 3;
}

.product-tag.new { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.product-body h3,
.woocommerce-loop-product__title { font-size: 1.1rem; font-family: var(--ff-body); font-weight: 500; margin: 0; }
.product-foot { margin-top: auto; padding-top: 16px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.product-price,
.price { font-family: var(--ff-display); font-size: 1.25rem; color: var(--ink); }
.product-btn,
.button,
.added_to_cart {
	padding: 8px 14px;
	background: var(--bg-alt);
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: 0.82rem;
	color: var(--ink);
	font-family: inherit;
	cursor: pointer;
	transition: all 0.15s;
}

.product-btn:hover,
.button:hover,
.added_to_cart:hover {
	background: var(--accent);
	color: var(--bg);
	border-color: var(--accent);
}

.woocommerce-result-count,
.woocommerce-ordering {
	margin-bottom: 0;
	color: var(--ink-soft);
	font-size: 0.85rem;
}

.shop-page .woocommerce-result-count {
	order: 1;
}

.shop-page .woocommerce-ordering {
	order: 2;
	margin-left: auto;
}

.shop-page .woocommerce::before,
.shop-page .woocommerce::after {
	display: none;
}

.shop-page .shop-panel > p.woocommerce-result-count,
.shop-page .shop-panel > form.woocommerce-ordering {
	display: inline-block;
}

.shop-page .shop-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 24px;
}

.woocommerce-ordering select,
.donate-form select {
	padding: 10px 14px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--bg);
	color: var(--ink);
	font-family: inherit;
}

.shop-page {
	padding-top: 120px;
	padding-bottom: 80px;
}

.shop-page-header {
	margin-bottom: 48px;
	border-bottom: 1px solid var(--line);
	padding-bottom: 32px;
}

.shop-page-header h1 {
	font-family: var(--ff-display);
	font-size: clamp(2rem, 4vw, 3rem);
	margin: 0 0 12px;
}

.shop-page-header p {
	color: var(--ink-soft);
	font-size: 1.05rem;
	max-width: 600px;
	margin: 0;
	line-height: 1.6;
}

.shop-categories {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.shop-cat-chip {
	padding: 8px 16px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: transparent;
	font-family: inherit;
	font-size: 0.88rem;
	color: var(--ink-soft);
	cursor: pointer;
	transition: all 0.15s;
}

.shop-cat-chip.active,
.shop-cat-chip:hover {
	background: var(--accent);
	color: var(--bg);
	border-color: var(--accent);
}

.pdp {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
	gap: clamp(36px, 5vw, 72px);
	padding-top: 0;
	align-items: start;
}

.container > .pdp.product,
.woocommerce .container > div.product.pdp,
.woocommerce div.pdp.product.type-product,
div.pdp.product.type-product {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
	align-items: start;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
	transition: none;
}

.container > .pdp.product:hover,
.woocommerce .container > div.product.pdp:hover,
.woocommerce div.pdp.product.type-product:hover,
div.pdp.product.type-product:hover {
	transform: none;
	box-shadow: none;
	border-color: transparent;
}

.pdp-gallery {
	display: flex;
	flex-direction: column;
	gap: 14px;
	position: static;
	align-self: start;
}

.pdp-main-img {
	aspect-ratio: 1;
	border-radius: var(--radius-lg);
	overflow: hidden;
	position: relative;
	background: var(--bg-alt);
	border: 1px solid var(--line);
}

.pdp-thumbs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.pdp-thumb {
	aspect-ratio: 1;
	border-radius: 6px;
	overflow: hidden;
	position: relative;
	border: 1px solid var(--line);
	background: var(--bg-alt);
	transition: border-color 0.15s, transform 0.15s;
}

.pdp-thumb.active,
.pdp-thumb:hover {
	border-color: var(--accent);
	transform: translateY(-2px);
}

.pdp-info {
	display: flex;
	flex-direction: column;
	gap: 24px;
	position: static;
	align-self: start;
	max-height: none;
	overflow: visible;
}

.pdp-info-card {
	align-self: stretch;
	background: transparent;
	border: 0;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
}

.pdp-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 8px;
}

.pdp-stock {
	border: 1px solid rgba(61,127,102,0.28);
	background: rgba(61,127,102,0.08);
	color: var(--accent);
	border-radius: 999px;
	padding: 5px 10px;
	font-size: 0.72rem;
	font-family: var(--ff-mono);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	white-space: nowrap;
}

.pdp-info h1 {
	font-size: clamp(2rem, 3.2vw, 3rem);
	line-height: 1.03;
	margin-top: 0;
	max-width: 12ch;
}

.pdp-price {
	font-family: var(--ff-display);
	font-size: clamp(2.1rem, 3.4vw, 3rem);
	line-height: 1;
	color: var(--accent);
	margin: 26px 0 10px;
}

.pdp-price small {
	display: inline;
	font-size: 0.84rem;
	color: var(--ink-faint);
	font-family: var(--ff-body);
	margin-left: 10px;
}

.pdp-lead {
	color: var(--ink-soft);
	font-size: 1.05rem;
	line-height: 1.65;
	margin: 20px 0 30px;
	max-width: 58ch;
}

.pdp-lead p + p { margin-top: 12px; }
.pdp-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.pdp-actions form.cart {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: center;
}

.pdp-actions .quantity {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--bg);
	overflow: hidden;
}

.quantity input {
	width: 56px;
	min-height: 48px;
	padding: 0 8px;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--ink);
	font-family: inherit;
	font-size: 0.95rem;
	text-align: center;
	-moz-appearance: textfield;
}

.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.single_add_to_cart_button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 48px;
	padding: 14px 26px;
	border-radius: var(--radius);
	font-size: 0.95rem;
	font-weight: 500;
	cursor: pointer;
	border: 0;
	font-family: inherit;
	background: var(--accent);
	color: var(--bg);
}

.single_add_to_cart_button:hover {
	background: var(--accent-hover);
}

.pdp-actions .btn,
.pdp-actions .button,
.pdp-actions .added_to_cart {
	min-height: 48px;
	border-radius: var(--radius);
}

.pdp-actions .btn-primary,
.pdp-actions .button,
.pdp-actions .single_add_to_cart_button,
.woocommerce .pdp-actions button.button,
.woocommerce .pdp-actions button.button.alt {
	background: var(--accent);
	background-color: var(--accent);
	border-color: var(--accent);
	color: var(--bg);
	border-radius: var(--radius);
}

.pdp-actions .btn-primary:hover,
.pdp-actions .button:hover,
.pdp-actions .single_add_to_cart_button:hover,
.woocommerce .pdp-actions button.button:hover,
.woocommerce .pdp-actions button.button.alt:hover {
	background: var(--accent-hover);
	background-color: var(--accent-hover);
	border-color: var(--accent-hover);
	color: var(--bg);
}

.pdp-actions .btn-ghost,
.pdp-actions .added_to_cart {
	display: inline-flex;
	align-items: center;
	min-height: 48px;
	padding: 14px 26px;
	font-size: 0.95rem;
	font-weight: 500;
	text-decoration: none;
	background: transparent;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	color: var(--ink);
}

.pdp-actions .btn-ghost:hover,
.pdp-actions .added_to_cart:hover {
	background: var(--bg-alt);
	border-color: var(--accent);
	color: var(--accent);
}

.pdp-meta {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 28px;
	padding: 20px 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	font-size: 0.88rem;
	color: var(--ink-soft);
}

.pdp-meta span {
	display: inline-flex;
	gap: 6px;
	align-items: center;
}

.pdp-meta strong { color: var(--ink); font-weight: 500; }

.pdp-details {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	margin-top: 0;
	border-top: 1px solid var(--line);
}

.pdp-details-title {
	margin-top: 32px;
	font-size: 1.05rem;
	font-family: var(--ff-body);
	font-weight: 500;
}

.pdp-det-row {
	display: grid;
	grid-template-columns: 112px 1fr;
	gap: 12px;
	padding: 14px 0;
	border-bottom: 1px solid var(--line-soft);
	font-size: 0.92rem;
}

.pdp-det-row dt { color: var(--ink-faint); font-family: var(--ff-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; }
.pdp-det-row dd { margin: 0; color: var(--ink); }

.pdp-back {
	padding: 24px 32px 0;
	font-family: var(--ff-mono);
	font-size: 0.78rem;
	color: var(--ink-faint);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.pdp-back a { color: var(--ink-soft); }
.pdp-back a:hover { color: var(--accent); }
.pdp-back-sep { margin: 0 10px; color: var(--line); }

.pdp .entry-content {
	margin: 0;
	padding-top: 4px;
}

.single-panel {
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: clamp(28px, 4vw, 56px);
	box-shadow: var(--shadow);
}

.entry-content {
	margin: 28px 0;
	color: var(--ink-soft);
	font-size: 1.05rem;
}

.entry-content p + p,
.prose p + p { margin-top: 16px; }
.entry-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.contact-box {
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 28px;
	margin-top: 20px;
}

.contact-box h3 {
	font-family: var(--ff-body);
	font-weight: 500;
	font-size: 1rem;
	margin-bottom: 12px;
}

.contact-box p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.65; }

.contact-page-main { padding-top: 80px; }
.sc-member-alert { margin: 0 0 18px; padding: 14px 16px; border-radius: 6px; }
.sc-member-alert--success { background: #e8f5ec; color: #135f2d; }
.sc-member-alert--error { background: #fbeaea; color: #8a1f1f; }
.sc-member-hp { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }

.donate-form {
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 40px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.donate-form label {
	font-size: 0.82rem;
	color: var(--ink-soft);
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.donate-form input,
.donate-form textarea {
	font-family: inherit;
	font-size: 1rem;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--bg);
	color: var(--ink);
}

.donate-form input:focus,
.donate-form textarea:focus {
	outline: 2px solid var(--accent);
	outline-offset: -1px;
}

.map-panel {
	background: var(--bg-alt);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 16 / 7;
	position: relative;
}

.crumb {
	padding-top: 24px;
	font-family: var(--ff-mono);
	font-size: 0.78rem;
	color: var(--ink-faint);
	letter-spacing: 0.08em;
}

.crumb span + span::before {
	content: "/";
	margin: 0 8px;
	color: var(--line);
}

.crumb .active { color: var(--ink); }

.entity-card {
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 24px;
	box-shadow: var(--shadow);
}

.entity-card__content h2 { font-size: 1.35rem; margin-bottom: 16px; }
.entity-meta-list { display: grid; grid-template-columns: minmax(120px, auto) 1fr; gap: 0.5rem 1rem; margin: 0; }
.entity-meta-list dt { color: var(--ink-faint); font-family: var(--ff-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; }
.entity-meta-list dd { margin: 0; color: var(--ink-soft); }
.entity-meta-list a { color: var(--accent); }

.vorstand-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
	margin-top: 48px;
}

.vorstand-card {
	background: var(--bg-card);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.vorstand-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--accent);
}

.vorstand-card__image {
	aspect-ratio: 1;
	position: relative;
	overflow: hidden;
	background: var(--bg-alt);
}

.vorstand-card__image img,
.vorstand-card__image .photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.vorstand-card:hover .vorstand-card__image img,
.vorstand-card:hover .vorstand-card__image .photo {
	transform: scale(1.04);
}

.vorstand-card__image > .ph-label {
	left: 12px;
	right: auto;
	bottom: 12px;
	width: auto;
	max-width: calc(100% - 24px);
	line-height: 1.2;
	font-size: 0.72rem;
	backdrop-filter: blur(6px);
}

.vorstand-card__body {
	padding: 20px 22px 24px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-height: 0;
}

.vorstand-card__body .eyebrow {
	font-size: 0.7rem;
	letter-spacing: 0.12em;
	color: var(--ink-faint);
}

.vorstand-card__body h2 {
	font-size: 1.25rem;
	line-height: 1.25;
	margin-bottom: 2px;
	font-family: var(--ff-body);
	font-weight: 600;
}

.vorstand-card__contact {
	margin-top: 4px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 0.82rem;
	line-height: 1.4;
	color: var(--ink-soft);
	padding-top: 10px;
	border-top: 1px solid var(--line-soft);
}

.vorstand-card__contact a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: color 0.15s;
}

.vorstand-card__contact a::before {
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	background: var(--ink-faint);
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	transition: background 0.15s;
}

.vorstand-card__contact a[href^="mailto"]::before {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E");
}

.vorstand-card__contact a[href^="tel"]::before {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.vorstand-card__contact a:hover { color: var(--accent); }
.vorstand-card__contact a:hover::before { background: var(--accent); }

.partner-map-panel {
	margin-top: 48px;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--bg-card);
	box-shadow: var(--shadow);
}

.partner-map-panel__head {
	display: flex;
	justify-content: space-between;
	gap: 32px;
	align-items: end;
	padding: 28px;
	border-bottom: 1px solid var(--line);
}

.partner-map-panel__head h2 {
	margin-top: 8px;
	font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.partner-map-panel__head p {
	max-width: 46ch;
	color: var(--ink-soft);
	font-size: 0.95rem;
}

.partner-map-panel iframe {
	display: block;
	width: 100%;
	height: clamp(340px, 46vw, 560px);
	border: 0;
	background: var(--bg-alt);
}

.partner-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin-top: 32px;
}

.partner-card {
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 28px;
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.partner-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-lg);
	border-color: var(--accent);
}

.partner-card h2 {
	font-size: 1.3rem;
	line-height: 1.25;
	margin-bottom: 2px;
}

.partner-address {
	display: block;
	width: 100%;
	text-align: left;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--bg-alt);
	color: var(--ink);
	padding: 14px 16px;
	font-family: inherit;
	cursor: pointer;
	transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.partner-address span {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 6px;
	font-family: var(--ff-mono);
	font-size: 0.65rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--ink-faint);
}

.partner-address span::before {
	content: "\1F4CD";
	font-size: 0.9rem;
}

.partner-address strong {
	font-weight: 400;
	color: var(--ink-soft);
	line-height: 1.45;
	font-size: 0.92rem;
}

.partner-address:hover,
.partner-address.active {
	border-color: var(--accent);
	background: var(--accent-soft);
	box-shadow: 0 0 0 3px rgba(47, 99, 142, 0.08);
}

.partner-card__contact {
	display: flex;
	flex-direction: column;
	gap: 0;
	font-size: 0.9rem;
	color: var(--ink-soft);
}

.partner-card__contact a,
.partner-card__contact span {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 4px;
	border-bottom: 1px solid var(--line-soft);
	cursor: pointer;
	transition: color 0.15s, background 0.15s;
}

.partner-card__contact a:last-child,
.partner-card__contact span:last-child {
	border-bottom: 0;
}

.partner-card__contact a::before,
.partner-card__contact span::before {
	flex-shrink: 0;
	font-size: 0.95rem;
	width: 1.2em;
	text-align: center;
}

.partner-card__contact a[href^="tel:"]::before { content: "\260E"; }
.partner-card__contact a[href^="mailto:"]::before { content: "\2709"; }
.partner-card__contact a[href^="http"]::before { content: "\1F517"; }
.partner-card__contact span::before { content: "\1F4E0"; }

.partner-card__contact a:hover {
	color: var(--accent);
	background: var(--accent-soft);
	border-radius: var(--radius);
}

.regionalgruppe-contact-person {
	display: flex;
	flex-direction: column;
	gap: 4px;
	color: var(--ink-soft);
	font-size: 0.95rem;
	line-height: 1.45;
}

.regionalgruppe-contact-person strong {
	color: var(--ink);
	font-weight: 500;
}

.event-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
	gap: 28px;
	margin-top: 40px;
}

.event-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 150px;
	gap: 24px;
	align-items: start;
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-left: 4px solid var(--accent);
	border-radius: var(--radius-lg);
	padding: 28px 28px 24px;
	box-shadow: var(--shadow);
	transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.event-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-lg);
	border-color: var(--accent);
	border-left-color: var(--accent);
}

.event-card__body {
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-width: 0;
}

.event-card__body .eyebrow {
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--accent);
	font-weight: 600;
}

.event-card h2 {
	font-size: 1.4rem;
	line-height: 1.25;
	margin: 0;
}

.event-date,
.event-address {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 8px;
	color: var(--ink-soft);
	font-size: 0.92rem;
	line-height: 1.5;
}

.event-date span,
.event-address span {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.event-icon {
	font-size: 1.1rem;
	line-height: 1.4;
	flex-shrink: 0;
}

.event-date strong,
.event-address strong {
	color: var(--ink);
	font-weight: 600;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.event-card__qr {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-align: center;
	font-size: 0.8rem;
	color: var(--ink-soft);
	align-self: center;
}

.event-card__qr img {
	display: block;
	width: 140px;
	height: 140px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	padding: 8px;
}

.event-card__qr a {
	color: var(--accent);
	font-weight: 500;
	text-decoration: none;
}

.event-card__qr a:hover { text-decoration: underline; }

.page-enter {
	min-height: 100vh;
}

.page-enter main {
	animation: pageIn 0.35s ease;
}

@keyframes pageIn {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
	.nav-inner { gap: 24px; }
	.nav-link { padding-inline: 10px; }
}

@media (max-width: 960px) {
	.nav-inner { gap: 18px; }
	.nav-links {
		justify-content: flex-end;
		overflow-x: auto;
		overflow-y: visible;
		scrollbar-width: thin;
		padding-bottom: 0;
	}
	.nav-dropdown { position: fixed; left: 16px; right: 16px; top: 76px; transform: none; min-width: 0; }
	.nav-item:hover > .nav-dropdown,
	.nav-item:focus-within > .nav-dropdown { transform: none; }
	.nav-dropdown::before { display: none; }
	.nav-overflow-row > ul { position: static; width: auto; box-shadow: none; margin-left: 16px; }
	.hero-split,
	.section-head,
	.two-col,
	.cta-band-inner { grid-template-columns: 1fr; gap: 32px; }
	.home-events-banner {
		align-items: flex-start;
		flex-direction: column;
		gap: 24px;
	}
	.home-events-banner__button {
		justify-self: start;
	}
	.hero-split { height: auto; min-height: 0; max-height: none; }
	.hero-split .hero-bg { height: 320px; min-height: 320px; }
	.hero-split .container { height: auto; min-height: auto; }
	.hero-split .hero-content { padding: 48px 24px; }
	.features,
	.shop-grid,
	.entity-grid,
	.vorstand-grid,
	.event-grid,
	.partner-grid,
	.products,
	.woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
	.pdp { grid-template-columns: 1fr; }
	.shop-page { padding-top: 100px; padding-bottom: 60px; }
	.event-card { grid-template-columns: 1fr; }
	.partner-map-panel__head { display: block; }
	.partner-map-panel__head p { margin-top: 14px; }
	.pdp-gallery { position: static; }
	.pdp-info { position: static; }
	.pdp-info h1 { max-width: 16ch; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.stats { grid-template-columns: 1fr; }
	.hero-stats { grid-template-columns: 1fr; }
	.stat { border-right: 0; border-bottom: 1px solid var(--line); }
	.stat:last-child { border-bottom: 0; }
}

@media (max-width: 640px) {
	.container { padding-inline: 20px; }
	.nav-inner {
		padding-inline: 20px;
		flex-wrap: wrap;
		gap: 0;
	}

	.brand {
		flex: 1;
		min-width: 0;
	}

	img.brand-logo {
		height: 36px;
	}

	.nav-toggle {
		display: flex;
		padding: 8px;
	}

	.nav-cart {
		padding: 8px;
	}

	.nav-links {
		display: none;
		flex-direction: column;
		flex-basis: 100%;
		gap: 0;
		order: 10;
		border-top: 1px solid var(--line);
		padding: 8px 0 16px;
	}

	.nav.open .nav-links { display: flex; }

	.nav-link {
		padding: 12px 0;
		width: 100%;
		font-size: 1rem;
	}

	.nav-item { width: 100%; }
	.nav-item::after { display: none; }

	.nav-dropdown {
		display: none;
		position: static;
		box-shadow: none;
		border: none;
		background: var(--bg-alt);
		border-radius: var(--radius);
		margin: 0 0 8px;
		padding: 8px 16px;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}

	.nav-dropdown::before { display: none; }

	.nav-item:hover > .nav-dropdown,
	.nav-item:focus-within > .nav-dropdown {
		display: none;
	}

	.nav-item.dropdown-open > .nav-dropdown {
		display: block;
	}

	.nav-search {
		width: 100%;
		order: 10;
	}

	.nav-search input {
		width: 100% !important;
		opacity: 1 !important;
	}

	section { padding: 64px 0; }
	.shop-page { padding-top: 80px; }
	.shop-grid,
	.products,
	.woocommerce ul.products { grid-template-columns: 1fr; }
	.hero { min-height: 68vh; padding: 64px 0 48px; }
	.hero h1 { font-size: clamp(2.25rem, 13vw, 3.3rem); }
	.home-events-banner-section { padding: 32px 20px; }
	.home-events-banner { padding: 28px 24px; border-radius: 14px; }
	.home-events-banner__button {
		width: 100%;
		white-space: normal;
		text-align: center;
	}
	.footer-grid,
	.footer-bottom,
	.pdp-details { grid-template-columns: 1fr; }
	.pdp {
		gap: 28px;
		padding-top: 24px;
	}
	.pdp-info-card { padding: 0; }
	.pdp-heading {
		align-items: flex-start;
		flex-direction: column;
	}
	.pdp-info h1 { max-width: none; }
	.pdp-price small { display: block; margin-left: 0; margin-top: 6px; line-height: 1.4; }
	.pdp-actions form.cart { flex-direction: column; align-items: stretch; }
	.pdp-actions .quantity,
	.single_add_to_cart_button {
		width: 100%;
		justify-content: center;
	}
	.pdp-meta { gap: 14px; }
	.pdp-back { padding-inline: 20px; line-height: 1.8; }
	.footer-bottom { display: grid; gap: 12px; }
	.donate-form { padding: 24px; }
	.product-body { padding: 16px; }
	.product-body h3 { font-size: 1rem; overflow-wrap: break-word; }
	.product-body p { font-size: 0.88rem; overflow-wrap: break-word; }
}

/* ─── Article View (single-section_page) ─── */

.article-view { padding: 64px 0 96px; }

.article-view__body {
	max-width: 740px;
	margin: 0 auto;
}

.article-view__body .eyebrow {
	display: block;
	margin-bottom: 12px;
}

.article-view__body h1 {
	font-size: clamp(2rem, 3.8vw, 3.2rem);
	margin-bottom: 36px;
}

.article-view__hero {
	margin: 0 0 40px;
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.article-view__hero img {
	width: 100%;
	height: auto;
	display: block;
}

.article-view__body .entry-content {
	font-size: 1.1rem;
	line-height: 1.75;
	color: var(--ink-soft);
	margin: 0;
}

.article-view__body .entry-content p + p { margin-top: 1.4em; }

.article-view__body .entry-content h2 {
	font-size: 1.5rem;
	margin-top: 2.5em;
	margin-bottom: 0.6em;
	color: var(--ink);
}

.article-view__body .entry-content h3 {
	font-size: 1.2rem;
	margin-top: 2em;
	margin-bottom: 0.5em;
	color: var(--ink);
}

.article-view__body .entry-content img {
	width: 100%;
	height: auto;
	border-radius: var(--radius-lg);
	margin: 2em 0;
}

.article-view__body .entry-content blockquote {
	border-left: 3px solid var(--accent);
	padding-left: 20px;
	margin: 2em 0;
	color: var(--ink);
	font-style: italic;
}

.article-view__back {
	margin-top: 56px;
	padding-top: 32px;
	border-top: 1px solid var(--line-soft);
}

@media (max-width: 768px) {
	.article-view { padding: 40px 0 64px; }
	.article-view__body h1 { margin-bottom: 24px; }
	.article-view__hero {
		margin: 0 -20px 32px;
		border-radius: 0;
	}
	.article-view__body .entry-content { font-size: 1.02rem; }
}
