@charset "utf-8";

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500;1,600&family=Open+Sans:wght@400;500;600;700&display=swap");

:root {
	--paper: #fbfaf5;
	--paper-2: #f4f1e8;
	--mist: #eaf3f1;
	--white: #ffffff;

	--blue: #2f506f;
	--green: #8aaa9b;
	--text: #223d3a;
	--muted: #566f7f;

	--line: rgba(47, 80, 111, 0.18);
	--line-soft: rgba(47, 80, 111, 0.10);
	--shadow: 0 24px 70px rgba(70, 100, 95, 0.08);

	--container: 1180px;
	--header-h: 88px;

	--font-luxury: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--font-ui: "Open Sans", Arial, sans-serif;
}


/* =========================
   NAV SOCIAL ICON
========================= */

/* =========================
   NAV LINKEDIN ICON - FINAL
========================= */

.site-nav .site-nav__linkedin {
	width: 30px;
	height: 30px;
	padding: 0;
	margin-left: -6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;

	border-radius: 50%;
	border: 1px solid rgba(47, 80, 111, 0.28);
	background: rgba(255, 255, 255, 0.34);

	color: rgba(47, 80, 111, 0.88);
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	text-transform: none;
	white-space: nowrap;

	transform: none;
	transition:
		background 0.18s ease,
		color 0.18s ease,
		border-color 0.18s ease,
		box-shadow 0.18s ease;
}

.site-nav .site-nav__linkedin::after {
	display: none !important;
	content: none !important;
}

.site-nav .site-nav__linkedin:hover {
	background: rgba(47, 80, 111, 0.10);
	color: var(--blue);
	border-color: rgba(47, 80, 111, 0.52);
	box-shadow: 0 0 0 4px rgba(47, 80, 111, 0.06);
	transform: none;
}

.site-nav .site-nav__linkedin:focus-visible {
	outline: none;
	box-shadow: 0 0 0 4px rgba(47, 80, 111, 0.12);
}

/* =========================
   RESET / BASE
========================= */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-ui);
	color: var(--text);
	background: var(--paper);
	line-height: 1.7;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
}

button {
	font: inherit;
}

iframe {
	display: block;
	border: 0;
}

.container {
	width: min(var(--container), calc(100% - 64px));
	margin: 0 auto;
}

.site-main {
	background: var(--paper);
}

/* =========================
   HEADER
========================= */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(251, 250, 245, 0.66);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(47, 80, 111, 0.08);
	box-shadow: 0 8px 24px rgba(47, 80, 111, 0.035);
}

.site-header__inner {
	min-height: var(--header-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	position: relative;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	position: relative;
	z-index: 1003;
}

.site-logo__img {
	height: 58px;
	width: auto;
}

/* =========================
   NAVIGATION
========================= */

.site-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 30px;
	flex-wrap: nowrap;
	font-size: 0.94rem;
	font-weight: 600;
	color: rgba(34, 61, 58, 0.70);
}

.site-nav > a,
.site-nav__main-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 10px 0;
	white-space: nowrap;
	letter-spacing: 0.01em;
	transition: color 0.2s ease;
}

.site-nav > a:hover,
.site-nav__main-link:hover {
	color: var(--blue);
}

.site-nav > a::after,
.site-nav__main-link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 2px;
	height: 1px;
	background: rgba(47, 80, 111, 0.55);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.22s ease;
}

.site-nav > a:hover::after,
.site-nav__main-link:hover::after {
	transform: scaleX(1);
}

.site-nav__item--has-dropdown {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.site-nav__item--has-dropdown::after {
	content: "";
	position: absolute;
	left: -16px;
	right: -16px;
	top: 100%;
	height: 18px;
}

.site-nav__group {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.site-subnav-toggle {
	display: none;
}

.site-subnav {
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	min-width: 310px;
	padding: 10px 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(47, 80, 111, 0.12);
	box-shadow: 0 18px 42px rgba(70, 100, 95, 0.12);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity 0.22s ease,
		transform 0.22s ease,
		visibility 0.22s ease;
	z-index: 1002;
}

.site-subnav::before {
	content: "";
	position: absolute;
	top: -7px;
	left: 50%;
	width: 14px;
	height: 14px;
	background: rgba(255, 255, 255, 0.95);
	border-left: 1px solid rgba(47, 80, 111, 0.12);
	border-top: 1px solid rgba(47, 80, 111, 0.12);
	transform: translateX(-50%) rotate(45deg);
}

.site-nav__item--has-dropdown:hover .site-subnav,
.site-nav__item--has-dropdown:focus-within .site-subnav,
.site-nav__item--has-dropdown.is-open .site-subnav {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}

.site-subnav a {
	display: block;
	padding: 13px 20px;
	font-size: 0.95rem;
	line-height: 1.35;
	color: #35586f;
	white-space: nowrap;
	transition:
		background 0.2s ease,
		color 0.2s ease,
		padding-left 0.2s ease;
}

.site-subnav a + a {
	border-top: 1px solid rgba(47, 80, 111, 0.08);
}

.site-subnav a:hover {
	background: rgba(138, 170, 155, 0.10);
	color: var(--blue);
	padding-left: 24px;
}

/* =========================
   MOBILE TOGGLE
========================= */

.nav-toggle {
	display: none;
	position: relative;
	z-index: 1003;
	width: 50px;
	height: 50px;
	padding: 0;
	border: 0;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 8px 24px rgba(52, 78, 94, 0.10);
	cursor: pointer;
}

.nav-toggle span {
	position: absolute;
	left: 14px;
	right: 14px;
	height: 2px;
	border-radius: 999px;
	background: var(--blue);
	transition:
		transform 0.22s ease,
		opacity 0.22s ease,
		top 0.22s ease;
}

.nav-toggle span:nth-child(1) {
	top: 16px;
}

.nav-toggle span:nth-child(2) {
	top: 24px;
}

.nav-toggle span:nth-child(3) {
	top: 32px;
}

.nav-toggle.is-open span:nth-child(1) {
	top: 24px;
	transform: rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
	top: 24px;
	transform: rotate(-45deg);
}

/* =========================
   HERO
========================= */

.hero {
	position: relative;
	margin: 0;
	padding: 0;
	background: var(--mist);
	overflow: hidden;
}

.hero__panel {
	position: relative;
	min-height: 700px;
	margin: 0;
	overflow: hidden;
	background: var(--mist);
}

.hero__image-wrap {
	position: absolute;
	inset: 0;
}

.hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}



.hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			90deg,
			rgba(251, 250, 245, 0.97) 0%,
			rgba(251, 250, 245, 0.93) 24%,
			rgba(251, 250, 245, 0.68) 44%,
			rgba(251, 250, 245, 0.24) 68%,
			rgba(251, 250, 245, 0.00) 100%
		),
		linear-gradient(
			180deg,
			rgba(251, 250, 245, 0.05) 0%,
			rgba(251, 250, 245, 0.00) 52%,
			rgba(251, 250, 245, 0.60) 100%
		);
}



.hero__inner {
	position: relative;
	z-index: 2;
	min-height: 700px;
	display: flex;
	align-items: center;
	padding: 130px 0 120px;
}

.hero__content {
	max-width: 760px;
}

.hero__title-line,
.home-hero h1 {
	margin: 0;
	max-width: 720px;
	font-family: var(--font-luxury);
	font-size: clamp(1.8rem, 3.5vw, 3.7rem);
	line-height: 1.08;
	font-weight: 500;
	letter-spacing: -0.03em;
	color: var(--blue);
}

.home-hero p,
.hero-text-block p {
	max-width: 540px;
	margin: 28px 0 0;
	font-size: 1.08rem;
	line-height: 1.8;
	color: var(--muted);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.hero-wave {
	position: relative;
	z-index: 4;
	margin-top: -112px;
	line-height: 0;
	pointer-events: none;
}

.hero-wave svg {
	display: block;
	width: 100%;
	height: 170px;
}

/* =========================
   BUTTONS
========================= */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 24px;
	border-radius: 999px;
	font-weight: 700;
	border: 1px solid transparent;
	transform: none;
	transition:
		background 0.2s ease,
		color 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

.btn:hover {
	transform: none;
}

.btn--primary {
	background: linear-gradient(90deg, #5b8fb9 0%, #87b67a 100%);
	color: #fff;
	box-shadow: 0 12px 26px rgba(91, 143, 185, 0.18);
}

.btn--primary:hover {
	box-shadow: 0 14px 30px rgba(91, 143, 185, 0.22);
}

.btn--ghost {
	background: rgba(255, 255, 255, 0.74);
	border-color: rgba(47, 80, 111, 0.14);
	color: var(--blue);
}

.btn--ghost:hover {
	background: rgba(138, 170, 155, 0.10);
	border-color: rgba(47, 80, 111, 0.28);
	color: var(--blue);
	box-shadow: 0 0 0 4px rgba(47, 80, 111, 0.04);
}

/* =========================
   HOME INTRO
========================= */

.home-intro {
	padding: 96px 0;
	background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}

.home-intro__grid {
	display: grid;
	grid-template-columns: 0.65fr 1.35fr;
	gap: 56px;
	align-items: center;
}

.home-intro__title {
	position: relative;
}

.home-intro__title::before {
	content: "R";
	position: absolute;
	left: -22px;
	top: -88px;
	font-family: var(--font-luxury);
	font-size: 12rem;
	line-height: 1;
	color: rgba(47, 80, 111, 0.055);
	pointer-events: none;
}

.home-intro__title h2 {
	position: relative;
	z-index: 2;
	margin: 0;
	font-family: var(--font-luxury);
	font-size: clamp(2.4rem, 3.8vw, 2.9rem);
	line-height: 1.08;
	font-weight: 500;
	font-style: italic;
	color: var(--blue);
}

.home-intro__text {
	position: relative;
	padding-left: 42px;
	border-left: 1px solid var(--line);
}

.home-intro__text p {
	margin: 0 0 24px;
	font-size: 1.05rem;
	line-height: 1.9;
	color: var(--muted);
}

.home-intro__text p:last-child {
	margin-bottom: 0;
}

/* =========================
   IMPACT
========================= */

.home-impact {
	padding: 88px 0 48px;
	background:
		radial-gradient(circle at 50% 0%, rgba(138, 170, 155, 0.16), transparent 34%),
		linear-gradient(180deg, var(--mist) 0%, var(--paper) 100%);
}

.home-section-title {
	max-width: 980px;
	margin: 0 auto 80px;
	text-align: center;
}

.home-section-title h2 {
	position: relative;
	display: inline-block;
	margin: 0;
	padding-bottom: 18px;
	font-family: var(--font-luxury);
	font-size: clamp(2.8rem, 5vw, 4.6rem);
	line-height: 1.05;
	font-weight: 500;
	letter-spacing: -0.02em;
	color: var(--blue);
}

.home-section-title h2::after {
	content: "";
	display: block;
	width: 120px;
	height: 1px;
	background: rgba(47, 80, 111, 0.18);
	margin: 22px auto 0;
}

.home-section-title p {
	max-width: 980px;
	margin: 24px auto 0;
	font-size: 1.05rem;
	line-height: 1.85;
	color: var(--muted);
}

.home-impact__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.home-impact__grid article {
	min-height: 300px;
	padding: 40px 30px;
	text-align: center;
	border-right: 1px solid var(--line);
}

.home-impact__grid article:last-child {
	border-right: 0;
}

.home-impact__number {
	display: none;
}

.home-impact__icon {
	width: 58px;
	height: 58px;
	margin: 0 auto 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(138, 170, 155, 0.14);
	border: 1px solid rgba(47, 80, 111, 0.14);
	font-family: var(--font-luxury);
	font-size: 2rem;
	line-height: 1;
	color: var(--blue);
}

.home-impact h3 {
	margin: 0 0 16px;
	font-family: var(--font-luxury);
	font-size: 2.05rem;
	line-height: 1.08;
	font-weight: 500;
	color: var(--blue);
}

.home-impact p {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.8;
	color: var(--muted);
}

/* =========================
   BRIDGE
========================= */

.home-bridge {
	padding: 28px 0 40px;
	background: var(--paper);
	text-align: center;
}

.home-bridge__inner,
.home-bridge__content {
	max-width: 780px;
	margin-left: auto;
	margin-right: auto;
}

.home-bridge h2 {
	display: inline-block;
	margin: 0 0 28px;
	padding-bottom: 14px;
	font-family: var(--font-luxury);
	font-size: clamp(2.6rem, 4vw, 3.1rem);
	line-height: 1.05;
	font-weight: 500;
	color: var(--blue);
	border-bottom: 1px solid var(--line);
}

.home-bridge p {
	max-width: 680px;
	margin: 0 auto 14px;
	font-size: 1.05rem;
	line-height: 1.85;
	color: var(--muted);
}

/* =========================
   CLOSING
========================= */

.home-closing {
	padding: 88px 0 120px;
	background:
		radial-gradient(circle at 50% 0%, rgba(138, 170, 155, 0.10), transparent 34%),
		linear-gradient(180deg, var(--paper) 0%, var(--mist) 100%);
}

.home-closing__card {
	position: relative;
	max-width: 980px;
	margin: 0 auto;
	padding: 0;
	display: grid;
	grid-template-columns: 320px 1.1fr;
	gap: 84px;
	align-items: start;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.home-closing__person {
	width: 100%;
}

.home-closing__person img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: center;
	border: 1px solid rgba(47, 80, 111, 0.16);
	box-shadow: 0 22px 60px rgba(70, 100, 95, 0.10);
}

.home-closing__text {
	max-width: 560px;
	padding-left: 56px;
	border-left: 1px solid rgba(47, 80, 111, 0.22);
}

.home-closing p {
	margin: 0 0 18px;
	font-size: 1.02rem;
	line-height: 1.82;
	color: var(--muted);
}

.home-welcome {
	margin: 16px 0 0 !important;
	font-family: var(--font-luxury);
	font-size: 2.7rem !important;
	line-height: 1 !important;
	font-style: italic;
	color: var(--blue) !important;
}

.home-signature {
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid rgba(47, 80, 111, 0.18);
}

.home-signature p {
	margin: 0;
	color: var(--blue);
	line-height: 1.7;
}

.home-signature strong {
	font-weight: 700;
}

/* =========================
   TEXT SECTIONS
========================= */

.section-textual,
.section-intro,
.about-story,
.about-pillars,
.about-journey {
	padding: 72px 0;
	background: var(--paper);
}

.section-textual__header,
.section-intro__heading {
	margin-bottom: 26px;
}

.section-textual__header h2,
.section-intro__heading h2 {
	display: inline-block;
	margin: 0;
	padding-bottom: 10px;
	font-family: var(--font-luxury);
	font-size: clamp(2.2rem, 3.2vw, 3.4rem);
	line-height: 1.08;
	font-weight: 500;
	color: var(--blue);
	border-bottom: 1px solid var(--line);
}

.section-textual__items,
.section-intro__text {
	max-width: 980px;
}

.section-textual__item {
	display: block;
	padding: 32px 0 36px;
	border-bottom: 1px solid rgba(47, 80, 111, 0.14);
}

.section-textual__item:first-child {
	padding-top: 0;
}

.section-textual__item:last-child {
	border-bottom: 0;
}

.section-textual__item h3 {
	margin: 0 0 12px;
	font-family: var(--font-luxury);
	font-size: 1.9rem;
	line-height: 1.12;
	font-weight: 500;
	color: var(--blue);
}

.section-textual__item p,
.section-intro__text p {
	margin: 0 0 12px;
	max-width: 920px;
	font-size: 1.02rem;
	line-height: 1.8;
	color: var(--muted);
}

.section-textual__item p:last-child,
.section-intro__text p:last-child {
	margin-bottom: 0;
}

.section-textual__line,
.section-intro__line {
	height: 1px;
	margin-top: 28px;
	background: var(--line-soft);
}

/* =========================
   IMAGES / MODELS
========================= */

.resilience-model,
.energy-model {
	margin: 56px auto 18px;
	text-align: center;
}

.resilience-model img,
.energy-model img {
	width: min(920px, 100%);
	height: auto;
	display: inline-block;
	filter: drop-shadow(0 18px 40px rgba(47, 80, 111, 0.08));
}

/* =========================
   PODCAST EMBEDS
========================= */

.podcast-embed {
	width: 100%;
	max-width: 980px;
	margin: 24px 0 18px;
	padding: 0;
	background: transparent;
	border: 0;
	overflow: visible;
	box-shadow: none;
	border-radius: 0;
}

.podcast-embed iframe {
	display: block;
	width: 100%;
	border: 0 !important;
	margin: 0;
	padding: 0;
	vertical-align: top;
	border-radius: 0 !important;
	overflow: hidden;
}

/* Podbean potrebuje väčšiu výšku, inak spraví vnútorný scrollbar */
.podcast-embed iframe[src*="podbean"] {
	height: 210px !important;
	min-height: 210px !important;
	max-height: 210px !important;
	border: 0 !important;
	border-radius: 0 !important;
}

/* Spotify */
.podcast-embed iframe[src*="spotify"] {
	min-height: 232px;
}

/* Apple Podcasts */
.podcast-embed iframe[src*="apple"] {
	min-height: 175px;
}

/* YouTube */
.podcast-embed iframe[src*="youtube"] {
	aspect-ratio: 16 / 9;
	height: auto;
}

/* Externé podcasty bez iframe prehrávača */
.podcast-embed--external {
	margin: 24px 0 18px;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

/* =========================
   PODCAST EXTERNAL CARD
========================= */

.podcast-card {
	width: 100%;
	max-width: 980px;
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 24px 0;
	margin: 24px 0 18px;
	border-top: 1px solid rgba(47, 80, 111, 0.12);
	border-bottom: 1px solid rgba(47, 80, 111, 0.12);
	background: transparent;
	border-radius: 0;
	box-shadow: none;
}

.podcast-card__icon {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border-radius: 50%;
	background: rgba(138, 170, 155, 0.12);
	border: 1px solid rgba(47, 80, 111, 0.08);
	color: var(--blue);
	font-size: 1.25rem;
	line-height: 1;
}

.podcast-card__content {
	flex: 1;
	min-width: 0;
}

.podcast-card__content h4 {
	margin: 0 0 6px;
	font-family: var(--font-luxury);
	font-size: 1.45rem;
	line-height: 1.18;
	font-weight: 500;
	color: var(--blue);
}

.podcast-card__content p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.7;
	color: var(--muted);
}

.podcast-card .btn {
	margin-left: auto;
	flex-shrink: 0;
}

/* =========================
   FOOTER
========================= */

.site-footer {
	background:
		radial-gradient(circle at 0% 0%, rgba(138, 170, 155, 0.12), transparent 32%),
		linear-gradient(180deg, var(--mist) 0%, var(--paper-2) 100%);
	border-top: 1px solid rgba(47, 80, 111, 0.12);
	padding: 70px 0 26px;
	color: var(--muted);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 64px;
	align-items: start;
}

.site-footer__brand img {
	height: 58px;
	width: auto;
	margin-bottom: 18px;
}

.site-footer__brand p {
	max-width: 340px;
	margin: 0;
	font-size: 1rem;
	line-height: 1.75;
}

.site-footer__nav {
	display: grid;
	gap: 10px;
}

.site-footer__nav a {
	color: var(--blue);
	font-weight: 600;
}

.site-footer__nav a:hover {
	text-decoration: underline;
	text-underline-offset: 5px;
}

.site-footer__contact p {
	margin: 0 0 8px;
}

.site-footer__contact strong {
	font-family: var(--font-luxury);
	font-size: 1.6rem;
	font-weight: 500;
	color: var(--blue);
}

.site-footer__socials {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 20px;
}

.site-footer__socials a {
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid rgba(47, 80, 111, 0.18);
	background: rgba(255, 255, 255, 0.46);
	color: var(--blue);
	font-weight: 700;
	transition:
		background 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease,
		border-color 0.2s ease;
}

.site-footer__socials a:hover {
	transform: translateY(-2px);
	background: var(--blue);
	color: #fff;
	border-color: var(--blue);
}

.site-footer__bottom {
	margin-top: 46px;
	padding-top: 22px;
	border-top: 1px solid rgba(47, 80, 111, 0.12);
	font-size: 0.9rem;
	color: rgba(86, 111, 127, 0.78);
}

.site-footer__bottom p {
	margin: 0;
}

/* =========================
   HIDDEN LEGACY ORNAMENTS
========================= */

.home-ornament,
.ornament,
.home-closing__symbol,
.hero__ornament,
.lux-hero__ornament,
.bridge-ornament,
.book-divider,
.book-rule {
	display: none !important;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1180px) {
	.site-nav {
		gap: 16px;
		font-size: 0.88rem;
	}

	.site-logo__img {
		height: 52px;
	}
}

@media (max-width: 980px) {
	.site-nav__social-link {
	width: auto;
	height: auto;
	justify-content: flex-start;
	padding: 14px 16px;
	border-radius: 12px;
	border: 0;
	background: transparent;
	font-size: 1rem;
	font-weight: 600;
}

.site-nav__social-link span::before {
	content: "Linked";
	font-weight: 600;
}

.site-nav__social-link span {
	font-size: 0;
}

.site-nav__social-link span::after {
	content: "In";
	font-size: 1rem;
	font-weight: 700;
}
	.container {
		width: min(var(--container), calc(100% - 32px));
	}

	.site-header {
		background: rgba(251, 250, 245, 0.96);
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.site-header__inner {
		min-height: 78px;
	}

	.site-logo__img {
		height: 48px;
	}

	.nav-toggle {
		display: inline-block;
	}

	.site-nav {
		display: none;
		position: absolute;
		top: calc(100% + 10px);
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 10px;
		border-radius: 20px;
		background: var(--white);
		border: 1px solid var(--line);
		box-shadow: 0 20px 38px rgba(46, 78, 71, 0.14);
		max-height: calc(100vh - 110px);
		overflow-y: auto;
	}

	.site-nav.is-open {
		display: flex;
	}

	.site-nav > a,
	.site-nav__main-link {
		padding: 14px 16px;
		font-size: 1rem;
		color: #35586f;
		border-radius: 12px;
		white-space: normal;
	}

	.site-nav > a::after,
	.site-nav__main-link::after {
		display: none;
	}

	.site-nav > a:hover,
	.site-nav__main-link:hover {
		background: rgba(138, 170, 155, 0.10);
	}

	.site-nav__item--has-dropdown {
		display: block;
		width: 100%;
	}

	.site-nav__item--has-dropdown::after {
		display: none;
	}

	.site-nav__group {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		gap: 8px;
	}

	.site-subnav-toggle {
		display: inline-flex;
		width: 42px;
		height: 42px;
		align-items: center;
		justify-content: center;
		border: 0;
		background: transparent;
		cursor: pointer;
		border-radius: 10px;
	}

	.site-subnav-toggle::before {
		content: "";
		width: 9px;
		height: 9px;
		border-right: 2px solid #35586f;
		border-bottom: 2px solid #35586f;
		transform: rotate(45deg);
		margin-top: -3px;
		transition: transform 0.2s ease;
	}

	.site-nav__item--has-dropdown.is-open .site-subnav-toggle::before {
		transform: rotate(225deg);
		margin-top: 3px;
	}

	.site-subnav {
		position: static;
		transform: none;
		min-width: 0;
		width: 100%;
		margin: 8px 0 4px;
		padding: 6px;
		border-radius: 16px;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		display: none;
		background: rgba(138, 170, 155, 0.06);
		border: 1px solid rgba(138, 170, 155, 0.14);
	}

	.site-subnav::before {
		display: none;
	}

	.site-nav__item--has-dropdown.is-open .site-subnav {
		display: grid;
		gap: 6px;
	}

	.site-subnav a {
		padding: 12px 14px;
		font-size: 0.96rem;
		border-radius: 12px;
		background: rgba(255, 255, 255, 0.78);
		border: 1px solid rgba(138, 170, 155, 0.08);
		white-space: normal;
	}

	.site-subnav a + a {
		border-top: 0;
	}

	.hero__panel,
	.hero__inner {
		min-height: 610px;
	}

	.hero__inner {
		padding: 120px 0 76px;
	}

	.hero__image {
		object-position: 70% center;
	}

	.hero__title-line,
	.home-hero h1 {
		font-size: clamp(1.7rem, 8vw, 2.8rem);
		line-height: 1.08;
		max-width: 360px;
	}

	.hero-wave {
		margin-top: -74px;
	}

	.hero-wave svg {
		height: 120px;
	}

	.home-intro__grid {
		grid-template-columns: 1fr;
		gap: 44px;
	}

	.home-intro__text {
		padding-left: 32px;
		border-left: 1px solid var(--line);
	}

	.home-impact__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-impact__grid article:nth-child(2) {
		border-right: 0;
	}

	.home-impact__grid article:nth-child(1),
	.home-impact__grid article:nth-child(2) {
		border-bottom: 1px solid var(--line);
	}

	.home-closing__card {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.home-closing__person {
		max-width: 320px;
	}

	.home-closing__text {
		padding-left: 28px;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.podcast-card {
		flex-direction: column;
		align-items: flex-start;
		gap: 18px;
	}

	.podcast-card .btn {
		margin-left: 0;
	}
	
	.hero__overlay {
	background:
		linear-gradient(
			90deg,
			rgba(251, 250, 245, 0.94) 0%,
			rgba(251, 250, 245, 0.82) 42%,
			rgba(251, 250, 245, 0.38) 72%,
			rgba(251, 250, 245, 0.08) 100%
		),
		linear-gradient(
			180deg,
			rgba(251, 250, 245, 0.10) 0%,
			rgba(251, 250, 245, 0.04) 48%,
			rgba(251, 250, 245, 0.82) 100%
		);
}
}

@media (max-width: 640px) {
	.container {
		width: min(var(--container), calc(100% - 24px));
	}

	.site-header__inner {
		min-height: 72px;
	}

	.site-logo__img {
		height: 44px;
	}

	.nav-toggle {
		width: 46px;
		height: 46px;
	}

	.hero__panel,
	.hero__inner {
		min-height: 560px;
	}

	.hero__inner {
		padding: 102px 0 60px;
	}

	.home-hero p,
	.hero-text-block p {
		font-size: 0.98rem;
		line-height: 1.65;
	}

	.hero-wave {
		margin-top: -58px;
	}

	.hero-wave svg {
		height: 94px;
	}

	.home-intro,
	.home-impact,
	.home-bridge,
	.home-closing,
	.section-textual,
	.section-intro,
	.about-story,
	.about-pillars,
	.about-journey {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.home-intro__text {
		padding-left: 22px;
	}

	.home-intro__title h2,
	.home-section-title h2,
	.home-bridge h2 {
		font-size: clamp(2rem, 9vw, 3rem);
	}

	.home-impact__grid {
		grid-template-columns: 1fr;
	}

	.home-impact__grid article {
		border-right: 0 !important;
		border-bottom: 1px solid var(--line);
		min-height: auto;
	}

	.home-impact__grid article:last-child {
		border-bottom: 0;
	}

	.home-closing__text {
		padding-left: 22px;
	}

	.home-welcome {
		font-size: 2.2rem !important;
	}

	.resilience-model,
	.energy-model {
		margin: 42px auto 12px;
	}

	.site-footer {
		padding: 52px 0 24px;
	}

	.site-footer__brand img {
		height: 50px;
	}

	.podcast-card__icon {
		width: 48px;
		height: 48px;
	}

	.podcast-card__content h4 {
		font-size: 1.28rem;
	}

	.podcast-embed iframe[src*="spotify"] {
		min-height: 232px;
	}
}

/* ============================================================
   FINAL PODCAST FIX – vložiť úplne na koniec CSS
============================================================ */

/* základ pre všetky iframe podcasty */
.podcast-embed {
	width: 100%;
	max-width: 980px;
	margin: 24px 0 10px !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	overflow: visible !important;
}

.podcast-embed iframe {
	display: block !important;
	width: 100% !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	background: transparent !important;
	margin: 0 !important;
	padding: 0 !important;
	vertical-align: top !important;
	overflow: hidden !important;
}

/* Apple podcast – nech ostane kompaktný */
.podcast-embed iframe[src*="podcasts.apple.com"],
.podcast-embed iframe[src*="embed.podcasts.apple.com"] {
	width: 100% !important;
	max-width: 660px !important;
	height: 175px !important;
	min-height: 175px !important;
	max-height: 175px !important;
}

/* Podbean – toto rieši veľkú medzeru pod prehrávačom */
.podcast-embed iframe[src*="podbean"] {
	height: 152px !important;
	min-height: 152px !important;
	max-height: 152px !important;
}

/* Spotify */
.podcast-embed iframe[src*="spotify"] {
	height: 232px !important;
	min-height: 232px !important;
}

/* YouTube */
.podcast-embed iframe[src*="youtube"] {
	width: 100% !important;
	aspect-ratio: 16 / 9;
	height: auto !important;
}

/* tlačidlo pod podcastom – menšia medzera */
.podcast-actions {
	margin: 10px 0 0 !important;
}

.podcast-actions .btn {
	margin-top: 0 !important;
}

/* externý podcast bez iframe */
.podcast-embed--external {
	margin: 24px 0 10px !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

/* karta pre podcast bez vloženého prehrávača */
.podcast-card {
	width: 100% !important;
	max-width: 980px !important;
	display: flex !important;
	align-items: center !important;
	gap: 24px !important;
	margin: 26px 0 18px !important;
	padding: 26px 0 !important;
	border-top: 1px solid rgba(47, 80, 111, 0.14) !important;
	border-bottom: 1px solid rgba(47, 80, 111, 0.14) !important;
	border-left: 0 !important;
	border-right: 0 !important;
	background: transparent !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

.podcast-card__icon {
	width: 52px !important;
	height: 52px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	flex-shrink: 0 !important;
	border-radius: 50% !important;
	background: rgba(138, 170, 155, 0.10) !important;
	border: 1px solid rgba(47, 80, 111, 0.08) !important;
	color: var(--blue) !important;
	font-size: 1.25rem !important;
	line-height: 1 !important;
}

.podcast-card__content {
	flex: 1 !important;
	min-width: 0 !important;
}

.podcast-card__content h4 {
	margin: 0 0 6px !important;
	font-family: var(--font-luxury) !important;
	font-size: 1.45rem !important;
	line-height: 1.18 !important;
	font-weight: 500 !important;
	color: var(--blue) !important;
}

.podcast-card__content p {
	margin: 0 !important;
	font-size: 1rem !important;
	line-height: 1.7 !important;
	color: var(--muted) !important;
}

.podcast-card .btn {
	margin-left: auto !important;
	flex-shrink: 0 !important;
}

/* mobil */
@media (max-width: 760px) {
	.podcast-card {
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 16px !important;
	}

	.podcast-card .btn {
		margin-left: 0 !important;
	}

	.podcast-card__icon {
		width: 48px !important;
		height: 48px !important;
	}

	.podcast-card__content h4 {
		font-size: 1.28rem !important;
	}
}


/* =========================
   CONTACT PAGE
========================= */

.contact-grid {
	max-width: 1080px;
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 64px;
	align-items: start;
}

.contact-card {
	padding: 34px 0;
	border-top: 1px solid rgba(47, 80, 111, 0.14);
	border-bottom: 1px solid rgba(47, 80, 111, 0.14);
}

.contact-card h3 {
	margin: 0 0 22px;
	font-family: var(--font-luxury);
	font-size: 2rem;
	line-height: 1.12;
	font-weight: 500;
	color: var(--blue);
}

.contact-card p {
	margin: 0 0 18px;
	font-size: 1.02rem;
	line-height: 1.8;
	color: var(--muted);
}

.contact-card strong {
	color: var(--blue);
	font-weight: 700;
}

.contact-card a {
	color: var(--blue);
	font-weight: 600;
}

.contact-card a:hover {
	text-decoration: underline;
	text-underline-offset: 5px;
}

.contact-form {
	display: grid;
	gap: 18px;
	margin-top: 28px;
}

.contact-form__row {
	display: grid;
	gap: 8px;
}

.contact-form label {
	font-size: 0.86rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(47, 80, 111, 0.78);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	border: 1px solid rgba(47, 80, 111, 0.16);
	background: rgba(255, 255, 255, 0.62);
	color: var(--text);
	font: inherit;
	padding: 14px 16px;
	outline: none;
	border-radius: 0;
	transition:
		border-color 0.2s ease,
		background 0.2s ease,
		box-shadow 0.2s ease;
}

.contact-form textarea {
	resize: vertical;
	min-height: 160px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	border-color: rgba(47, 80, 111, 0.42);
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 0 0 4px rgba(47, 80, 111, 0.045);
}

.contact-form__actions {
	margin-top: 6px;
}

.contact-flash {
	margin: 18px 0;
	padding: 14px 18px;
	border-left: 3px solid var(--green);
	background: rgba(138, 170, 155, 0.10);
	color: var(--blue);
	font-weight: 600;
}

@media (max-width: 980px) {
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 42px;
	}
}


/* =========================
   CONTACT SOCIALS
========================= */

.contact-socials {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 28px;
	padding-top: 22px;
	border-top: 1px solid rgba(47, 80, 111, 0.12);
}

.contact-socials a {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid rgba(47, 80, 111, 0.18);
	background: rgba(255, 255, 255, 0.42);
	color: var(--blue);
	transition:
		background 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		color 0.2s ease;
}

.contact-socials a:hover {
	background: rgba(138, 170, 155, 0.14);
	border-color: rgba(47, 80, 111, 0.36);
	color: var(--blue);
	box-shadow: 0 0 0 4px rgba(47, 80, 111, 0.045);
}

.contact-socials svg {
	width: 18px;
	height: 18px;
	display: block;
	fill: currentColor;
}

/* =========================
   CONTACT PAGE – FINAL
========================= */

.contact-intro .home-intro__title::before {
	display: none;
}

.contact-page {
	padding-top: 86px;
}

.contact-page__header {
	max-width: 780px;
	margin-bottom: 48px;
}

.contact-page__header h2 {
	margin-bottom: 18px;
}

.contact-page__header p {
	max-width: 720px;
	margin: 0;
	font-size: 1.04rem;
	line-height: 1.85;
	color: var(--muted);
}

.contact-layout {
	max-width: 1120px;
	display: grid;
	grid-template-columns: 0.78fr 1.22fr;
	gap: 54px;
	align-items: start;
}

.contact-panel {
	position: relative;
	background: rgba(255, 255, 255, 0.42);
	border: 1px solid rgba(47, 80, 111, 0.12);
	padding: 38px;
	box-shadow: 0 24px 70px rgba(70, 100, 95, 0.055);
}

.contact-panel h3 {
	margin: 0 0 24px;
	font-family: var(--font-luxury);
	font-size: 2rem;
	line-height: 1.12;
	font-weight: 500;
	color: var(--blue);
}

.contact-panel p {
	margin: 0 0 24px;
	font-size: 1.02rem;
	line-height: 1.8;
	color: var(--muted);
}

.contact-info-list {
	display: grid;
	gap: 24px;
}

.contact-info-item {
	padding-bottom: 22px;
	border-bottom: 1px solid rgba(47, 80, 111, 0.10);
}

.contact-info-item span {
	display: block;
	margin-bottom: 6px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(47, 80, 111, 0.68);
}

.contact-info-item a {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--blue);
}

.contact-info-item a:hover {
	text-decoration: underline;
	text-underline-offset: 5px;
}

.contact-socials {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
	padding-top: 4px;
}

.contact-socials a {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid rgba(47, 80, 111, 0.18);
	background: rgba(251, 250, 245, 0.72);
	color: var(--blue);
	box-shadow: none;
	transform: none;
	transition:
		background 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		color 0.2s ease;
}

.contact-socials a:hover {
	background: rgba(138, 170, 155, 0.14);
	border-color: rgba(47, 80, 111, 0.38);
	box-shadow: 0 0 0 4px rgba(47, 80, 111, 0.045);
	color: var(--blue);
	transform: none;
}

.contact-socials svg {
	width: 18px;
	height: 18px;
	display: block;
	fill: currentColor;
}

.contact-form {
	display: grid;
	gap: 18px;
	margin-top: 28px;
}

.contact-form__row {
	display: grid;
	gap: 8px;
}

.contact-form label {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(47, 80, 111, 0.70);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	border: 1px solid rgba(47, 80, 111, 0.16);
	background: rgba(251, 250, 245, 0.72);
	color: var(--text);
	font: inherit;
	padding: 14px 16px;
	outline: none;
	border-radius: 0;
	box-shadow: none;
	transition:
		border-color 0.2s ease,
		background 0.2s ease,
		box-shadow 0.2s ease;
}

.contact-form textarea {
	min-height: 170px;
	resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	border-color: rgba(47, 80, 111, 0.42);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 0 0 4px rgba(47, 80, 111, 0.045);
}

.contact-form__actions {
	margin-top: 8px;
}

.contact-flash {
	margin: 18px 0;
	padding: 14px 18px;
	border-left: 3px solid var(--green);
	background: rgba(138, 170, 155, 0.10);
	color: var(--blue);
	font-weight: 600;
}

@media (max-width: 980px) {
	.contact-layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.contact-panel {
		padding: 30px 24px;
	}
}

@media (max-width: 640px) {
	.contact-page {
		padding-top: 64px;
	}

	.contact-panel h3 {
		font-size: 1.7rem;
	}

	.contact-info-item a {
		font-size: 1rem;
	}
}


/* =========================
   CONTACT PAGE – FINAL TUNING
========================= */

.contact-intro .home-intro__title::before {
	display: block;
}

.contact-page {
	padding-top: 78px;
}

.contact-layout {
	margin-top: 0;
}

.contact-socials {
	border-top: 0 !important;
	padding-top: 0 !important;
	margin-top: 24px;
}

.contact-info-item:last-child {
	border-bottom: 1px solid rgba(47, 80, 111, 0.10);
}