:root {
	--tz-gold: #E5B443;
	--tz-red: #771C1C;
	--tz-sage: #B4D6A6;
	--tz-leaf: #8BC34A;
	--tz-dark: #2A2A2A;
	--tz-light: #ffffff;
	--tz-callout: #fff7e5;
	--tz-body-font: 'Work Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--tz-heading-font: 'Playfair Display', Georgia, 'Times New Roman', serif;
	--tz-section-padding: clamp(2rem, 4vw, 4rem);
	--tz-border-radius: 16px;
	--tz-transition: all 0.3s ease;
}

.tzp-section-title {
	font-family: var(--tz-heading-font);
	font-weight: 700;
	font-size: clamp(2rem, 5vw, 3rem);
	margin-bottom: 1.5rem;
	color: var(--tz-dark);
}

.tzp-section-title-gold {
	font-family: var(--tz-heading-font);
	font-weight: 700;
	font-size: clamp(2rem, 5vw, 3rem);
	margin-bottom: 1.5rem;
	color: var(--tz-gold);
}

.tzp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 2.5rem;
	border-radius: 9999px;
	font-family: var(--tz-body-font);
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	text-decoration: none;
	border: 2px solid transparent;
	transition: var(--tz-transition);
	cursor: pointer;
}

.tzp-button:focus-visible {
	outline: 3px solid var(--tz-leaf);
	outline-offset: 2px;
}

.tzp-button--filled {
	background-color: var(--tz-red);
	color: #fff;
}

.tzp-button--filled:hover,
.tzp-button--filled:focus-visible {
	background-color: var(--tz-gold);
	color: var(--tz-dark);
}

.tzp-button--outline {
	background-color: transparent;
	color: var(--tz-red);
	border-color: var(--tz-red);
}

.tzp-button--outline:hover,
.tzp-button--outline:focus-visible {
	color: var(--tz-dark);
	border-color: var(--tz-gold);
}

.tzp-hero {
	position: relative;
	display: grid;
	place-items: center;
	--tzp-hero-text-color: var(--tz-dark);
	color: var(--tzp-hero-text-color);
	overflow: hidden;
	background-size: cover;
	background-position: center;
}

.tzp-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 960px;
	margin: 0;
	text-align: left;
	display: grid;
	gap: 1.25rem;
}

.tzp-hero--align-center .tzp-hero__inner {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	justify-items: center;
}

.tzp-hero--align-right .tzp-hero__inner {
	text-align: right;
	margin-left: auto;
}

.tzp-hero__inner > .tzp-button {
	justify-self: start;
}

.tzp-hero--align-center .tzp-hero__inner > .tzp-button {
	justify-self: center;
}

.tzp-hero--align-right .tzp-hero__inner > .tzp-button {
	justify-self: end;
}

.tzp-hero__subtitle {
	margin-left: 0;
	margin-right: 0;
	max-width: 720px;
}

.tzp-hero--align-center .tzp-hero__subtitle {
	margin-left: auto;
	margin-right: auto;
}

.tzp-hero__inner > .tzp-button {
	max-width: 240px;
	width: auto;
}

.tzp-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.tzp-hero--align-center .tzp-hero__actions {
	justify-content: center;
}

.tzp-hero--align-right .tzp-hero__actions {
	justify-content: flex-end;
}

.tzp-hero__actions .tzp-button {
	max-width: none;
}

.tzp-hero__title {
	font-family: var(--tz-heading-font);
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	margin-bottom: 1rem;
	color: var(--tzp-hero-text-color);
}

.tzp-hero__subtitle {
	font-family: var(--tz-body-font);
	font-size: clamp(1.125rem, 3vw, 1.5rem);
	max-width: 720px;
	margin-bottom: 1.5rem;
	color: var(--tzp-hero-text-color);
}

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

.tzp-story-teaser {
	background-color: var(--tz-light);
	padding: var(--tz-section-padding);
}

.tzp-story-teaser__inner {
	display: grid;
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: center;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	max-width: 1180px;
	margin: 0 auto;
}

.tzp-story-teaser--image-left .tzp-story-teaser__inner {
	direction: rtl;
	text-align: left;
}

.tzp-story-teaser--image-left .tzp-story-teaser__content {
	direction: ltr;
}

.tzp-story-teaser__media {
	border-radius: var(--tz-border-radius);
	overflow: hidden;
	box-shadow: 0 24px 48px rgba(42, 42, 42, 0.12);
}

.tzp-story-teaser__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tzp-story-teaser__content {
	font-family: var(--tz-body-font);
	color: var(--tz-dark);
}

.tzp-story-teaser__copy p {
	line-height: 1.7;
	font-size: 1.05rem;
	margin-bottom: 1rem;
}

.tzp-process-steps {
	padding: var(--tz-section-padding);
	background: linear-gradient(135deg, rgba(229, 180, 67, 0.1), rgba(180, 214, 166, 0.25));
}

.tzp-process-steps__inner {
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}

.tzp-process-steps__grid {
	margin-top: 2.5rem;
	display: grid;
	gap: clamp(1.5rem, 3vw, 2.5rem);
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.tzp-process-steps__card {
	background-color: var(--tz-light);
	border-radius: var(--tz-border-radius);
	padding: 2rem 1.75rem;
	box-shadow: 0 16px 32px rgba(42, 42, 42, 0.08);
	text-align: left;
	position: relative;
	overflow: hidden;
}

.tzp-process-steps__number {
	position: absolute;
	top: 1rem;
	right: 1.5rem;
	font-family: var(--tz-heading-font);
	font-size: 2.25rem;
	color: rgba(119, 28, 28, 0.15);
}

.tzp-process-steps__title {
	font-family: var(--tz-heading-font);
	font-size: 1.5rem;
	margin-bottom: 0.75rem;
	color: var(--tz-dark);
}

.tzp-process-steps__description {
	font-family: var(--tz-body-font);
	line-height: 1.6;
	color: rgba(42, 42, 42, 0.85);
}

.tzp-map {
	padding: var(--tz-section-padding);
	background-color: var(--tz-light);
}

.tzp-map__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	gap: 1.5rem;
}

.tzp-map__filters {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.tzp-map__filter-select {
	border: 2px solid rgba(42, 42, 42, 0.1);
	border-radius: 999px;
	padding: 0.75rem 1.5rem;
	font-family: var(--tz-body-font);
	font-size: 0.95rem;
	background-color: #fff;
	color: var(--tz-dark);
}

.tzp-map__search {
	display: flex;
}

.tzp-map__search input {
	border: 2px solid rgba(42, 42, 42, 0.1);
	border-radius: 999px;
	padding: 0.75rem 1.5rem;
	font-family: var(--tz-body-font);
	font-size: 0.95rem;
	min-width: 220px;
	width: auto;
}

.tzp-map__search input:focus-visible {
	outline: 3px solid var(--tz-leaf);
	outline-offset: 2px;
	border-color: transparent;
}

.tzp-map__canvas-wrap {
	position: relative;
	display: block;
	width: 100%;
	border-radius: 24px;
}

.tzp-map__canvas {
	width: 100%;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 24px 48px rgba(42, 42, 42, 0.12);
}

.tzp-map__list {
	display: grid;
	gap: 1rem;
}

.tzp-map__list [data-tzp-map-results] {
	display: contents;
}

.tzp-map__list-title {
	font-family: var(--tz-heading-font);
	font-size: 1.5rem;
	margin: 0 0 0.75rem;
}

.tzp-map__empty {
	padding: 1.5rem;
	border-radius: var(--tz-border-radius);
	background: rgba(229, 180, 67, 0.18);
	color: var(--tz-dark);
	font-weight: 600;
	text-align: center;
}

.tzp-map__empty--error {
	background: rgba(119, 28, 28, 0.18);
}

.tzp-map__marker {
	background: transparent;
	border: none;
}

.tzp-map__marker-icon {
	display: inline-flex;
	width: 32px;
	height: 32px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--tz-red);
	border: 3px solid var(--tz-gold);
	box-shadow: 0 8px 18px rgba(42, 42, 42, 0.35);
}

.tzp-map__marker-icon::after {
	content: '';
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--tz-light);
}

.leaflet-popup-content-wrapper {
	border-radius: 14px;
	box-shadow: 0 16px 30px rgba(42, 42, 42, 0.25);
}

.leaflet-popup-content {
	margin: 1rem 1.2rem;
}

.tzp-map__popup .tzp-button {
	margin-top: 0.75rem;
}

.tzp-map__card {
	display: grid;
	gap: 0.4rem;
	padding: 1.25rem 1.5rem;
	border-radius: 16px;
	background: var(--tz-light);
	box-shadow: 0 10px 24px rgba(42, 42, 42, 0.08);
}

.tzp-map__card--clickable {
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tzp-map__card--clickable:focus {
	outline: 3px solid var(--tz-gold);
	outline-offset: 4px;
}

.tzp-map__card--clickable:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(42, 42, 42, 0.12);
}

.tzp-map__card-type {
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--tz-red);
}

.tzp-map__card-title {
	margin: 0;
	font-family: var(--tz-heading-font);
	font-size: 1.35rem;
	color: var(--tz-dark);
}

.tzp-map__card-address {
	margin: 0;
	font-family: var(--tz-body-font);
	color: rgba(42, 42, 42, 0.8);
}

.tzp-map__card-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	padding-top: 0.5rem;
}

.tzp-map__pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

.tzp-map__pagination-button {
	background: var(--tz-light);
	border: 2px solid rgba(42, 42, 42, 0.15);
	border-radius: 50%;
	width: 46px;
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.15rem;
	cursor: pointer;
	transition: var(--tz-transition);
}

.tzp-map__pagination-button:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.tzp-map__pagination-button:not(:disabled):hover,
.tzp-map__pagination-button:not(:disabled):focus-visible {
	background: var(--tz-gold);
	color: var(--tz-dark);
}

.tzp-map__pagination-pages {
	font-family: var(--tz-body-font);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.tzp-contact-form {
	padding: var(--tz-section-padding);
	background: linear-gradient(120deg, rgba(229, 180, 67, 0.15), rgba(119, 28, 28, 0.12));
}

.tzp-contact-form__inner {
	max-width: 720px;
	margin: 0 auto;
}

.tzp-form {
	display: grid;
	gap: 1.5rem;
	font-family: var(--tz-body-font);
}

.tzp-form__row {
	display: grid;
	gap: 0.5rem;
}

.tzp-form__row label {
	font-weight: 600;
	color: var(--tz-dark);
}

.tzp-form__row input,
.tzp-form__row textarea,
.tzp-map__filter-select {
	width: 100%;
	border-radius: 12px;
	border: 1px solid rgba(42, 42, 42, 0.15);
	padding: 0.9rem 1rem;
	font-size: 1rem;
	font-family: inherit;
	background-color: #fff;
	transition: var(--tz-transition);
}

.tzp-form__row input:focus-visible,
.tzp-form__row textarea:focus-visible,
.tzp-map__filter-select:focus-visible {
	outline: 3px solid var(--tz-leaf);
	outline-offset: 2px;
	border-color: transparent;
}

.tzp-form__row textarea {
	min-height: 160px;
	resize: vertical;
}

.tzp-form__row--honeypot {
	display: none;
}

.tzp-notice {
	padding: 1rem 1.5rem;
	border-radius: 12px;
	margin-bottom: 1.5rem;
	font-weight: 600;
}

.tzp-notice--success {
	background-color: rgba(139, 195, 74, 0.15);
	color: var(--tz-dark);
}

.tzp-notice--error {
	background-color: rgba(119, 28, 28, 0.15);
	color: var(--tz-dark);
}

.tzp-form__actions {
	display: flex;
	justify-content: flex-start;
}

.tzp-footer {
	background-color: var(--tz-dark);
	color: #fff;
}

.tzp-footer a {
	color: var(--tz-gold);
	text-decoration: none;
	transition: var(--tz-transition);
}

.tzp-footer a:hover,
.tzp-footer a:focus-visible {
	color: #fff;
}

.tzp-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--tz-section-padding)
           clamp(2.5rem, 6vw, 4.5rem);
}

.tzp-footer__column {
	display: grid;
	gap: 1.5rem;
	align-content: start;
}

.tzp-footer__brand-name {
	font-family: var(--tz-heading-font);
	font-size: clamp(2rem, 4vw, 2.75rem);
	color: #fff;
	margin: 0;
}

.tzp-footer__mission,
.tzp-footer__intro {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.05rem;
	line-height: 1.7;
}

.tzp-footer__mission p {
	margin: 0 0 1rem;
}

.tzp-footer__mission p:last-child {
	margin-bottom: 0;
}

.tzp-footer__heading {
	font-family: var(--tz-heading-font);
	text-transform: uppercase;
	font-size: 1rem;
	letter-spacing: 0.18em;
	color: var(--tz-gold);
	margin: 0;
}

.tzp-footer__groups {
	display: grid;
	gap: 1.75rem;
	grid-template-columns: repeat(2, minmax(180px, 1fr));
}

.tzp-footer__group-title {
	font-family: var(--tz-heading-font);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-size: 0.9rem;
	color: var(--tz-gold);
	margin: 0 0 0.75rem;
}

.tzp-footer__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.65rem;
}

.tzp-footer__list a {
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
}

.tzp-footer__list a:hover,
.tzp-footer__list a:focus-visible {
	color: var(--tz-gold);
}

.tzp-footer__contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.85rem;
}

.tzp-footer__contact-list li {
	display: grid;
	gap: 0.25rem;
}

.tzp-footer__contact-label {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.7);
}

.tzp-footer__contact-link,
.tzp-footer__contact-value {
	font-size: 1.05rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.95);
}

.tzp-footer__social {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: flex-start;
}

.tzp-footer__brand .tzp-footer__social {
	margin-top: 1.25rem;
}

.tzp-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	background-color: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.tzp-footer__social-link:hover,
.tzp-footer__social-link:focus-visible {
	background-color: var(--tz-gold);
	color: var(--tz-dark);
}

.tzp-footer__social-icon svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
	display: block;
}

.tzp-footer__contact-cta {
	align-self: start;
}

.tzp-footer__bottom {
	position: relative;
	margin: 10px 0 0;
	margin-left: calc(-1 * (50vw - 50%));
	margin-right: calc(-1 * (50vw - 50%));
	width: 100vw;
	text-align: center;
}

.tzp-footer__logo {
	max-width: none;
	width: 100vw;
	height: auto;
	display: block;
	margin: 0;
}

.tzp-footer__bottom-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(1rem, 3vw, 2.5rem);
	z-index: 1;
	pointer-events: none;
}

.tzp-footer__bw-logo {
	width: clamp(80px, 15vw, 180px);
	height: auto;
	pointer-events: auto;
}

.tzp-footer__copyright {
	margin: 0;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

@media (max-width: 768px) {
	.tzp-hero {
		text-align: center;
		min-height: clamp(132px, 36vh, 288px) !important;
	}

	.tzp-hero__inner {
		text-align: center;
	}

	.tzp-story-teaser__inner {
		grid-template-columns: 1fr;
	}

	.tzp-map__filters {
		justify-content: flex-start;
	}

	.tzp-footer__inner {
		grid-template-columns: 1fr;
	}

	.tzp-footer__groups {
		grid-template-columns: 1fr;
	}

	.tzp-footer__social {
		justify-content: flex-start;
	}
}

/* Newsletter popup */
.tzp-nl-popup {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(1rem, 4vw, 2rem);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.tzp-nl-popup.is-active {
	opacity: 1;
	visibility: visible;
}

.tzp-nl-popup__overlay {
	position: absolute;
	inset: 0;
	background: rgba(17, 17, 17, 0.68);
}

.tzp-nl-popup__dialog {
	position: relative;
	width: 100%;
	max-width: 480px;
	background: var(--tz-callout);
	border-radius: var(--tz-border-radius);
	padding: clamp(2rem, 5vw, 3rem);
	box-shadow: 0 32px 64px rgba(10, 10, 10, 0.28);
	transform: translateY(24px);
	transition: transform 0.4s ease;
}

.tzp-nl-popup.is-active .tzp-nl-popup__dialog {
	transform: translateY(0);
}

.tzp-nl-popup__decor {
	position: absolute;
	width: clamp(48px, 10vw, 80px);
	height: auto;
	pointer-events: none;
	opacity: 0.55;
	z-index: 0;
}

.tzp-nl-popup__decor--tl {
	top: -18px;
	left: -18px;
}

.tzp-nl-popup__decor--tr {
	top: -14px;
	right: -14px;
}

.tzp-nl-popup__decor--bl {
	bottom: -14px;
	left: -14px;
}

.tzp-nl-popup__decor--br {
	bottom: -18px;
	right: -18px;
}

.tzp-nl-popup__close {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	z-index: 2;
	background: transparent;
	border: none;
	font-size: 1.75rem;
	line-height: 1;
	color: var(--tz-dark);
	cursor: pointer;
	padding: 0.25rem;
	transition: color 0.3s ease;
}

.tzp-nl-popup__close:hover,
.tzp-nl-popup__close:focus-visible {
	color: var(--tz-red);
}

.tzp-nl-popup__close:focus-visible {
	outline: 3px solid var(--tz-leaf);
	outline-offset: 2px;
}

.tzp-nl-popup__content {
	position: relative;
	z-index: 1;
	text-align: center;
}

.tzp-nl-popup__title {
	font-family: var(--tz-heading-font);
	font-size: clamp(1.5rem, 4vw, 2rem);
	font-weight: 700;
	color: var(--tz-red);
	margin: 0 0 0.75rem;
}

.tzp-nl-popup__description {
	font-family: var(--tz-body-font);
	font-size: 1rem;
	color: var(--tz-dark);
	margin: 0 0 1.5rem;
	line-height: 1.6;
}

.tzp-nl-popup__form {
	display: grid;
	gap: 0.75rem;
}

.tzp-nl-popup__fields {
	display: grid;
	gap: 0.75rem;
}

.tzp-nl-popup__fields input {
	width: 100%;
	border-radius: 12px;
	border: 1px solid rgba(42, 42, 42, 0.15);
	padding: 0.9rem 1rem;
	font-size: 1rem;
	font-family: var(--tz-body-font);
	background: #fff;
	transition: var(--tz-transition);
}

.tzp-nl-popup__fields input:focus-visible {
	outline: 3px solid var(--tz-leaf);
	outline-offset: 2px;
	border-color: transparent;
}

.tzp-nl-popup__row--honeypot {
	display: none;
}

.tzp-nl-popup__submit {
	width: 100%;
}

.tzp-nl-popup__disclaimer {
	font-size: 0.8rem;
	color: rgba(42, 42, 42, 0.55);
	margin: 0.75rem 0 0;
	line-height: 1.5;
}

.tzp-nl-popup__feedback:empty {
	display: none;
}

.tzp-nl-popup__feedback {
	margin-top: 1rem;
	padding: 0.75rem 1rem;
	border-radius: 12px;
	font-weight: 600;
	font-size: 0.95rem;
}

.tzp-nl-popup__feedback--success {
	background: rgba(139, 195, 74, 0.15);
	color: var(--tz-dark);
}

.tzp-nl-popup__feedback--error {
	background: rgba(119, 28, 28, 0.15);
	color: var(--tz-dark);
}

body.tzp-popup-open {
	overflow: hidden;
}

@media (max-width: 480px) {
	.tzp-nl-popup__dialog {
		padding: 1.75rem 1.25rem;
	}
}
