/* Leigo — brändistiilid. Palett kavaposterist: burgundia + kuld/lilla/korall/tirkiis. */
:root {
	--color-maroon: #6B0A2D;       /* brändi burgundia (trükivärv) */
	--color-maroon-dark: #4A0720;  /* tumedam burgundia (jalus, varjud) */
	--color-rose: #93314A;         /* roosa-burgundia (trükivärv) */
	--color-purple: #514188;       /* lilla (trükivärv) */
	--color-teal: #1B4A42;         /* tirkiisroheline (CTA) */
	--color-gold: #E8C020;         /* kuld */
	--color-gold-hover: #d0aa12;
	--color-coral: #D8452F;        /* korallpunane */
	--color-cream: #F5EFE9;        /* soe valge (heledad sektsioonid) */
	--color-text: #4A0720;
	--color-dark: var(--color-maroon-dark);
	--color-accent: var(--color-gold);
	--color-accent-hover: var(--color-gold-hover);

	--font-head: 'TT Runs', system-ui, -apple-system, sans-serif;
	--font-serif: 'Orelo', Georgia, 'Times New Roman', serif;
	--font-body: 'TT Runs', system-ui, -apple-system, sans-serif;

	--container: 1180px;
	--space: 1.5rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--color-text);
	background: var(--color-cream);
	line-height: 1.6;
}

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

.container {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--space);
}

/* --- Päis --- */
.site-header {
	position: absolute;
	inset: 0 0 auto 0;
	z-index: 20;
	color: #fff;
}

.site-header__inner {
	max-width: min(1520px, 96vw);
	margin-inline: auto;
	padding: var(--space) clamp(1.5rem, 3vw, 3rem);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.site-header__brand {
	display: inline-flex;
	text-decoration: none;
}

.site-header__logo {
	width: 150px;
	height: auto;
	display: block;
}

.site-footer__logo {
	width: 130px;
	height: auto;
	margin-bottom: .75rem;
}

.site-nav {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.site-nav__list {
	display: flex;
	gap: 1.6rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav__list a {
	text-decoration: none;
	color: #fff;
	white-space: nowrap;
	font-size: .95rem;
	transition: opacity .15s ease;
}

.site-nav__list a:hover { opacity: 1; color: var(--color-gold); }

/* Nav dropdown (sub-menu) */
.site-nav__list > li { position: relative; }

/* Nähtamatu sild <li> ja dropdown vahel, et hiir ei kaotaks hover-ala */
.site-nav__list > li:has(.sub-menu)::after {
	content: '';
	position: absolute;
	top: 100%;
	left: -1rem;
	right: -1rem;
	height: 1rem;
}

.site-nav__list .sub-menu {
	position: absolute;
	top: calc(100% + .6rem);
	left: 50%;
	min-width: 180px;
	list-style: none;
	margin: 0;
	padding: .4rem;
	background: var(--color-maroon-dark);
	border-radius: 10px;
	box-shadow: 0 10px 26px rgba(0,0,0,.35);
	opacity: 0;
	visibility: hidden;
	transform: translateX(-50%) translateY(-6px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s;
	z-index: 50;
	pointer-events: none;
}
.site-nav__list > li:hover .sub-menu,
.site-nav__list > li.is-open .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
}
.site-nav__list .sub-menu a {
	display: block;
	padding: .45rem .9rem;
	border-radius: 7px;
	color: rgba(255,255,255,.9);
	font-size: .88rem;
	white-space: nowrap;
	opacity: 1;
}
.site-nav__list .sub-menu a:hover { background: rgba(255,255,255,.12); opacity: 1; }

/* Dropdown arrow indicator */
.site-nav__list > li:has(.sub-menu) > a::after {
	content: '';
	display: inline-block;
	width: 7px;
	height: 7px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	margin-left: .4rem;
	vertical-align: middle;
	opacity: .7;
}

/* Keelevaheldi dropdown (pin paremale) */
.lang {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.lang__toggle {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	padding: .35rem .6rem;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.25);
	border-radius: 999px;
	color: #fff;
	font: inherit;
	font-weight: 600;
	font-size: .82rem;
	cursor: pointer;
}

.lang__caret { transition: transform .2s ease; }
.lang.is-open .lang__caret { transform: rotate(180deg); }

.lang__menu {
	position: absolute;
	right: 0;
	top: calc(100% + .4rem);
	min-width: 100%;
	list-style: none;
	margin: 0;
	padding: .3rem;
	background: var(--color-maroon-dark);
	border-radius: 10px;
	box-shadow: 0 10px 26px rgba(0,0,0,.35);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-4px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

.lang.is-open .lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }

.lang__menu a {
	display: block;
	padding: .35rem .7rem;
	border-radius: 6px;
	text-decoration: none;
	color: #fff;
	font-weight: 600;
	font-size: .82rem;
}

.lang__menu a:hover { background: rgba(255,255,255,.1); }

/* Hamburger (nähtav kitsamal ekraanil) */
.nav-toggle {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	background: none;
	border: 0;
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	width: 26px;
	height: 2px;
	background: #fff;
	transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1200px) {
	.nav-toggle {
		display: flex;
		position: relative;
		z-index: 25;
		background: rgba(74, 7, 32, .55);
		border-radius: 8px;
		backdrop-filter: blur(4px);
		-webkit-backdrop-filter: blur(4px);
	}

	.site-nav {
		position: fixed;
		inset: 0;
		z-index: 18;
		display: none;
		flex-direction: column;
		align-items: flex-start;
		gap: 1.25rem;
		padding: 5.5rem var(--space) 3rem;
		background: var(--color-maroon-dark);
		overflow-y: auto;
	}

	.site-nav.is-open { display: flex; }

	.site-nav__list {
		flex-direction: column;
		gap: 1.1rem;
	}

	.site-nav__list a { font-size: 1.1rem; }

	/* Dropdown mobiilis — inline, taandega */
	.site-nav__list .sub-menu {
		position: static;
		transform: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		background: rgba(255,255,255,.06);
		box-shadow: none;
		border-radius: 8px;
		padding: .3rem .3rem .3rem .8rem;
		margin-top: .4rem;
		display: none;
	}
	.site-nav__list > li.is-open .sub-menu { display: block; }
	.site-nav__list .sub-menu a { font-size: .95rem; padding: .35rem .6rem; }

	/* Lang mobiilis staatiline, menüü sees */
	.lang {
		position: static;
		transform: none;
	}

	.lang__menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		display: flex;
		gap: .3rem;
		background: none;
		box-shadow: none;
		padding: 0;
		margin-top: .4rem;
	}
}

/* --- Hero --- */
.hero {
	position: relative;
	min-height: 100svh;
	display: grid;
	place-items: center;
	text-align: center;
	color: #fff;
	overflow: hidden;
	background: var(--color-maroon);
	padding: 7rem 1rem 3rem;
	box-sizing: border-box;
}

.hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.hero__video--image { background-size: cover; background-position: center; }

.hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		radial-gradient(120% 90% at 50% 30%, rgba(104,16,36,.28), rgba(56,10,20,.58)),
		linear-gradient(180deg, rgba(56,10,20,.44), rgba(90,16,32,.24) 45%, rgba(38,7,14,.76));
}

.hero__content {
	position: relative;
	z-index: 2;
	max-width: 820px;
	padding: var(--space);
}

.hero__title {
	font-family: var(--font-head);
	font-weight: 900;
	font-size: clamp(2.1rem, 5vw, 4.5rem);
	line-height: .98;
	letter-spacing: -.01em;
	margin: 0 0 .75rem;
	text-wrap: balance;
}

.hero__dates {
	font-family: var(--font-serif);
	font-weight: 600;
	font-style: italic;
	font-size: clamp(1.3rem, 3vw, 2rem);
	letter-spacing: .01em;
	margin: 0 0 1.25rem;
}

.hero__subtitle {
	font-size: clamp(1rem, 1.6vw, 1.2rem);
	margin: 0 auto 2rem;
	max-width: 44ch;
	opacity: .95;
}

.hero__cta {
	display: inline-block;
	padding: .95rem 2.6rem;
	background: var(--color-teal);
	color: #fff;
	text-decoration: none;
	font-weight: 800;
	letter-spacing: .08em;
	border-radius: 999px;
	transition: background .2s ease, transform .2s ease;
}

.hero__cta:hover { background: #256257; transform: translateY(-2px); }

.hero__cta--disabled { cursor: default; }

/* Dekoratiivsed kuldsed kontuurid hero's — z-index 2 (overlay kohal), täisläbipaistmatu et värv ei moondu */
.hero__shape {
	position: absolute;
	z-index: 2;
	pointer-events: none;
	opacity: 1;
}

.hero__shape--tr { top: -4%; right: -3%; width: min(38vw, 460px); transform: rotate(8deg); }
.hero__shape--bl { bottom: -6%; left: -4%; width: min(32vw, 380px); transform: rotate(-6deg); }

@media (max-width: 640px) {
	.hero__shape { width: 55vw; }
}

/* --- Sektsiooni pealkiri --- */
.section-title {
	font-family: var(--font-serif);
	font-weight: 600;
	font-style: italic;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	color: var(--color-maroon);
	text-align: center;
	margin: 0 0 2.5rem;
}

/* --- Hõljuvad toetaja-märgised (kaovad skrollides) --- */
.floating-badges {
	position: fixed;
	left: var(--space);
	bottom: var(--space);
	z-index: 15;
	width: 200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .6rem;
	padding: .7rem .8rem;
	background: rgba(245, 239, 233, .94);
	border-radius: 12px;
	box-shadow: 0 6px 24px rgba(46,15,22,.28);
	transition: opacity .4s ease, transform .4s ease;
}

.floating-badges.is-hidden {
	opacity: 0;
	transform: translateY(1rem);
	pointer-events: none;
}

.floating-badges__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .6rem;
	width: 100%;
	text-decoration: none;
}

.floating-badges__logo {
	width: 100%;
	height: auto;
	max-height: none;
}

/* --- Partnerid (logod ILMA kastita, tsentreeritud) --- */
.partners {
	padding-block: 5rem;
	background: #fff;
	border-top: 1px solid rgba(107,10,45,.1);
}

.partners__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 2rem 3rem;
}

.partners__item { display: flex; flex: 0 0 auto; }

.partners__logo {
	max-height: 64px;
	max-width: 130px;
	width: auto;
	object-fit: contain;
}

/* Logopõhised suuruse korrektuurid (proportsioonide ühtlustamiseks) */
.partners__logo[src*="otepaa"],
.partners__logo[src*="puhaste"],
.partners__logo[src*="kodas"] {
	max-width: 105px;
}

.partners__logo[src*="peninukk"],
.partners__logo[src*="jariste"] {
	max-height: 84px;
}

.partners__link { display: inline-flex; }

/* --- Jalus --- */
.site-footer {
	background: var(--color-maroon-dark);
	color: #fff;
	border-top: 3px solid var(--color-gold);
}

.site-footer__inner {
	max-width: var(--container);
	margin-inline: auto;
	padding: 3.5rem var(--space);
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 2.5rem 4rem;
	align-items: start;
}

.site-footer a { color: #fff; }

.site-footer__copy { margin: .75rem 0 0; opacity: .7; font-size: .85rem; }

/* Sotsiaalmeedia ikoonid */
.site-footer__social {
	display: flex;
	gap: .6rem;
	margin-top: 1rem;
}

.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: #fff;
	background: rgba(255,255,255,.1);
	transition: background .2s ease, transform .2s ease;
}

.social-link:hover {
	background: var(--color-gold);
	color: var(--color-maroon-dark);
	transform: translateY(-2px);
}

/* Jaluse navigatsioon (keskel) */
.site-footer__nav-label {
	display: block;
	font-family: var(--font-serif);
	font-style: italic;
	font-size: .82rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--color-gold);
	opacity: .8;
	margin-bottom: .9rem;
}

.site-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: .55rem;
}

.site-footer__menu a {
	color: rgba(255,255,255,.72);
	text-decoration: none;
	font-size: .9rem;
	transition: color .18s ease;
}

.site-footer__menu a:hover { color: var(--color-gold); }

/* Toetajate logod jaluses paremal, üksteise all */
.site-footer__supporters {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: .75rem;
}

.site-footer__supporters-label {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: .82rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--color-gold);
	opacity: .8;
	margin-bottom: .15rem;
}

.site-footer__supporters-link {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: .75rem;
}

.site-footer__supporter {
	width: 190px;
	max-width: 56vw;
	height: auto;
	object-fit: contain;
	background: #fff;
	padding: 12px 16px;
	border-radius: 10px;
}

@media (max-width: 860px) {
	.site-footer__inner {
		grid-template-columns: 1fr 1fr;
	}
	.site-footer__nav {
		grid-column: 1 / -1;
		display: flex;
		flex-wrap: wrap;
		gap: 1rem 3rem;
	}
	.site-footer__menu {
		flex-direction: row;
		flex-wrap: wrap;
		gap: .5rem 1.5rem;
	}
}

@media (max-width: 580px) {
	.site-footer__inner { grid-template-columns: 1fr; }
	.site-footer__supporters { align-items: flex-start; }
	.site-footer__supporters-link { align-items: flex-start; }
	.site-footer__supporter { max-width: 100%; width: 180px; }
}

@media (max-width: 640px) {
	.site-header__logo { width: 120px; }
	.floating-badges { width: 150px; }
}

/* --- Navigatsiooni kaardid (hero all) --- */
.nav-cards {
	padding-block: 5rem 5.5rem;
	background: var(--color-cream);
}

.nav-cards__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-card {
	position: relative;
	overflow: hidden;
	border-radius: 18px;
	padding: 2.2rem 2rem 1.8rem;
	color: #fff;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	min-height: 240px;
	background-image: linear-gradient(135deg, rgba(255,255,255,.07) 0%, transparent 55%);
	transition: transform .25s ease, box-shadow .25s ease;
}

.nav-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 24px 56px rgba(0,0,0,.32);
}

.nav-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 2rem;
	right: 2rem;
	height: 2px;
	background: var(--color-gold);
}

.nav-card__icon {
	width: 42px;
	height: 42px;
	margin-bottom: 1rem;
	flex-shrink: 0;
	opacity: .88;
}

.nav-card__title {
	font-family: var(--font-head);
	font-weight: 800;
	font-size: clamp(1rem, 1.7vw, 1.25rem);
	margin: 0 0 .5rem;
	line-height: 1.2;
}

.nav-card__desc {
	font-size: .88rem;
	opacity: .78;
	flex: 1;
	line-height: 1.55;
	margin: 0 0 1.5rem;
}

.nav-card__arrow {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--color-gold);
	margin-top: auto;
}

.nav-card__shape {
	position: absolute;
	bottom: -18%;
	right: -10%;
	width: 55%;
	pointer-events: none;
	filter: brightness(0) invert(1);
	opacity: .08;
}

@media (max-width: 700px) {
	.nav-cards { padding-block: 3.5rem; }
	.nav-cards__grid { grid-template-columns: 1fr; gap: .9rem; }
	.nav-card { min-height: 180px; }
}

/* ============================================================
   ALALEHED — ühine päis (page-hero)
   ============================================================ */
.page-hero {
	background: var(--color-maroon-dark);
	color: #fff;
	padding-block: clamp(7rem, 14vw, 10rem) 3.5rem;
	position: relative;
}

.page-hero__eyebrow {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: .85rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--color-gold);
	opacity: .9;
	margin: 0 0 .75rem;
}

.page-hero__title {
	font-family: var(--font-head);
	font-weight: 900;
	font-size: clamp(2.4rem, 6vw, 4.2rem);
	line-height: 1;
	margin: 0 0 1rem;
}

.page-hero__meta {
	opacity: .75;
	font-size: 1rem;
	margin: 0;
}

/* ============================================================
   PÄEVA-NAV (sticky ankur-navigatsioon)
   ============================================================ */
.day-nav {
	background: #fff;
	border-bottom: 1px solid rgba(107,10,45,.12);
	position: sticky;
	top: 0;
	z-index: 10;
}

.day-nav__list {
	display: flex;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.day-nav__link {
	display: block;
	padding: .9rem 1.5rem;
	font-size: .85rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-decoration: none;
	color: var(--color-maroon);
	border-bottom: 3px solid transparent;
	transition: border-color .18s ease, color .18s ease;
	white-space: nowrap;
}

.day-nav__link:hover { border-bottom-color: var(--color-gold); color: var(--color-maroon); }

/* ============================================================
   PÄEVA SEKTSIOON
   ============================================================ */
.day-section { padding-block: 4rem 5rem; background: var(--color-cream); }
.day-section--dark { background: var(--color-maroon-dark); color: #fff; }

.day-section__header {
	display: flex;
	align-items: baseline;
	gap: 1.25rem;
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 2px solid rgba(107,10,45,.12);
}

.day-section--dark .day-section__header { border-bottom-color: rgba(255,255,255,.12); }

.day-section__num {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 700;
	font-size: clamp(5rem, 11vw, 8rem);
	line-height: 1;
	color: var(--color-gold);
}

.day-section__month {
	font-family: var(--font-head);
	font-weight: 900;
	font-size: clamp(2rem, 5vw, 3.2rem);
	margin: 0;
	line-height: 1;
	color: var(--color-maroon);
}

.day-section--dark .day-section__month { color: #fff; }

.day-section__weekday {
	display: block;
	font-size: .82rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	opacity: .55;
	margin-top: .35rem;
}

.day-section__addnote {
	margin-top: 3rem;
	font-size: .95rem;
	opacity: .8;
}

.day-section__addnote a { color: var(--color-gold); }

/* ============================================================
   KONTSERDIKAVA
   ============================================================ */
.program { margin-block: 0 3rem; }

.program__item {
	display: grid;
	grid-template-columns: 130px 1fr;
	gap: .75rem 2.5rem;
	padding: 1.6rem 0;
	border-bottom: 1px solid rgba(107,10,45,.1);
	align-items: start;
}

.day-section--dark .program__item { border-bottom-color: rgba(255,255,255,.1); }

.program__time {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 600;
	font-size: clamp(1.2rem, 2.2vw, 1.6rem);
	color: var(--color-gold);
	line-height: 1.2;
	text-align: right;
	padding-top: .15rem;
}

.program__name {
	font-family: var(--font-head);
	font-weight: 800;
	font-size: clamp(1rem, 2vw, 1.35rem);
	margin: 0 0 .3rem;
	line-height: 1.2;
	color: inherit;
}

.program__note {
	font-size: .88rem;
	opacity: .65;
	margin: 0;
}

/* ============================================================
   PAKETID (30. juuli)
   ============================================================ */
.packages { margin-top: 4rem; }

.packages__title {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 600;
	font-size: clamp(1.4rem, 2.5vw, 2rem);
	color: var(--color-maroon);
	margin: 0 0 2rem;
}

.packages__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.package-card {
	background: var(--color-teal);
	color: #fff;
	border-radius: 16px;
	padding: 2.2rem 2rem 2rem;
	display: flex;
	flex-direction: column;
	position: relative;
}

.package-card::before {
	content: '';
	position: absolute;
	top: 0; left: 2rem; right: 2rem;
	height: 2px;
	background: var(--color-gold);
}

.package-card__title {
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 1.1rem;
	margin: 0 0 1.5rem;
	line-height: 1.25;
}

.package-card__schedule {
	list-style: none;
	margin: 0 0 1.25rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: .85rem;
	flex: 1;
}

.package-card__schedule li {
	display: grid;
	grid-template-columns: 52px 1fr;
	gap: .6rem;
	font-size: .88rem;
	line-height: 1.45;
}

.package-card__schedule time {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 600;
	color: var(--color-gold);
	font-size: .95rem;
	padding-top: .05rem;
}

.package-card__note {
	font-size: .8rem;
	opacity: .7;
	margin: 0 0 1.5rem;
	font-style: italic;
}

.package-card__cta {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	align-self: flex-start;
	padding: .6rem 1.4rem;
	background: var(--color-gold);
	color: var(--color-maroon-dark);
	font-weight: 800;
	font-size: .82rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 999px;
	transition: background .18s ease, transform .18s ease;
}

.package-card__cta:hover { background: var(--color-gold-hover); transform: translateY(-2px); }

.packages__footnote {
	margin-top: 1.25rem;
	font-size: .85rem;
	opacity: .65;
	font-style: italic;
}

/* ============================================================
   HELILINE METSARÄNNAK — esiletõstetud sündmuse blokk
   ============================================================ */
.event-feature {
	display: grid;
	grid-template-columns: 340px 1fr;
	gap: 2.5rem;
	align-items: start;
	margin-block: 3rem 4rem;
	background: #fff;
	border-radius: .75rem;
	overflow: hidden;
	box-shadow: 0 2px 16px rgba(107,10,45,.08);
}

.event-feature__image {
	margin: 0;
}

.event-feature__image img {
	width: 100%;
	height: auto;
	display: block;
}

.event-feature__body {
	padding: 2.25rem 2.25rem 2.25rem 0;
}

.event-feature__time {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 1.1rem;
	color: var(--color-gold);
	margin: 0 0 .25rem;
}
.event-feature--dark .event-feature__time { color: var(--color-gold); }

.event-feature__title {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 600;
	font-size: clamp(1.5rem, 2.5vw, 2.1rem);
	color: var(--color-maroon);
	margin: 0 0 .5rem;
}

.event-feature__cast {
	font-size: .85rem;
	letter-spacing: .04em;
	color: var(--color-maroon);
	opacity: .75;
	margin: 0 0 1rem;
}
.event-feature--dark .event-feature__cast { color: var(--color-cream); opacity: .8; }

.event-feature__desc-wrap {
	position: relative;
	max-height: 8rem;
	overflow: hidden;
	transition: max-height .45s ease;
}
.event-feature__desc-wrap.is-expanded { max-height: 300rem; }

.event-feature__desc-wrap.has-overflow:not(.is-expanded)::after {
	content: '';
	position: absolute;
	bottom: 0; left: 0; right: 0;
	height: 3.5rem;
	background: linear-gradient(transparent, #fff);
	pointer-events: none;
}
.event-feature--dark .event-feature__desc-wrap.has-overflow:not(.is-expanded)::after {
	background: linear-gradient(transparent, #4A0720);
}

.event-feature__desc {
	font-size: .97rem;
	line-height: 1.7;
	color: var(--color-text);
}

.event-feature__desc p { margin: 0 0 .85rem; }
.event-feature__desc p:last-child { margin-bottom: 0; }

.event-feature__read-more {
	display: none;
	margin-top: .75rem;
	background: none;
	border: none;
	padding: 0;
	font-family: var(--font-body);
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	cursor: pointer;
	color: var(--color-maroon);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.event-feature__read-more.is-visible { display: inline-block; }
.event-feature--dark .event-feature__read-more { color: var(--color-gold); }

.event-feature__times {
	margin-top: 1.25rem;
	font-size: .92rem;
	color: var(--color-maroon);
	background: var(--color-cream);
	border-left: 3px solid var(--color-gold);
	padding: .65rem 1rem;
	border-radius: 0 .35rem .35rem 0;
}

/* Dark variant — 31.07 tumedal taustal */
.event-feature--dark {
	background: rgba(255,255,255,.06);
	box-shadow: none;
	border: 1px solid rgba(255,255,255,.1);
}

.day-section--dark .event-feature--dark .event-feature__title { color: var(--color-gold); }
.day-section--dark .event-feature--dark .event-feature__desc  { color: rgba(255,255,255,.85); }
.day-section--dark .event-feature--dark .event-feature__times {
	background: rgba(255,255,255,.06);
	color: var(--color-gold);
	border-left-color: var(--color-gold);
}

@media (max-width: 800px) {
	.event-feature { grid-template-columns: 1fr; }
	.event-feature__image { max-height: 280px; overflow: hidden; }
	.event-feature__image img { width: 100%; height: 280px; object-fit: cover; object-position: center top; }
	.event-feature__body { padding: 1.5rem; }
}

/* ============================================================
   MAITSEELAMUSED (31. juuli)
   ============================================================ */
.tastings { margin-top: 4rem; }

.tastings__title {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 600;
	font-size: clamp(1.4rem, 2.5vw, 2rem);
	color: var(--color-gold);
	margin: 0 0 .5rem;
}

.tastings__intro {
	opacity: .75;
	margin: 0 0 2rem;
}

.tastings__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.tasting-card {
	background: rgba(255,255,255,.07);
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 14px;
	padding: 1.75rem 1.5rem;
}

.tasting-card__name {
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 1.05rem;
	margin: 0 0 .75rem;
	color: var(--color-gold);
}

.tasting-card p {
	font-size: .88rem;
	opacity: .8;
	margin: 0 0 .6rem;
	line-height: 1.55;
}

.tasting-card__includes {
	font-size: .8rem !important;
	opacity: .6 !important;
	font-style: italic;
	border-top: 1px solid rgba(255,255,255,.12);
	padding-top: .6rem;
	margin-top: .5rem !important;
}

.tastings__cta {
	margin-top: 1.5rem;
	font-size: .88rem;
	opacity: .7;
	font-style: italic;
}

/* ============================================================
   ESINEJAD — sektsioonid ja kaardiruudustik
   ============================================================ */
.performer-section { margin-bottom: 4rem; }

.performer-section__title {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 600;
	font-size: clamp(1.3rem, 2.5vw, 1.9rem);
	color: var(--color-maroon);
	margin: 0 0 2rem;
	padding-bottom: .9rem;
	border-bottom: 2px solid rgba(107,10,45,.12);
}

.day-section--dark .performer-section__title {
	color: var(--color-gold);
	border-bottom-color: rgba(255,255,255,.12);
}

.performer-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.performer-grid--wide { grid-template-columns: repeat(4, 1fr); }

.performer-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 16px rgba(74,7,32,.09);
	display: flex;
	flex-direction: column;
	transition: transform .2s ease, box-shadow .2s ease;
}

.performer-card:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(74,7,32,.13); }

/* Ühe esinejaga sektsiooni wrapper (ei kasuta grid-i) */
.performer-featured { /* block-level, kaart positsioneerib end ise */ }

/* Ühe esinejaga sektsiooni laiem horisontaalne kaart */
.performer-card--featured {
	flex-direction: row;
	max-width: 680px;
}

.performer-card--featured .performer-card__photo {
	width: 260px;
	flex-shrink: 0;
	aspect-ratio: unset;
	min-height: 340px;
}

.performer-card--featured .performer-card__body {
	padding: 2rem 2rem 2rem 1.75rem;
}

.performer-card--featured .performer-card__name {
	font-size: 1.4rem;
}

.day-section--dark .performer-card {
	background: rgba(255,255,255,.07);
	border: 1px solid rgba(255,255,255,.1);
	box-shadow: none;
}

.day-section--dark .performer-card:hover { background: rgba(255,255,255,.1); }

.performer-card__photo {
	aspect-ratio: 3/4;
	overflow: hidden;
	background: linear-gradient(160deg, var(--color-maroon) 0%, var(--color-maroon-dark) 100%);
	position: relative;
}

.performer-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .35s ease;
}

.performer-card:hover .performer-card__photo img { transform: scale(1.04); }

.performer-card__photo--empty::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 40% 35%, rgba(232,192,32,.14) 0%, transparent 60%),
		radial-gradient(circle at 70% 75%, rgba(81,65,136,.18) 0%, transparent 55%);
}

.performer-card__body {
	padding: 1.4rem 1.4rem 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.performer-card__name {
	font-family: var(--font-head);
	font-weight: 900;
	font-size: 1.1rem;
	line-height: 1.2;
	margin: 0 0 .3rem;
	color: var(--color-maroon-dark);
}

.day-section--dark .performer-card__name { color: #fff; }

.performer-card__meta {
	font-family: var(--font-body);
	font-style: normal;
	font-size: .83rem;
	letter-spacing: .02em;
	color: var(--color-maroon);
	opacity: .7;
	margin: 0 0 1rem;
}

.day-section--dark .performer-card__meta { color: rgba(255,255,255,.75); opacity: 1; }

.performer-card__bio {
	font-size: .87rem;
	line-height: 1.65;
	color: var(--color-text);
	margin-bottom: .75rem;
}

.performer-card__bio p { margin: 0 0 .7em; }
.performer-card__bio p:last-child { margin-bottom: 0; }

.day-section--dark .performer-card__bio { color: rgba(255,255,255,.82); }

.performer-card__toggle {
	display: inline-flex;
	align-items: center;
	gap: .3rem;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: .76rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--color-maroon);
	margin-bottom: 1rem;
	transition: color .15s ease;
}

.performer-card__toggle:hover { color: var(--color-rose); }

.performer-card__toggle svg { transition: transform .2s ease; flex-shrink: 0; }
.performer-card.is-open .performer-card__toggle svg { transform: rotate(180deg); }

.day-section--dark .performer-card__toggle { color: var(--color-gold); }
.day-section--dark .performer-card__toggle:hover { color: #fff; }

.performer-card__links {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	margin-top: auto;
}

.performer-card__link {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	font-size: .74rem;
	font-weight: 700;
	letter-spacing: .07em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--color-maroon);
	border: 1.5px solid rgba(107,10,45,.3);
	border-radius: 999px;
	padding: .3rem .85rem;
	transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.performer-card__link:hover {
	background: var(--color-maroon);
	color: #fff;
	border-color: var(--color-maroon);
}

.day-section--dark .performer-card__link {
	color: var(--color-gold);
	border-color: rgba(232,192,32,.4);
}

.day-section--dark .performer-card__link:hover {
	background: var(--color-gold);
	color: var(--color-maroon-dark);
	border-color: var(--color-gold);
}

.performer-empty {
	font-style: italic;
	opacity: .6;
	margin: 0;
}

/* ============================================================
   BIO MODAAL
   ============================================================ */
.bio-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.bio-modal[hidden] { display: none; }

.bio-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(10,4,20,.75);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
}

.bio-modal__panel {
	position: relative;
	z-index: 1;
	background: var(--color-cream);
	border-radius: 1rem;
	max-width: 740px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 24px 80px rgba(0,0,0,.45);
}

.bio-modal__close {
	position: sticky;
	top: 1rem;
	float: right;
	margin: 1rem 1rem -2.5rem;
	background: rgba(107,10,45,.1);
	border: none;
	border-radius: 50%;
	width: 2.25rem;
	height: 2.25rem;
	font-size: 1.2rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-maroon);
	transition: background .15s, color .15s;
	z-index: 2;
}

.bio-modal__close:hover { background: var(--color-maroon); color: #fff; }

.bio-modal__inner {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 0;
	clear: both;
}

.bio-modal__photo {
	border-radius: 1rem 0 0 1rem;
	overflow: hidden;
	background: var(--color-maroon);
	min-height: 280px;
	align-self: stretch;
}

.bio-modal__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.bio-modal__content {
	padding: 2rem 2rem 2rem 1.75rem;
}

.bio-modal__name {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 600;
	font-size: clamp(1.3rem, 3vw, 1.75rem);
	color: var(--color-maroon);
	margin: 0 0 .25rem;
	padding-right: 2.5rem;
}

.bio-modal__meta {
	color: var(--color-rose);
	font-size: .88rem;
	font-weight: 600;
	letter-spacing: .04em;
	margin: 0 0 1.25rem;
}

.bio-modal__bio {
	font-size: .93rem;
	line-height: 1.75;
	color: var(--color-text);
}

.bio-modal__bio p { margin: 0 0 .85rem; }
.bio-modal__bio p:last-child { margin-bottom: 0; }

.bio-modal__links {
	margin-top: 1.5rem;
	display: flex;
	gap: .6rem;
	flex-wrap: wrap;
}

@media (max-width: 580px) {
	.bio-modal__inner { grid-template-columns: 1fr; }
	.bio-modal__photo { min-height: 240px; border-radius: 1rem 1rem 0 0; }
	.bio-modal__content { padding: 1.25rem; }
	.bio-modal__name { padding-right: 0; }
}

/* ============================================================
   DISCLAIMER
   ============================================================ */
.kava-disclaimer {
	padding-block: 2rem;
	font-size: .82rem;
	opacity: .5;
	font-style: italic;
	border-top: 1px solid rgba(107,10,45,.12);
}

/* ============================================================
   RESPONSIVE — kava leht
   ============================================================ */
@media (max-width: 860px) {
	.tastings__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
	.packages__grid { grid-template-columns: 1fr; }
	.tastings__grid { grid-template-columns: 1fr; }
	.program__item { grid-template-columns: 90px 1fr; gap: .5rem 1.25rem; }
	.day-nav__list { width: 100%; }
	.day-nav__list li { flex: 1; }
	.day-nav__link { display: block; width: 100%; text-align: center; padding: .75rem .3rem; font-size: .75rem; }
}

/* ============================================================
   RESPONSIVE — esinejad leht
   ============================================================ */
@media (max-width: 1024px) {
	.performer-grid--wide { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
	.performer-grid { grid-template-columns: repeat(2, 1fr); }
	.performer-grid--wide { grid-template-columns: repeat(2, 1fr); }
	.performer-card--featured { max-width: 100%; }
}

@media (max-width: 640px) {
	.performer-card--featured { flex-direction: column; }
	.performer-card--featured .performer-card__photo {
		width: 100%;
		aspect-ratio: 3/2;
		min-height: unset;
	}
}

@media (max-width: 520px) {
	.performer-grid { grid-template-columns: 1fr; }
	.performer-grid--wide { grid-template-columns: 1fr; }
	.performer-card__photo { aspect-ratio: 4/3; }
}

/* ============================================================
   PILETID LEHT
   ============================================================ */
.tickets-page { padding-block: 4rem 5rem; }

.tickets-intro {
	max-width: 720px;
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--color-text);
	margin: 0 0 2.5rem;
}

.tickets-cta-wrap { margin-bottom: 3.5rem; }

.tickets-cta {
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	background: var(--color-maroon);
	color: #fff;
	font-family: var(--font-head);
	font-weight: 800;
	font-size: .95rem;
	letter-spacing: .06em;
	text-transform: uppercase;
	text-decoration: none;
	padding: .9rem 2rem;
	border-radius: 999px;
	transition: background .18s ease, transform .18s ease;
}

.tickets-cta:hover { background: var(--color-rose); transform: translateY(-2px); }

.ticket-grid {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.ticket-card {
	background: #fff;
	border-radius: 18px;
	padding: 2rem 2.25rem;
	box-shadow: 0 2px 16px rgba(74,7,32,.08);
	position: relative;
	display: grid;
	grid-template-columns: 1fr minmax(350px, 410px);
	gap: 2.5rem;
	align-items: start;
}

.ticket-card__main {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.ticket-card__aside {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.ticket-card::before {
	content: '';
	position: absolute;
	top: 0; left: 2.25rem; right: 2.25rem;
	height: 2px;
	background: var(--color-gold);
	border-radius: 999px;
}

.ticket-card--highlight {
	background: var(--color-maroon-dark);
	color: #fff;
}

.ticket-card--highlight::before { background: var(--color-gold); }

.ticket-card__badge {
	display: inline-block;
	background: var(--color-gold);
	color: var(--color-maroon-dark);
	font-size: .7rem;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: .2rem .7rem;
	border-radius: 999px;
	align-self: flex-start;
}

.ticket-card__title {
	font-family: var(--font-head);
	font-weight: 900;
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	line-height: 1.15;
	margin: 0;
	color: var(--color-maroon-dark);
}

.ticket-card--highlight .ticket-card__title { color: #fff; }

.ticket-card__subtitle {
	font-family: var(--font-body);
	font-size: .85rem;
	color: var(--color-maroon);
	opacity: .7;
	margin: -.75rem 0 0;
}

.ticket-card--highlight .ticket-card__subtitle { color: var(--color-gold); opacity: 1; }

/* Hinnatable */
.ticket-card__prices {
	width: 100%;
	border-collapse: collapse;
	font-size: .9rem;
}

.ticket-card__prices thead th {
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--color-maroon);
	opacity: .55;
	padding-bottom: .5rem;
	text-align: left;
}

.ticket-card--highlight .ticket-card__prices thead th { color: var(--color-gold); opacity: .8; }

.ticket-card__prices thead th:not(:first-child) { text-align: right; }

.ticket-card__prices tbody tr {
	border-top: 1px solid rgba(107,10,45,.1);
}

.ticket-card--highlight .ticket-card__prices tbody tr { border-top-color: rgba(255,255,255,.1); }

.ticket-card__prices tbody tr:last-child { border-bottom: 1px solid rgba(107,10,45,.1); }
.ticket-card--highlight .ticket-card__prices tbody tr:last-child { border-bottom-color: rgba(255,255,255,.1); }

.ticket-card__price-label {
	padding: .55rem 0;
	color: inherit;
	opacity: .85;
}

.ticket-card__price-val {
	text-align: right;
	font-family: var(--font-body);
	font-weight: 800;
	font-size: 1.1rem;
	color: var(--color-gold);
	padding: .55rem 0 .55rem .75rem;
	white-space: nowrap;
	letter-spacing: -.01em;
}

.ticket-card--highlight .ticket-card__price-val { color: var(--color-gold); }

.ticket-card__price-val--gate {
	font-size: .88rem;
	opacity: .6;
	color: inherit;
}

.ticket-card--highlight .ticket-card__price-val--gate { color: rgba(255,255,255,.6); opacity: 1; }

/* Sisaldab */
.ticket-card__includes {
	font-size: .85rem;
	line-height: 1.65;
	background: rgba(107,10,45,.05);
	border-radius: 10px;
	padding: 1rem 1.1rem;
}

.ticket-card--highlight .ticket-card__includes {
	background: rgba(255,255,255,.08);
}

.ticket-card__includes-label {
	font-weight: 700;
	font-size: .78rem;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: var(--color-maroon);
	margin: 0 0 .5rem;
}

.ticket-card--highlight .ticket-card__includes-label { color: var(--color-gold); }

.ticket-card__includes p { margin: 0 0 .4em; }
.ticket-card__includes p:last-child { margin: 0; }

/* Märkus */
.ticket-card__note {
	font-size: .82rem;
	opacity: .65;
	font-style: italic;
	margin: 0;
	line-height: 1.55;
}

/* Osta nupp */
.ticket-card__buy {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: auto;
	padding: .6rem 1.4rem;
	background: var(--color-gold);
	color: var(--color-maroon-dark);
	font-family: var(--font-head);
	font-weight: 800;
	font-size: .8rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 999px;
	align-self: stretch;
	transition: background .18s ease, transform .18s ease;
}

.ticket-card__buy:hover { background: var(--color-gold-hover); transform: translateY(-2px); }

.tickets-bottom-note {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(107,10,45,.12);
	font-size: .9rem;
	line-height: 1.7;
	opacity: .7;
}

/* ── Responsive ── */
@media (max-width: 768px) {
	.ticket-card {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

/* ============================================================
   PROSE — üldine teksti-sektsiooni stiil
   ============================================================ */
.prose-section {
	padding-block: 5rem;
}

.prose {
	max-width: 72ch;
	line-height: 1.8;
	color: var(--color-maroon-dark);
}
.prose h2 {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: clamp(1.4rem, 2.5vw, 1.8rem);
	color: var(--color-maroon);
	margin: 2.5rem 0 .75rem;
}
.prose h3 {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 1.1rem;
	color: var(--color-maroon);
	margin: 2rem 0 .5rem;
}
.prose p { margin: 0 0 1.1rem; }
.prose a { color: var(--color-maroon); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--color-maroon-dark); }
.prose ul, .prose ol { padding-left: 1.5rem; margin: 0 0 1.1rem; }
.prose li { margin-bottom: .4rem; }
.prose strong { font-weight: 700; }

.eu-note {
	margin-top: 3rem;
	padding: 1.25rem 1.5rem;
	border-left: 3px solid var(--color-gold);
	background: rgba(232,192,32,.07);
	font-size: .9rem;
	line-height: 1.7;
	max-width: 72ch;
}
.eu-note p { margin: 0; }

/* ============================================================
   KONTAKT leht
   ============================================================ */
.contact-intro {
	margin-bottom: 4rem;
}
.contact-email-label {
	font-size: .8rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--color-gold);
	font-weight: 700;
	margin: 0 0 .35rem;
}
.contact-email {
	display: block;
	font-family: var(--font-head);
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--color-maroon);
	text-decoration: none;
}
.contact-email:hover { text-decoration: underline; text-underline-offset: 4px; }

.team-section__title {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 1.1rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--color-maroon);
	margin: 0 0 1.5rem;
}
.team-list {
	list-style: none;
	padding: 0;
	margin: 0;
	max-width: 60ch;
}
.team-list__item {
	display: flex;
	justify-content: space-between;
	gap: 1.5rem;
	padding: .75rem 0;
	border-bottom: 1px solid rgba(107,10,45,.1);
}
.team-list__name { font-weight: 600; color: var(--color-maroon-dark); }
.team-list__role { color: var(--color-maroon); opacity: .75; font-size: .92rem; text-align: right; }

/* ============================================================
   LEIGOST — alamlehtede kaardid
   ============================================================ */
.subpage-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
	margin-top: 3rem;
}
.subpage-card {
	display: block;
	padding: 2rem;
	border: 1px solid rgba(107,10,45,.15);
	border-radius: .5rem;
	text-decoration: none;
	transition: border-color .2s, transform .2s, box-shadow .2s;
}
.subpage-card:hover {
	border-color: var(--color-maroon);
	transform: translateY(-3px);
	box-shadow: 0 6px 24px rgba(107,10,45,.1);
}
.subpage-card__title {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--color-maroon);
	margin: 0 0 .5rem;
}
.subpage-card__excerpt { font-size: .9rem; color: var(--color-maroon-dark); opacity: .75; margin: 0 0 1rem; }
.subpage-card__arrow { font-size: 1.3rem; color: var(--color-gold); }

/* ============================================================
   PILDIGALERII
   ============================================================ */
.gallery-section { padding-block: 4rem; }
.gallery-grid {
	columns: 3;
	column-gap: 1rem;
}
.gallery-item {
	break-inside: avoid;
	margin: 0 0 1rem;
	cursor: zoom-in;
	overflow: hidden;
	border-radius: .35rem;
	outline-offset: 3px;
}
.gallery-item img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.03); }

@media (max-width: 900px) { .gallery-grid { columns: 2; } }
@media (max-width: 560px) { .gallery-grid { columns: 1; } }

/* ============================================================
   TOETAJAD
   ============================================================ */
.toetajad-logos {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	align-items: center;
	margin-bottom: 3rem;
}
.toetajad-logo img { max-height: 120px; max-width: 200px; width: auto; display: block; }
.eu-funding-text { margin-top: 2rem; }
.eu-logos-row { margin-top: 1.5rem; display: flex; gap: 1.5rem; align-items: center; }
.eu-logos-label { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--color-maroon); opacity: .65; margin: 0; }
.toetajad-eu-logos {
	margin: 2.5rem 0 0;
	padding: 2rem 0 0;
	border-top: 1px solid rgba(0,0,0,.1);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 2.5rem;
}
.toetajad-eu-logos img { max-height: 90px; width: auto; max-width: 100%; height: auto; display: block; }

/* ============================================================
   METSARADA
   ============================================================ */
.metsarada-hero-image {
	margin: 0 0 2.5rem;
	border-radius: .5rem;
	overflow: hidden;
	max-height: 500px;
}
.metsarada-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.metsarada-times { margin-top: 1.5rem; }
.metsarada-eu-logos {
	margin: 3rem 0 0;
	padding: 2rem 0 0;
	border-top: 1px solid rgba(0,0,0,.1);
}
.metsarada-eu-logos img { max-width: 480px; height: auto; display: block; }

/* ============================================================
   LIGHTBOX (galerii)
   ============================================================ */
.lb-overlay {
	position: fixed;
	inset: 0;
	z-index: 9000;
	background: rgba(0,0,0,.92);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	cursor: zoom-out;
	opacity: 0;
	visibility: hidden;
	transition: opacity .22s ease, visibility .22s;
}
.lb-overlay.is-open { opacity: 1; visibility: visible; }

.lb-overlay img {
	max-width: 100%;
	max-height: 90vh;
	object-fit: contain;
	border-radius: .5rem;
	box-shadow: 0 20px 60px rgba(0,0,0,.6);
	cursor: default;
}

.lb-close {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	width: 44px;
	height: 44px;
	border: none;
	background: rgba(255,255,255,.15);
	border-radius: 50%;
	color: #fff;
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .15s;
}
.lb-close:hover { background: rgba(255,255,255,.28); }

.lb-prev, .lb-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border: none;
	background: rgba(255,255,255,.15);
	border-radius: 50%;
	color: #fff;
	font-size: 1.3rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .15s;
}
.lb-prev { left: 1.25rem; }
.lb-next { right: 1.25rem; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.28); }

/* Galerii thumbnail — kursoriga näidata et on klikitav */
.gallery-item__link { cursor: zoom-in; }

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    left: auto;
    z-index: 9999;
    max-width: 420px;
    background: var(--color-maroon-dark);
    color: var(--color-cream);
    padding: 1.1rem 1.25rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: .85rem;
    box-shadow: 0 8px 32px rgba(0,0,0,.45);
    transform: translateY(calc(100% + 2rem));
    transition: transform .35s ease;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__text {
    font-size: .82rem;
    line-height: 1.55;
    color: rgba(245,239,233,.85);
}
.cookie-banner__text a {
    color: var(--color-gold);
    text-decoration: underline;
    text-decoration-thickness: 1px;
}
.cookie-banner__actions { display: flex; gap: .6rem; }
.cookie-banner__accept {
    flex: 1;
    background: var(--color-gold);
    color: var(--color-maroon-dark);
    border: none;
    border-radius: 6px;
    padding: .55rem 1rem;
    font-family: var(--font-head);
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: background .15s;
}
.cookie-banner__accept:hover { background: var(--color-gold-hover); }
.cookie-banner__decline {
    background: transparent;
    color: rgba(245,239,233,.6);
    border: 1px solid rgba(245,239,233,.25);
    border-radius: 6px;
    padding: .55rem .9rem;
    font-family: var(--font-head);
    font-size: .8rem;
    cursor: pointer;
    transition: border-color .15s, color .15s;
    white-space: nowrap;
}
.cookie-banner__decline:hover { border-color: rgba(245,239,233,.5); color: var(--color-cream); }
@media (max-width: 480px) {
    .cookie-banner { left: 1rem; right: 1rem; max-width: none; bottom: 1rem; }
}

/* ============================================================
   ELAMUSED LEHT
   ============================================================ */
.elamused-page { padding-top: 3rem; padding-bottom: 5rem; }
.elamused-intro { max-width: 780px; margin: 0 auto 3rem; }
.elamused-intro__text { font-size: 1.1rem; line-height: 1.75; }
.elamused-intro__text p { margin: 0 0 1.2em; }

.elamused-hero-image {
    margin: 0 0 4rem;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16/7;
}
.elamused-hero-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.elamused-section { margin-bottom: 4rem; }
.elamused-section__text { max-width: 780px; margin: 0 auto 2rem; font-size: 1.05rem; line-height: 1.7; }
.elamused-section__text p { margin: 0 0 1em; }
.elamused-section__text strong { color: var(--color-maroon); }

.elamused-gallery {
    display: grid;
    gap: 1rem;
    border-radius: 12px;
    overflow: hidden;
}
.elamused-gallery--3 { grid-template-columns: repeat(3, 1fr); }
.elamused-gallery--4 { grid-template-columns: repeat(4, 1fr); }

.elamused-gallery__item {
    margin: 0;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: zoom-in;
    position: relative;
}
.elamused-gallery__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.elamused-gallery__item:hover img { transform: scale(1.04); }

.elamused-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,.12);
    margin: 0 0 2.5rem;
}
.elamused-visit { text-align: center; padding-bottom: 2rem; }
.elamused-visit__logo img { max-height: 80px; max-width: 220px; display: inline-block; }
.elamused-visit__link { color: var(--color-maroon); font-weight: 700; text-decoration: underline; }

@media (max-width: 900px) {
    .elamused-gallery--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .elamused-gallery--3,
    .elamused-gallery--4 { grid-template-columns: 1fr 1fr; }
    .elamused-hero-image { aspect-ratio: 16/9; }
}

/* ============================================================
   SISULEHTEDE PILDIGALERII (tootja-/ajaloolehed)
   ============================================================ */
.prose figure img { border-radius: 14px; }
.prose-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2rem 0 2.5rem; }
.prose-gallery__item { padding: 0; border: 0; background: none; cursor: zoom-in; border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 3; }
.prose-gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.prose-gallery__item:hover img { transform: scale(1.04); }
@media (max-width: 640px) { .prose-gallery { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   PARTNERITE LOGOSLAIDER (avaleht) — auto-liikuv marquee
   ============================================================ */
.partners__marquee { overflow: hidden; width: 100%; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.partners__track { display: flex; align-items: center; gap: 4rem; width: max-content; list-style: none; margin: 0; padding: 1rem 2rem; will-change: transform; }
@media (prefers-reduced-motion: reduce) { .partners__track { flex-wrap: wrap; justify-content: center; width: auto; transform: none !important; } }
