:root {
	--morelo-font-system: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	--morelo-font-primary: "GoodHeadPro", var(--morelo-font-system);
	--morelo-font-body: "GoodHeadPro News", var(--morelo-font-primary);
}

@font-face {
	font-family: "GoodHeadPro";
	src: url("../fonts/GoodHeadPro-Light.ttf") format("truetype");
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "GoodHeadPro";
	src: url("../fonts/GoodHeadPro-LightItalic.ttf") format("truetype");
	font-weight: 300;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "GoodHeadPro";
	src: url("../fonts/GoodHeadPro.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "GoodHeadPro";
	src: url("../fonts/GoodHeadPro-Italic.ttf") format("truetype");
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "GoodHeadPro";
	src: url("../fonts/GoodHeadPro-Medium.ttf") format("truetype");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "GoodHeadPro";
	src: url("../fonts/GoodHeadPro-MediumItalic.ttf") format("truetype");
	font-weight: 500;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "GoodHeadPro";
	src: url("../fonts/GoodHeadPro-Bold.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "GoodHeadPro";
	src: url("../fonts/GoodHeadPro-BoldItalic.ttf") format("truetype");
	font-weight: 700;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "GoodHeadPro";
	src: url("../fonts/GoodHeadPro-Black.ttf") format("truetype");
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "GoodHeadPro";
	src: url("../fonts/GoodHeadPro-BlackItalic.ttf") format("truetype");
	font-weight: 900;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "GoodHeadPro News";
	src: url("../fonts/GoodHeadPro-News.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "GoodHeadPro News";
	src: url("../fonts/GoodHeadPro-NewsItalic.ttf") format("truetype");
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

:root {
	--morelo-bg: #0b0f19;
	--morelo-surface: #111827;
	--morelo-text: #e5e7eb;
	--morelo-muted: #9ca3af;
	--morelo-brand: #f97316;
	--morelo-border: rgba(255, 255, 255, 0.08);
	--morelo-radius: 14px;
	--morelo-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
	--morelo-header-h: 88px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	color-scheme: light;
}

body {
	margin: 0;
	font-family: var(--morelo-font-body);
	line-height: 1.6;
	background: #fff;
	color: #0b0f19;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	border-bottom: 1px solid var(--morelo-border);
	backdrop-filter: blur(10px);
	background: #000;
	overflow: visible;
	color: #fff;
}

.site-header a {
	color: #fff;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: var(--morelo-header-h);
}

.header-inner--3col {
	display: grid;
	grid-template-columns: minmax(180px, 260px) 1fr;
	gap: 18px;
}

.header-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
}

.site-branding {
	position: relative;
	display: flex;
	align-items: center;
	height: var(--morelo-header-h);
}

.custom-logo {
	width: auto;
	height: calc(var(--morelo-header-h) * 2);
	max-height: none;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	transform: none;
	transition: height 260ms ease;
}

.custom-logo-link {
	display: block;
	position: relative;
	width: 220px;
	height: var(--morelo-header-h);
}

.site-header.is-scrolled .custom-logo {
	height: 62px;
}

/* When search is open, ensure logo doesn't overlap the search row */
.site-header.is-search-open .custom-logo {
	height: 62px;
}

/* Mobile: when logo shrinks on scroll, center it vertically in the navbar */
@media (max-width: 980px) {
	.site-header.is-scrolled .custom-logo {
		top: 50%;
		transform: translateY(-50%);
	}
}

.site-title {
	font-weight: 700;
	letter-spacing: 0.2px;
}

.site-nav ul {
	display: flex;
	gap: 12px;
	list-style: none;
	padding: 0;
	margin: 0;
	justify-content: flex-end;
}

.site-nav a {
	display: inline-flex;
	align-items: center;
	padding: 10px 14px;
	border-radius: 999px;
	border: 1px solid transparent;
	font-size: 0.95rem;
	font-weight: 500;
	letter-spacing: 0.2px;
	text-transform: none;
	white-space: nowrap;
}

.site-nav a:hover {
	text-decoration: none;
	border-color: var(--morelo-border);
	background: rgba(255, 255, 255, 0.06);
}

.site-nav .menu-item-has-children {
	position: relative;
}

.site-nav .menu-item-has-children > a::after {
	content: "▾";
	font-size: 0.8em;
	margin-left: 8px;
	opacity: 0.8;
}

.site-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	padding: 10px;
	border-radius: 14px;
	border: 1px solid var(--morelo-border);
	background: rgba(0, 0, 0, 0.9);
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
	display: none;
	flex-direction: column;
	gap: 6px;
	z-index: 50;
}

.site-nav .menu-item-has-children::after {
	/* Hover bridge: prevents submenu from "disappearing" while moving cursor down */
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: 12px;
}

.header-right .site-nav .menu-item-has-children > .sub-menu {
	/* In right-aligned header, align dropdown to the right edge of parent item */
	left: auto;
	right: 0;
}

.site-nav .sub-menu a {
	border-radius: 12px;
	padding: 10px 12px;
	width: 100%;
}

.site-nav .menu-item-has-children:hover > .sub-menu,
.site-nav .menu-item-has-children:focus-within > .sub-menu {
	display: flex;
}

.header-utility {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}

.utility-link--menu {
	display: none;
}

.utility-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.04);
	color: var(--morelo-text);
	cursor: pointer;
	line-height: 0;
}

.utility-link .icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
}

.utility-link .icon svg {
	display: block;
}

/* Optical centering for phone icon (SVG looks slightly top/left by default) */
.utility-link--phone .icon {
	transform: translateY(0.5px);
}

.utility-link:hover {
	text-decoration: none;
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.22);
}

.header-lang {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.lang-toggle,
.lang-static {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 0 12px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.04);
	color: var(--morelo-text);
	font-weight: 600;
	letter-spacing: 0.6px;
}

.lang-toggle {
	cursor: pointer;
}

.lang-toggle::after {
	content: "▾";
	font-size: 0.8em;
	margin-left: 8px;
	opacity: 0.8;
}

.lang-menu {
	position: absolute;
	right: 0;
	top: calc(100% + 10px);
	min-width: 110px;
	padding: 8px;
	margin: 0;
	list-style: none;
	border-radius: 14px;
	border: 1px solid var(--morelo-border);
	background: rgba(0, 0, 0, 0.9);
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
	display: none;
}

.header-lang:hover .lang-menu,
.header-lang:focus-within .lang-menu {
	display: block;
}

.lang-menu a {
	display: block;
	padding: 10px 12px;
	border-radius: 12px;
	border: 1px solid transparent;
}

.lang-menu a:hover {
	text-decoration: none;
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.12);
}

.header-search {
	border-top: 1px solid var(--morelo-border);
	background: rgba(0, 0, 0, 0.85);
	position: relative;
	z-index: 60;
}

.header-search-inner {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	justify-content: flex-end;
}

.header-search-form {
	flex: 1;
	max-width: 560px;
}

.header-search-form form {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: flex-end;
}

.header-search-form input[type="search"] {
	flex: 1;
	min-height: 42px;
	padding: 10px 14px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(17, 24, 39, 0.4);
	color: var(--morelo-text);
	outline: none;
}

.header-search-form input[type="search"]::placeholder {
	color: rgba(229, 231, 235, 0.65);
}

.header-search-close {
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.04);
	color: var(--morelo-text);
	cursor: pointer;
	font-size: 22px;
	line-height: 1;
}

.header-search-close:hover {
	background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 980px) {
	.header-inner--3col {
		grid-template-columns: 1fr auto;
	}
	.header-right .site-nav {
		display: none;
	}
	.utility-link--menu {
		display: inline-flex;
	}
	/* On mobile, search lives inside the mobile menu panel */
	.utility-link--search {
		display: none;
	}
}

@media (min-width: 981px) {
	.utility-link--menu {
		display: none !important;
	}
}

/* Mobile menu (simple dropdown from top) */
.mobile-menu[hidden] {
	display: none;
}

.mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: block;
}

.mobile-menu__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	opacity: 0;
	transition: opacity 220ms ease;
}

.mobile-menu__panel {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	max-height: 85vh;
	background: #000;
	color: #fff;
	transform: translateY(-110%);
	transition: transform 260ms ease;
	padding: 14px 18px 22px;
	overflow-y: auto;
}

.mobile-menu.is-open .mobile-menu__backdrop {
	opacity: 1;
}

.mobile-menu.is-open .mobile-menu__panel {
	transform: translateY(0);
}

body.mobile-menu-open {
	overflow: hidden;
}

.mobile-menu__top {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 10px;
}

.mobile-menu__close {
	width: 44px;
	height: 44px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.04);
	color: #fff;
	cursor: pointer;
	font-size: 26px;
	line-height: 1;
	display: grid;
	place-items: center;
}

.mobile-menu__search {
	padding: 6px 0 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	margin-bottom: 12px;
}

.mobile-menu__search form {
	display: flex;
	gap: 10px;
}

.mobile-menu__search input[type="search"] {
	flex: 1;
	min-height: 44px;
	padding: 10px 14px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	outline: none;
}

.mobile-menu__search input[type="search"]::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.mobile-menu__search input[type="submit"],
.mobile-menu__search button,
.mobile-menu__search .search-submit {
	border-radius: 999px;
	padding: 10px 14px;
	background: rgba(255, 255, 255, 0.10);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 6px;
}

.mobile-nav li {
	display: block;
}

.mobile-nav .menu-item-has-children {
	display: flex;
	align-items: center;
	gap: 10px;
}

.mobile-nav .menu-item-has-children > a {
	flex: 1;
}

.mobile-nav a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 12px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.10);
	background: rgba(255, 255, 255, 0.02);
	color: #fff;
	text-decoration: none;
}

.mobile-nav a:hover {
	background: rgba(255, 255, 255, 0.05);
}

.mobile-nav .sub-menu {
	display: none;
	margin-left: 10px;
	margin-top: 6px;
	padding-left: 10px;
	border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav .menu-item.is-expanded {
	flex-wrap: wrap;
}

.mobile-nav .menu-item.is-expanded > .sub-menu {
	width: 100%;
}

.mobile-nav .menu-item.is-expanded > .sub-menu {
	display: grid;
}

.mobile-submenu-toggle {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.04);
	color: #fff;
	cursor: pointer;
	display: grid;
	place-items: center;
	margin-left: 10px;
	flex: 0 0 auto;
}

.mobile-submenu-toggle::before {
	content: "▾";
	font-size: 16px;
	line-height: 1;
}

.mobile-nav .menu-item.is-expanded > .mobile-submenu-toggle::before {
	content: "▴";
}
.hero {
	position: relative;
	padding: 0;
}

.hero-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 0 20px var(--hero-cut);
	z-index: 3;
	height: 100%;
	width: 100%;
	max-width: 1092px;
	margin: 0 auto;
}

.hero--morelo {
	background: #000;
}

.hero--morelo {
	--hero-cut: 160px;
	--hero-apex: 62%;
	position: relative;
	overflow: hidden;
	height: min(calc(100vh - var(--morelo-header-h)), 1000px);
}

@media (max-width: 900px) {
	.hero--morelo {
		--hero-cut: 110px;
		--hero-apex: 58%;
	}
}

.hero--morelo::after {
	/* White triangle overlay (video continues behind it) */
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	/* overlap by 1px to avoid hairline on some mobile browsers */
	bottom: -1px;
	height: calc(var(--hero-cut) + 2px);
	background: #fff;
	clip-path: polygon(0 100%, 100% 100%, var(--hero-apex) 0);
	z-index: 2;
	pointer-events: none;
}

.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	filter: saturate(1.05) contrast(1.05);
}

.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0.05) 100%);
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 1080px;
	color: #fff;
	text-align: left;
}

.hero-kicker {
	margin: 0 0 10px;
	font-size: clamp(1.2rem, 2.0vw, 2.3rem);
	font-weight: 300;
	letter-spacing: 1px;
	text-transform: uppercase;
	opacity: 0.92;
}

.hero-title {
	margin: 0;
	font-size: clamp(2.4rem, 5.2vw, 4.6rem);
	line-height: 1.02;
	font-weight: 800;
	letter-spacing: 0.6px;
	text-transform: uppercase;
}

.hero-text {
	margin: 16px 0 0;
	max-width: 62ch;
	color: rgba(255, 255, 255, 0.85);
}

.hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	margin-top: 34px;
	padding: 14px 20px;
	color: #fff;
	text-decoration: none;
	position: relative;
	isolation: isolate;
}

.hero-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	border: 2px solid rgba(255, 255, 255, 0.75);
	transform: skewX(-16deg);
	z-index: -1;
}

.hero-cta:hover {
	text-decoration: none;
}

.hero-cta:hover::before {
	border-color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 900px) {
	.hero-overlay {
		background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.30) 70%, rgba(0, 0, 0, 0.10) 100%);
	}
}

.site-main {
	padding: 0;
	background: #fff;
	color: #0b0f19;
}

.section-head {
	margin: 0 0 22px;
}

.section-head--center {
	text-align: center;
}

.section-kicker {
	margin: 0 0 16px;
	letter-spacing: 2.6px;
	font-weight: 500;
	color: rgba(0, 0, 0, 0.7);
	text-transform: uppercase;
}

.section-title {
	margin: 0;
	font-size: clamp(1.8rem, 2.6vw, 2.4rem);
	line-height: 1.1;
	letter-spacing: 0.6px;
	font-weight: 800;
	color: #000;
	text-transform: uppercase;
}

.models-section {
	padding: 48px 0 60px;
	background: #ffffff;
	color: #000;
}

.models-section .section-title {
	margin-bottom: 76px;
}

.models-container {
	max-width: 1092px;
}

.news-container {
	max-width: 1092px;
}

.events-section {
	background: #fff;
	color: #000;
	padding: 46px 0 24px;
}

.events-container {
	max-width: 1092px;
}

.events-bleed {
	width: 100%;
}

.events-viewport {
	/* 1080px stage + "peek" (half slide) on both sides, centered */
	--events-stage: 1080px;
	--events-peek: 180px;
	padding: 0;
	width: min(100%, calc(var(--events-stage) + (var(--events-peek) * 2)));
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.events-viewport::before,
.events-viewport::after {
	/* Fade peeks smoothly into white (without changing opacity of the 3 visible slides) */
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: var(--events-peek);
	z-index: 120;
	pointer-events: none;
}

.events-viewport::before {
	left: 0;
	background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.events-viewport::after {
	right: 0;
	background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.events-nav {
	position: absolute;
	inset: 0;
	z-index: 200;
	pointer-events: none;
}

.events-slick {
	/* fill viewport (stage + peeks) */
	width: 100%;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.events-slick .event-slide {
	padding: 0 12px;
}

.events-head {
	margin: 0 0 76px;
}

.events-kicker {
	margin: 0;
	font-weight: 300;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.events-title {
	margin: 6px 0 0;
	font-weight: 900;
	letter-spacing: 0.6px;
	text-transform: uppercase;
}

.event-card {
	flex: 0 0 auto;
	width: 100%;
	color: inherit;
	text-decoration: none;
}

@media (max-width: 900px) {
	/* no-op for now */
}

.event-media {
	position: relative;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: #e5e7eb;
}

.event-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1.01);
	transition: transform 350ms ease;
}

.event-image--placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #d1d5db, #f3f4f6);
}

.event-media-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.42) 100%);
}

.event-brand {
	position: absolute;
	top: 14px;
	left: 0;
	right: 0;
	text-align: center;
	color: rgba(255, 255, 255, 0.95);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.event-brand-top {
	display: block;
	font-weight: 700;
	font-size: 0.9rem;
}

.event-brand-bottom {
	display: block;
	font-weight: 900;
	font-size: 1.05rem;
}

.event-badge {
	position: absolute;
	left: 50%;
	bottom: 46px;
	transform: translateX(-50%);
	background: #e11d48;
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 8px 12px;
	font-size: 0.75rem;
}

.event-meta {
	padding-top: 10px;
	font-size: 0.7rem;
	letter-spacing: 0.6px;
	text-transform: uppercase;
}

.event-status {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 800;
}

.event-dot {
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: #16a34a;
	box-shadow: none;
}

.event-status.is-unavailable .event-dot {
	background: #9ca3af;
	box-shadow: none;
}

.event-card:hover .event-image {
	transform: scale(1.06);
}

.events-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border: 0;
	background: transparent;
	cursor: pointer;
	display: grid;
	place-items: center;
	z-index: 1;
	pointer-events: auto;
	padding: 14px 18px;
	color: #000;
}

.events-arrow span {
	font-size: 76px;
	line-height: 1;
	font-weight: 200;
}

.events-prev {
	left: 10px;
}

.events-next {
	right: 10px;
}

@media (max-width: 1200px) {
	.events-viewport {
		--events-peek: 120px;
	}
	.events-prev {
		left: 14px;
	}
	.events-next {
		right: 14px;
	}
}

@media (max-width: 640px) {
	.events-viewport {
		--events-peek: 80px;
	}
}

.events-arrow:hover {
	background: transparent;
	opacity: 0.75;
}

.events-arrow:focus-visible {
	outline: 2px solid rgba(0, 0, 0, 0.35);
	outline-offset: 4px;
}

.models-section--archive {
	padding-top: 28px;
}

.models-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

@media (max-width: 860px) {
	.models-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

.model-card {
	position: relative;
	display: block;
	border-radius: 0;
	overflow: visible;
	transform: translateZ(0);
	color: #fff;
	text-decoration: none;
	background: #000;
}

.model-card:focus,
.model-card:focus-visible {
	outline: none;
}

.model-media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #000;
	/* Keep the V-notch shape stable (not affected by image zoom) */
	--morelo-notch: 44px;
	clip-path: polygon(
		0 0,
		100% 0,
		100% calc(100% - var(--morelo-notch)),
		50% 100%,
		0 calc(100% - var(--morelo-notch))
	);
}

.model-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.02);
	transition: transform 400ms ease, filter 400ms ease;
	display: block;
}

.model-image--placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #d1d5db, #f3f4f6);
}

.model-body {
	position: relative;
	padding: 22px 28px 30px;
	background: #000;
}

/* Teaser text wrapper: no top spacing */
.two-column-teaser-text-wrapper {
	margin-top: 0;
	padding-top: 0;
}

/* Previously we drew the V using pseudo-elements on the text wrapper.
 * The notch is now cut into the image via clip-path (more stable, no gaps).
 */
.two-column-teaser-text-wrapper::before,
.two-column-teaser-text-wrapper::after {
	content: none;
}

.model-title {
	margin: 0 0 10px;
	font-weight: 900;
	font-size: clamp(2rem, 2.8vw, 2.6rem);
	text-transform: uppercase;
	letter-spacing: 0.6px;
	text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.model-tagline {
	margin: 0 0 14px;
	font-size: 0.82rem;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	opacity: 0.85;
}

.model-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 0.3px;
	text-transform: none;
	padding: 12px 18px;
	border: 0;
	background: transparent;
	position: relative;
	isolation: isolate;
}

.model-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, 0.75);
	transform: skewX(-16deg);
	transform-origin: center;
	z-index: -1;
}

.model-cta-arrow {
	transform: translateY(1px);
}

.model-card:hover .model-image {
	transform: scale(1.06);
	filter: saturate(1.05) contrast(1.03);
}

.model-card:hover .model-cta {
	background: rgba(0, 0, 0, 0.28);
}

/* Remove underline hover in model cards (override global a:hover) */
.models-section a:hover,
.models-section a:focus,
.models-section a:focus-visible,
.models-section a:active {
	text-decoration: none;
}

.kamper-hero {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 22px;
	align-items: end;
	margin: 22px 0 18px;
}

@media (max-width: 900px) {
	.kamper-hero {
		grid-template-columns: 1fr;
	}
}

.kamper-hero-media {
	position: relative;
	overflow: hidden;
	border-radius: 18px;
	border: 1px solid var(--morelo-border);
	background: rgba(17, 24, 39, 0.6);
}

.kamper-hero-image {
	width: 100%;
	height: auto;
	display: block;
}

.kamper-title {
	margin: 0;
	font-size: clamp(2rem, 3.2vw, 3rem);
	line-height: 1.05;
}

.kamper-tagline {
	margin: 10px 0 0;
	color: var(--morelo-muted);
	letter-spacing: 1.2px;
	text-transform: uppercase;
	font-size: 0.9rem;
}

.kamper-content {
	margin-top: 14px;
}

.posts-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 18px;
}

.entry {
	grid-column: span 12;
	padding: 18px;
	border-radius: var(--morelo-radius);
	border: 0;
	background: #fff;
	box-shadow: none;
}

@media (min-width: 800px) {
	.entry {
		grid-column: span 6;
	}
	.entry.entry-single {
		grid-column: span 12;
	}
}

.entry-title {
	margin: 0 0 10px;
	text-align: right;
}

.entry-meta {
	display: flex;
	gap: 10px;
	color: rgba(0, 0, 0, 0.55);
	font-size: 0.9rem;
}

.entry-thumbnail img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	margin: 14px 0;
	display: block;
}

.button,
input[type="submit"],
button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 12px;
	background: var(--morelo-brand);
	color: #0b0f19;
	border: 0;
	font-weight: 650;
	cursor: pointer;
}

.button:hover,
input[type="submit"]:hover,
button:hover {
	filter: brightness(1.05);
	text-decoration: none;
}

.widget-area {
	padding: 12px 0 40px;
}

.widget {
	padding: 16px;
	border-radius: var(--morelo-radius);
	border: 0;
	background: #fff;
	box-shadow: none;
}

.site-footer {
	position: relative;
	background: #000;
	color: rgba(255, 255, 255, 0.78);
	padding: 80px 0;
	--footer-cut: 260px;
	--footer-apex: 66%;
	padding-top: calc(80px + var(--footer-cut));
}

.site-footer::before {
	/* Footer starts with a triangle/V shape (white wedge into black) */
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: var(--footer-cut);
	background: #fff;
	clip-path: polygon(0 0, 100% 0, 100% 52%, var(--footer-apex) 100%, 0 52%);
	pointer-events: none;
}

.site-footer a {
	color: #fff;
}

.site-footer a:hover {
	text-decoration: none;
	opacity: 0.9;
}

@media (max-width: 900px) {
	.site-footer {
		--footer-cut: 180px;
		padding: 60px 0;
		padding-top: calc(60px + var(--footer-cut));
	}
}

.footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.footer-container {
	max-width: 1092px;
}

.footer-top {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 28px;
	align-items: center;
}

.footer-brand {
	text-align: left;
}

.footer-logo .custom-logo {
	position: static;
	height: 92px;
}

.footer-tagline {
	margin: 14px 0 0;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.95rem;
}

.footer-contact {
	display: grid;
	grid-template-columns: minmax(240px, 1fr) minmax(200px, 0.9fr) minmax(420px, 2.2fr);
	gap: 22px;
}

.footer-contact-item {
	display: grid;
	grid-template-columns: 26px 1fr;
	gap: 12px;
	align-items: start;
	color: rgba(255, 255, 255, 0.9);
}

.footer-contact-icon {
	color: rgba(255, 255, 255, 0.85);
	margin-top: 2px;
}

.footer-contact-text a {
	color: #fff;
	text-decoration: none;
}

.footer-address-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 6px;
}

.footer-address-grid .footer-nip {
	grid-column: 1 / -1;
}

.footer-nip {
	margin-top: 10px;
	color: rgba(255, 255, 255, 0.85);
}

.footer-email-list {
	display: grid;
	gap: 12px;
}

.footer-email-line a {
	white-space: nowrap;
}

.footer-email-label {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95em;
	display: block;
	margin-top: 2px;
}

@media (max-width: 980px) {
	.footer-address-grid {
		grid-template-columns: 1fr;
	}
}

.footer-divider {
	border: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	margin: 42px 0;
}

.footer-main {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: start;
}

.footer-columns {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 34px;
}

.footer-col-title {
	margin: 0 0 10px;
	color: #fff;
	font-weight: 800;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	font-size: 0.95rem;
}

.footer-menu,
.footer-bottom-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 8px;
}

.footer-menu a,
.footer-bottom-menu a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
}

.footer-bottom {
	margin-top: 54px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.footer-bottom-menu {
	display: flex;
	gap: 26px;
	flex-wrap: wrap;
}

.footer-social {
	display: flex;
	gap: 22px;
	align-items: center;
}

.footer-social-link {
	color: #fff;
	text-decoration: none;
	display: inline-flex;
}

@media (max-width: 980px) {
	.footer-top {
		grid-template-columns: 1fr;
	}
	.footer-contact {
		grid-template-columns: 1fr;
	}
	.footer-main {
		grid-template-columns: 1fr;
	}
	.footer-columns {
		grid-template-columns: 1fr;
	}
}

.footer-nav ul {
	display: flex;
	gap: 12px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.skip-link.screen-reader-text {
	position: absolute;
	left: -9999px;
}

.skip-link.screen-reader-text:focus {
	left: 12px;
	top: 12px;
	z-index: 999;
	background: rgba(17, 24, 39, 0.95);
	padding: 10px 12px;
	border-radius: 10px;
	border: 1px solid var(--morelo-border);
}

