/* ============================================================
   Mokana Woonwinkel — Styles
   Scoped under .mokana-woonwinkel to avoid Blocksy conflicts
   ============================================================ */

/* ── Design Tokens ── */
.mokana-woonwinkel {
	--mw-gold: #c8a96e;
	--mw-gold-dark: #b8954f;
	--mw-gold-light: #e4d1ac;
	--mw-black: #121212;
	--mw-text: #202023;
	--mw-bg: #f5f3f1;
	--mw-bg-warm: #f0ebe5;
	--mw-white: #ffffff;
	--mw-radius: 16px;
	--mw-radius-sm: 8px;
	--mw-radius-pill: 50px;

	color: var(--mw-text);
	-webkit-font-smoothing: antialiased;
}

/* ── Blocksy overrides ── */
.page-template-page-woonwinkel .site-main,
.page-template-page-woonwinkel .entry-content,
.page-template-page-woonwinkel .content-area {
	padding: 0 !important;
	max-width: 100% !important;
	margin: 0 !important;
}

/* ── Shared Typography ── */
.mw-label {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--mw-gold);
	margin-bottom: 16px;
}
.mw-label--light { color: var(--mw-gold-light); }

.mw-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 700;
	color: var(--mw-black);
	margin-bottom: 20px;
	line-height: 1.25;
}
.mw-title--light { color: #faf9f6; }
.mw-title--white { color: var(--mw-white); }

.mw-text {
	font-size: 16px;
	color: #555;
	max-width: 640px;
	line-height: 1.85;
}

.mw-section__header .mw-text {
	margin: 0 auto;
}

/* ── Section Base ── */
.mw-section {
	padding: 100px 40px;
}
/* Inner content constrained, backgrounds full-bleed */
.mw-section > * {
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
}

/* ── GSAP Reveal States ── */
.gsap-ready .mw-reveal,
.gsap-ready .mw-stagger__child {
	opacity: 0;
	transform: translateY(28px);
}
.gsap-ready .mw-reveal--left {
	opacity: 0;
	transform: translateX(-40px);
}
.gsap-ready .mw-reveal--right {
	opacity: 0;
	transform: translateX(40px);
}

/* ── Buttons ── */
.mw-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 36px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--mw-radius-pill);
	cursor: pointer;
	border: none;
	letter-spacing: 0.5px;
	font-family: 'Inter', sans-serif;
	position: relative;
	overflow: hidden;
	transition: box-shadow 0.4s ease;
	isolation: isolate;
}
.mw-btn__text {
	position: relative;
	z-index: 2;
}
.mw-btn__shine {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
	z-index: 1;
	transition: none;
}
.mw-btn:hover .mw-btn__shine {
	animation: mwBtnShine 0.6s ease forwards;
}
@keyframes mwBtnShine {
	0% { left: -100%; }
	100% { left: 100%; }
}

/* Primary */
.mw-btn--primary {
	background: linear-gradient(135deg, var(--mw-gold), var(--mw-gold-dark));
	color: var(--mw-white);
	box-shadow: 0 4px 15px rgba(200,169,110,0.2);
}
.mw-btn--primary:hover {
	box-shadow: 0 12px 35px rgba(200,169,110,0.45), 0 0 20px rgba(200,169,110,0.15);
	color: var(--mw-white);
}

/* Outline */
.mw-btn--outline {
	background: rgba(255,255,255,0.05);
	color: var(--mw-white);
	border: 2px solid rgba(255,255,255,0.4);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.mw-btn--outline:hover {
	border-color: rgba(255,255,255,0.8);
	background: rgba(255,255,255,0.12);
	box-shadow: 0 8px 30px rgba(255,255,255,0.1);
	color: var(--mw-white);
}

/* Gold */
.mw-btn--gold {
	background: linear-gradient(135deg, var(--mw-gold), var(--mw-gold-dark));
	color: var(--mw-white);
	box-shadow: 0 4px 15px rgba(200,169,110,0.2);
}
.mw-btn--gold:hover {
	box-shadow: 0 12px 35px rgba(200,169,110,0.45);
	color: var(--mw-white);
}

/* Dark */
.mw-btn--dark {
	background: var(--mw-black);
	color: var(--mw-white);
}
.mw-btn--dark:hover {
	background: #2a2a2a;
	box-shadow: 0 12px 30px rgba(0,0,0,0.3);
	color: var(--mw-white);
}

/* Small */
.mw-btn--sm {
	padding: 10px 20px;
	font-size: 12px;
}

/* Magnetic (JS-driven, CSS base) */
.mw-btn--magnetic { will-change: auto; }
.mw-btn:hover,
.mw-btn:active { transform: none !important; }

/* Ripple */
.mw-btn__ripple {
	position: absolute;
	border-radius: 50%;
	background: rgba(255,255,255,0.3);
	transform: scale(0);
	animation: mwRipple 0.6s ease-out;
	pointer-events: none;
	z-index: 1;
}
@keyframes mwRipple {
	to { transform: scale(4); opacity: 0; }
}

/* ── Tag ── */
.mw-tag {
	background: var(--mw-bg);
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 12px;
	color: #555;
	font-weight: 500;
}

/* ============================================================
   HERO
   ============================================================ */
.mw-hero {
	position: relative;
	height: 85vh;
	min-height: 600px;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
}
.mw-hero__image {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transform: scale(1.06);
}
.mw-hero__overlay {
	content: '';
	position: absolute;
	inset: 0;
	background: #121212;
	z-index: 1;
}
.mw-hero__content {
	position: relative;
	z-index: 2;
	padding: 0 80px 100px;
	max-width: 900px;
	color: var(--mw-white);
	text-align: center;
	margin: 0 auto;
}
.mw-hero__title {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(34px, 4.5vw, 56px);
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 36px;
	color: var(--mw-white);
}
.mw-hero__buttons {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: center;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.mw-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: var(--mw-white);
	border-bottom: 3px solid var(--mw-gold);
}
.mw-stats__item {
	text-align: center;
	padding: 36px 24px;
	border-right: 1px solid #eee;
}
.mw-stats__item:last-child { border-right: none; }
.mw-stats__number {
	font-family: 'Cormorant Garamond', serif;
	font-size: 30px;
	font-weight: 700;
	color: var(--mw-gold);
	margin-bottom: 4px;
}
.mw-stats__label {
	font-size: 13px;
	color: #777;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

/* ============================================================
   MAP SECTION (dark)
   ============================================================ */
.mw-map {
	background: #111;
	padding: 80px 40px;
	position: relative;
	overflow: hidden;
}
.mw-map::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 68% 50%, rgba(200,169,110,0.12) 0%, transparent 55%),
		linear-gradient(180deg, #0e0c0a 0%, #151310 50%, #0e0c0a 100%);
	pointer-events: none;
}
.mw-map__grid {
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 80px;
	align-items: center;
	position: relative;
	z-index: 1;
	max-width: 1280px;
	margin: 0 auto;
}
.mw-map__text .mw-label { color: var(--mw-gold); }
.mw-map__text p {
	color: rgba(255,255,255,0.6);
	font-size: 16px;
	line-height: 1.85;
	margin-bottom: 16px;
}
.mw-map__text .mw-btn--gold { margin-top: 12px; }
.mw-map__visual {
	position: relative;
	display: flex;
	justify-content: center;
}
.mw-map__visual img {
	width: 100%;
	max-width: 580px;
	height: auto;
	border-radius: 12px;
}

/* ============================================================
   SHOWROOMS
   ============================================================ */
.mw-showrooms { background: var(--mw-bg); }
.mw-showrooms__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-top: 60px;
}
.mw-showrooms__card {
	background: var(--mw-white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 30px rgba(0,0,0,0.06);
	transition: transform 0.3s, box-shadow 0.3s;
}
.mw-showrooms__card:hover {
	box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.mw-showrooms__image {
	height: 320px;
	overflow: hidden;
	position: relative;
}
.mw-showrooms__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s;
}
.mw-showrooms__card:hover .mw-showrooms__image img {
	transform: scale(1.05);
}
.mw-showrooms__tag {
	position: absolute;
	top: 20px;
	left: 20px;
	background: var(--mw-white);
	padding: 6px 16px;
	border-radius: 30px;
	font-size: 12px;
	font-weight: 600;
	color: var(--mw-gold);
	box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.mw-showrooms__body {
	padding: 32px;
}
.mw-showrooms__body h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 12px;
}
.mw-showrooms__body p {
	font-size: 15px;
	color: #666;
	line-height: 1.8;
	margin-bottom: 20px;
}
.mw-showrooms__highlights {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

/* ============================================================
   COLLECTIONS
   ============================================================ */
.mw-collections { background: var(--mw-white); }
.mw-collections__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 60px;
}
.mw-collections__card {
	background: var(--mw-bg);
	border-radius: var(--mw-radius);
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s;
	text-decoration: none;
	color: inherit;
	display: block;
	border: 1px solid #ebe7e1;
}
.mw-collections__card:hover {
	box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.mw-collections__card-img {
	aspect-ratio: 16/10;
	overflow: hidden;
}
.mw-collections__card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}
.mw-collections__card:hover .mw-collections__card-img img {
	transform: scale(1.06);
}
.mw-collections__card-body {
	padding: 24px;
}
.mw-collections__card-body h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 8px;
}
.mw-collections__card-body p {
	font-size: 14px;
	color: #666;
	line-height: 1.7;
	margin-bottom: 16px;
}
.mw-collections__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--mw-gold);
	letter-spacing: 0.3px;
}
.mw-collections__link svg { transition: transform 0.3s; }
.mw-collections__card:hover .mw-collections__link svg {
	transform: translateX(4px);
}

/* ============================================================
   STYLES
   ============================================================ */
.mw-styles { background: var(--mw-bg); }
.mw-styles__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
	margin-top: 48px;
}
.mw-styles__card {
	text-align: center;
	padding: 36px 16px;
	border-radius: var(--mw-radius);
	background: var(--mw-white);
	border: 1px solid #ebe7e1;
	transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
	cursor: pointer;
}
.mw-styles__card:hover {
	border-color: var(--mw-gold);
	box-shadow: 0 8px 24px rgba(200,169,110,0.1);
}
.mw-styles__icon {
	width: 52px;
	height: 52px;
	background: var(--mw-bg);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 14px;
	font-size: 22px;
}
.mw-styles__card h3 {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 4px;
}
.mw-styles__card p {
	font-size: 12px;
	color: #888;
	line-height: 1.5;
}

/* ============================================================
   EXPERIENCE (gold bg)
   ============================================================ */
.mw-experience {
	background: var(--mw-gold);
	color: var(--mw-white);
	padding: 80px 40px;
	text-align: center;
}
.mw-experience__intro {
	font-size: 17px;
	opacity: 0.9;
	max-width: 700px;
	margin: 0 auto 40px;
	line-height: 1.8;
}
.mw-experience__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	max-width: 1100px;
	margin: 0 auto;
}
.mw-experience__item { text-align: center; }
.mw-experience__icon {
	width: 60px;
	height: 60px;
	background: rgba(255,255,255,0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	font-size: 22px;
}
.mw-experience__icon--img {
	background: none;
	width: auto;
	min-width: 60px;
	height: auto;
}
.mw-experience__icon--img img {
	height: 48px;
	width: auto;
}
.mw-experience__item h4 {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 6px;
}
.mw-experience__item p {
	font-size: 13px;
	opacity: 0.8;
}

/* ============================================================
   GERMAN SECTION
   ============================================================ */
.mw-german { background: var(--mw-white); }
.mw-german__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.mw-german__content p {
	font-size: 16px;
	color: #555;
	line-height: 1.85;
	margin-bottom: 16px;
}
.mw-german__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}
.mw-german__badge {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	background: var(--mw-bg);
	border-radius: var(--mw-radius-pill);
	font-size: 13px;
	color: #555;
	font-weight: 500;
}
.mw-german__badge strong { color: var(--mw-text); }

/* Map card */
.mw-german__map-card {
	background: var(--mw-bg);
	border-radius: 20px;
	padding: 40px;
	text-align: center;
}
.mw-german__svg {
	width: 180px;
	height: auto;
	margin: 0 auto 16px;
	display: block;
}
.mw-german__map-card h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 24px;
	margin-bottom: 12px;
}
.mw-german__map-card > p {
	font-size: 14px;
	color: #666;
	line-height: 1.7;
}
.mw-german__address {
	margin-top: 24px;
	padding: 20px;
	background: var(--mw-white);
	border-radius: 14px;
}
.mw-german__address-label {
	font-size: 13px;
	color: #888;
	margin-bottom: 4px;
}
.mw-german__address-street {
	font-size: 15px;
	font-weight: 600;
	color: var(--mw-text);
}
.mw-german__address-city {
	font-size: 14px;
	color: #666;
}

/* ============================================================
   VISIT / HOURS
   ============================================================ */
.mw-visit { background: var(--mw-bg); }
.mw-visit__grid {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 60px;
	margin-top: 50px;
}
.mw-visit__address {
	background: var(--mw-white);
	padding: 28px;
	border-radius: var(--mw-radius);
	margin-bottom: 32px;
	box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.mw-visit__address h4 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--mw-gold);
	text-transform: uppercase;
	letter-spacing: 1px;
}
.mw-visit__address p {
	font-size: 15px;
	color: #555;
	line-height: 1.7;
}
.mw-visit__hours-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
}
.mw-visit__hours {
	width: 100%;
	border-collapse: collapse;
	border: none !important;
}
.mw-visit__hours tr {
	border: none !important;
	border-bottom: 1px solid #e8e4df !important;
}
.mw-visit__hours tr:last-child { border-bottom: none !important; }
.mw-visit__hours td {
	padding: 12px 0 !important;
	font-size: 14px;
	border: none !important;
	background: transparent !important;
}
.mw-visit__hours td:first-child {
	font-weight: 500;
	color: var(--mw-text);
}
.mw-visit__hours td:last-child {
	text-align: right;
	color: #666;
	font-variant-numeric: tabular-nums;
}
.mw-visit__koop-title {
	font-size: 16px;
	font-weight: 600;
	margin: 28px 0 14px;
}
.mw-visit__koop-intro {
	font-size: 14px;
	color: #666;
	margin-bottom: 14px;
}
.mw-visit__koop-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px 24px;
	margin-bottom: 8px;
}
.mw-visit__koop-item {
	display: flex;
	justify-content: space-between;
	padding: 8px 12px;
	background: var(--mw-bg);
	border-radius: var(--mw-radius-sm);
	font-size: 13px;
}
.mw-visit__koop-item span:first-child { color: #555; }
.mw-visit__koop-item span:last-child { font-weight: 600; color: var(--mw-text); }

/* Map embed */
.mw-visit__map {
	border-radius: 20px;
	overflow: hidden;
	height: 100%;
	min-height: 460px;
	box-shadow: 0 4px 30px rgba(0,0,0,0.08);
	position: relative;
	background: #e8e4df;
}
.mw-visit__map iframe {
	width: 100%;
	height: 100%;
	border: none;
	position: absolute;
	inset: 0;
}
.mw-visit__map-overlay {
	position: absolute;
	bottom: 24px;
	left: 24px;
	background: var(--mw-white);
	padding: 20px 24px;
	border-radius: 14px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.15);
	max-width: 280px;
	z-index: 2;
}
.mw-visit__map-overlay h4 {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 4px;
}
.mw-visit__map-overlay p {
	font-size: 13px;
	color: #666;
	margin-bottom: 12px;
	line-height: 1.5;
}

/* ============================================================
   FAQ
   ============================================================ */
section.mw-faq.mw-section {
	background: var(--mw-white) !important;
	padding: 80px 40px;
}
.mw-faq__list {
	max-width: 780px;
	margin: 48px auto 0;
}
.mw-faq__item {
	border-bottom: 1px solid #e8e4df;
	background: var(--mw-white) !important;
}
.mw-faq__item:first-child { border-top: 1px solid #e8e4df; }
.mw-faq__question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	background: transparent !important;
	border: none;
	width: 100%;
	text-align: left;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: var(--mw-text) !important;
	padding: 20px 0;
	line-height: 1.5;
}
.mw-faq__question:hover { color: var(--mw-gold) !important; }
.mw-faq__question:focus { outline: none; }
.mw-faq__question:focus-visible { outline: 2px solid var(--mw-gold); outline-offset: 2px; }
.mw-faq__question svg {
	flex-shrink: 0;
	margin-left: 16px;
	transition: transform 0.3s;
	color: var(--mw-gold);
}
.mw-faq__answer {
	height: 0;
	overflow: hidden;
	background: transparent !important;
}
.mw-faq__answer-inner {
	padding-bottom: 20px;
	color: #555 !important;
	line-height: 1.85;
	font-size: 15px;
	background: transparent !important;
}
.mw-faq__item.is-open .mw-faq__question svg {
	transform: rotate(45deg);
}

/* ============================================================
   CONTACT CTA
   ============================================================ */
.mw-contact {
	background: var(--mw-bg-warm);
	padding: 80px 40px;
	text-align: center;
}
.mw-contact__inner {
	max-width: 1280px;
	margin: 0 auto;
}
.mw-contact .mw-title { margin-bottom: 12px; }
.mw-contact__intro {
	font-size: 16px;
	color: #666;
	margin-bottom: 32px;
}
.mw-contact__methods {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
}
.mw-contact__card {
	background: var(--mw-white);
	padding: 24px 32px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	gap: 16px;
	box-shadow: 0 2px 16px rgba(0,0,0,0.05);
	transition: transform 0.2s, box-shadow 0.2s;
	text-decoration: none;
	color: inherit;
}
.mw-contact__card:hover {
	box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
.mw-contact__icon {
	width: 48px;
	height: 48px;
	background: var(--mw-gold);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--mw-white);
	font-size: 20px;
	flex-shrink: 0;
}
.mw-contact__card h4 {
	font-size: 13px;
	color: #999;
	font-weight: 500;
}
.mw-contact__card p {
	font-size: 15px;
	font-weight: 600;
	color: var(--mw-text);
}

/* ============================================================
   SEO HIDDEN SUMMARY
   ============================================================ */
.mw-seo-summary {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
}

/* ============================================================
   RESPONSIVE — Tablet (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
	.mw-section { padding: 70px 40px; }
	.mw-hero__content { padding: 0 40px 60px; }
	.mw-map { padding: 60px 40px; }
	.mw-map__grid,
	.mw-german__grid { grid-template-columns: 1fr; gap: 48px; }
	.mw-map__visual { order: -1; }
	.mw-showrooms__grid { grid-template-columns: 1fr; }
	.mw-collections__grid { grid-template-columns: repeat(2, 1fr); }
	.mw-styles__grid { grid-template-columns: repeat(3, 1fr); }
	.mw-stats { grid-template-columns: repeat(2, 1fr); }
	.mw-visit__grid { grid-template-columns: 1fr; gap: 40px; }
	.mw-experience { padding: 60px 40px; }
	.mw-experience__grid { grid-template-columns: repeat(2, 1fr); }
	.mw-contact { padding: 60px 40px; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤640px)
   ============================================================ */
@media (max-width: 640px) {
	.mw-section { padding: 50px 20px; }
	.mw-hero { min-height: 500px; height: 70vh; }
	.mw-hero__content { padding: 0 20px 40px; }
	.mw-map { padding: 50px 20px; }
	.mw-stats { grid-template-columns: 1fr 1fr; }
	.mw-collections__grid { grid-template-columns: 1fr; }
	.mw-styles__grid { grid-template-columns: repeat(2, 1fr); }
	.mw-experience { padding: 50px 20px; }
	.mw-experience__grid { grid-template-columns: 1fr; gap: 24px; }
	.mw-contact { padding: 50px 20px; }
	.mw-contact__methods { flex-direction: column; align-items: center; }
	.mw-contact__card { width: 100%; max-width: 320px; }
	.mw-german__badges { flex-direction: column; }
	.mw-hero__buttons { flex-direction: column; align-items: center; }
	.mw-visit__map { min-height: 300px; }
}
