/* Archivo, lokal gehostet (keine Google-Fonts-Anfragen) */

@font-face {
	font-family: "Archivo";
	font-style: normal;
	font-weight: 100 900;
	font-stretch: 62% 125%;
	font-display: swap;
	src: url("../fonts/archivo-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "Archivo";
	font-style: normal;
	font-weight: 100 900;
	font-stretch: 62% 125%;
	font-display: swap;
	src: url("../fonts/archivo-latin-ext.woff2") format("woff2");
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: "Archivo";
	font-style: italic;
	font-weight: 100 900;
	font-stretch: 62% 125%;
	font-display: swap;
	src: url("../fonts/archivo-italic-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "Archivo";
	font-style: italic;
	font-weight: 100 900;
	font-stretch: 62% 125%;
	font-display: swap;
	src: url("../fonts/archivo-italic-latin-ext.woff2") format("woff2");
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
	--bg: oklch(98.6% 0.002 20);
	--surface: oklch(96.2% 0.003 20);
	--ink: oklch(14% 0.008 20);
	--muted: oklch(37% 0.01 20);
	--line: oklch(88% 0.005 20);
	--burgundy: oklch(46% 0.185 28);
	--burgundy-ink: oklch(38% 0.15 28);
	--wine-deep: oklch(18% 0.018 25);
	--wine-deeper: oklch(11% 0.008 25);
	--gold: oklch(64% 0.21 27);
	--gold-soft: oklch(64% 0.21 27 / 0.75);
	--on-wine: oklch(97% 0.004 20);
	--on-wine-muted: oklch(82% 0.02 25);
	--white: oklch(100% 0 0);
	--font: "Archivo", "Helvetica Neue", Arial, sans-serif;
	--max: 1180px;
	--radius: 12px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--pad-x: max(1.25rem, calc((100vw - var(--max)) / 2));
}

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

html {
	scroll-behavior: smooth;
}

section[id],
article[id],
.brand-group[id] {
	scroll-margin-top: 6rem;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font);
	font-size: 17px;
	line-height: 1.6;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}

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

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

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

a:focus-visible,
button:focus-visible {
	outline: 2px solid var(--burgundy);
	outline-offset: 3px;
	border-radius: 4px;
}

.hero a:focus-visible,
.visit a:focus-visible,
.footer a:focus-visible {
	outline-color: var(--gold);
}

h1,
h2,
h3,
p,
dl,
dd,
ul {
	margin: 0;
}

h1,
h2,
h3 {
	text-wrap: balance;
	font-stretch: 118%;
	font-weight: 640;
	letter-spacing: -0.015em;
	line-height: 1.04;
}

p {
	text-wrap: pretty;
}

.skip-link {
	position: fixed;
	inset: 1rem auto auto 1rem;
	z-index: 100;
	padding: 0.7rem 0.9rem;
	background: var(--white);
	color: var(--ink);
	border-radius: 6px;
	transform: translateY(-150%);
}

.skip-link:focus {
	transform: translateY(0);
}

/* Header */

.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 40;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1rem;
	width: 100%;
	margin: 0;
	padding: 0.65rem var(--pad-x);
	border-bottom: 2px solid var(--burgundy);
	background: oklch(11% 0.008 25 / 0.82);
	color: var(--on-wine);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	transition: background-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.site-header.is-scrolled {
	background: oklch(10% 0.008 25 / 0.94);
	box-shadow: 0 14px 40px oklch(0% 0 0 / 0.35);
}

.site-header__inner {
	display: contents;
}

.brand {
	display: flex;
	align-items: center;
	padding: 0.3rem 0.6rem;
	background: var(--white);
	border-radius: 999px;
	text-decoration: none;
}

.brand img {
	width: 100px;
	height: 42px;
	object-fit: contain;
}

.site-nav {
	justify-self: center;
	display: flex;
	align-items: center;
	gap: 0.15rem;
}

.site-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0.5rem 0.85rem;
	border-radius: 999px;
	color: currentColor;
	font-weight: 540;
	text-decoration: none;
	opacity: 0.85;
	transition: opacity 160ms var(--ease), background-color 160ms var(--ease);
}

.site-nav a:hover {
	opacity: 1;
	background: oklch(100% 0 0 / 0.1);
}

.site-nav a.is-active {
	opacity: 1;
	background: var(--burgundy);
	color: var(--white);
}

.header-call {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0.5rem 1rem;
	border-radius: 999px;
	background: var(--burgundy);
	color: var(--white);
	font-weight: 680;
	text-decoration: none;
	font-variant-numeric: tabular-nums;
	transition: transform 160ms var(--ease), background-color 160ms var(--ease);
}

.header-call:hover {
	background: oklch(52% 0.2 28);
}

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

.nav-toggle {
	display: none;
	align-items: center;
	gap: 0.55rem;
	min-height: 44px;
	padding: 0.55rem 0.85rem;
	border: 1px solid oklch(100% 0 0 / 0.22);
	border-radius: 999px;
	background: transparent;
	color: currentColor;
	font-weight: 600;
	cursor: pointer;
}


.nav-toggle__lines,
.nav-toggle__lines::before,
.nav-toggle__lines::after {
	display: block;
	width: 1.05rem;
	height: 1.5px;
	background: currentColor;
	content: "";
	transition: transform 180ms var(--ease), opacity 180ms var(--ease);
}

.nav-toggle__lines {
	position: relative;
}

.nav-toggle__lines::before,
.nav-toggle__lines::after {
	position: absolute;
	left: 0;
}

.nav-toggle__lines::before {
	top: -0.35rem;
}

.nav-toggle__lines::after {
	top: 0.35rem;
}

.site-header.nav-open .nav-toggle__lines {
	background: transparent;
}

.site-header.nav-open .nav-toggle__lines::before {
	transform: translateY(0.35rem) rotate(45deg);
}

.site-header.nav-open .nav-toggle__lines::after {
	transform: translateY(-0.35rem) rotate(-45deg);
}

/* Hero */

.hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
	align-items: end;
	gap: 2.5rem;
	min-height: 92svh;
	padding: 8.5rem var(--pad-x) 3.5rem;
	background:
		radial-gradient(1100px 700px at 82% 12%, oklch(46% 0.185 28 / 0.5), transparent 62%),
		linear-gradient(180deg, var(--wine-deep), var(--wine-deeper) 80%);
	color: var(--on-wine);
	overflow: clip;
}

.hero__media,
.hero__media img,
.hero__scrim {
	position: absolute;
	inset: 0;
}

.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(1.05) contrast(1.05) brightness(0.88);
}

.hero__scrim {
	background:
		linear-gradient(92deg, oklch(9% 0.01 25 / 0.94) 8%, oklch(12% 0.02 25 / 0.7) 46%, oklch(12% 0.015 25 / 0.25) 100%),
		linear-gradient(0deg, oklch(8% 0.01 25 / 0.94), transparent 45%);
}

.hero__content {
	position: relative;
	z-index: 1;
	max-width: 640px;
	display: grid;
	gap: 1.4rem;
}

.hero__since {
	color: var(--gold);
	font-weight: 560;
	font-size: 0.98rem;
	letter-spacing: 0.01em;
}

.hero h1 {
	font-size: clamp(2.9rem, 6.2vw, 4.9rem);
	color: var(--white);
}

.hero__copy {
	max-width: 33rem;
	color: var(--on-wine-muted);
	font-size: 1.14rem;
	line-height: 1.62;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 0.4rem;
}

.hero__panel {
	position: relative;
	z-index: 1;
	justify-self: end;
	width: min(380px, 100%);
	padding: 1.4rem 1.4rem 1.2rem;
	border-top: 4px solid var(--burgundy);
	border-radius: var(--radius);
	background: var(--white);
	color: var(--ink);
	box-shadow: 0 32px 70px oklch(0% 0 0 / 0.45);
}

.status {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	font-weight: 650;
}

.status__dot {
	width: 0.6rem;
	height: 0.6rem;
	border-radius: 999px;
	background: var(--muted);
}

.status[data-state="open"] .status__dot {
	background: oklch(62% 0.17 148);
	box-shadow: 0 0 0 4px oklch(62% 0.17 148 / 0.18);
}

.status[data-state="closed"] .status__dot {
	background: var(--burgundy);
	box-shadow: 0 0 0 4px oklch(40% 0.15 27 / 0.15);
}

.hours {
	display: grid;
	margin: 1.05rem 0 0.9rem;
	border-top: 1px solid var(--line);
}

.hours div {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.72rem 0;
	border-bottom: 1px solid var(--line);
}

.hours dt {
	color: var(--muted);
}

.hours dd {
	font-weight: 650;
	font-variant-numeric: tabular-nums;
	text-align: right;
}

.hours-note {
	color: var(--muted);
	font-size: 0.95rem;
	line-height: 1.5;
	margin-top: 0.75rem;
}

.hours-address {
	display: grid;
	grid-template-columns: minmax(5.6rem, 0.62fr) minmax(0, 1fr);
	gap: 1rem;
	align-items: start;
	color: var(--ink);
	font-size: 0.98rem;
	margin-top: 0.95rem;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	padding: 0.78rem 0;
}

.hours-address > span {
	color: var(--muted);
}

.hours-address strong {
	display: block;
	font-weight: 650;
	line-height: 1.35;
	text-align: right;
}

.hours-address strong span {
	color: var(--muted);
	font-weight: 520;
}

/* Buttons */

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.8rem 1.3rem;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 640;
	line-height: 1.1;
	text-decoration: none;
	transition: transform 160ms var(--ease), background-color 160ms var(--ease), border-color 160ms var(--ease);
}

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

.button--light {
	background: var(--burgundy);
	color: var(--white);
}

.button--light:hover {
	background: oklch(52% 0.2 28);
}

.button--outline {
	border-color: oklch(100% 0 0 / 0.35);
	color: var(--on-wine);
}

.button--outline:hover {
	border-color: oklch(100% 0 0 / 0.65);
}

/* Sortiment */

.collections {
	display: grid;
	gap: 1.5rem;
	padding: 6rem var(--pad-x);
	background: var(--surface);
}

.section-head {
	display: grid;
	gap: 0.7rem;
	margin-bottom: 1.6rem;
}

.section-head h2 {
	font-size: clamp(2.1rem, 4vw, 3.1rem);
}

.section-head p {
	max-width: 46rem;
	color: var(--muted);
	font-size: 1.08rem;
}

.feature {
	display: grid;
	grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
	min-height: clamp(400px, 32vw, 440px);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	overflow: hidden;
}

.feature__art {
	display: grid;
	place-items: center;
	min-height: inherit;
	padding: clamp(2rem, 3.2vw, 3rem);
	background:
		radial-gradient(560px 560px at 50% 38%, oklch(52% 0.2 28 / 0.55), transparent 78%),
		linear-gradient(160deg, oklch(46% 0.185 28), oklch(33% 0.135 28));
	color: oklch(98% 0.005 25);
}

.feature__art svg {
	opacity: 0.95;
}

.feature__media {
	margin: 0;
	overflow: hidden;
}

.feature__media img {
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
	filter: saturate(0.92) contrast(1.04);
	transition: transform 600ms var(--ease);
}

.feature:hover .feature__media img {
	transform: scale(1.025);
}

.feature--flip .feature__media {
	order: 2;
}

.feature__art svg {
	width: min(100%, 320px);
	aspect-ratio: 1;
}

.feature--flip .feature__art {
	order: 2;
}

.feature__body {
	display: grid;
	align-content: center;
	justify-items: start;
	gap: 0.8rem;
	min-height: inherit;
	padding: clamp(2rem, 3.2vw, 3rem);
}

.feature__body h3 {
	font-size: clamp(1.7rem, 2.6vw, 2.2rem);
}

.feature__lead {
	font-weight: 600;
	font-size: 1.1rem;
}

.feature__body > p:not(.feature__lead) {
	max-width: 46ch;
	color: var(--muted);
}

.feature__brand-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0.8rem 0 0.5rem;
}

.brand-card {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 78px;
	height: 42px;
	padding: 6px 10px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: var(--white);
	box-sizing: border-box;
	transition: border-color 160ms var(--ease), transform 160ms var(--ease), box-shadow 160ms var(--ease);
}

.brand-card img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: grayscale(1) contrast(1.15);
	opacity: 0.75;
	transition: filter 160ms var(--ease), opacity 160ms var(--ease);
}

.brand-card:hover {
	border-color: var(--burgundy);
	transform: translateY(-1px);
	box-shadow: 0 4px 10px oklch(17% 0.04 26 / 0.08);
}

.brand-card:hover img {
	filter: none;
	opacity: 1;
}

.feature__links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.2rem 1.2rem;
	align-items: center;
	margin-top: 0.3rem;
}

.feature__link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	min-height: 44px;
	margin-top: 0.3rem;
	color: var(--burgundy);
	font-weight: 650;
	text-decoration: none;
}

.feature__link::after {
	content: "→";
	transition: transform 180ms var(--ease);
}

.feature__link:hover::after {
	transform: translateX(4px);
}

.feature__link:hover {
	text-decoration: underline;
	text-decoration-thickness: 1.5px;
}

/* Marken */

.brands {
	padding: 6rem var(--pad-x);
	background: var(--bg);
}

.brand-group {
	display: grid;
	grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
	gap: 1.5rem;
	padding: 2.2rem 0;
	border-top: 1px solid var(--line);
}

.brand-group:first-of-type {
	margin-top: 1rem;
}

.brand-group h3 {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	font-size: 1.25rem;
	color: var(--ink);
}

.brand-group h3::before {
	content: "";
	width: 0.5em;
	height: 0.5em;
	border-radius: 2px;
	background: var(--burgundy);
}

.brand-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
	gap: 0.7rem;
	padding: 0;
	list-style: none;
}

.brand-list a {
	position: relative;
	display: grid;
	gap: 0.15rem;
	align-content: start;
	height: 100%;
	padding: 1rem 2.2rem 1rem 1.1rem;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: var(--white);
	text-decoration: none;
	transition: border-color 160ms var(--ease), transform 160ms var(--ease), box-shadow 160ms var(--ease);
}

.brand-list__logo {
	display: grid;
	place-items: start;
	align-items: center;
	height: 52px;
	margin-bottom: 0.6rem;
}

.brand-list__logo img {
	max-width: min(100%, 116px);
	max-height: 44px;
	object-fit: contain;
	filter: grayscale(1) contrast(1.08);
	opacity: 0.88;
	transition: filter 200ms var(--ease), opacity 200ms var(--ease);
}

.brand-list a:hover .brand-list__logo img {
	filter: none;
	opacity: 1;
}

.brand-list a::after {
	content: "↗";
	position: absolute;
	top: 0.8rem;
	right: 0.95rem;
	color: var(--muted);
	font-size: 0.9rem;
	transition: color 160ms var(--ease), transform 180ms var(--ease);
}

.brand-list a:hover {
	border-color: var(--burgundy);
	transform: translateY(-2px);
	box-shadow: 0 14px 30px oklch(17% 0.04 26 / 0.09);
}

.brand-list a:hover::after {
	color: var(--burgundy);
	transform: translate(2px, -2px);
}

.brand-list strong {
	font-stretch: 112%;
	font-weight: 660;
	font-size: 1.04rem;
	letter-spacing: -0.005em;
	line-height: 1.2;
}

.brand-list span {
	color: var(--muted);
	font-size: 0.86rem;
}

/* Besuch */

.visit {
	display: grid;
	grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
	gap: 3rem;
	align-items: center;
	padding: 5.5rem var(--pad-x);
	background: linear-gradient(160deg, oklch(46% 0.185 28), oklch(36% 0.15 28));
	color: var(--white);
}

.visit .button--light {
	background: oklch(13% 0.01 25);
	color: var(--white);
}

.visit .button--light:hover {
	background: oklch(20% 0.015 25);
}

.visit__media {
	margin: 0;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 30px 60px oklch(10% 0.04 26 / 0.35);
}

.visit__media img {
	width: 100%;
	height: 100%;
	min-height: 300px;
	object-fit: cover;
	filter: saturate(0.92) contrast(1.04);
}

.visit__body {
	display: grid;
	justify-items: start;
	gap: 1rem;
}

.visit h2 {
	max-width: 18ch;
	font-size: clamp(2rem, 3.8vw, 3rem);
	color: var(--white);
}

.visit__body > p {
	color: var(--on-wine-muted);
	font-size: 1.08rem;
}

.visit__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 0.4rem;
}

.hours--visit {
	margin: 0;
	border-top-color: oklch(100% 0 0 / 0.28);
}

.hours--visit div {
	border-bottom-color: oklch(100% 0 0 / 0.28);
}

.hours--visit dt {
	color: oklch(94% 0.01 25);
}

.hours--visit dd {
	color: var(--white);
}

/* Footer */

.footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 1.5rem var(--pad-x);
	border-top: 2px solid var(--burgundy);
	background: oklch(10% 0.008 25);
	color: var(--on-wine-muted);
	font-size: 0.92rem;
}

.footer nav {
	display: flex;
	flex-wrap: wrap;
	gap: 1.2rem;
	justify-content: flex-end;
}

.footer a {
	color: var(--on-wine);
}

/* Reveal */

[data-reveal].is-visible {
	animation: reveal-rise 650ms var(--ease) backwards;
}

@keyframes reveal-rise {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
}

@media (prefers-reduced-motion: no-preference) {
	.hero__content > * {
		animation: hero-rise 800ms var(--ease) backwards;
	}

	.hero__content > *:nth-child(2) {
		animation-delay: 90ms;
	}

	.hero__content > *:nth-child(3) {
		animation-delay: 180ms;
	}

	.hero__content > *:nth-child(4) {
		animation-delay: 270ms;
	}

	.hero__panel {
		animation: hero-rise 800ms var(--ease) 360ms backwards;
	}
}

@keyframes hero-rise {
	from {
		opacity: 0;
		transform: translateY(26px);
	}
}

/* Impressum */

.legal-page {
	background: var(--bg);
	color: var(--ink);
}

.legal-hero,
.legal-content {
	padding-inline: var(--pad-x);
}

.legal-hero {
	padding-top: 9rem;
	padding-bottom: 3rem;
	background: linear-gradient(160deg, var(--wine-deep), var(--wine-deeper));
	color: var(--white);
}

.legal-hero h1 {
	max-width: 900px;
	font-size: clamp(2.2rem, 4.5vw, 3.4rem);
}

.legal-hero .section-kicker {
	margin-bottom: 0.8rem;
	color: var(--gold);
	font-weight: 560;
}

.legal-content {
	display: grid;
	gap: 3rem;
	padding-top: 4rem;
	padding-bottom: 5rem;
}

.legal-block {
	max-width: 76ch;
}

.legal-block h2,
.legal-block h3 {
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.legal-block h2:first-child,
.legal-block h3:first-child {
	margin-top: 0;
}

.legal-block p,
.legal-block address,
.legal-block table {
	margin: 0 0 1rem;
}

.legal-block address {
	font-style: normal;
}

.legal-block table {
	border-collapse: collapse;
}

.legal-block td {
	padding: 0.2rem 1rem 0.2rem 0;
	vertical-align: top;
}


/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition-duration: 1ms !important;
		animation-duration: 1ms !important;
	}

	[data-reveal].is-visible {
		animation: none;
	}
}

/* Responsive */

@media (max-width: 1080px) {
	.hero {
		grid-template-columns: 1fr;
		align-items: start;
		min-height: auto;
		gap: 2.2rem;
	}

	.hero__panel {
		justify-self: start;
	}

	.feature {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.feature--flip .feature__art,
	.feature--flip .feature__media {
		order: 0;
	}

	.feature__media img {
		min-height: 240px;
		max-height: 320px;
	}

	.visit__media img {
		min-height: 220px;
		max-height: 320px;
	}

	.feature__art {
		min-height: 260px;
		padding: 2rem;
	}

	.feature__art svg {
		width: min(60%, 280px);
	}

	.brand-group {
		grid-template-columns: 1fr;
		gap: 1rem;
		padding: 1.8rem 0;
	}

	.visit {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

@media (max-width: 900px) {
	.site-header {
		grid-template-columns: auto auto;
		border-radius: 22px;
	}

	.nav-toggle {
		display: inline-flex;
		justify-self: end;
	}

	.site-nav,
	.header-call {
		grid-column: 1 / -1;
		display: none;
		width: 100%;
	}

	.site-header.nav-open {
		background: oklch(10% 0.008 25 / 0.97);
	}

	.site-header.nav-open .site-nav,
	.site-header.nav-open .header-call {
		display: grid;
	}

	.site-header.nav-open .header-call {
		background: var(--burgundy);
		color: var(--on-wine);
		justify-content: center;
	}

	.site-nav {
		justify-self: stretch;
		gap: 0.2rem;
	}

	.site-nav a {
		width: 100%;
		min-height: 44px;
	}

	.site-header.nav-open .site-nav a:hover {
		background: oklch(100% 0 0 / 0.1);
	}

	.site-header.nav-open .site-nav a.is-active {
		background: var(--burgundy);
	}
}

@media (max-width: 640px) {
	body {
		font-size: 16px;
	}

	.site-header {
		padding: 0.45rem 1rem;
	}

	.hero {
		padding-top: 6.5rem;
		padding-bottom: 2rem;
		gap: 1.8rem;
	}

	.hero h1 {
		font-size: clamp(2.5rem, 11.5vw, 3.1rem);
	}

	.hero__copy {
		font-size: 1.04rem;
	}

	.hero__actions .button {
		width: 100%;
	}

	.hero__panel {
		width: 100%;
		padding: 1.15rem 1.15rem 1rem;
	}

	.collections,
	.brands,
	.visit {
		padding-top: 3.6rem;
		padding-bottom: 3.6rem;
	}

	.collections {
		gap: 1rem;
	}

	.feature__body {
		min-height: 0;
		padding: 1.4rem;
	}

	.brand-list {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
		gap: 0.55rem;
	}

	.brand-list a {
		min-height: 74px;
		padding: 0.8rem 1.8rem 0.8rem 0.9rem;
	}

	.brand-list strong {
		font-size: 0.97rem;
	}

	.brand-list span {
		font-size: 0.82rem;
	}

	.visit__actions {
		width: 100%;
	}

	.visit__actions .button {
		flex: 1 1 100%;
	}

	.footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.6rem;
	}

	.footer nav {
		justify-content: flex-start;
		gap: 0.9rem;
	}
}

/* WordPress specifics */

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

.admin-bar .site-header {
	top: 32px;
}

@media (max-width: 900px) {
	.site-nav ul {
		display: grid;
		width: 100%;
		gap: 0.2rem;
	}

	.site-nav ul a {
		width: 100%;
		min-height: 44px;
	}
}

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}
}

.footer nav li {
	display: contents;
	list-style: none;
}

.legal-content--index {
	padding-top: 8rem;
}

/* Sonderhinweis Öffnungszeiten */

.hours-special {
	margin-top: 0.9rem;
	padding: 0.65rem 0.85rem;
	border: 1px solid oklch(46% 0.185 28 / 0.35);
	border-radius: 8px;
	background: oklch(46% 0.185 28 / 0.07);
	color: var(--burgundy-ink);
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1.45;
}

.hours-special--visit {
	margin-top: 0;
	border-color: oklch(100% 0 0 / 0.35);
	background: oklch(100% 0 0 / 0.12);
	color: var(--white);
}

.visit__note {
	color: oklch(96% 0.008 25);
	font-size: 0.98rem;
	line-height: 1.55;
}

.hours-contact {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 1.1rem;
	padding: 0.78rem 0;
	border-bottom: 1px solid var(--line);
	font-size: 0.98rem;
}

.hours-contact a {
	color: var(--burgundy);
	font-weight: 650;
	text-decoration: none;
	font-variant-numeric: tabular-nums;
}

.hours-contact a:hover {
	text-decoration: underline;
}

.hours-note--voucher {
	margin-top: 0.45rem;
}

/* Schließtage-Ankündigung */

.hours-closures {
	display: grid;
	gap: 0.35rem;
	margin-top: 0.9rem;
	padding: 0.65rem 0.85rem;
	border: 1px solid oklch(40% 0.15 27 / 0.25);
	border-radius: 8px;
	background: oklch(40% 0.15 27 / 0.06);
	font-size: 0.93rem;
	line-height: 1.45;
}

.hours-closures p {
	color: var(--burgundy-ink);
}

.hours-closures strong {
	font-weight: 680;
	font-variant-numeric: tabular-nums;
}

/* Header-Dropdowns */

.site-nav li {
	position: relative;
	list-style: none;
}

.site-nav li.menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 0.42em;
	height: 0.42em;
	margin-left: 0.45em;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-0.15em) rotate(45deg);
	opacity: 0.7;
}

.site-nav .sub-menu {
	position: absolute;
	top: calc(100% + 0.4rem);
	left: 50%;
	transform: translateX(-50%) translateY(4px);
	display: grid;
	gap: 0.1rem;
	min-width: 200px;
	margin: 0;
	padding: 0.45rem;
	list-style: none;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: var(--white);
	box-shadow: 0 18px 44px oklch(15% 0.04 26 / 0.18);
	opacity: 0;
	visibility: hidden;
	transition: opacity 160ms var(--ease), transform 160ms var(--ease), visibility 160ms;
	z-index: 50;
}

.site-nav li:hover > .sub-menu,
.site-nav li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.site-nav .sub-menu::before {
	content: "";
	position: absolute;
	top: -0.45rem;
	left: 0;
	right: 0;
	height: 0.5rem;
}

.site-nav .sub-menu a {
	display: flex;
	width: 100%;
	min-height: 40px;
	padding: 0.45rem 0.8rem;
	border-radius: 9px;
	color: var(--ink);
	font-weight: 540;
	opacity: 1;
}

.site-nav .sub-menu a:hover {
	background: oklch(40% 0.15 27 / 0.08);
	color: var(--burgundy-ink);
}

@media (max-width: 900px) {
	.site-nav .sub-menu {
		position: static;
		transform: none;
		opacity: 1;
		visibility: visible;
		min-width: 0;
		padding: 0 0 0.35rem 0.9rem;
		border: 0;
		border-left: 2px solid oklch(40% 0.15 27 / 0.18);
		border-radius: 0;
		background: transparent;
		box-shadow: none;
	}

	.site-nav .sub-menu a {
		color: currentColor;
	}

	.site-nav li.menu-item-has-children > a::after {
		display: none;
	}
}
