:root {
	--bg: #fbf6e8;
	--bg-elev: #ffffff;
	--bg-soft: #f1ead4;
	--ink: #2a3328;
	--ink-soft: #4f5849;
	--ink-mute: #87907c;
	--line: #e2d8b8;
	--accent: #6b9356;
	--accent-deep: #3f6638;
	--accent-soft: #d6e3bc;
	--spectrum: linear-gradient(90deg, #8e6bbd 0%, #4a8fd0 18%, #5ab278 36%, #e8c93f 54%, #e89a3a 72%, #d05a4c 100%);
	--font-display: Georgia, "Times New Roman", serif;
	--font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

html,
body {
	max-width: 100%;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

body.npw-site {
	width: 100%;
	min-width: 0;
	font-family: var(--font-body);
	font-size: 18px;
	line-height: 1.65;
	color: var(--ink);
	background:
		radial-gradient(1200px 700px at 85% -120px, color-mix(in oklab, var(--accent-soft) 55%, transparent), transparent 60%),
		radial-gradient(900px 500px at 5% 900px, color-mix(in oklab, var(--accent-soft) 28%, transparent), transparent 60%),
		var(--bg);
	-webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea,
select {
	font: inherit;
}

.display {
	font-family: var(--font-display);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.15;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 18px;
	color: var(--accent);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: color-mix(in oklab, var(--bg) 90%, transparent);
	backdrop-filter: saturate(140%) blur(12px);
	-webkit-backdrop-filter: saturate(140%) blur(12px);
}

.header-inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 18px 28px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 20px;
}

.brand {
	display: flex;
	align-items: center;
}

.brand-logo {
	width: auto;
	height: 70px;
}

.nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2px;
}

.nav ul {
	display: flex;
	gap: 2px;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav li {
	list-style: none;
}

.nav li ul,
.nav .deeper > ul,
.nav .parent > ul {
	display: none;
}

.nav a {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	padding: 7px 12px;
	border-radius: 999px;
	font-family: var(--font-display);
	font-size: 15px;
	color: var(--ink-soft);
	transition: background 160ms, color 160ms;
}

.nav a:hover,
.nav a.active,
.nav .current > a,
.nav .active > a {
	color: #fff;
	background: var(--accent-deep);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.nav-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid color-mix(in oklab, var(--accent-deep) 20%, var(--line));
	border-radius: 999px;
	background: color-mix(in oklab, var(--bg-elev) 86%, transparent);
	color: var(--ink);
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 4px;
	padding: 0;
	cursor: pointer;
}

.nav-toggle span {
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transition: transform 160ms ease, opacity 160ms ease;
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
	opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.header-wa,
.wa-inline,
.wa-float {
	background: #25d366;
	color: #fff;
}

.header-wa {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	transition: transform 160ms ease, background 160ms ease;
}

.header-wa:hover {
	background: #1da851;
	transform: translateY(-1px);
}

.header-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 18px;
	border-radius: 999px;
	border: 1px solid var(--accent-deep);
	background: var(--accent-deep);
	color: var(--bg-elev);
	font-family: var(--font-display);
	font-size: 15px;
	white-space: nowrap;
	transition: background 160ms;
}

.header-cta:hover {
	background: var(--ink);
	color: #fff;
}

.header-cta .dot {
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: var(--accent-soft);
}

.spectrum-band {
	height: 4px;
	width: 100%;
	background: var(--spectrum);
}

.joomla-alert,
.npw-alert {
	max-width: 1180px;
	margin: 0 auto 24px;
	padding: 14px 18px;
	border: 2px solid #9c7d3c;
	border-radius: 8px;
	background: #fff8df;
	color: var(--ink);
	box-shadow: 0 12px 30px rgb(70 61 42 / 0.12);
}

.joomla-alert--success,
.npw-alert--success {
	border-color: var(--green);
	background: #eef8ec;
	color: #263e2b;
}

.joomla-alert--danger,
.joomla-alert--error,
.npw-alert--danger {
	border-color: var(--red);
	background: #fff0ec;
	color: #513229;
}

.npw-alert--warning,
.npw-alert--info {
	border-color: #9c7d3c;
	background: #fff8df;
	color: var(--ink);
}

.npw-alert-title {
	margin-bottom: 4px;
	font: 700 14px/1.25 var(--sans);
	color: inherit;
}

.npw-alert-message {
	font: 500 16px/1.45 var(--sans);
}

.npw-system-messages:empty {
	display: none;
}

section {
	scroll-margin-top: 110px;
}

.section {
	max-width: 1240px;
	margin: 0 auto;
	padding: 96px 32px;
}

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

.section-head .eyebrow {
	margin-bottom: 14px;
}

.section-head h2 {
	margin: 0;
	font-size: clamp(34px, 4vw, 52px);
	color: var(--ink);
}

.section-head .right p {
	max-width: 56ch;
	margin: 0;
	color: var(--ink-soft);
	font-size: 17px;
}

.hero {
	max-width: 1240px;
	margin: 0 auto;
	padding: 84px 32px 64px;
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 64px;
	align-items: center;
}

.hero-copy .eyebrow {
	margin-bottom: 18px;
}

.hero-h1 {
	margin: 0 0 24px;
	font-size: clamp(40px, 5.2vw, 72px);
	color: var(--ink);
}

.hero-h1 em {
	padding-bottom: 2px;
	background-image: var(--spectrum);
	background-repeat: no-repeat;
	background-position: 0 92%;
	background-size: 100% 6px;
	color: var(--accent-deep);
	font-style: italic;
}

.hero-lead {
	max-width: 52ch;
	margin: 0 0 32px;
	color: var(--ink-soft);
	font-size: 18px;
}

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

.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 22px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	transition: transform 160ms, background 160ms, border-color 160ms;
}

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

.btn-primary {
	border-color: var(--accent-deep);
	background: var(--accent-deep);
	color: #fff;
}

.btn-primary:hover {
	border-color: var(--ink);
	background: var(--ink);
	color: #fff;
}

.btn-ghost {
	border-color: var(--line);
	background: transparent;
	color: var(--ink);
}

.btn-ghost:hover {
	border-color: var(--ink-mute);
	background: var(--bg-elev);
}

.arrow {
	display: inline-block;
}

.hero-events {
	display: grid;
	gap: 12px;
	margin-top: 40px;
}

.hero-events-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.hero-events-label {
	margin-bottom: 2px;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 17px;
	color: var(--accent);
}

.hero-events-all {
	font-size: 14px;
	color: var(--accent-deep);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.hero-events-all:hover {
	color: var(--ink);
}

.hero-event-pin {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: 72px 1fr auto;
	gap: 20px;
	align-items: center;
	padding: 16px 22px 16px 26px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: var(--bg-elev);
	box-shadow: 0 8px 22px -18px rgba(40, 50, 35, 0.28);
	color: inherit;
	text-decoration: none;
	transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms;
}

.hero-event-pin::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--spectrum);
}

.hero-event-pin:hover {
	border-color: var(--accent);
	box-shadow: 0 16px 36px -22px rgba(40, 50, 35, 0.35);
	transform: translateY(-2px);
}

.pin-date {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-right: 18px;
	border-right: 1px solid var(--line);
}

.pin-day {
	font-family: var(--font-display);
	font-size: 40px;
	line-height: 0.95;
	color: var(--accent-deep);
}

.pin-month {
	margin-top: 4px;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 14px;
	color: var(--ink-soft);
}

.pin-body {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.pin-title {
	font-family: var(--font-display);
	font-size: 19px;
	line-height: 1.25;
	color: var(--ink);
}

.pin-meta {
	font-size: 14px;
	color: var(--ink-mute);
}

.pin-arrow {
	font-size: 20px;
	color: var(--ink-mute);
}

.hero-visual {
	position: relative;
	aspect-ratio: 5 / 6;
}

.hv-card {
	position: absolute;
	overflow: hidden;
	border-radius: 12px;
	background: var(--bg-soft);
	box-shadow: 0 24px 50px -28px rgba(40, 50, 35, 0.32), 0 4px 10px -4px rgba(40, 50, 35, 0.1);
}

.hv-main {
	inset: 0 8% 0 0;
}

.hero-carousel {
	background: var(--ink);
}

.hero-carousel-track,
.hero-carousel-track img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero-carousel-track img {
	object-fit: cover;
	opacity: 0;
	transform: scale(1.02);
	transition: opacity 520ms ease, transform 900ms ease;
}

.hero-carousel-track img.is-active {
	opacity: 1;
	transform: scale(1);
}

.hero-carousel-btn {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
	color: var(--ink);
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
	transition: background 160ms ease, transform 160ms ease;
}

.hero-carousel-btn:hover,
.hero-carousel-btn:focus-visible {
	background: #fff;
	transform: translateY(-50%) scale(1.04);
}

.hero-carousel-prev {
	left: 18px;
}

.hero-carousel-next {
	right: 18px;
}

.hero-carousel-dots {
	position: absolute;
	left: 22px;
	bottom: 22px;
	z-index: 2;
	display: flex;
	gap: 8px;
}

.hero-carousel-dots button {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.78);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.42);
	cursor: pointer;
}

.hero-carousel-dots button.is-active {
	background: #fff;
}

.hero-carousel-toggle {
	position: absolute;
	right: 22px;
	bottom: 22px;
	z-index: 2;
	display: grid;
	place-items: center;
	min-width: 42px;
	height: 34px;
	padding: 0 12px;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
	color: var(--ink);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
}

.hero-carousel-toggle:hover,
.hero-carousel-toggle:focus-visible {
	background: #fff;
}

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

	.hero-carousel-track img {
		transition: none;
	}
}

.hv-quote {
	right: 0;
	bottom: 14%;
	z-index: 3;
	width: 60%;
	padding: 22px 24px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: var(--bg-elev);
}

.hv-quote .q {
	font-family: var(--font-display);
	font-size: 19px;
	font-style: italic;
	line-height: 1.35;
	color: var(--ink);
}

.hv-quote .a {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 12px;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 14px;
	color: var(--ink-mute);
}

.hv-quote .a::before {
	content: "";
	width: 22px;
	height: 1px;
	background: var(--accent);
}

.hv-quote #srq_quote {
	color: var(--ink);
	font-family: var(--font-display);
	font-size: 19px;
	font-style: italic;
	line-height: 1.35;
	text-align: left;
}

.hv-quote #srq_author {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 12px;
	padding-top: 0 !important;
	color: var(--ink-mute);
	font-family: var(--font-display);
	font-style: italic;
	font-size: 14px;
	text-align: left;
}

.hv-quote #srq_author::before {
	content: "";
	width: 22px;
	height: 1px;
	background: var(--accent);
}

.hv-quote #srq_author b {
	font-weight: 400;
}

.hv-tag {
	position: absolute;
	left: 0;
	top: 6%;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 18px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--bg-elev);
	color: var(--accent-deep);
	font-family: var(--font-display);
	font-style: italic;
	font-size: 14px;
	box-shadow: 0 6px 18px -10px rgba(40, 50, 35, 0.25);
}

.hv-tag .dot {
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: var(--accent);
}

.imgph {
	position: relative;
	display: flex;
	align-items: flex-end;
	width: 100%;
	height: 100%;
	padding: 18px;
	background:
		repeating-linear-gradient(135deg, transparent 0 16px, color-mix(in oklab, var(--accent) 8%, transparent) 16px 17px),
		linear-gradient(160deg, color-mix(in oklab, var(--accent-soft) 90%, white), color-mix(in oklab, var(--accent) 35%, var(--bg-soft)));
}

.imgph::after {
	content: attr(data-label);
	padding: 5px 10px;
	border: 1px solid color-mix(in oklab, var(--accent-deep) 18%, transparent);
	border-radius: 4px;
	background: color-mix(in oklab, var(--bg-elev) 85%, transparent);
	color: var(--accent-deep);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	opacity: 0.85;
}

.events-section {
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: var(--bg-elev);
}

.event-card {
	display: grid;
	grid-template-columns: 180px 1fr auto;
	gap: 40px;
	align-items: start;
	padding: 32px 0;
	border-bottom: 1px solid var(--line);
}

.event-card:last-child {
	border-bottom: 0;
}

.event-date {
	display: flex;
	flex-direction: column;
}

.event-date .day {
	font-family: var(--font-display);
	font-size: 56px;
	line-height: 1;
	color: var(--accent-deep);
}

.event-date .month,
.event-date .year,
.event-meta {
	font-family: var(--font-display);
	font-style: italic;
	color: var(--ink-mute);
}

.event-date .month {
	margin-top: 10px;
	font-size: 16px;
	color: var(--ink-soft);
}

.event-date .year {
	margin-top: 2px;
	font-size: 15px;
}

.event-body h3 {
	margin: 0 0 8px;
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 26px;
	color: var(--ink);
}

.event-body p {
	max-width: 60ch;
	margin: 0;
	color: var(--ink-soft);
}

.event-body p + p,
.event-body p + h4,
.event-body ul + h4 {
	margin-top: 14px;
}

.event-body h4 {
	max-width: 60ch;
	margin: 18px 0 8px;
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 19px;
	line-height: 1.25;
	color: var(--accent-deep);
}

.event-body ul {
	max-width: 64ch;
	margin: 8px 0 0;
	padding-left: 20px;
	color: var(--ink-soft);
}

.event-body li + li {
	margin-top: 6px;
}

.event-body a {
	color: var(--accent-deep);
	text-decoration: underline;
	text-underline-offset: 0.16em;
}

.event-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 14px;
	font-size: 15px;
}

.events-acc .acc-head {
	grid-template-columns: 104px 1fr 36px;
}

.events-acc .event-date {
	align-items: flex-start;
	padding-right: 20px;
	border-right: 1px solid var(--line);
}

.events-acc .event-date .day {
	font-size: 42px;
}

.events-acc .event-date .month {
	margin-top: 6px;
}

.events-acc .acc-desc h4 {
	margin: 22px 0 8px;
	color: var(--accent-soft);
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 20px;
	line-height: 1.25;
}

.events-acc .acc-desc p {
	max-width: 68ch;
}

.events-acc .acc-desc ul {
	max-width: 70ch;
	margin: 10px 0 0;
	padding-left: 20px;
}

.events-acc .acc-desc li + li {
	margin-top: 6px;
}

.events-acc .acc-desc a {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 0.16em;
}

.events-acc .event-meta {
	color: color-mix(in oklab, var(--bg-elev) 76%, var(--accent-soft));
}

.events-acc .event-cta {
	margin-top: 24px;
}

.events-acc .event-cta .btn {
	border-color: #fff;
	color: #fff;
}

.events-acc .event-cta .btn:hover {
	background: #fff;
	color: var(--accent-deep);
}

.npw-from-joomla .npw-article-content {
	color: var(--ink-soft);
}

.npw-from-joomla .npw-article-content h1,
.npw-from-joomla .npw-article-content h2,
.npw-from-joomla .npw-article-content h3 {
	font-family: var(--font-display);
	font-weight: 400;
	line-height: 1.2;
	color: var(--ink);
}

.npw-from-joomla .npw-article-content h1 {
	font-size: clamp(34px, 4vw, 52px);
}

.npw-from-joomla .npw-article-content img {
	max-width: 100%;
	height: auto;
	margin: 14px 14px 14px 0;
	border-radius: 8px;
}

.npw-from-joomla .npw-article-content .pull-right,
.npw-from-joomla .npw-article-content img[style*="float: right"] {
	float: right;
	max-width: min(45%, 320px);
	margin: 0 0 18px 24px;
}

.npw-from-joomla .npw-article-content table {
	width: 100%;
	border-collapse: collapse;
}

.npw-from-joomla .npw-article-content a {
	color: var(--accent-deep);
	text-decoration: underline;
	text-underline-offset: 0.16em;
}

.npw-readmore {
	margin-top: 18px;
}

.about-section {
	background: var(--bg-soft);
}

.about-grid {
	display: grid;
	grid-template-columns: 0.8fr 1fr;
	gap: 64px;
	align-items: start;
}

.about-portrait {
	overflow: hidden;
	aspect-ratio: 4 / 5;
	border-radius: 8px;
}

.about-portrait img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-copy h3 {
	margin: 0 0 16px;
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 28px;
	color: var(--ink);
}

.about-copy p {
	margin: 0 0 16px;
	color: var(--ink-soft);
}

.about-copy p.lead {
	margin-bottom: 24px;
	color: var(--ink);
	font-size: 19px;
}

.angebote-acc {
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

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

.acc-item:last-child {
	border-bottom: 0;
}

.acc-heading {
	margin: 0;
	font: inherit;
}

.acc-head {
	width: 100%;
	display: grid;
	grid-template-columns: 64px 1fr 36px;
	gap: 24px;
	align-items: center;
	padding: 28px;
	border: 0;
	background: transparent;
	text-align: left;
	cursor: pointer;
	transition: background 200ms;
}

.acc-head:hover,
.acc-item.is-open .acc-head {
	background: var(--bg-elev);
}

.acc-num {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 24px;
	line-height: 1;
	color: var(--accent);
}

.acc-titles {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.acc-title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 28px;
	line-height: 1.15;
	color: var(--ink);
}

.acc-tag {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 15px;
	color: var(--ink-mute);
}

.acc-toggle {
	position: relative;
	justify-self: end;
	width: 30px;
	height: 30px;
	border: 1px solid var(--line);
	border-radius: 999px;
	transition: background 200ms, border-color 200ms, transform 300ms ease;
}

.acc-item.is-open .acc-toggle {
	border-color: var(--accent-deep);
	background: var(--accent-deep);
	transform: rotate(90deg);
}

.acc-bar {
	position: absolute;
	top: 50%;
	left: 50%;
	background: var(--accent-deep);
	transition: background 200ms, opacity 200ms;
}

.acc-bar-h {
	width: 12px;
	height: 2px;
	transform: translate(-50%, -50%);
}

.acc-bar-v {
	width: 2px;
	height: 12px;
	transform: translate(-50%, -50%);
}

.acc-item.is-open .acc-bar {
	background: var(--bg-elev);
}

.acc-item.is-open .acc-bar-v {
	opacity: 0;
}

.acc-panel {
	display: grid;
	grid-template-rows: 0fr;
	background: var(--accent-deep);
	transition: grid-template-rows 320ms ease;
}

.acc-item.is-open .acc-panel {
	grid-template-rows: 1fr;
}

.acc-panel-inner {
	overflow: hidden;
	color: var(--bg-elev);
}

.acc-item.is-open .acc-panel-inner {
	padding: 32px 28px 38px;
}

.acc-panel-inner > * {
	max-width: 70ch;
}

.acc-lead {
	margin: 0 0 14px;
	color: var(--bg-elev);
	font-family: var(--font-display);
	font-style: italic;
	font-size: 21px;
	line-height: 1.4;
}

.acc-desc {
	margin: 0 0 18px;
	color: color-mix(in oklab, var(--bg-elev) 82%, var(--accent-soft));
	font-size: 16.5px;
	line-height: 1.65;
}

.acc-desc p {
	margin: 0 0 12px;
	color: inherit;
}

.acc-desc p:last-child {
	margin-bottom: 0;
}

.acc-bullets {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.acc-bullets li {
	position: relative;
	padding-left: 22px;
	color: color-mix(in oklab, var(--bg-elev) 88%, var(--accent-soft));
	font-size: 16px;
}

.acc-bullets li::before {
	content: "-";
	position: absolute;
	left: 0;
	color: var(--accent-soft);
}

.contact-section {
	background: var(--accent-deep);
	color: #fff;
}

.contact-section .section-head h2 {
	color: #fff;
}

.contact-section .section-head .right p {
	color: color-mix(in oklab, #fff 80%, var(--accent-soft));
}

.contact-section .eyebrow {
	color: var(--accent-soft);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 64px;
	align-items: start;
}

.contact-card {
	display: grid;
	gap: 28px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.contact-card h3 {
	margin: 0 0 10px;
	color: var(--accent-soft);
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 400;
	font-size: 16px;
}

.contact-card p {
	margin: 0 0 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid color-mix(in oklab, #fff 18%, transparent);
	color: #fff;
	font-family: var(--font-display);
	font-size: 22px;
	line-height: 1.4;
}

.contact-card p:last-child {
	margin-bottom: 0;
	border-bottom: 0;
}

.contact-section .npw-article-content,
.contact-section .npw-article-content h1,
.contact-section .npw-article-content h2,
.contact-section .npw-article-content h3,
.contact-section .npw-article-content p {
	color: #fff;
}

.contact-section .npw-article-content a,
.contact-info a {
	color: #fff;
	text-decoration: none;
}

.map-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	margin-top: 8px;
	padding: 8px 13px;
	border: 1px solid currentColor;
	border-radius: 999px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.map-link::before {
	content: "↗";
	font-size: 0.9em;
	text-decoration: none;
}

.footer-col a.map-link,
.contact-info a.map-link {
	display: inline-flex;
}

.contact-info a.map-link {
	color: var(--accent-soft);
}

.footer-col a.map-link {
	color: var(--accent);
}

.contact-section .npw-article-content a:hover,
.contact-info a:hover {
	color: var(--accent-soft);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.contact-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 24px;
}

.contact-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 24px;
	border: 0;
	border-radius: 999px;
	background: #fff;
	color: var(--accent-deep);
	font-size: 15px;
	font-weight: 500;
}

.wa-inline {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 14px;
	padding: 14px 20px;
	border-radius: 999px;
	font-family: var(--font-display);
	font-size: 16px;
	text-decoration: none;
	transition: transform 160ms ease, background 160ms ease;
}

.wa-inline:hover {
	background: #1da851;
	color: #fff;
	text-decoration: none;
	transform: translateY(-1px);
}

.contact-info {
	display: grid;
	gap: 28px;
}

.contact-info .block {
	padding-bottom: 24px;
	border-bottom: 1px solid color-mix(in oklab, #fff 18%, transparent);
}

.contact-info .block:last-child {
	border-bottom: 0;
}

.contact-info .label {
	margin-bottom: 10px;
	color: var(--accent-soft);
	font-family: var(--font-display);
	font-style: italic;
	font-size: 16px;
}

.contact-info .value {
	color: #fff;
	font-family: var(--font-display);
	font-size: 22px;
	line-height: 1.4;
}

.contact-info .sub {
	margin-top: 6px;
	color: color-mix(in oklab, #fff 70%, var(--accent-soft));
	font-size: 14px;
}

.content-page {
	min-height: 55vh;
}

.content-shell {
	max-width: 920px;
}

.content-shell h1,
.content-shell h2,
.content-shell h3 {
	font-family: var(--font-display);
	font-weight: 400;
	line-height: 1.2;
}

.content-shell a {
	color: var(--accent-deep);
	text-decoration: underline;
	text-underline-offset: 0.16em;
}

.npw-contact-page {
	padding: 76px 0 96px;
	background: var(--accent-deep);
	color: #fff;
}

.npw-contact-page .section-head h1,
.npw-contact-page .section-head .right,
.npw-contact-page .section-head .right p {
	color: #fff;
}

.npw-contact-page .eyebrow {
	color: var(--accent-soft);
}

.npw-contact-layout {
	display: grid;
	grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
	gap: 48px;
	align-items: start;
}

.npw-contact-details,
.npw-contact-form-panel {
	border: 1px solid color-mix(in oklab, #fff 22%, transparent);
	border-radius: 10px;
	background: color-mix(in oklab, #fff 10%, transparent);
}

.npw-contact-details {
	padding: 28px;
}

.npw-contact-details dl {
	margin: 0;
}

.npw-contact-details dt {
	margin: 22px 0 6px;
	color: var(--accent-soft);
	font-family: var(--font-display);
	font-style: italic;
	font-size: 16px;
}

.npw-contact-details dt:first-child {
	margin-top: 0;
}

.npw-contact-details dd {
	margin: 0;
	color: #fff;
	font-family: var(--font-display);
	font-size: 22px;
	line-height: 1.4;
}

.npw-contact-details a {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.npw-contact-form-panel {
	padding: 32px;
}

.contact-section .npw-contact-form-panel {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.npw-contact-form fieldset {
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.contact-section .npw-contact-form fieldset {
	display: grid;
	gap: 18px;
}

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

.npw-contact-form legend {
	margin: 0 0 18px;
	color: #fff;
	font-family: var(--font-display);
	font-size: 28px;
	line-height: 1.2;
}

.npw-contact-form .control-group {
	margin: 0 0 18px;
}

.contact-section .npw-contact-form .control-group {
	margin: 0;
}

.npw-contact-form label,
.npw-contact-captcha label {
	display: block;
	margin: 0 0 8px;
	color: color-mix(in oklab, #fff 86%, var(--accent-soft));
	font-size: 15px;
}

.contact-section .npw-contact-form label,
.contact-section .npw-contact-captcha label {
	color: var(--accent-soft);
	font-family: var(--font-display);
	font-style: italic;
	font-size: 16px;
}

.npw-contact-form input[type="text"],
.npw-contact-form input[type="email"],
.npw-contact-form select,
.npw-contact-form textarea {
	width: 100%;
	min-height: 48px;
	padding: 12px 14px;
	border: 1px solid color-mix(in oklab, #fff 32%, transparent);
	border-radius: 8px;
	background: color-mix(in oklab, #fff 94%, var(--accent-soft));
	color: var(--ink);
	box-shadow: none;
}

.contact-section .npw-contact-form input[type="text"],
.contact-section .npw-contact-form input[type="email"],
.contact-section .npw-contact-form select,
.contact-section .npw-contact-form textarea {
	min-height: 48px;
	padding: 10px 0;
	border: 0;
	border-bottom: 1px solid color-mix(in oklab, #fff 24%, transparent);
	border-radius: 0;
	background: transparent;
	color: #fff;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
}

.contact-section .npw-contact-form input::placeholder,
.contact-section .npw-contact-form textarea::placeholder {
	color: color-mix(in oklab, #fff 62%, transparent);
	opacity: 1;
}

.contact-section .npw-contact-form input:-webkit-autofill,
.contact-section .npw-contact-form input:-webkit-autofill:hover,
.contact-section .npw-contact-form input:-webkit-autofill:focus {
	box-shadow: 0 0 0 1000px var(--accent-deep) inset;
	-webkit-text-fill-color: #fff;
	caret-color: #fff;
	transition: background-color 9999s ease-out;
}

.contact-section .npw-contact-form select {
	appearance: auto;
	color-scheme: dark;
}

.contact-section .npw-contact-form select option {
	background: var(--accent-deep);
	color: #fff;
}

.npw-contact-form textarea {
	min-height: 160px;
	resize: vertical;
}

.contact-section .npw-contact-form textarea {
	min-height: 118px;
}

.npw-contact-form input:focus,
.npw-contact-form select:focus,
.npw-contact-form textarea:focus {
	outline: 3px solid color-mix(in oklab, var(--accent-soft) 55%, transparent);
	border-color: #fff;
}

.contact-section .npw-contact-form input:focus,
.contact-section .npw-contact-form select:focus,
.contact-section .npw-contact-form textarea:focus {
	outline: 0;
	border-bottom-color: var(--accent-soft);
}

.npw-contact-form .form-check,
.npw-contact-form .form-check-inline {
	display: flex;
	gap: 10px;
	align-items: center;
	margin: 4px 0 18px;
	color: #fff;
}

.npw-contact-form input[type="checkbox"] {
	width: 18px;
	height: 18px;
	accent-color: var(--accent-soft);
}

.npw-contact-captcha {
	margin-top: 8px;
}

.contact-section .npw-contact-captcha {
	margin-top: 22px;
	padding-top: 18px;
}

.npw-contact-submit {
	margin-top: 24px;
}

.npw-contact-submit .btn {
	border-color: #fff;
	background: #fff;
	color: var(--accent-deep);
}

.contact-section .npw-contact-submit .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 14px 24px;
	border: 0;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	transition: transform 160ms ease;
}

.contact-section .npw-contact-submit .btn:hover {
	transform: translateY(-1px);
}

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

.footer-inner {
	max-width: 1240px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 48px;
}

.footer-logo {
	width: auto;
	height: 92px;
	margin-bottom: 4px;
}

.footer-col h4 {
	margin: 0 0 14px;
	color: var(--accent);
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 400;
	font-size: 17px;
}

.footer-col a,
.footer-col p {
	display: block;
	margin: 0 0 8px;
	color: var(--ink-soft);
	font-size: 16px;
}

.footer-col a:hover {
	color: var(--ink);
}

.footer-brand p {
	max-width: 32ch;
	margin-top: 12px;
}

.spectrum-dots {
	display: inline-flex;
	gap: 6px;
	align-items: center;
	margin-top: 14px;
}

.spectrum-dots span {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 999px;
}

.spectrum-dots span:nth-child(1) { background: #8e6bbd; }
.spectrum-dots span:nth-child(2) { background: #4a8fd0; }
.spectrum-dots span:nth-child(3) { background: #5ab278; }
.spectrum-dots span:nth-child(4) { background: #e8c93f; }
.spectrum-dots span:nth-child(5) { background: #e89a3a; }
.spectrum-dots span:nth-child(6) { background: #d05a4c; }

.footer-bottom {
	max-width: 1240px;
	margin: 56px auto 0;
	padding-top: 24px;
	border-top: 1px solid var(--line);
	display: flex;
	justify-content: space-between;
	gap: 20px;
	color: var(--ink-mute);
	font-family: var(--font-display);
	font-style: italic;
	font-size: 14px;
}

.footer-extra > * {
	margin: 0;
}

.wa-float {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 60;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 20px 14px 16px;
	border-radius: 999px;
	box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.55);
	font-family: var(--font-display);
	font-size: 17px;
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.wa-float:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 18px 36px -10px rgba(37, 211, 102, 0.65);
}

#redim-cookiehint-bottom,
#redim-cookiehint-top {
	right: max(16px, env(safe-area-inset-right)) !important;
	left: max(16px, env(safe-area-inset-left)) !important;
	width: auto !important;
}

#redim-cookiehint-bottom {
	bottom: max(16px, env(safe-area-inset-bottom)) !important;
}

#redim-cookiehint-top {
	top: max(16px, env(safe-area-inset-top)) !important;
}

#redim-cookiehint-modal {
	padding: 16px !important;
}

#redim-cookiehint {
	width: min(100%, 760px) !important;
	max-height: calc(100dvh - 32px);
	margin: 0 auto !important;
	padding: 18px 20px !important;
	overflow-x: hidden;
	overflow-y: auto;
	border: 2px solid #8e6bbd;
	border-radius: 14px;
	background: #fffdf7 !important;
	color: var(--ink) !important;
	box-shadow: 0 18px 52px rgb(42 51 40 / 0.28), 0 0 0 5px rgb(142 107 189 / 0.14) !important;
	text-align: left !important;
	-webkit-overflow-scrolling: touch;
}

#redim-cookiehint .cookiecontent {
	font-size: 15px !important;
	line-height: 1.45 !important;
}

#redim-cookiehint .cookiebuttons {
	display: flex !important;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 12px;
	margin-top: 12px !important;
	padding: 0 !important;
}

#redim-cookiehint .cookiebuttons form {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 12px;
	width: 100%;
}

#redim-cookiehint .cookiebuttons .btn,
#redim-cookiehint .cookiebuttons button {
	min-height: 42px;
	margin: 0 !important;
	padding: 10px 18px !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: #6f4a9d !important;
	color: #fff !important;
	font-size: 15px !important;
	line-height: 1.2 !important;
	text-decoration: none !important;
	white-space: nowrap;
}

#redim-cookiehint .cookiebuttons .btn:hover,
#redim-cookiehint .cookiebuttons button:hover {
	background: #593883 !important;
	color: #fff !important;
}

#redim-cookiehint #cookiehintinfo {
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 8px 14px;
	margin: 0 !important;
}

#redim-cookiehint #cookiehintinfo > * {
	margin: 0 !important;
}

#redim-cookiehint a {
	color: #6f4a9d !important;
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

@media (max-width: 900px) {
	.site-header {
		position: sticky;
	}

	.header-inner {
		grid-template-columns: auto 1fr;
		gap: 12px;
		padding: 14px 20px;
	}

	.brand,
	.header-actions {
		min-width: 0;
	}

	.nav {
		display: none;
		position: absolute;
		left: 18px;
		right: 18px;
		top: calc(100% + 8px);
		z-index: 70;
		padding: 12px;
		border: 1px solid color-mix(in oklab, var(--accent-deep) 16%, var(--line));
		border-radius: 18px;
		background: color-mix(in oklab, var(--bg) 96%, white);
		box-shadow: 0 24px 54px -26px rgba(42, 51, 40, 0.34);
	}

	.site-header.nav-open .nav {
		display: block;
	}

	.nav ul {
		display: grid;
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.nav a {
		width: 100%;
		justify-content: center;
		padding: 11px 14px;
		font-size: 17px;
	}

	.header-actions {
		justify-self: end;
	}

	.nav-toggle {
		display: inline-flex;
	}

	.hero {
		grid-template-columns: 1fr;
		padding: 32px 24px 48px;
		gap: 36px;
	}

	.hero-visual {
		aspect-ratio: 4 / 3;
	}

	.section {
		padding: 56px 24px;
	}

	.section-head {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.event-card,
	.about-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.npw-field-row {
		grid-template-columns: 1fr;
	}

	.event-card {
		gap: 16px;
	}

	.npw-from-joomla .npw-article-content .pull-right,
	.npw-from-joomla .npw-article-content img[style*="float: right"] {
		float: none;
		max-width: 100%;
		margin: 14px 0;
	}

	.footer-inner {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}

	.npw-contact-layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

@media (max-width: 560px) {
	body.npw-site {
		font-size: 16px;
	}

	#redim-cookiehint-bottom,
	#redim-cookiehint-top {
		right: max(10px, env(safe-area-inset-right)) !important;
		left: max(10px, env(safe-area-inset-left)) !important;
	}

	#redim-cookiehint-bottom {
		bottom: max(10px, env(safe-area-inset-bottom)) !important;
	}

	#redim-cookiehint {
		max-height: calc(100dvh - 20px);
		padding: 16px !important;
		border-radius: 12px;
	}

	#redim-cookiehint .cookiecontent {
		font-size: 14px !important;
		line-height: 1.4 !important;
	}

	#redim-cookiehint .cookiebuttons,
	#redim-cookiehint .cookiebuttons form {
		align-items: stretch;
		flex-direction: row;
		flex-wrap: wrap;
	}

	#redim-cookiehint .cookiebuttons .btn,
	#redim-cookiehint .cookiebuttons button {
		flex: 1 1 calc(50% - 6px);
		width: auto;
		min-width: 0;
		white-space: normal;
	}

	#redim-cookiehint #cookiehintinfo {
		flex: 1 0 100%;
		justify-content: center;
		text-align: center;
	}

	.brand-logo {
		height: 54px;
		max-width: 118px;
		object-fit: contain;
	}

	.header-cta {
		padding: 10px 13px;
		font-size: 14px;
	}

	.header-cta .dot,
	.header-wa {
		display: none;
	}

	.hero-h1 {
		margin-bottom: 18px;
		font-size: clamp(32px, 10vw, 44px);
	}

	.hero-copy .eyebrow {
		margin-bottom: 12px;
	}

	.hero-lead {
		margin-bottom: 24px;
		font-size: 16px;
		line-height: 1.55;
	}

	.hero-actions {
		gap: 10px;
	}

	.hero-actions .btn {
		padding: 12px 20px;
	}

	.hero-actions .btn-ghost {
		display: none;
	}

	.hero-events {
		margin-top: 26px;
	}

	.hero-visual {
		aspect-ratio: auto;
		display: grid;
	}

	.hv-main {
		position: relative;
		inset: auto;
		aspect-ratio: 4 / 3;
		width: 100%;
	}

	.hv-quote {
		position: relative;
		right: auto;
		bottom: auto;
		width: calc(100% - 32px);
		margin: -18px auto 0;
		padding: 18px 20px;
	}

	.hv-quote #srq_quote {
		font-size: 17px;
		line-height: 1.32;
	}

	.hv-quote #srq_author {
		margin-top: 10px;
		font-size: 13px;
	}

	.hero-carousel-btn {
		top: auto;
		bottom: 18px;
		width: 38px;
		height: 38px;
		font-size: 25px;
		transform: none;
	}

	.hero-carousel-btn:hover,
	.hero-carousel-btn:focus-visible {
		transform: scale(1.04);
	}

	.hero-carousel-prev {
		left: 18px;
	}

	.hero-carousel-next {
		right: auto;
		left: 64px;
	}

	.hero-carousel-dots {
		right: 18px;
		left: auto;
		bottom: 32px;
	}

	.hero-carousel-toggle {
		right: 18px;
		bottom: 68px;
	}

	.hv-tag {
		left: 14px;
		top: 14px;
	}

	.hero-events-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
	}

	.hero-event-pin {
		grid-template-columns: 64px 1fr;
		gap: 16px;
		padding: 14px 18px 14px 22px;
	}

	.pin-arrow {
		display: none;
	}

	.acc-head {
		grid-template-columns: 44px 1fr 30px;
		gap: 16px;
		padding: 22px 20px;
	}

	.events-acc .acc-head {
		grid-template-columns: 64px 1fr 30px;
		gap: 14px;
	}

	.events-acc .event-date {
		padding-right: 12px;
	}

	.events-acc .event-date .day {
		font-size: 32px;
	}

	.events-acc .event-date .month,
	.events-acc .event-date .year {
		font-size: 13px;
	}

	.acc-title {
		font-size: 23px;
	}

	.acc-item.is-open .acc-panel-inner {
		padding: 24px 20px 30px;
	}

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

	.footer-bottom {
		flex-direction: column;
		margin-top: 36px;
	}

	.npw-contact-page {
		padding: 48px 0 64px;
	}

	.npw-contact-details,
	.npw-contact-form-panel {
		padding: 22px;
	}

	.wa-float-label {
		display: none;
	}

	.wa-float {
		right: 16px;
		bottom: 16px;
		padding: 14px;
	}
}
