:root {
	--bg: #0d0b08;
	--bg2: #141008;
	--bg3: #1c1610;
	--gold: #c8972a;
	--gold2: #e8b84b;
	--rust: #9b3a20;
	--rust2: #c74e2a;
	--on-dark: rgba(255, 245, 230, 0.88);
	--on-dark2: rgba(255, 245, 230, 0.55);
	--dp: rgba(200, 151, 42, 0.22);
	--dw: rgba(255, 255, 255, 0.07);
	--nav-h: 68px;
	--radius: 8px;
	--shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
	--focus-ring: 0 0 0 4px rgba(13, 11, 8, 0.82), 0 0 0 7px rgba(232, 184, 75, 0.92);
}

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

html {
	background: var(--bg);
	scroll-padding-top: var(--nav-h);
}

body {
	margin: 0;
	overflow-x: hidden;
	background:
		radial-gradient(circle at 18% 10%, rgba(200, 151, 42, 0.12), transparent 30rem),
		radial-gradient(circle at 88% 0%, rgba(199, 78, 42, 0.16), transparent 34rem),
		var(--bg);
	color: var(--on-dark);
	font-family: "Segoe UI", Tahoma, Arial, "Noto Sans Arabic", sans-serif;
	line-height: 1.65;
}

body.ll-drawer-open {
	overflow: hidden;
}

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

img {
	height: auto;
	max-width: 100%;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 3px solid var(--gold2);
	outline-offset: 4px;
	box-shadow: var(--focus-ring);
}

.screen-reader-text,
.ll-skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.ll-skip-link:focus {
	position: fixed;
	z-index: 9999;
	top: 1rem;
	left: 1rem;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	background: var(--gold2);
	color: #120d08;
	clip: auto;
	box-shadow: var(--focus-ring);
}

.ll-wrap {
	width: min(1180px, calc(100% - 48px));
	margin-inline: auto;
}

.ll-site {
	min-height: 100vh;
	background:
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 48px 48px;
}

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

.ll-header {
	position: fixed;
	z-index: 100;
	top: 0;
	right: 0;
	left: 0;
	height: var(--nav-h);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	background: rgba(13, 11, 8, 0.74);
	backdrop-filter: blur(20px);
	transition: box-shadow 180ms ease, background 180ms ease;
}

.ll-header.is-scrolled {
	background: rgba(13, 11, 8, 0.92);
	box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
}

.ll-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1.3rem;
	height: 100%;
}

.ll-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	color: var(--gold2);
	text-decoration: none;
	white-space: nowrap;
}

.ll-logo__mark {
	width: 44px;
	height: 44px;
	color: var(--gold2);
	filter: drop-shadow(0 0 24px rgba(200, 151, 42, 0.22));
}

.ll-logo__text {
	display: grid;
	line-height: 1.05;
}

.ll-logo__text strong {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.05rem;
	letter-spacing: 0.1em;
}

.ll-logo__text small {
	color: var(--on-dark2);
	font-size: 0.72rem;
	letter-spacing: 0;
}

.ll-logo__img {
	display: block;
	max-width: 210px;
	max-height: 48px;
	object-fit: contain;
}

.ll-nav {
	justify-self: center;
}

.ll-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(0.7rem, 1.7vw, 1.25rem);
	padding: 0;
	margin: 0;
	list-style: none;
}

.ll-nav__list a {
	color: var(--on-dark2);
	font-size: 0.78rem;
	font-weight: 750;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.ll-nav__list a:hover {
	color: var(--gold2);
}

.ll-header__actions {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	justify-self: end;
}

.ll-lang {
	display: flex;
	align-items: center;
	gap: 0.2rem;
	padding: 0.18rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.035);
}

.ll-lang__btn {
	min-width: 2rem;
	min-height: 1.8rem;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--on-dark2);
	cursor: pointer;
	font-size: 0.72rem;
	font-weight: 800;
}

.ll-lang__btn.is-active {
	background: linear-gradient(135deg, var(--gold), var(--gold2));
	color: #140d06;
	box-shadow: inset 0 -3px 0 #fff5e6;
}

.ll-lang__btn.is-disabled {
	cursor: not-allowed;
	opacity: 0.35;
}

.ll-contact-pill,
.ll-btn,
.ll-search-form__submit,
.comment-form input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.8rem;
	padding: 0.75rem 1rem;
	border: 1px solid rgba(232, 184, 75, 0.32);
	border-radius: 999px;
	background: linear-gradient(135deg, var(--rust), var(--rust2));
	color: #fff7e8;
	box-shadow: 0 12px 34px rgba(155, 58, 32, 0.28);
	font-size: 0.82rem;
	font-weight: 850;
	text-decoration: none;
}

.ll-btn--ghost {
	background: rgba(255, 255, 255, 0.035);
	color: var(--gold2);
	box-shadow: none;
}

.ll-btn--rust {
	background: linear-gradient(135deg, var(--rust), var(--rust2));
}

.ll-menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	cursor: pointer;
}

.ll-menu-toggle span {
	display: block;
	width: 17px;
	height: 2px;
	margin: 4px auto;
	background: var(--on-dark);
}

.ll-mobile-drawer {
	position: fixed;
	inset: var(--nav-h) 0 0;
	display: none;
	background:
		radial-gradient(circle at top right, rgba(199, 78, 42, 0.18), transparent 28rem),
		rgba(13, 11, 8, 0.98);
	overflow-y: auto;
	overscroll-behavior: contain;
}

.admin-bar .ll-mobile-drawer {
	top: calc(var(--nav-h) + 32px);
}

.ll-mobile-drawer.is-open {
	display: block;
}

.ll-mobile-drawer__inner {
	display: grid;
	gap: 2rem;
	align-content: start;
	width: min(100% - 48px, 720px);
	padding: 2rem 0;
	margin-inline: auto;
}

.ll-mobile-drawer .ll-nav__list {
	display: grid;
	gap: 0;
}

.ll-mobile-drawer .ll-nav__list a {
	display: block;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 1.1rem;
}

.ll-main {
	padding-top: var(--nav-h);
}

.ll-lsec[data-lang="fi"],
.ll-lsec[data-lang="ar"] {
	display: none;
}

.ll-lang-fi .ll-lsec,
.ll-lang-ar .ll-lsec {
	display: none;
}

.ll-lang-fi .ll-lsec[data-lang="fi"],
.ll-lang-ar .ll-lsec[data-lang="ar"] {
	display: inline;
}

.ll-lang-fi p.ll-lsec[data-lang="fi"],
.ll-lang-ar p.ll-lsec[data-lang="ar"],
.ll-lang-fi div.ll-lsec[data-lang="fi"],
.ll-lang-ar div.ll-lsec[data-lang="ar"] {
	display: block;
}

.ll-rtl body,
.ll-lang-ar {
	direction: rtl;
}

.ll-lang-ar {
	text-align: right;
}

.ll-lang-ar .ll-header__inner,
.ll-lang-ar .ll-actions,
.ll-lang-ar .ll-footer__grid {
	direction: rtl;
}

.ll-lang-ar .ll-card,
.ll-lang-ar .ll-showcase__content,
.ll-lang-ar .ll-contact-panel,
.ll-lang-ar .ll-footer__brand {
	text-align: right;
}

.ll-hero {
	position: relative;
	min-height: calc(100vh - var(--nav-h));
	background:
		linear-gradient(135deg, rgba(200, 151, 42, 0.18), transparent 42%),
		linear-gradient(160deg, #20150d, #0d0b08 62%);
	background-position: center;
	background-size: cover;
	isolation: isolate;
}

.ll-hero.has-image {
	background-position: center;
	background-size: cover;
}

.ll-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(circle at 20% 22%, rgba(232, 184, 75, 0.2), transparent 28rem),
		radial-gradient(circle at 82% 30%, rgba(199, 78, 42, 0.24), transparent 32rem),
		linear-gradient(90deg, rgba(13, 11, 8, 0.9), rgba(13, 11, 8, 0.58) 52%, rgba(13, 11, 8, 0.9));
}

.ll-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
	gap: 3rem;
	align-items: center;
	min-height: calc(100vh - var(--nav-h));
	padding: 5rem 0;
}

.ll-kicker {
	margin: 0 0 0.9rem;
	color: var(--gold2);
	font-size: 0.76rem;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

h1,
h2,
h3 {
	margin: 0;
	color: #fff3df;
	font-family: Georgia, "Times New Roman", "Noto Naskh Arabic", serif;
	line-height: 1.04;
	overflow-wrap: anywhere;
}

h1 {
	max-width: 11ch;
	font-size: clamp(3.2rem, 9vw, 7.4rem);
}

h2 {
	max-width: 13ch;
	font-size: clamp(2.1rem, 5.6vw, 4.6rem);
}

h3 {
	font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.ll-hero__lead {
	max-width: 58rem;
	margin-top: 1.5rem;
	color: var(--on-dark);
	font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.ll-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 2rem;
}

.ll-hero-card,
.ll-card,
.ll-showcase__content,
.ll-contact-panel,
.ll-footer__newsletter,
.ll-empty-state {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
	box-shadow: var(--shadow);
	backdrop-filter: blur(18px);
}

.ll-hero-card {
	padding: clamp(1.4rem, 4vw, 2rem);
}

.ll-hero-card span,
.ll-card__bar,
.ll-process__step span {
	color: var(--gold2);
	font-weight: 850;
}

.ll-hero-card h2 {
	margin: 0.7rem 0 1rem;
	font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.ll-hero-card p,
.ll-hero-card li,
.ll-card p,
.ll-showcase__content p,
.ll-footer p,
.ll-page-hero p {
	color: var(--on-dark2);
}

.ll-hero-card ul {
	display: grid;
	gap: 0.45rem;
	padding: 1rem 0 0;
	margin: 1rem 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	list-style: none;
}

.ll-section {
	padding: clamp(4rem, 8vw, 7rem) 0;
}

.ll-section--deep {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(0, 0, 0, 0.12));
}

.ll-section-head {
	display: grid;
	gap: 1rem;
	margin-bottom: 2rem;
}

.ll-photo-strip__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 1rem;
}

.ll-photo,
.ll-showcase__image {
	min-height: 360px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius);
	background:
		radial-gradient(circle at 30% 25%, rgba(232, 184, 75, 0.16), transparent 16rem),
		linear-gradient(145deg, #24170d, #0d0b08);
	background-position: center;
	background-size: cover;
	box-shadow: var(--shadow);
}

.ll-card-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.ll-card-grid--two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ll-card {
	position: relative;
	min-height: 230px;
	padding: 1.35rem;
	overflow: hidden;
}

.ll-card__bar {
	display: block;
	width: 54px;
	height: 3px;
	margin-bottom: 1.2rem;
	background: linear-gradient(90deg, var(--gold), var(--rust2));
}

.ll-card a {
	color: var(--gold2);
	font-weight: 800;
	text-decoration: none;
}

.ll-showcase__grid,
.ll-split,
.ll-contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 2rem;
	align-items: center;
}

.ll-showcase__content {
	padding: clamp(1.5rem, 4vw, 2.5rem);
}

.ll-audience-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.8rem;
}

.ll-audience-list span {
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.035);
	color: var(--on-dark);
	font-weight: 800;
}

.ll-audience-list--large {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ll-cta-band {
	background: linear-gradient(135deg, rgba(155, 58, 32, 0.55), rgba(20, 16, 8, 0.82));
}

.ll-cta-band__inner {
	display: grid;
	grid-template-columns: 1fr 1fr auto;
	gap: 1.5rem;
	align-items: center;
}

.ll-sponsor-strip {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	background: rgba(255, 255, 255, 0.025);
}

.ll-final-cta {
	text-align: center;
}

.ll-final-cta h2,
.ll-final-cta p {
	margin-inline: auto;
}

.ll-page-hero {
	padding: clamp(5rem, 10vw, 8rem) 0 clamp(3.5rem, 7vw, 5.5rem);
	background:
		radial-gradient(circle at 80% 20%, rgba(199, 78, 42, 0.18), transparent 30rem),
		linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent);
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.ll-page-hero__grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 2rem;
	align-items: end;
}

.ll-page-hero h1 {
	max-width: 13ch;
	font-size: clamp(2.7rem, 7vw, 5.6rem);
}

.ll-contact-panel {
	display: grid;
	gap: 0.8rem;
	padding: 1.5rem;
	font-style: normal;
}

.ll-contact-panel a,
.ll-contact-panel span {
	color: var(--on-dark);
	font-weight: 800;
	text-decoration: none;
}

.ll-process {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.ll-process__step {
	padding: 1.25rem;
	border-top: 1px solid rgba(232, 184, 75, 0.32);
	background: rgba(255, 255, 255, 0.03);
}

.ll-footer {
	padding: 4rem 0 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background: #090806;
}

.ll-footer__grid {
	display: grid;
	grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
	gap: 2rem;
}

.ll-footer h2 {
	margin-bottom: 1rem;
	font-family: inherit;
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.ll-footer__nav .ll-nav__list {
	display: grid;
	gap: 0.5rem;
}

.ll-footer__contact {
	display: grid;
	gap: 0.55rem;
	align-content: start;
	font-style: normal;
}

.ll-footer__contact a {
	color: var(--on-dark2);
	text-decoration: none;
}

.ll-footer__newsletter {
	padding: 1.2rem;
}

.ll-footer__bottom {
	margin-top: 3rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	color: var(--on-dark2);
}

.ll-post-list,
.lajaliina-post-list {
	display: grid;
	gap: 1rem;
}

.ll-post-card,
.ll-empty-state,
.ll-comments {
	padding: 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.035);
}

.ll-post-card {
	display: grid;
	grid-template-columns: minmax(220px, 0.35fr) minmax(0, 0.65fr);
	gap: 1.2rem;
	align-items: stretch;
}

.ll-post-card--no-image {
	grid-template-columns: 1fr;
}

.ll-post-card__image {
	display: block;
	min-height: 210px;
	overflow: hidden;
	border-radius: var(--radius);
	background: linear-gradient(145deg, #24170d, #0d0b08);
}

.ll-post-card__image img,
.ll-single__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ll-post-card__body {
	display: grid;
	gap: 0.7rem;
	align-content: center;
}

.ll-post-card h2 {
	font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.ll-post-card h2 a {
	text-decoration: none;
}

.ll-post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 0.8rem;
	color: var(--on-dark2);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.ll-rich-text {
	max-width: 820px;
	color: var(--on-dark);
	font-size: 1.08rem;
}

.ll-rich-text a {
	color: var(--gold2);
}

.ll-single__image {
	max-width: 980px;
	margin: 0 0 2rem;
	overflow: hidden;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.ll-single__taxonomies {
	display: grid;
	gap: 0.55rem;
	max-width: 820px;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--on-dark2);
}

.ll-single__taxonomies p {
	margin: 0;
}

.ll-single__taxonomies span {
	color: var(--gold2);
	font-weight: 850;
}

.ll-post-navigation {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	max-width: 980px;
	margin-top: 2rem;
}

.ll-post-navigation a {
	display: grid;
	gap: 0.45rem;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.035);
	color: var(--gold2);
	font-size: 0.78rem;
	font-weight: 850;
	text-decoration: none;
	text-transform: uppercase;
}

.ll-post-navigation span {
	color: var(--on-dark);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.05rem;
	text-transform: none;
}

.ll-pagination {
	margin-top: 2rem;
}

.ll-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.ll-pagination a,
.ll-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	min-height: 2.5rem;
	padding: 0.45rem 0.8rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius);
	color: var(--on-dark2);
	text-decoration: none;
}

.ll-pagination .current {
	border-color: var(--gold);
	color: var(--gold2);
}

.ll-comments {
	max-width: 820px;
	margin-top: 3rem;
}

.ll-comments a,
.comment-respond a {
	color: var(--gold2);
}

.ll-comment-list {
	display: grid;
	gap: 1rem;
	padding: 0;
	margin: 1.5rem 0;
	list-style: none;
}

.ll-comment-list .comment-body {
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.035);
}

.comment-form {
	display: grid;
	gap: 1rem;
}

.ll-search-form,
.lajaliina-search-form {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 0.75rem;
	max-width: 680px;
}

.ll-search-form__field,
.lajaliina-search-form__field,
.comment-form input:not([type="submit"]):not([type="checkbox"]),
.comment-form textarea {
	width: 100%;
	min-height: 3rem;
	padding: 0.8rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.055);
	color: var(--on-dark);
}

.ll-header {
	background: linear-gradient(180deg, rgba(10, 8, 6, 0.82), rgba(10, 8, 6, 0.58));
	border-bottom-color: rgba(232, 184, 75, 0.12);
}

.ll-hero::before,
.ll-page-hero::before,
.ll-final-cta::before {
	position: absolute;
	inset: 0;
	pointer-events: none;
	content: "";
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.ll-hero {
	min-height: max(720px, calc(100vh - var(--nav-h)));
	background-color: #090806;
}

.ll-hero::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 1px;
	content: "";
	background: linear-gradient(90deg, transparent, rgba(232, 184, 75, 0.75), rgba(199, 78, 42, 0.75), transparent);
}

.ll-hero__overlay {
	background:
		radial-gradient(circle at 24% 18%, rgba(232, 184, 75, 0.18), transparent 24rem),
		radial-gradient(circle at 76% 28%, rgba(199, 78, 42, 0.28), transparent 30rem),
		linear-gradient(90deg, rgba(8, 7, 5, 0.94), rgba(8, 7, 5, 0.67) 47%, rgba(8, 7, 5, 0.92)),
		linear-gradient(180deg, rgba(8, 7, 5, 0.22), rgba(8, 7, 5, 0.74));
}

.ll-hero__grid {
	position: relative;
	min-height: max(720px, calc(100vh - var(--nav-h)));
}

.ll-hero__copy h1::after,
.ll-page-hero h1::after,
.ll-section-head h2::after,
.ll-showcase__content h2::after {
	display: block;
	width: 88px;
	height: 3px;
	margin: 1.35rem 0 0;
	content: "";
	background: linear-gradient(90deg, var(--gold2), var(--rust2));
}

.ll-hero-card {
	position: relative;
	border-color: rgba(232, 184, 75, 0.2);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
		rgba(14, 12, 9, 0.72);
}

.ll-photo-strip {
	padding-top: 1rem;
	padding-bottom: 1rem;
	background: #090806;
}

.ll-photo {
	position: relative;
	min-height: 260px;
	overflow: hidden;
	filter: saturate(0.95) brightness(0.72);
	transition: filter 180ms ease, transform 180ms ease;
}

.ll-photo:hover {
	filter: saturate(1.08) brightness(0.95);
	transform: translateY(-2px);
}

.ll-photo::after,
.ll-showcase__image::after {
	position: absolute;
	inset: 0;
	content: "";
	background:
		linear-gradient(180deg, transparent, rgba(8, 7, 5, 0.45)),
		radial-gradient(circle at 25% 20%, rgba(232, 184, 75, 0.18), transparent 18rem);
}

.ll-showcase__image {
	position: relative;
	min-height: 470px;
	overflow: hidden;
	background-color: #120d08;
}

.ll-split__media {
	display: grid;
	gap: 1rem;
}

.ll-split__media .ll-showcase__image {
	min-height: 330px;
}

.ll-card {
	border-color: rgba(232, 184, 75, 0.1);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.028)),
		rgba(13, 11, 8, 0.78);
}

.ll-card::before {
	position: absolute;
	inset: 0;
	pointer-events: none;
	content: "";
	background: radial-gradient(circle at top left, rgba(232, 184, 75, 0.08), transparent 18rem);
}

.ll-card.is-highlight,
.ll-card:nth-child(2n).is-highlight {
	border-color: rgba(232, 184, 75, 0.24);
	background:
		linear-gradient(145deg, rgba(155, 58, 32, 0.48), rgba(200, 151, 42, 0.18)),
		rgba(18, 12, 8, 0.88);
}

.ll-card-grid--stack {
	grid-template-columns: 1fr;
}

.ll-page-hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 78% 22%, rgba(199, 78, 42, 0.22), transparent 30rem),
		radial-gradient(circle at 15% 22%, rgba(232, 184, 75, 0.1), transparent 26rem),
		linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0.06));
}

.ll-page-hero::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 1px;
	content: "";
	background: linear-gradient(90deg, transparent, rgba(232, 184, 75, 0.65), rgba(199, 78, 42, 0.65), transparent);
}

.ll-footer {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 14% 18%, rgba(232, 184, 75, 0.12), transparent 25rem),
		radial-gradient(circle at 88% 10%, rgba(199, 78, 42, 0.12), transparent 27rem),
		#070604;
}

.ll-footer::before {
	position: absolute;
	inset: 0;
	pointer-events: none;
	content: "";
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
	background-size: 54px 54px;
}

.ll-footer > * {
	position: relative;
}

@media (max-width: 1080px) {
	:root {
		--nav-h: 60px;
	}

	.admin-bar .ll-header {
		top: 46px;
	}

	.ll-nav,
	.ll-contact-pill {
		display: none;
	}

	.ll-header__inner {
		grid-template-columns: 1fr auto;
	}

	.ll-menu-toggle {
		display: block;
	}

	.ll-hero__grid,
	.ll-page-hero__grid,
	.ll-showcase__grid,
	.ll-split,
	.ll-contact-grid,
	.ll-cta-band__inner {
		grid-template-columns: 1fr;
	}

	.ll-hero-card {
		max-width: 540px;
	}

	.ll-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ll-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	.ll-wrap {
		width: min(100% - 28px, 1180px);
	}

	.ll-logo__text strong {
		font-size: 0.9rem;
	}

	.ll-logo__mark {
		width: 38px;
		height: 38px;
	}

	.ll-lang__btn {
		min-width: 1.72rem;
		font-size: 0.66rem;
	}

	.ll-lang__btn.is-disabled {
		display: none;
	}

	.ll-hero__grid {
		min-height: auto;
		padding: 3.5rem 0;
	}

	.ll-hero {
		min-height: 620px;
	}

	h1 {
		font-size: clamp(2.7rem, 14vw, 4.2rem);
	}

	h2 {
		font-size: clamp(2rem, 10vw, 3rem);
	}

	.ll-photo-strip__grid,
	.ll-card-grid,
	.ll-card-grid--two,
	.ll-audience-list,
	.ll-audience-list--large,
	.ll-process,
	.ll-footer__grid,
	.ll-post-card,
	.ll-post-navigation,
	.ll-search-form,
	.lajaliina-search-form {
		grid-template-columns: 1fr;
	}

	.ll-photo,
	.ll-showcase__image {
		min-height: 260px;
	}

	.ll-photo-strip__grid .ll-photo:nth-child(n+3) {
		display: none;
	}

	.ll-card {
		min-height: auto;
	}

	.ll-actions,
	.ll-btn {
		width: 100%;
	}
}

/* Gutenberg block styles and patterns */
.wp-block-button.is-style-lajaliina-solid .wp-block-button__link,
.wp-block-button .wp-block-button__link {
	border: 1px solid var(--ll-gold, #c8972a);
	border-radius: 999px;
	background: var(--ll-gold, #c8972a);
	color: #0d0b08;
	font-weight: 800;
	text-decoration: none;
}

.wp-block-button.is-style-lajaliina-outline .wp-block-button__link {
	border: 1px solid rgba(232, 184, 75, 0.72);
	background: transparent;
	color: var(--ll-bright-gold, #e8b84b);
}

.wp-block-group.is-style-lajaliina-dark-glass {
	border: 1px solid rgba(255, 245, 230, 0.16);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(255, 245, 230, 0.08), rgba(255, 245, 230, 0.02)),
		#141008;
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.wp-block-group.is-style-lajaliina-rust-cta {
	border-radius: 8px;
	background: linear-gradient(135deg, #9b3a20, #c8972a);
	color: #fff8ec;
}

.wp-block-group.is-style-lajaliina-rust-cta h1,
.wp-block-group.is-style-lajaliina-rust-cta h2,
.wp-block-group.is-style-lajaliina-rust-cta h3,
.wp-block-group.is-style-lajaliina-rust-cta p {
	color: #fff8ec;
}

.wp-block-group.is-style-lajaliina-gold-border {
	border: 1px solid rgba(200, 151, 42, 0.5);
	border-radius: 8px;
	background: rgba(20, 16, 8, 0.82);
}

.wp-block-columns.is-style-lajaliina-split {
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: center;
}

.wp-block-list.is-style-lajaliina-gold-marker,
ul.is-style-lajaliina-gold-marker {
	padding-left: 1.25rem;
}

.wp-block-list.is-style-lajaliina-gold-marker li::marker,
ul.is-style-lajaliina-gold-marker li::marker {
	color: #e8b84b;
}

.wp-block-quote.is-style-lajaliina-pull-quote {
	border-left: 4px solid #c8972a;
	padding: 1rem 0 1rem 1.25rem;
	color: #d3c2aa;
	font-family: Georgia, "Times New Roman", Times, serif;
}

.wp-block-quote.is-style-lajaliina-pull-quote p {
	color: #fff5e6;
	font-size: 1.35rem;
	line-height: 1.35;
}

.ll-pattern-kicker {
	margin-bottom: 0.65rem;
	font-size: 0.8rem;
}

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