/* Dialog Obronny — nawigacja, hero, licznik i sekcje treści. */

/* ------------------------------------------------------------- NAWIGACJA */

.do-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 24px;
	height: 64px;
	padding: 0 var(--do-pad);
	background: rgba(0, 0, 0, 0);
	border-bottom: 1px solid transparent;
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	transition: background .4s, border-color .4s;
}
.do-nav.is-scrolled {
	background: rgba(0, 0, 0, .72);
	border-bottom-color: var(--do-line);
}

.do-nav__logo {
	display: flex;
	align-items: center;
	justify-self: start;
}
.do-nav__logo img {
	display: block;
	width: auto;
	height: 26px;
}
.do-nav__logotext {
	font-weight: 600;
	font-size: 15px;
	letter-spacing: -.01em;
}

.do-nav__links {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2.4vw, 36px);
	font-weight: 500;
	font-size: 13px;
	letter-spacing: .02em;
}
.do-nav__links a {
	color: var(--do-body);
	transition: color .2s;
	white-space: nowrap;
}
.do-nav__links a:hover { color: var(--do-tx); }

.do-nav__cta { justify-self: end; }

.do-burger {
	display: none;
	justify-self: end;
	grid-column: 3;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 1px solid rgba(242, 243, 244, .35);
	color: var(--do-tx);
	cursor: pointer;
}
.do-burger > span {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.do-burger span span {
	display: block;
	width: 18px;
	height: 1.5px;
	background: currentColor;
}
.do-burger span span:last-child {
	width: 12px;
	align-self: flex-end;
}

/* ---------------------------------------------------------- MENU MOBILNE */

.do-menu {
	position: fixed;
	inset: 0;
	z-index: 60;
	background: rgba(0, 0, 0, .96);
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 88px clamp(20px, 6vw, 40px) 40px;
	overflow-y: auto;
}
.do-menu[hidden] { display: none; }

.do-menu__close {
	position: absolute;
	right: var(--do-pad);
	top: 10px;
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	background: transparent;
	border: 1px solid rgba(242, 243, 244, .35);
	color: var(--do-tx);
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
}
.do-menu__link {
	font-weight: 600;
	font-size: 32px;
	letter-spacing: -.02em;
	color: var(--do-tx);
	padding: 14px 0;
	border-bottom: 1px solid var(--do-line);
}
.do-menu__cta {
	margin-top: 28px;
	align-self: flex-start;
}
.do-menu__note {
	margin-top: auto;
	padding-top: 28px;
	font-size: 12px;
	color: var(--do-mute);
}

/* -------------------------------------------------------------------- HERO */

.do-hero {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: end;
	overflow: hidden;
	isolation: isolate;
}
.do-hero__terrain {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: block;
}
.do-hero__veil,
.do-hero__grid {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}
.do-hero__veil {
	background: linear-gradient(180deg, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, .88) 100%);
}
.do-hero__grid {
	background-image:
		linear-gradient(rgba(242, 243, 244, .045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(242, 243, 244, .045) 1px, transparent 1px);
	background-size: 96px 96px;
	-webkit-mask-image: radial-gradient(70% 70% at 50% 45%, #000 0%, transparent 100%);
	mask-image: radial-gradient(70% 70% at 50% 45%, #000 0%, transparent 100%);
}

.do-hero__content {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 160px var(--do-pad) 56px;
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 24px;
	align-items: end;
}
.do-hero__head {
	grid-column: 1 / span 12;
	display: flex;
	flex-direction: column;
	gap: 28px;
}
.do-hero__eyebrow {
	display: flex;
	align-items: center;
	gap: 14px;
	font-weight: 500;
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--do-body);
}

.do-hero__meta {
	grid-column: 1 / span 12;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px 32px;
	padding-top: 28px;
	border-top: 1px solid rgba(242, 243, 244, .22);
	align-items: start;
}
.do-hero__lead {
	grid-column: span 2;
	max-width: 520px;
	font-weight: 300;
	font-size: clamp(16px, 1.2vw, 18px);
	line-height: 1.6;
	color: var(--do-tx2);
	text-wrap: pretty;
}
.do-hero__cell {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.do-hero__val {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--do-tx);
	font-size: 15px;
}

/* ---------------------------------------------------------------- LICZNIK */

.do-cd {
	position: absolute;
	right: var(--do-pad);
	top: clamp(96px, 14vh, 150px);
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: flex-end;
}
.do-cd__label {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
	font-size: 11px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--do-lbl);
}
.do-cd__groups {
	display: flex;
	align-items: flex-start;
	gap: clamp(10px, 1.2vw, 18px);
}
.do-cd__group {
	display: flex;
	align-items: flex-start;
	gap: clamp(10px, 1.2vw, 18px);
}
.do-cd__col {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: stretch;
}
.do-cd__digits {
	display: flex;
	gap: 3px;
	font-weight: 600;
	font-size: clamp(36px, 4.2vw, 68px);
	line-height: 1;
	letter-spacing: -.03em;
	color: var(--do-tx);
	font-variant-numeric: tabular-nums;
}
.do-cd__slot {
	position: relative;
	display: block;
	width: .62em;
	height: 1em;
	overflow: hidden;
	text-align: center;
}
.do-cd__drum {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	display: flex;
	flex-direction: column;
	transition: transform .55s cubic-bezier(.2, .75, .2, 1);
}
.do-cd__drum span {
	display: block;
	height: 1em;
}
.do-cd__bar {
	position: relative;
	height: 2px;
	background: #26292c;
}
.do-cd__bar span {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 0;
	background: var(--do-grad);
	transition: width .9s linear;
}
.do-cd__unit {
	font-weight: 500;
	font-size: 10px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--do-lbl);
}
.do-cd__sep {
	font-weight: 300;
	font-size: clamp(36px, 4.2vw, 68px);
	line-height: 1;
	color: var(--do-line3);
}

/* ----------------------------------------------------------- KONFERENCJA */

.do-cols2 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 32px 48px;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.7;
	color: var(--do-body);
	text-wrap: pretty;
}

.do-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	border-top: 1px solid var(--do-line);
}
.do-stat {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 22px;
	min-width: 0;
	min-height: 140px;
	padding: 24px;
	border-right: 1px solid var(--do-line);
}
.do-stat--first { padding-left: 0; }
.do-stat--last {
	padding-right: 0;
	border-right: 0;
}
.do-stat__tile {
	position: relative;
	width: 72px;
	height: 72px;
	flex: none;
	padding: 1px;
	background: var(--do-line);
	clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
	display: grid;
	place-items: center;
	overflow: hidden;
}
.do-stat__tile::before {
	content: "";
	position: absolute;
	inset: 1px;
	background: var(--do-p1);
	clip-path: polygon(0 0, calc(100% - 17px) 0, 100% 17px, 100% 100%, 0 100%);
}
.do-stat__glow {
	position: absolute;
	inset: 1px;
	background: radial-gradient(70% 70% at 30% 100%, rgba(245, 130, 32, .22), transparent 70%);
}
.do-stat__mark {
	position: absolute;
	left: 1px;
	bottom: 1px;
	width: 26px;
	height: 3px;
	background: var(--do-grad);
}
.do-stat__icon {
	position: relative;
	width: 28px;
	height: 28px;
	display: block;
	filter: drop-shadow(0 0 14px rgba(245, 130, 32, .35));
}
.do-stat__text {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
}
.do-stat__val {
	font-weight: 600;
	font-size: clamp(28px, 2.6vw, 40px);
	letter-spacing: -.02em;
	line-height: 1;
	color: var(--do-tx);
}

/* ----------------------------------------------------------- PASY ZDJĘCIOWE */

.do-band {
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid var(--do-line);
}
.do-band--1 { height: min(78vh, 720px); }
.do-band--2 { height: min(60vh, 560px); }

.do-band__img {
	position: absolute;
	left: 0;
	top: -10%;
	width: 100%;
	height: 120%;
	object-fit: cover;
}
.do-band--1 .do-band__img { filter: grayscale(1) contrast(1.05) brightness(.8); }
.do-band--2 .do-band__img { filter: grayscale(1) contrast(1.05) brightness(.75); }

.do-band__veil {
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.do-band--1 .do-band__veil {
	background:
		linear-gradient(135deg, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .45) 35%, rgba(0, 0, 0, 0) 65%),
		linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, .7) 100%);
}
.do-band--2 .do-band__veil {
	background: linear-gradient(180deg, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, .8) 100%);
}

.do-band__quote {
	position: absolute;
	left: 0;
	top: 0;
	padding: clamp(48px, 7vw, 96px) var(--do-pad) 0;
	max-width: 820px;
}
.do-band__quote .do-tick { margin-bottom: 20px; }
.do-band__quote p {
	font-weight: 500;
	letter-spacing: -.02em;
	line-height: 1.2;
	font-size: clamp(24px, 2.6vw, 40px);
	color: var(--do-tx);
	text-wrap: balance;
}

.do-band__foot {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 16px 40px;
	padding: 0 var(--do-pad) 48px;
}
.do-band__foot--right { justify-content: flex-end; }
.do-band__foot--split {
	justify-content: space-between;
	padding-bottom: 44px;
}
.do-band__title {
	font-weight: 500;
	letter-spacing: -.02em;
	line-height: 1.1;
	font-size: clamp(24px, 2.6vw, 40px);
	color: var(--do-tx);
}
.do-fig {
	font-weight: 500;
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--do-body);
	text-align: right;
	line-height: 1.8;
}

/* -------------------------------------------------------- NAGŁÓWEK SEKCJI */

.do-sechead { margin-bottom: clamp(40px, 5vw, 72px); }
.do-sechead.do-grid12 { gap: 20px 24px; }
.do-sechead__row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	gap: 16px 40px;
}
.do-sechead__desc {
	max-width: 380px;
	font-size: 15px;
	line-height: 1.5;
	color: var(--do-lbl);
}

/* ------------------------------------------------------------ TEMATY */

.do-carousel__nav {
	display: flex;
	align-items: center;
	gap: 14px;
}
.do-carousel__count {
	font-weight: 500;
	font-size: 12px;
	letter-spacing: .1em;
	color: var(--do-lbl);
	font-variant-numeric: tabular-nums;
}

.do-carousel {
	position: relative;
	margin-right: calc(-1 * var(--do-pad));
}
.do-track {
	display: flex;
	gap: 1px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
	background: var(--do-line);
	border: 1px solid var(--do-line);
	border-right: 0;
	padding-right: var(--do-pad);
	scroll-padding-right: var(--do-pad);
}
.do-track::-webkit-scrollbar { display: none; }

.do-track__fade {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: clamp(60px, 10vw, 160px);
	pointer-events: none;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .85));
}
.do-track__progress {
	display: flex;
	align-items: center;
	gap: 20px;
	padding-top: 20px;
}
.do-track__rail {
	position: relative;
	flex: 1;
	height: 1px;
	background: var(--do-line);
}
.do-track__rail span {
	position: absolute;
	left: 0;
	top: -1px;
	height: 3px;
	width: 4%;
	background: var(--do-grad);
	transition: width .25s;
}

.do-card {
	flex: 0 0 min(360px, 84vw);
	scroll-snap-align: start;
	background: #000;
	display: flex;
	flex-direction: column;
	transition: background .3s;
}
.do-card:hover { background: var(--do-p2); }

.do-card__media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-bottom: 1px solid var(--do-line);
	clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
}
.do-card__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(1) contrast(1.05);
	opacity: .85;
	transition: transform .9s var(--do-ease), filter .6s, opacity .6s;
}
.do-card:hover .do-card__img {
	transform: scale(1.04);
	filter: grayscale(0) contrast(1.05);
	opacity: 1;
}
.do-card__n {
	position: absolute;
	left: 16px;
	top: 14px;
	pointer-events: none;
	font-weight: 500;
	font-size: 11px;
	letter-spacing: .14em;
	color: var(--do-tx);
	background: rgba(0, 0, 0, .65);
	padding: 5px 10px;
	clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 0 100%);
}
.do-card__body {
	padding: 22px 22px 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}
.do-card__title {
	font-weight: 600;
	font-size: 13px;
	letter-spacing: .14em;
	text-transform: uppercase;
	line-height: 1.4;
	color: var(--do-tx);
}
.do-card__desc {
	font-size: 14.5px;
	line-height: 1.55;
	color: var(--do-lbl);
	text-wrap: pretty;
	flex: 1;
}
.do-card__foot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 14px;
	border-top: 1px solid var(--do-line);
	font-weight: 500;
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--do-lbl);
}

/* ------------------------------------------------------------ PROGRAM */

.do-agenda__intro {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 400px;
}
.do-agenda__intro p {
	font-size: 15px;
	line-height: 1.5;
	color: var(--do-lt-lbl);
}
.do-legend {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	font-weight: 500;
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--do-lt-lbl);
}
.do-legend > span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.do-chip {
	display: block;
	width: 8px;
	height: 8px;
	flex: none;
	border: 1px solid var(--do-lt-tx);
}
.do-chip--full { background: var(--do-lt-tx); }

.do-agenda {
	overflow-x: auto;
	scrollbar-width: none;
}
.do-agenda::-webkit-scrollbar { display: none; }
.do-agenda__min { min-width: 900px; }

.do-agenda__head,
.do-agenda__row {
	display: grid;
	grid-template-columns: 72px minmax(300px, 1.7fr) minmax(200px, 1fr) minmax(180px, .8fr);
	gap: 32px;
}
.do-agenda__head {
	padding: 14px 0;
	border-top: 1px solid var(--do-lt-tx);
	border-bottom: 1px solid var(--do-lt-line);
	font-weight: 500;
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--do-lt-lbl);
}
.do-agenda__rows {
	display: flex;
	flex-direction: column;
}
.do-agenda__row {
	align-items: start;
	padding: 44px 0;
	border-bottom: 1px solid var(--do-lt-line);
	transition: background .25s;
}
.do-agenda__row:hover { background: var(--do-lt-hover); }

.do-agenda__n {
	font-weight: 300;
	font-size: 28px;
	line-height: 1;
	letter-spacing: -.02em;
	color: #9aa0a4;
	font-variant-numeric: tabular-nums;
	padding-top: 4px;
}
.do-agenda__main {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.do-agenda__tag {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	font-weight: 500;
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--do-lt-lbl);
}
.do-agenda__dot { color: #c9cdd0; }
.do-agenda__title {
	font-weight: 500;
	font-size: clamp(17px, 1.3vw, 21px);
	letter-spacing: -.01em;
	line-height: 1.3;
	color: var(--do-lt-tx);
	text-wrap: pretty;
	max-width: 600px;
}
.do-agenda__desc {
	font-weight: 300;
	font-size: 15px;
	line-height: 1.7;
	color: var(--do-lt-lbl);
	max-width: 560px;
	text-wrap: pretty;
}
.do-agenda__people,
.do-agenda__mod {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-top: 6px;
	min-width: 0;
}
.do-person {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}
.do-person__name {
	min-width: 0;
	font-weight: 400;
	font-size: 15px;
	line-height: 1.3;
	color: var(--do-lt-tx);
}
.do-agenda__note {
	font-weight: 300;
	font-size: 14px;
	color: #9aa0a4;
}

/* ------------------------------------------------------------- GOŚCIE */

.do-guests {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 1px;
	background: #000;
	border: 1px solid var(--do-line);
}
.do-guest {
	background: #000;
	/* Linie siatki rysują same kafle, więc niedopełniony ostatni rząd zostaje czarny. */
	box-shadow: 0 0 0 1px var(--do-line);
	display: flex;
	flex-direction: column;
	transition: background .3s;
}
.do-guest:hover { background: var(--do-p2); }

.do-guest__media {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border-bottom: 1px solid var(--do-line);
	background: var(--do-p2);
	clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
}
.do-guest__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: saturate(.75) contrast(1.05);
}
.do-guest__tint {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(16, 22, 30, .55) 0%, rgba(16, 22, 30, .35) 40%, rgba(245, 130, 32, .7) 78%, rgba(238, 41, 35, .9) 100%);
	mix-blend-mode: multiply;
	transition: opacity .5s;
}
.do-guest:hover .do-guest__tint { opacity: 0; }
.do-guest__shade {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, .35) 100%);
}
.do-guest__blank {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, var(--do-p3) 0%, #000 100%);
}
.do-guest__hatch {
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 14px);
}
.do-guest__ini {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	font-weight: 300;
	font-size: 64px;
	line-height: 1;
	letter-spacing: -.04em;
	color: var(--do-line3);
}
.do-guest__n {
	position: absolute;
	left: 14px;
	top: 12px;
	pointer-events: none;
	font-weight: 500;
	font-size: 11px;
	letter-spacing: .14em;
	color: var(--do-lbl);
}
.do-guest__body {
	padding: 16px 16px 20px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.do-guest__name {
	font-weight: 500;
	font-size: 16px;
	letter-spacing: -.01em;
	line-height: 1.25;
	color: var(--do-tx);
}
.do-guest__role {
	font-size: 13px;
	line-height: 1.4;
	color: var(--do-lbl);
}

/* ------------------------------------------------------------ MIEJSCE */

.do-sec--map {
	position: relative;
	background: var(--do-lt-bg2);
	color: var(--do-lt-tx);
	border-bottom: 1px solid var(--do-lt-line);
	min-height: min(92vh, 820px);
	overflow: hidden;
	display: grid;
	align-items: center;
}
.do-map {
	position: absolute;
	inset: 0;
}
.do-map__canvas {
	position: absolute;
	inset: 0;
	background: var(--do-lt-bg2);
}
.do-map__grid {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 400;
	background-image:
		linear-gradient(rgba(17, 17, 17, .045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(17, 17, 17, .045) 1px, transparent 1px);
	background-size: 120px 120px;
}
/* Podpis wsuwamy nad przyciski zoomu Leafletu, żeby się nie nakładały. */
.do-map__coord {
	position: absolute;
	right: 16px;
	bottom: 118px;
	z-index: 500;
	pointer-events: none;
	font-weight: 500;
	font-size: 10px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--do-lt-lbl);
	text-align: right;
	line-height: 1.8;
}
.do-map__fade {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 401;
	background: linear-gradient(90deg, rgba(246, 247, 248, .98) 0%, rgba(246, 247, 248, .94) 34%, rgba(246, 247, 248, .5) 50%, rgba(246, 247, 248, 0) 62%);
}
.do-map__text {
	position: relative;
	z-index: 402;
	padding-top: var(--do-sec);
	padding-bottom: var(--do-sec);
	align-items: start;
	pointer-events: none;
}
.do-sec--map .do-col-left {
	display: flex;
	flex-direction: column;
	gap: 28px;
	pointer-events: auto;
}

.do-table {
	display: flex;
	flex-direction: column;
	border-top: 1px solid var(--do-lt-tx);
}
.do-table__row {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 16px;
	padding: 14px 0;
	border-bottom: 1px solid var(--do-lt-line);
	font-size: 14px;
}
.do-table__row .do-label { padding-top: 2px; }
.do-table__val { color: var(--do-lt-tx); }

/* Leaflet — wygląd zgodny z projektem */
.do-map .leaflet-tile-pane { filter: grayscale(1) contrast(.92) brightness(1.04); }
.do-map .leaflet-container { background: var(--do-lt-bg2); font-family: inherit; }
.do-map .leaflet-control-attribution {
	background: rgba(246, 247, 248, .85) !important;
	color: var(--do-lbl) !important;
	font: 10px Poppins, sans-serif;
	letter-spacing: .02em;
}
.do-map .leaflet-control-attribution a { color: var(--do-lt-lbl) !important; }
.do-map .leaflet-control-zoom {
	border: 0 !important;
	box-shadow: none !important;
	margin: 0 16px 30px 0 !important;
}
.do-map .leaflet-control-zoom a {
	width: 36px !important;
	height: 36px !important;
	line-height: 36px !important;
	background: #fff !important;
	color: var(--do-lt-tx) !important;
	border: 1px solid var(--do-lt-line) !important;
	font-weight: 400 !important;
}
.do-map .leaflet-control-zoom a:hover {
	background: var(--do-or) !important;
	color: #fff !important;
	border-color: var(--do-or) !important;
}
.do-pin {
	position: relative;
	width: 18px;
	height: 18px;
}
.do-pin__core {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: var(--do-grad-135);
	box-shadow: 0 0 0 3px #fff, 0 6px 18px rgba(238, 41, 35, .35);
}
.do-pin__ring {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 18px;
	height: 18px;
	margin: -9px 0 0 -9px;
	border-radius: 50%;
	border: 1.5px solid var(--do-or);
	animation: do-pulse 2.6s ease-out infinite;
}
.do-pin__ring--b { animation-delay: .9s; }
.do-pin__ring--c { animation-delay: 1.8s; }
@keyframes do-pulse {
	0% { transform: scale(1); opacity: .9; }
	100% { transform: scale(5); opacity: 0; }
}
.do-pin__lbl {
	position: absolute;
	left: 30px;
	top: -12px;
	white-space: nowrap;
	background: #fff;
	border: 1px solid var(--do-lt-line);
	padding: 10px 14px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
	clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}
.do-pin__lbl b {
	display: block;
	font-weight: 600;
	font-size: 14px;
	color: var(--do-lt-tx);
	letter-spacing: -.01em;
}
.do-pin__lbl span {
	display: block;
	font-weight: 500;
	font-size: 10px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--do-lt-lbl);
	margin-top: 3px;
}

/* ----------------------------------------------------- ORGANIZATORZY */

.do-orgs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}
.do-orgcard {
	padding: 1px;
	background: var(--do-line);
	clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
}
.do-orgcard__in {
	background: #000;
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	gap: 40px;
	min-height: 260px;
	justify-content: space-between;
	clip-path: polygon(0 0, calc(100% - 21px) 0, 100% 21px, 100% 100%, 0 100%);
}
.do-orgcard__logo {
	display: block;
	width: 100%;
	height: auto;
}
.do-orgcard__name {
	font-weight: 600;
	font-size: 24px;
	letter-spacing: -.02em;
}
.do-orgcard__sig {
	font-size: 15px;
	line-height: 1.5;
	color: var(--do-body);
}
.do-orgcard__sig span { color: var(--do-lbl); }
