/**
 * Sparfüchse Joomla 6 Template
 * Vollständiges Stylesheet — alle Klassen aus dem HTML-Entwurf
 */

:root {
	--c-orange: #E8732C;
	--c-brown: #5C3A1E;
	--c-cream: #FBF4E6;
	--c-ink: #2D1B0E;
	--c-orange-deep: #A8531B;
	--c-line: rgba(92, 58, 30, 0.18);
	--c-soft: rgba(232, 115, 44, 0.08);
	--radius-sm: 10px;
	--radius-md: 18px;
	--radius-lg: 28px;
	--font-headline: 'Fraunces', Georgia, serif;
	--font-body: 'Inter', system-ui, sans-serif;
	--font-accent: 'Caveat', cursive;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
/* overflow-x: clip statt hidden — bricht position: sticky NICHT (anders als hidden).
   Fallback hidden für ältere Browser ist okay, weil die kein sticky-Problem haben. */
html { overflow-x: clip; }
body {
	font-family: var(--font-body);
	color: var(--c-ink);
	background: var(--c-cream);
	line-height: 1.55;
	font-size: 17px;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: var(--c-orange-deep); text-decoration: none; }
a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

h1, h2, h3, h4 { font-family: var(--font-headline); font-weight: 700; letter-spacing: -0.01em; line-height: 1.05; margin: 0; color: var(--c-ink); overflow-wrap: break-word; }
h1 { font-size: clamp(36px, 7vw, 96px); }
h2 { font-size: clamp(28px, 4.5vw, 56px); letter-spacing: -0.02em; }
h3 { font-size: clamp(20px, 2.4vw, 30px); }
p { margin: 0 0 1em; text-wrap: pretty; }

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

/* Mobile padding / container shrink */
@media (max-width: 700px) {
	body { font-size: 16px; }
	.container { padding: 0 20px; }
	section { padding: 64px 0; }
}
@media (max-width: 480px) {
	.container { padding: 0 16px; }
	section { padding: 52px 0; }
}

/* =========================================================
   NAV
========================================================= */
.nav-wrap {
	position: sticky; top: 0; z-index: 50;
	background: rgba(251, 244, 230, 0.88);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--c-line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 32px; max-width: 1240px; margin: 0 auto; gap: 12px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 60px; width: auto; object-fit: contain; }
.nav-logo-text { font-family: var(--font-headline); font-weight: 800; font-size: 18px; letter-spacing: -0.01em; line-height: 1; }
.nav-logo-text span { display: block; font-weight: 500; font-size: 12px; color: var(--c-orange-deep); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { color: var(--c-ink); font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--c-orange-deep); text-decoration: none; }
.nav-links ul,
.nav-links ul.menu,
.nav-links ul.mod-menu { list-style: none; padding: 0; margin: 0; display: flex; gap: 32px; align-items: center; }
.nav-links a.nav-cta,
.nav-links li.nav-cta a { background: var(--c-ink); color: var(--c-cream); padding: 11px 22px; border-radius: 999px; font-weight: 600; font-size: 14px; transition: transform 0.2s, background 0.2s; display: inline-block; }
.nav-links a.nav-cta:hover,
.nav-links li.nav-cta a:hover { background: var(--c-orange-deep); color: var(--c-cream); text-decoration: none; transform: translateY(-1px); }

/* Mobile: Hamburger menu */
.nav-toggle {
	display: none;
	background: transparent; border: 1.5px solid var(--c-line); color: var(--c-ink);
	width: 44px; height: 44px; border-radius: 12px; cursor: pointer;
	align-items: center; justify-content: center; padding: 0;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle:hover { border-color: var(--c-ink); }

@media (max-width: 820px) {
	.nav { padding: 12px 20px; }
	.nav-logo img { height: 48px; }
	.nav-toggle { display: inline-flex; }
	.nav-links {
		position: absolute; top: 100%; left: 0; right: 0;
		flex-direction: column; align-items: stretch; gap: 0;
		background: var(--c-cream);
		border-bottom: 1px solid var(--c-line);
		padding: 8px 20px 20px;
		box-shadow: 0 12px 24px -8px rgba(45,27,14,0.15);
		max-height: 0; overflow: hidden;
		transition: max-height 0.3s ease, padding 0.3s ease;
		padding-top: 0; padding-bottom: 0;
	}
	.nav-wrap.is-open .nav-links {
		max-height: 80vh; overflow-y: auto;
		padding-top: 8px; padding-bottom: 20px;
	}
	.nav-links ul,
	.nav-links ul.menu,
	.nav-links ul.mod-menu {
		flex-direction: column; gap: 0; align-items: stretch;
	}
	.nav-links a, .nav-links ul li a {
		display: block; padding: 14px 4px; font-size: 17px;
		border-bottom: 1px solid var(--c-line);
	}
	.nav-links ul li:last-child a { border-bottom: none; }
	.nav-links a.nav-cta,
	.nav-links li.nav-cta a {
		margin-top: 12px; text-align: center;
		padding: 14px 22px; border-bottom: none;
	}
}

/* =========================================================
   HERO
========================================================= */
.hero { padding: 80px 0 96px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 72px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 700px) {
	.hero { padding: 48px 0 64px; }
	.hero-grid { gap: 36px; }
}

.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; background: var(--c-soft); border: 1px solid var(--c-line); border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--c-orange-deep); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 28px; }
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-orange); box-shadow: 0 0 0 4px rgba(232, 115, 44, 0.18); }

.hero h1 { margin-bottom: 24px; }
.hero h1 .accent { color: var(--c-orange); font-style: italic; font-weight: 500; }
.accent { color: var(--c-orange); font-style: italic; font-weight: 500; }
.hero-lede { font-size: 21px; color: rgba(45, 27, 14, 0.75); margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-meta { display: flex; gap: 36px; margin-top: 48px; padding-top: 36px; border-top: 1px dashed var(--c-line); flex-wrap: wrap; }
.hero-meta-item .num { font-family: var(--font-headline); font-weight: 700; font-size: 38px; color: var(--c-brown); line-height: 1; }
.hero-meta-item .label { font-size: 13px; color: rgba(45, 27, 14, 0.6); margin-top: 6px; letter-spacing: 0.02em; }
@media (max-width: 700px) {
	.hero-meta { gap: 24px; margin-top: 32px; padding-top: 24px; }
	.hero-meta-item .num { font-size: 30px; }
	.hero-lede { font-size: 18px; margin-bottom: 28px; }
	.hero-actions { width: 100%; }
	.btn-primary, .btn-ghost, .btn-on-orange { padding: 14px 22px; font-size: 15px; }
}

/* Hero illustration card */
.hero-card {
	background: white;
	border-radius: var(--radius-lg);
	padding: 40px;
	box-shadow: 0 30px 60px -20px rgba(92, 58, 30, 0.25), 0 8px 20px -8px rgba(92, 58, 30, 0.15);
	position: relative;
	transform: rotate(1.5deg);
}
@media (max-width: 700px) {
	.hero-card { padding: 28px 24px; transform: none; }
	.hero-card-logo img { height: 100px; }
	.hero-card-tag { font-size: 22px; }
	.hero-card-stat-value { font-size: 22px; }
}
.hero-card::before {
	content: ""; position: absolute; inset: -16px -16px auto auto;
	width: 96px; height: 96px;
	background: var(--c-orange); border-radius: 50%; z-index: -1;
	opacity: 0.7;
}
.hero-card-logo { display: flex; justify-content: center; margin-bottom: 24px; }
.hero-card-logo img { height: 140px; width: auto; }
.hero-card-tag { text-align: center; font-family: var(--font-accent); font-weight: 700; font-size: 28px; color: var(--c-orange-deep); transform: rotate(-2deg); margin-top: 12px; }
.hero-card-divider { height: 1px; background: var(--c-line); margin: 28px 0; }
.hero-card-stat { display: flex; align-items: baseline; justify-content: space-between; }
.hero-card-stat-label { font-size: 14px; color: rgba(45, 27, 14, 0.6); }
.hero-card-stat-value { font-family: var(--font-headline); font-weight: 700; font-size: 28px; color: var(--c-orange-deep); }

.hero-bg-decor { position: absolute; pointer-events: none; z-index: 0; }
.hero-bg-1 { top: 80px; right: -100px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(232,115,44,0.12), transparent 70%); border-radius: 50%; }
.hero-bg-2 { bottom: -50px; left: -80px; width: 240px; height: 240px; background: radial-gradient(circle, rgba(168, 83, 27, 0.08), transparent 70%); border-radius: 50%; }
.hero-grid > * { position: relative; z-index: 1; }

/* =========================================================
   BUTTONS
========================================================= */
.btn-primary { display: inline-block; background: var(--c-orange); color: white; padding: 16px 28px; border-radius: 999px; font-weight: 600; font-size: 16px; border: none; cursor: pointer; transition: all 0.2s; box-shadow: 0 6px 18px rgba(232, 115, 44, 0.3); text-decoration: none; }
.btn-primary:hover { background: var(--c-orange-deep); color: white; text-decoration: none; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(232, 115, 44, 0.4); }
.btn-ghost { display: inline-block; background: transparent; color: var(--c-ink); padding: 16px 24px; border-radius: 999px; font-weight: 600; font-size: 16px; border: 1.5px solid var(--c-line); cursor: pointer; transition: all 0.2s; text-decoration: none; }
.btn-ghost:hover { border-color: var(--c-ink); text-decoration: none; }
.btn-on-orange { display: inline-block; background: var(--c-ink); color: white; padding: 16px 28px; border-radius: 999px; font-weight: 600; border: none; cursor: pointer; font-size: 16px; transition: all 0.2s; text-decoration: none; }
.btn-on-orange:hover { background: var(--c-cream); color: var(--c-ink); text-decoration: none; transform: translateY(-2px); }

/* =========================================================
   SECTION HEADER
========================================================= */
.section-eyebrow { font-family: var(--font-accent); font-weight: 600; font-size: 26px; color: var(--c-orange); margin-bottom: 8px; display: block; transform: rotate(-1deg); }
.section-title { margin-bottom: 16px; max-width: 720px; }
.section-lede { font-size: 19px; color: rgba(45, 27, 14, 0.7); max-width: 640px; margin-bottom: 56px; }

/* =========================================================
   ABOUT
========================================================= */
.button_antrag {
    position: relative;
    text-align: center;
    margin-top: 40px;
}
.about { background: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }

/* Joomla: each section position gets its own .container — turn the
   2-column sections (about, sparstand, join, kontakt) into a grid so
   side-by-side modules sit next to each other instead of stacking. */
.about > .container,
.sparstand > .container,
.join > .container,
.kontakt > .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.sparstand > .container { grid-template-columns: 1.2fr 1fr; gap: 64px; }
.join > .container { grid-template-columns: 1.3fr 1fr; gap: 64px; }
.kontakt > .container { gap: 64px; }
@media (max-width: 900px) {
	.about > .container,
	.sparstand > .container,
	.join > .container,
	.kontakt > .container {
		grid-template-columns: 1fr;
		gap: 48px;
	}
}
.about-image {
	aspect-ratio: 4/5;
	background: linear-gradient(135deg, #f0d9b8 0%, #e8a570 100%);
	border-radius: var(--radius-lg);
	position: relative; overflow: hidden;
	display: flex; align-items: center; justify-content: center;
	color: var(--c-brown); font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase;
}
.about-image-icon { font-family: var(--font-headline); font-size: 96px; opacity: 0.4; }
.about-quote {
	font-family: var(--font-headline); font-style: italic; font-size: 26px; line-height: 1.4;
	color: var(--c-brown); margin: 28px 0 32px; padding-left: 20px; border-left: 3px solid var(--c-orange);
}
.about-features { display: grid; gap: 18px; margin-top: 32px; }
.about-feature { display: flex; gap: 16px; align-items: flex-start; }
.about-feature-icon {
	flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
	background: var(--c-soft); display: flex; align-items: center; justify-content: center;
	font-size: 22px;
}
.about-feature-text strong { display: block; margin-bottom: 4px; font-weight: 600; }
.about-feature-text span { color: rgba(45, 27, 14, 0.65); font-size: 15px; }

/* =========================================================
   SPARSTAND (Savings)
========================================================= */
.sparstand,
.savings { background: var(--c-ink); color: var(--c-cream); position: relative; overflow: hidden; }
.sparstand::before,
.savings::before {
	content: ""; position: absolute; top: -200px; right: -100px;
	width: 500px; height: 500px;
	background: radial-gradient(circle, rgba(232,115,44,0.18), transparent 60%);
	border-radius: 50%;
}
.sparstand .container,
.savings .container { position: relative; z-index: 1; }
.sparstand h2, .sparstand h3,
.savings h2, .savings h3 { color: var(--c-cream); }
.sparstand .section-eyebrow,
.savings .section-eyebrow { color: var(--c-orange); }
.savings-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .savings-grid { grid-template-columns: 1fr; } }
.savings-lede { color: rgba(251, 244, 230, 0.7); font-size: 19px; max-width: 480px; margin-bottom: 32px; }
.savings-meta { display: flex; gap: 32px; flex-wrap: wrap; }
.savings-meta-item .label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(251, 244, 230, 0.5); margin-bottom: 4px; }
.savings-meta-item .val { font-family: var(--font-headline); font-size: 24px; }

.counter-card {
	background: linear-gradient(155deg, rgba(232, 115, 44, 0.95), rgba(168, 83, 27, 0.95));
	border-radius: var(--radius-lg);
	padding: 48px 40px;
	box-shadow: 0 20px 50px rgba(232, 115, 44, 0.3);
	position: relative; overflow: hidden;
	color: white;
}
@media (max-width: 700px) {
	.counter-card { padding: 32px 24px; }
	.counter-value { font-size: 60px; }
	.counter-currency { font-size: 28px; }
}
.counter-card::after {
	content: ""; position: absolute; bottom: -60px; right: -60px;
	width: 200px; height: 200px; border: 2px dashed rgba(255,255,255,0.2);
	border-radius: 50%;
}
.counter-label { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.85; margin-bottom: 12px; }
.counter-value { font-family: var(--font-headline); font-weight: 800; font-size: 84px; line-height: 1; color: white; letter-spacing: -0.02em; }
.counter-currency { font-size: 36px; opacity: 0.7; margin-left: 8px; vertical-align: top; line-height: 1.5; }
.counter-bar { margin-top: 28px; height: 8px; background: rgba(0,0,0,0.2); border-radius: 999px; overflow: hidden; position: relative; z-index: 1; }
.counter-bar-fill { height: 100%; width: 68%; background: white; border-radius: 999px; }
.counter-target { display: flex; justify-content: space-between; margin-top: 12px; font-size: 13px; opacity: 0.85; position: relative; z-index: 1; }

/* =========================================================
   TERMINE (Events)
========================================================= */
.events-list { display: grid; gap: 16px; }
.event {
	display: grid; grid-template-columns: 120px 1fr auto; gap: 32px; align-items: center;
	background: white; padding: 28px; border-radius: var(--radius-md);
	border: 1px solid var(--c-line);
	transition: all 0.2s;
}
.event:hover { transform: translateY(-2px); box-shadow: 0 10px 30px -10px rgba(92,58,30,0.15); border-color: var(--c-orange); }
.event-date { text-align: center; padding: 14px; background: var(--c-soft); border-radius: var(--radius-sm); }
.event-date .day { font-family: var(--font-headline); font-weight: 800; font-size: 32px; color: var(--c-orange-deep); line-height: 1; }
.event-date .month { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-brown); margin-top: 4px; }
.event-info h3 { margin-bottom: 6px; font-size: 22px; }
.event-info .meta { font-size: 14px; color: rgba(45,27,14,0.6); display: flex; gap: 16px; flex-wrap: wrap; }
.event-info .meta span::before { content: "•"; margin-right: 16px; color: var(--c-orange); }
.event-info .meta span:first-child::before { display: none; }
.event-tag { padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.tag-stammtisch { background: var(--c-soft); color: var(--c-orange-deep); }
.tag-ausflug { background: rgba(92, 58, 30, 0.1); color: var(--c-brown); }
.tag-fest { background: rgba(168, 83, 27, 0.15); color: var(--c-orange-deep); }
@media (max-width: 700px) {
	.event { grid-template-columns: 64px 1fr; gap: 20px; padding: 20px; }
	.event-date { padding: 10px; }
	.event-date .day { font-size: 24px; }
	.event-info h3 { font-size: 18px; }
	.event-tag { grid-column: 2; justify-self: start; }
}

/* =========================================================
   VORSTAND (Board)
========================================================= */
.board { background: white; }
.board-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .board-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .board-grid { grid-template-columns: 1fr; } }
.board-card { text-align: center; }
.board-avatar {
	aspect-ratio: 1; border-radius: 50%;
	background: linear-gradient(135deg, var(--c-soft), rgba(168, 83, 27, 0.15));
	margin-bottom: 20px;
	display: flex; align-items: center; justify-content: center;
	font-family: var(--font-headline); font-size: 48px; color: var(--c-orange-deep);
	border: 4px solid white; box-shadow: 0 8px 24px rgba(92,58,30,0.1);
	position: relative;
	overflow: hidden;
}
.board-avatar img {
	width: 100%; height: 100%; object-fit: cover;
	display: block;
}
.board-card h3 { font-size: 20px; margin-bottom: 4px; }
.board-role { font-size: 13px; color: var(--c-orange-deep); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.board-since { font-size: 13px; color: rgba(45,27,14,0.5); margin-top: 8px; }

/* =========================================================
   GALLERY
========================================================= */
.gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 200px 200px; gap: 16px; }
@media (max-width: 700px) { .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px 160px; } }
.gallery-tile {
	border-radius: var(--radius-md); overflow: hidden;
	background: linear-gradient(135deg, #d4b896, #a8753f);
	color: white; padding: 20px; display: flex; align-items: flex-end;
	font-size: 13px; font-weight: 500;
	position: relative;
}
.gallery-tile::before {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4));
}
.gallery-tile span { position: relative; z-index: 1; }
.gallery-tile:nth-child(1) { grid-row: span 2; background: linear-gradient(135deg, #c97c4a, #5C3A1E); }
.gallery-tile:nth-child(2) { background: linear-gradient(135deg, #e8a96e, #b06d35); }
.gallery-tile:nth-child(3) { background: linear-gradient(135deg, #d8b07a, #8a5a2e); }
.gallery-tile:nth-child(4) { background: linear-gradient(135deg, #a8753f, #5C3A1E); }
.gallery-tile:nth-child(5) { background: linear-gradient(135deg, #e8732c, #a8531b); }
@media (max-width: 700px) { .gallery-tile:nth-child(1) { grid-row: span 1; grid-column: span 2; } }

/* =========================================================
   JOIN (Mitmachen)
========================================================= */
.join { background: var(--c-orange); color: white; position: relative; overflow: hidden; }
.join::before {
	content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
	width: 800px; height: 800px;
	background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%);
	border-radius: 50%;
}
.join-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
@media (max-width: 900px) { .join-grid { grid-template-columns: 1fr; } }
.join h2, .join h3 { color: white; }
.join .section-eyebrow { color: rgba(255,255,255,0.85); }
.join-lede { font-size: 19px; opacity: 0.9; margin-bottom: 32px; max-width: 520px; }
.join-checks { display: grid; gap: 14px; margin-bottom: 36px; }
.join-check { display: flex; gap: 12px; align-items: center; font-size: 16px; }
.join-check::before { content: "✓"; font-weight: 700; color: white; background: rgba(255,255,255,0.2); width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.join-form {
	background: white; padding: 36px; border-radius: var(--radius-lg);
	color: var(--c-ink); box-shadow: 0 24px 60px rgba(45,27,14,0.25);
}
@media (max-width: 700px) {
	.join-form { padding: 24px 20px; }
	.join-lede { font-size: 17px; }
}
.join-form h3 { margin-bottom: 8px; }
.join-form p { font-size: 14px; color: rgba(45,27,14,0.6); margin-bottom: 24px; }
.form-row { display: grid; gap: 6px; margin-bottom: 16px; }
.form-row label { font-size: 13px; font-weight: 600; color: var(--c-brown); }
.form-row input, .form-row select, .form-row textarea {
	padding: 12px 14px; border: 1.5px solid var(--c-line); border-radius: var(--radius-sm);
	font-family: inherit; font-size: 15px; background: var(--c-cream); color: var(--c-ink);
	transition: border-color 0.2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--c-orange); }

/* =========================================================
   KONTAKT
========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }
.contact-block { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-icon {
	width: 48px; height: 48px; border-radius: 14px;
	background: var(--c-soft); display: flex; align-items: center; justify-content: center;
	flex-shrink: 0; font-size: 22px;
}
.contact-block h4 { font-family: var(--font-body); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-orange-deep); margin-bottom: 6px; font-weight: 600; }
.contact-block p { font-size: 17px; line-height: 1.5; }

.map-card {
	background: linear-gradient(135deg, #d4c5a8, #a89270);
	border-radius: var(--radius-lg);
	aspect-ratio: 4/3;
	position: relative; overflow: hidden;
	display: flex; align-items: center; justify-content: center;
}
.map-card::before {
	content: ""; position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(92,58,30,0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(92,58,30,0.08) 1px, transparent 1px);
	background-size: 40px 40px;
}
.map-pin {
	position: relative; width: 56px; height: 56px; background: var(--c-orange);
	border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
	box-shadow: 0 8px 20px rgba(232,115,44,0.5);
}
.map-pin::after {
	content: ""; position: absolute; top: 16px; left: 16px;
	width: 24px; height: 24px; background: var(--c-cream); border-radius: 50%;
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer { background: var(--c-ink); color: rgba(251,244,230,0.7); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
.site-footer h5 { font-family: var(--font-headline); font-weight: 700; font-size: 16px; color: var(--c-cream); margin: 0 0 18px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer ul a { color: rgba(251,244,230,0.65); font-size: 14px; }
.site-footer ul a:hover { color: var(--c-orange); text-decoration: none; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { height: 60px; }
.footer-tag { font-family: var(--font-accent); font-weight: 600; color: var(--c-orange); font-size: 22px; }
.footer-blurb { margin-top: 16px; font-size: 13px; max-width: 320px; }
.footer-bottom {
	border-top: 1px solid rgba(251,244,230,0.1);
	padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
	font-size: 13px;
}
@media (max-width: 700px) {
	.site-footer { padding: 48px 0 24px; }
	.footer-grid { gap: 32px; margin-bottom: 32px; }
	.footer-bottom { font-size: 12px; }
}

/* =========================================================
   FOX STAMPS (dekorativ)
========================================================= */
.fox-decor { position: absolute; pointer-events: none; opacity: 0.08; }
.fox-decor-1 { top: 60px; right: 5%; width: 80px; }
.fox-decor-2 { bottom: 40px; left: 4%; width: 60px; transform: scaleX(-1); }

/* =========================================================
   VARIANTS / BODY MODIFIERS
========================================================= */
body.corners-sharp { --radius-sm: 4px; --radius-md: 6px; --radius-lg: 10px; }
body.corners-sharp .btn-primary,
body.corners-sharp .nav-cta,
body.corners-sharp .hero-eyebrow,
body.corners-sharp .event-tag,
body.corners-sharp .btn-on-orange,
body.corners-sharp .btn-ghost { border-radius: 6px; }

body.hero-bold .hero { background: var(--c-ink); color: var(--c-cream); }
body.hero-bold .hero h1 { color: var(--c-cream); }
body.hero-bold .hero h1 .accent { color: var(--c-orange); }
body.hero-bold .hero-lede { color: rgba(251,244,230,0.75); }
body.hero-bold .hero-eyebrow { background: rgba(232,115,44,0.18); border-color: rgba(232,115,44,0.4); color: var(--c-orange); }
body.hero-bold .hero-meta { border-top-color: rgba(251,244,230,0.15); }
body.hero-bold .hero-meta-item .num { color: var(--c-orange); }
body.hero-bold .hero-meta-item .label { color: rgba(251,244,230,0.55); }
body.hero-bold .btn-ghost { color: var(--c-cream); border-color: rgba(251,244,230,0.25); }

body.hero-minimal .hero-card { box-shadow: none; transform: none; border: 1px solid var(--c-line); }
body.hero-minimal .hero-card::before { display: none; }
body.hero-minimal .hero-bg-1,
body.hero-minimal .hero-bg-2 { display: none; }

body.no-fox .fox-decor { display: none !important; }

/* =========================================================
   GLOBAL FORMS (Joomla forms outside .form-row)
========================================================= */
input[type="text"], input[type="email"], input[type="password"], input[type="tel"],
select, textarea {
	padding: 12px 14px; border: 1.5px solid var(--c-line); border-radius: var(--radius-sm);
	font-family: inherit; font-size: 15px; background: var(--c-cream); color: var(--c-ink);
	transition: border-color 0.2s; width: 100%;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--c-orange); }
label { font-size: 13px; font-weight: 600; color: var(--c-brown); display: block; margin-bottom: 6px; }
