/* ===== Variables ===== */
:root {
  --gold: #C5A059;
  --gold-light: #d4b06a;
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --grey-bg: #f4f4f4;
  --white: #ffffff;
  --text: #333333;
  --text-light: #666666;
  --font-serif: 'Cormorant Garamond';
  --font-sans: 'Cormorant Garamond';
  --font-script: 'Great Vibes', cursive;
  --max-width: 1400px;
}

/* ===== Reset ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 12px 36px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.btn--ghost.btn--white {
  color: var(--white);
  border-color: var(--white);
}

.btn--ghost.btn--white:hover {
  color: var(--black);
}

.btn--ghost.btn--dark {
  color: var(--black);
  border-color: var(--black);
}

.btn--ghost.btn--dark:hover {
  color: var(--white);
}

.btn--sm {
  padding: 8px 24px;
  font-size: 10px;
}

/* ===== Logo ===== */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.logo__emblem {
  width: 56px;
  height: 56px;
}

.logo__name {
  display: block;
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
}

.logo__sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 7px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--gold);
  opacity: 0.85;
}

/* ===== Section titles ===== */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 1px;
}

.section-title--left {
  margin-bottom: 12px;
}

.section-title--center {
  text-align: center;
  margin-bottom: 48px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto 40px;
  padding: 0 40px;
}

.section-header__line {
  flex: 0 0 60px;
  height: 1px;
  background: var(--gold);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1518834107812-67b0b7c584ca?w=1920&q=80') center/cover no-repeat;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    rgba(0, 0, 0, 0.65) 100%
  );
  z-index: 1;
}

.hero__watermark {
  position: absolute;
  bottom: -40px;
  left: -20px;
  font-family: var(--font-serif);
  font-size: clamp(200px, 28vw, 380px);
  font-weight: 600;
  color: var(--gold);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
  z-index: 2;
  user-select: none;
}

/* ===== Navigation ===== */
.nav {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 28px 48px;
  max-width: 100%;
}

.nav__links {
  display: flex;
  gap: 28px;
}

.nav__links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s;
}

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

.nav__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.nav__phone {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--white);
}

.nav__icon {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.3s;
}

.nav__icon:hover {
  color: var(--gold);
}

/* ===== Hero content ===== */
.hero__content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px 120px;
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 800px;
}

.hero__title-line {
  display: block;
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1.4;
}

.hero__title-line--small {
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  color: var(--gold-light);
  font-weight: 300;
  margin-top: 4px;
}

.hero__title-line--accent {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  letter-spacing: 6px;
  margin-top: 8px;
}

/* ===== About ===== */
.about {
  position: relative;
  width: 100%;
  max-width: 1920px;
  aspect-ratio: 1920 / 878;
  margin: 0 auto;
  background: var(--white);
  overflow: hidden;
}

.about__image {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  width: 50%;
  height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__logo-right {
  position: absolute;
  top: 5.93%;
  right: 6.88%;
  width: 16.09%;
  height: auto;
  aspect-ratio: 309 / 227;
  object-fit: contain;
  z-index: 3;
}

.about__title {
  position: absolute;
  top: 13.44%;
  left: 36.88%;
  z-index: 3;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 3.54vw, 68px);
  letter-spacing: -3.4px;
  line-height: normal;
}

.about__title-row {
  display: flex;
  align-items: center;
  gap: 0.94vw;
}

.about__title-dash {
  display: block;
  width: 3.75vw;
  max-width: 72px;
  height: 1px;
  background: #B58F34;
  flex-shrink: 0;
}

.about__title-bold {
  color: #B58F34;
  font-weight: 600;
}

.about__title-light {
  display: block;
  margin-top: 2px;
  margin-left: 4.69vw;
  color: #B58F34;
  opacity: 0.75;
  font-weight: 300;
  line-height: 1.02;
}

.about__hline {
  position: absolute;
  top: 33.26%;
  left: 50%;
  right: 0;
  height: 1px;
  background: #000;
  opacity: 0.1;
  z-index: 2;
}

.about__portrait {
  position: absolute;
  top: 30.07%;
  left: 39.69%;
  width: 20.63%;
  aspect-ratio: 396 / 569;
  z-index: 4;
  overflow: hidden;
}

.about__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about__text-wrap {
  position: absolute;
  top: 31.66%;
  left: 62.4%;
  display: flex;
  align-items: center;
  gap: 2.5vw;
  z-index: 3;
  width: 27.08%;
}

.about__divider {
  width: 1px;
  height: 44.19%;
  min-height: 280px;
  max-height: 388px;
  opacity: 0.1;
  background: #000;
  flex-shrink: 0;
}

.about__card-text {
  flex: 1;
  padding-top: 4px;
  min-width: 0;
}

.about__card-text p {
  font-family: "Kumbh Sans", sans-serif;
  font-size: clamp(13px, 0.89vw, 17px);
  line-height: 1.47;
  color: #000;
  margin-bottom: 1.2em;
}

.about__card-text strong {
  font-weight: 700;
}

.about__text-light {
  font-weight: 300;
  opacity: 0.75;
}

.about__invite {
  font-weight: 700;
  opacity: 0.75;
  margin-top: 28px;
}

.about__signature {
  font-family: "Kuba Reczny", cursive;
  font-size: clamp(28px, 2.4vw, 46px);
  font-weight: 400;
  line-height: normal;
  color: #000;
  margin: 24px 0 4px;
}

.about__role {
  font-family: "Kumbh Sans", sans-serif;
  font-size: clamp(12px, 0.78vw, 15px);
  font-weight: 400;
  line-height: 25px;
  opacity: 0.75;
  color: #000;
  margin-bottom: 28px;
}

.about__btn {
  display: flex;
  width: clamp(140px, 9.27vw, 178px);
  height: clamp(44px, 2.92vw, 56px);
  padding-bottom: 16px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 2px solid #000;
  color: #000;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.88px;
  background: transparent;
  transition: background 0.3s, color 0.3s;
}

.about__btn:hover {
  color: #fff;
}

/* ===== Events ===== */
.events {
  max-width: 1920px;
  margin: 0 auto;
  padding: 80px 45px 60px;
}

.events__header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  padding-left: 45px;
}

.events__header-line {
  width: 72px;
  height: 1px;
  background: #B58F34;
  flex-shrink: 0;
}

.events__header-title {
  color: #B58F34;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -2.4px;
  line-height: normal;
}

.events__grid {
  display: grid;
  grid-template-columns: 73.77fr 26.23fr;
  width: 100%;
  max-width: 1830px;
  margin: 0 auto;
}

.event-card {
  position: relative;
  overflow: hidden;
}

.event-card--upcoming,
.event-card--archive {
  width: 100%;
  height: 749px;
}

.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card--archive img {
  filter: grayscale(100%);
  transition: filter 0.45s ease;
}

.event-card__countdown {
  position: absolute;
  top: 40px;
  right: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 2;
}

.event-card__countdown-label {
  color: #FFF;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: normal;
  opacity: 0.75;
  text-align: right;
}

.event-card__countdown-sep {
  width: 1px;
  height: 48px;
  background: #FFF;
  opacity: 0.25;
  flex-shrink: 0;
}

.event-card__countdown-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.event-card__countdown-num {
  color: #F6D67B;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 62.06px;
  font-weight: 200;
  line-height: normal;
  text-align: right;
}

.event-card__countdown-unit {
  color: #FFF;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: normal;
  opacity: 0.75;
  text-align: right;
}

.event-card__content {
  position: absolute;
  bottom: 88px;
  left: 48px;
  z-index: 2;
}

.event-card__content--archive {
  bottom: 48px;
  left: 32px;
  right: 32px;
}

.event-card__label {
  display: block;
  color: #F6D67B;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 8px;
}

.event-card__label--archive {
  color: #FFF;
  opacity: 0.5;
}

.event-card__title {
  color: #F6D67B;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -2.4px;
}

.event-card__title--archive {
  color: #FFF;
  font-size: 36px;
  letter-spacing: -1.8px;
}

.event-card__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  z-index: 2;
}

.event-card__footer-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.event-card__footer-label {
  color: #FFF;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  opacity: 0.75;
}

.event-card__footer-sep {
  width: 1px;
  height: 18px;
  background: #FFF;
  opacity: 0.4;
  flex-shrink: 0;
}

.event-card__footer-value {
  color: #FFF;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: normal;
}

.events__cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.events__cta-btn {
  display: flex;
  width: 220px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
  color: #000;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.88px;
  background: transparent;
  transition: background 0.3s, color 0.3s;
}

.events__cta-btn:hover {
  color: #fff;
}

/* ===== Projects ===== */
.projects {
  display: flex;
  justify-content: flex-end;
  padding: 0 45px 80px;
  max-width: 1920px;
  margin: 0 auto;
}

.projects__wrap {
  display: grid;
  grid-template-columns: 34.21fr 65.79fr;
  width: 1830px;
  max-width: 100%;
  height: 762px;
}

.projects__text {
  position: relative;
  background: #1D1D1D;
  color: #FFF;
  padding: 56px 48px 40px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.projects__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 380px;
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.projects__watermark img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.projects__heading {
  position: relative;
  z-index: 2;
  margin-bottom: 32px;
}

.projects__heading-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.projects__heading-line {
  width: 72px;
  height: 1px;
  background: #F6D67B;
  flex-shrink: 0;
}

.projects__heading-bold {
  color: #F6D67B;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -2.4px;
}

.projects__heading-light {
  color: #F6D67B;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -2.4px;
}

.projects__subtitle {
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
  color: #FFF;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.5px;
}

.projects__subtitle-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.projects__subtitle-line {
  width: 40px;
  height: 1px;
  background: #FFF;
  opacity: 0.5;
  flex-shrink: 0;
}

.projects__body {
  position: relative;
  z-index: 2;
  flex: 1;
}

.projects__body p {
  color: #FFF;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 20px;
}

.projects__invite {
  margin-top: 8px;
}

.projects__invite strong {
  font-weight: 700;
}

.projects__archive {
  position: relative;
  z-index: 2;
  color: #FFF;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  opacity: 0.75;
  margin-top: auto;
  transition: opacity 0.3s;
}

.projects__archive:hover {
  opacity: 1;
}

.projects__image {
  position: relative;
  display: flex;
  width: 100%;
  height: 762px;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.projects__slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.projects__slider-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: grayscale(0);
  transition: opacity 2.5s ease-in-out, filter 3s ease-in-out;
  z-index: 0;
}

.projects__slider-slide--active {
  opacity: 1;
  z-index: 1;
}

.projects__slider-slide--grayscale {
  filter: grayscale(1);
}

.projects__image-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 40px 48px;
  z-index: 2;
}

.projects__image-date {
  display: block;
  color: #FFF;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: normal;
  margin-bottom: 12px;
}

.projects__image-title {
  color: #F6D67B;
  font-family: "Cormorant Garamond", serif;
  font-size: 76px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -3.8px;
}

.projects__image-title span {
  display: block;
}

.projects__btn {
  display: flex;
  width: 156px;
  height: 56px;
  padding-bottom: 16px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 2px solid #FFF;
  color: #FFF;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.88px;
  background: transparent;
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s;
}

.projects__btn:hover {
  color: #000;
}

/* ===== Partners ===== */
.partners {
  padding: 80px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.partners__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partner-logo {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  color: #999;
  text-transform: uppercase;
  padding: 20px 32px;
  border: 1px solid #ddd;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.partner-logo:hover {
  opacity: 1;
}

/* ===== Gallery ===== */
.gallery {
  padding: 0;
}

.gallery__wrap {
  position: relative;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 240px);
}

.gallery__item {
  overflow: hidden;
  position: relative;
}

.gallery__item img {
  transition: transform 0.5s ease;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.gallery__btn:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.2);
}

/* ===== Footer ===== */
.footer {
  background: #1D1D1D;
  color: #FFF;
  padding: 72px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1920px;
  margin: 0 auto;
  min-height: 480px;
  align-items: stretch;
}

.footer__col {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 56px 48px;
  min-height: 100%;
}

.footer__col:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.25) 0,
    rgba(255, 255, 255, 0.25) 3px,
    transparent 3px,
    transparent 8px
  );
}

.footer__col--tagline {
  padding-left: 72px;
}

.footer__watermark {
  position: absolute;
  left: 0;
  bottom: 80px;
  width: 55%;
  max-width: 340px;
  opacity: 0.1;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.footer__watermark img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer__slogan-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-top: 24px;
  margin-bottom: auto;
}

.footer__line {
  width: 60px;
  height: 1px;
  background: #B58F34;
  flex-shrink: 0;
  margin-top: 28px;
}

.footer__heading {
  color: #F6D67B;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -2.4px;
  margin: 0;
}

.footer__nav {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 48px;
  padding-top: 32px;
}

.footer__nav a {
  color: #FFF;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.8px;
  transition: color 0.3s;
}

.footer__nav a:hover {
  color: #F6D67B;
}

.footer__col--info,
.footer__col--contact {
  padding-top: 8px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-shrink: 0;
}

.footer__brand-logo {
  width: 64px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.footer__address {
  color: #FFF;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 26px;
  font-style: normal;
  margin: 0;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 40px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  transition: opacity 0.3s;
}

.footer__social a:hover {
  opacity: 0.75;
}

.footer__social svg {
  width: 43px;
  height: 43px;
  display: block;
}

.footer__brand-name {
  display: flex;
  flex-direction: column;
  color: #FFF;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 29px;
  letter-spacing: -1.4px;
}

.footer__subheading {
  color: #FFF;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.4px;
  margin: 0 0 36px;
  flex-shrink: 0;
}

.footer__contacts {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__contacts li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.footer__contacts li:last-child {
  margin-bottom: 0;
}

.footer__contacts-item--donate {
  align-items: flex-start;
}

.footer__contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
}

.footer__contacts-item--donate .footer__contact-icon {
  padding-top: 2px;
}

.footer__contact-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__contacts a {
  color: #FFF;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  opacity: 0.75;
  transition: opacity 0.3s;
}

.footer__contacts a:hover {
  opacity: 1;
}

.footer__contacts li:nth-child(2) a {
  font-size: 20px;
  font-weight: 600;
  opacity: 0.75;
}

.footer__donate {
  color: #FFF;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

.footer__account,
.footer__iban {
  color: #FFF;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: normal;
  opacity: 0.75;
  margin: 0;
}

.footer__iban-label {
  color: #FFF;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

.footer__tail {
  display: none;
}

.footer__col--info .footer__bottom {
  display: none;
}

.footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 28px 72px 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1920px;
  margin: 0 auto;
  gap: 24px;
}

.footer__top {
  color: #FFF;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 400;
  opacity: 0.75;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.3s;
  justify-self: start;
}

.footer__top:hover {
  opacity: 1;
}

.footer__top-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-family: "Kumbh Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.footer__copy {
  color: #FFF;
  text-align: center;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  opacity: 0.75;
  margin: 0;
  grid-column: 2;
  justify-self: center;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .nav {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
    padding: 20px 24px;
  }

  .nav__links--left {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav__right {
    justify-content: center;
  }

  .about {
    aspect-ratio: auto;
    height: auto;
    min-height: 0;
    padding-bottom: 48px;
  }

  .about__image {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 400px;
    max-height: 60vh;
  }

  .about__logo-right {
    position: relative;
    top: auto;
    right: auto;
    display: block;
    margin: 32px auto 0;
    width: 220px;
    height: auto;
  }

  .about__title {
    position: relative;
    top: auto;
    left: auto;
    padding: 40px 32px 0;
    font-size: clamp(2.5rem, 6vw, 68px);
  }

  .about__title-light {
    line-height: 1.1;
    margin-left: 48px;
  }

  .about__hline {
    display: none;
  }

  .about__portrait {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 396px;
    height: auto;
    margin: 32px auto 0;
  }

  .about__portrait img {
    width: 100%;
    height: auto;
    aspect-ratio: 396 / 569;
  }

  .about__text-wrap {
    position: relative;
    top: auto;
    left: auto;
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
    padding: 32px;
    gap: 0;
  }

  .about__divider {
    width: 100%;
    height: 1px;
    margin-bottom: 32px;
  }

  .events__grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .event-card--upcoming,
  .event-card--archive {
    width: 100%;
    height: auto;
    aspect-ratio: 1350 / 749;
  }

  .event-card--archive {
    aspect-ratio: 480 / 749;
  }

  .event-card__countdown {
    top: 20px;
    right: 20px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .event-card__countdown-num {
    font-size: 40px;
  }

  .event-card__title {
    font-size: clamp(28px, 5vw, 48px);
  }

  .event-card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 24px;
  }

  .projects__wrap {
    grid-template-columns: 1fr;
    height: auto;
  }

  .projects__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1204 / 762;
  }

  .projects__image-title {
    font-size: clamp(36px, 6vw, 76px);
  }

  .projects__heading-bold,
  .projects__heading-light {
    font-size: clamp(32px, 5vw, 48px);
  }

  .projects__image-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__col {
    padding: 0 32px 40px;
  }

  .footer__col:not(:last-child)::after {
    display: none;
  }

  .footer__col--tagline {
    padding-left: 32px;
  }

  .footer__watermark {
    position: relative;
    bottom: auto;
    margin-bottom: 24px;
    width: 200px;
  }

  .footer__bottom {
    grid-template-columns: 1fr;
    padding: 24px 32px;
    text-align: center;
  }

  .footer__top {
    justify-self: center;
  }

  .footer__copy {
    grid-column: 1;
    justify-self: center;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery__item {
    min-height: 200px;
  }

  .gallery__btn {
    display: none;
  }
}

@media (max-width: 768px) {
  .about__title-light {
    margin-left: 32px;
  }

  .footer__heading {
    font-size: clamp(28px, 7vw, 48px);
  }

  .footer__nav {
    gap: 16px;
  }

  .footer__brand-name {
    font-size: 22px;
    line-height: 1.2;
  }

  .nav__links {
    display: none;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }
}


#top 
{
  background-image: url("baner.png");
}


.nav__links a {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: none;
    color: var(--white);
    transition: color 0.3s;
    color: #FFF;
    font-family: "Cormorant Garamond";
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.88px;
}

.nav__phone {
    font-size: 12px;
    letter-spacing: 0.5px;
    color: var(--white);
    color: #FFF;
    font-family: "Cormorant Garamond";
    font-size: 27px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.hero__title-line {
    display: block;
    font-size: clamp(1.4rem, 3.5vw, 2.4rem);
    color: var(--gold);
    letter-spacing: 1px;
    line-height: 1.4;
    color: #F6D67B;
    font-family: "Cormorant Garamond";
    font-size: 60.485px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -3.024px;
}

.hero__title-line--small {
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    color: var(--gold-light);
    font-weight: 300;
    margin-top: 4px;
    color: #F6D67B;
    font-family: "Cormorant Garamond";
    font-size: 60.485px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -3.024px;
}

.svgsrc 
{
  width: 1.4vw;
}

.nav__phone {
    font-size: 12px;
    letter-spacing: 0.5px;
    color: var(--white);
    color: #FFF;
    font-family: "Cormorant Garamond";
    font-size: 27px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
}

.nav__phone {
    font-size: 12px;
    letter-spacing: 0.5px;
    color: var(--white);
    color: #FFF;
    font-family: "Cormorant Garamond";
    font-size: 27px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
    gap: 1.1vw;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    margin-top: -0.5vw;
}

.nav__links {
    display: flex;
    gap: 28px;
    margin-top: -2.5vw;
    margin-left: 1.7vw;
    gap: 2.5vw;
}

.nav__links {
    display: flex;
    gap: 28px;
    margin-top: 0vw;
    margin-left: 1.7vw;
    gap: 2.5vw;
    height: 4vw;
    align-content: flex-start;
    align-items: flex-start;
}

.nav__links.nav__links--left li 
{
 border-bottom: 1px solid #ffffff1c;
    padding-bottom: 1vw; 
}

.nav__right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin-left: 11.3vw;
    margin-top: -2.89999vw;
}

.viewsd 
{
 width: 2vw;
    height: 1.55vw; 
}

.viewsd1 
{
      width: 2vw;
    height: 1.44vw;
}

.nav__right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin-left: 11.3vw;
    margin-top: -2.89999vw;
    width: 33vw;
    margin-right: -14vw;
}
.hero__title {
    font-family: var(--font-serif);
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 800px;
    margin-top: 18.77vw;
}

.hero__title-line {
    display: block;
    font-size: clamp(1.4rem, 3.5vw, 2.4rem);
    color: var(--gold);
    letter-spacing: 1px;
    line-height: 1.4;
    color: #F6D67B;
    font-family: "Cormorant Garamond";
    font-size: 60.485px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -3.024px;
    margin-left: -17.2vw;
}

.hero__title-line--small {
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    color: var(--gold-light);
    font-weight: 300;
    margin-top: 4px;
    color: #F6D67B;
    font-family: "Cormorant Garamond";
    font-size: 60.485px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -3.024px;
    margin-left: 0vw;
}

.hero__title-line.hero__title-line--accent
{
  margin-left: 35.4vw;
    margin-top: -4vw;
    font-style: italic;
}

.btn {
    display: inline-block;
    padding: 12px 36px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: none;
    border: 1px solid;
    background: transparent;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    margin-top: 0.8vw;
    height: 2.8vw;
    width: 10.4vw;
    color: #FFF;
    text-align: center;
    font-family: "Cormorant Garamond";
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.88px;
}
.hero__watermark {
    position: absolute;
    bottom: 4.5vw;
    left: 31px;
    font-family: var(--font-serif);
    font-size: clamp(200px, 28vw, 380px);
    font-weight: 600;
    color: var(--gold);
    opacity: 0.08;
    line-height: 1;
    pointer-events: none;
    z-index: 2;
    user-select: none;
    z-index: 9999;
}

.hero__watermark {
    position: absolute;
    bottom: 4.5vw;
    left: 31px;
    font-family: var(--font-serif);
    font-size: clamp(200px, 28vw, 380px);
    font-weight: 600;
    color: var(--gold);
    opacity: 1;
    line-height: 1;
    pointer-events: none;
    z-index: 2;
    user-select: none;
    z-index: 9999;
}

.nav__phone {
    font-size: 12px;
    letter-spacing: 0.5px;
    color: var(--white);
    color: #FFF;
    font-family: "Cormorant Garamond";
    font-size: 27px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
    gap: 1.1vw;
    margin-right: 11.6vw;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 0%) 50%, rgb(0 0 0 / 44%) 100%);
    z-index: 1;
}

.hero {
    position: relative;
    min-height: 99vh;
    display: flex;
    flex-direction: column;
    color: var(--white);
    overflow: hidden;
    height: 10vw;
}

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    width: 960px;
    height: 878px;
    justify-content: center;
    align-items: center;
}

.about__image {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    width: 50%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 1;
    height: 45.7vw;
}

.about {
    position: relative;
    width: 100%;
    max-width: 1920px;
    aspect-ratio: 1920 / 878;
    margin: 0 auto;
    background: var(--white);
    overflow: hidden;
    margin-bottom: 8vw;
}
.about__image {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    width: 50%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 1;
    height: 45.7vw;
}

.about__portrait {
    position: absolute;
    top: 44.07%;
    left: 39.69%;
    width: 20.63%;
    aspect-ratio: 396 / 569;
    z-index: 4;
    overflow: hidden;
}

.about {
    position: relative;
    width: 100%;
    max-width: 1920px;
    aspect-ratio: 1920 / 878;
    margin: 0 auto;
    background: var(--white);
    overflow: hidden;
    margin-bottom: 8vw;
    height: 50vw;
}


.about__portrait {
    position: absolute;
    top: 40.4%;
    left: 39.69%;
    width: 20.63%;
    aspect-ratio: 396 / 569;
    z-index: 4;
    overflow: hidden;
}

.about__title-row {
    display: flex;
    align-items: center;
    gap: 0.94vw;
    justify-content: flex-start;
    align-content: center;
    margin-left: 2vw;
    margin-top: -0.4vw;
}

.about__title-light {
    display: block;
    margin-top: -9px;
    margin-left: 9.4vw;
    color: #B58F34;
    opacity: 0.75;
    font-weight: 300;
    line-height: 1.02;
}

.about__logo-right {
    position: absolute;
    top: 8.3%;
    right: 6.5%;
    width: 16.09%;
    height: auto;
    aspect-ratio: 309 / 227;
    object-fit: contain;
    z-index: 3;
}

.about__text-wrap {
    position: absolute;
    top: 44.9%;
    left: 62.7%;
    display: flex;
    align-items: center;
    gap: 2.5vw;
    z-index: 3;
    width: 27.08%;
}

.about__hline {
    position: absolute;
    top: 40.26%;
    left: 50%;
    right: 0;
    height: 1px;
    background: #000;
    opacity: 0.1;
    z-index: 2;
    width: 45.33vw;
}
.about__divider {
    width: 1px;
    height: 28vw;
    min-height: 280px;
    max-height: 388px;
    opacity: 0.1;
    background: #000;
    flex-shrink: 0;
    top: 1vw;
    position: absolute;
    top: -22.6vw;
    right: -5.90vw;
}

.about__text-wrap {
    position: absolute;
    top: 40.4%;
    left: 60.3%;
    display: flex;
    align-items: flex-start;
    gap: 2.5vw;
    z-index: 3;
    width: 35.3%;
    height: 29.38vw;
    padding-left: 5vw;
    padding-right: 4vw;
    padding-top: 2.4vw;
}


.about__text-wrap {
    position: absolute;
    top: 40.4%;
    left: 60.3%;
    display: flex;
    align-items: flex-start;
    gap: 2.5vw;
    z-index: 3;
    width: 35.36%;
    height: 29.38vw;
    padding-left: 5vw;
    padding-right: 4vw;
    padding-top: 2.4vw;
    border: 1px solid #00000026;
}


.about__hline {
    position: absolute;
    top: 0;
    left: 95.57%;
    right: 0;
    height: 20.2vw;
    background: #000;
    opacity: 0.1;
    z-index: 2;
    width: 1px;
}

.about__hline1 {
    position: absolute;
    top: 0;
    left: 75.1%;
    right: 0;
    height: 20.2vw;
    background: #000;
    opacity: 0.1;
    z-index: 2;
    width: 1px;
}

.gf1 
{
      position: absolute;
    width: 17.08vw;
    height: 20.2vw;
    left: 33vw;
    z-index: 9;
}

.about__title {
    position: absolute;
    top: 13.44%;
    left: 36.88%;
    z-index: 10;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(32px, 3.54vw, 68px);
    letter-spacing: -3.4px;
    line-height: normal;
}

.about__btn {
    display: flex;
    width: clamp(140px, 9.27vw, 178px);
    height: clamp(44px, 2.92vw, 56px);
    padding-bottom: 16px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border: 2px solid #000;
    color: #000;
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.88px;
    background: transparent;
    transition: background 0.3s, color 0.3s;
    gap: 0px;
    padding: 0px;
}

.about__card-text .about__signature {
    color: #000;
    font-family: "Kuba Reczny", cursive;
    font-size: 46px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 24px 0 4px;
    margin-bottom: -0.7vw;
    margin-left: -0.2vw;
    margin-top: 1.5vw;
}
.about__invite {
    font-weight: 700;
    opacity: 0.75;
    margin-top: 21px;
    margin-bottom: 36px !important;
}

.about__btn {
    display: flex;
    width: clamp(140px, 9.27vw, 178px);
    height: clamp(44px, 2.92vw, 56px);
    padding-bottom: 16px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border: 2px solid #000;
    color: #000;
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.88px;
    background: transparent;
    transition: background 0.3s, color 0.3s;
    gap: 0px;
    padding: 0px;
    margin-top: 1.8vw;
    margin-left: -0.2vw;
}

.events {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0;
}

.events__grid {
    display: grid;
    grid-template-columns: 73.77fr 26.23fr;
    width: 100%;
    max-width: 1830px;
    margin: 0 auto;
    margin-left: 4%;
    justify-content: center;
}

.events {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0;
    margin-top: -8vw;
}

.events__header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 46px;
    padding-left: 10vw;
}

.events {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0;
    margin-top: -9vw;
    z-index: 99;
    position: relative;
}

.events__header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 3vw;
    padding-left: 10vw;
}

.events {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0;
    margin-top: -9vw;
    z-index: 99;
    position: relative;
    margin-bottom: 3vw;
}

.events__header-line {
    width: 59px;
    height: 1px;
    background: #B58F34;
    flex-shrink: 0;
}
.events {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0;
    margin-top: -9.2vw;
    z-index: 99;
    position: relative;
    margin-bottom: 3vw;
}

.event-card__countdown {
    position: absolute;
    top: 80px;
    right: 48px;
    display: flex;
    align-items: center;
    gap: 33px;
    z-index: 2;
}

.sep1 
{
  margin-right: 1.8vw;
}

.event-card__countdown {
    position: absolute;
    top: 22px;
    right: 48px;
    display: flex;
    align-items: center;
    gap: 33px;
    z-index: 2;
}

.event-card__countdown {
    position: absolute;
    top: 22px;
    right: 44px;
    display: flex;
    align-items: center;
    gap: 33px;
    z-index: 2;
}

.event-card__countdown-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.event-card__countdown {
    position: absolute;
    top: 22px;
    right: 44px;
    display: flex;
    align-items: center;
    gap: 27px;
    z-index: 2;
}

.event-card__content {
    position: absolute;
    bottom: 107px;
    left: 48px;
    z-index: 2;
}

.event-card__footer {
    position: absolute;
    bottom: 1vw;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 48px;
    z-index: 2;
    align-content: center;
}

.event-card__footer {
    position: absolute;
    bottom: 1vw;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 28px 48px;
    z-index: 2;
    align-content: center;
    gap: 2.7vw;
}

.event-card__footer-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.valu2 
{
     margin-left: 1.99vw;
}

.event-card__footer {
    position: absolute;
    bottom: 1vw;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 28px 48px;
    z-index: 2;
    align-content: center;
    gap: 2.2vw;
}

.events__grid {
    display: grid;
    grid-template-columns: 73.77fr 25.63fr;
    width: 100%;
    max-width: 1830px;
    margin: 0 auto;
    margin-left: 4%;
    justify-content: center;
}

.event-card__content {
    position: absolute;
    bottom: 69px;
    left: 40px;
    z-index: 2;
}

.events__header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 3vw;
    padding-left: 9.4vw;
}

.event-card__content111 {
    position: absolute;
    bottom: 108px;
    left: 40px;
    z-index: 2;
}

.event-card__countdown {
    position: absolute;
    top: 22px;
    right: 44px;
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 2;
}

.event-card__label {
    display: block;
    color: #F6D67B;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 8px;
    margin-left: 7px;
}


.projects {
    display: flex;
    justify-content: flex-end;
    padding: 0 45px 80px;
    max-width: 1920px;
    margin: 0 auto;
    margin-right: -2.5vw;
    margin-top: -0.5vw;
}

.events__cta {
    display: flex;
    justify-content: center;
    margin-top: 58px;
}

.events__cta-btn {
    display: flex;
    width: 239px;
    height: 56px;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
    color: #000;
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.88px;
    background: transparent;
    transition: background 0.3s, color 0.3s;
    margin-bottom: -0.5vw;
}

.projects__heading {
    position: relative;
    z-index: 2;
    margin-bottom: 32px;
    margin-left: 1.4vw;
    margin-top: 1.5vw;
}

.projects__subtitle {
    position: relative;
    z-index: 2;
    margin-bottom: 28px;
    color: #FFF;
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -1.5px;
    margin-top: 1.4vw;
    margin-left: 3.5vw;
}

.projects__archive {
    position: relative;
    z-index: 2;
    color: #FFF;
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 400;
    opacity: 0.75;
    margin-top: auto;
    transition: opacity 0.3s;
    width: 100%;
    margin-left: -2.49vw;
    width: 32.6vw;
    margin-top: 3.4vw;
    display: flex;
    height: 4.3vw;
    border-top: 1px solid #ffffff24;
    padding-top: 2vw;
    padding-left: 8.7vw;
}

.projects__image-info 
{
    height: 14vw;
    padding-top: 5vw;  
}

.projects__image-title {
    color: #F6D67B;
    font-family: "Cormorant Garamond", serif;
    font-size: 76px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -3.8px;
}

.projects__btn {
    display: flex;
    width: 156px;
    height: 56px;
    padding-bottom: 16px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border: 2px solid #FFF;
    color: #FFF;
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.88px;
    background: transparent;
    flex-shrink: 0;
    transition: background 0.3s, color 0.3s;
    margin-right: -1.1vw;
}

.zdik {
display: flex;
width: 16.67vw;
height: 16.67vw;
justify-content: center;
align-items: center;
}

.yy 
{
width: 8.85vw;
height: 3.44vw;
}

.projects__body {
    position: relative;
    z-index: 2;
    flex: 1;
    margin-left: 6.4vw;
    margin-top: 0.8vw;
}

.projects__body {
    position: relative;
    z-index: 2;
    flex: 1;
    margin-left: 6.4vw;
    margin-top: -1.2vw;
}

.projects__body p {
    color: #FFF;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 20px;
    margin-top: 2vw;
}


.projects {
    display: flex;
    justify-content: flex-end;
    padding: 0 45px 80px;
    max-width: 1920px;
    margin: 0 auto;
    margin-right: -2.5vw;
    margin-top: 3.7vw;
}

.projects__image-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 33px 48px;
    z-index: 2;
    padding-left: 3.6vw;
}

/* ===== Partners & Gallery (section_sekcja1) ===== */
.section_sekcja1 {
  background: #fff;
  padding: 80px 0 0;
  max-width: 1920px;
  margin: 0 auto;
}

.section_sekcja1__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 56px;
  padding: 0 40px;
}

.section_sekcja1__line {
  width: 60px;
  height: 1px;
  background: #B58F34;
  flex-shrink: 0;
}

.ref_fes {
  color: #B58F34;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -2.4px;
  margin: 0;
}

.yy1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 64px);
  flex-wrap: wrap;
  padding: 0 48px 72px;
  max-width: 1600px;
  margin: 0 auto;
}

.yy1 .yy {
  width: auto;
  height: auto;
  max-height: 72px;
  max-width: 220px;
  object-fit: contain;
}

@media (min-width: 992px) {
  .partners-marquee.yy1 {
    display: block;
    max-width: none;
    padding: 0 0 72px;
    overflow: hidden;
  }

  .partners-marquee__viewport {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  }

  .partners-marquee__track {
    display: flex;
    width: max-content;
    animation: rso-partners-marquee 50s linear infinite;
    will-change: transform;
  }

  .partners-marquee__track:hover {
    animation-play-state: paused;
  }

  .partners-marquee__group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: clamp(48px, 5vw, 98px);
    padding-right: clamp(48px, 5vw, 98px);
  }

  .partners-marquee__group a {
    display: block;
    flex-shrink: 0;
    line-height: 0;
  }

  .partners-marquee__group .yy,
  .partners-marquee__group a .yy {
    display: block;
    flex-shrink: 0;
    width: auto;
    height: auto;
    max-height: 72px;
    max-width: 220px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: filter 0.35s ease, opacity 0.35s ease;
  }

  .partners-marquee__group a:hover .yy,
  .partners-marquee__group .yy:hover {
    filter: grayscale(0);
    opacity: 1;
  }

  .section_sekcja1--fundacja .partners-marquee.yy1 {
    padding-bottom: 0;
  }
}

@keyframes rso-partners-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .partners-marquee__track {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .partners-marquee__group[aria-hidden="true"] {
    display: none;
  }
}

.zdiks {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
}

.zdiks__viewport,
.zdiks__track {
  display: contents;
}

.zdik {
  overflow: hidden;
  aspect-ratio: 320 / 480;
}

.zdik img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.5s ease-in-out;
}

.zdik:hover img {
  filter: grayscale(0);
}

.section_sekcja1__instagram {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.section_sekcja1__instagram:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.section_sekcja1__instagram svg {
  width: 82px;
  height: 82px;
  display: block;
}

@media (max-width: 1100px) {
  .zdiks {
    grid-template-columns: repeat(3, 1fr);
  }

  .zdik {
    aspect-ratio: 1 / 1.2;
  }
}

@media (max-width: 768px) {
  .ref_fes {
    font-size: clamp(28px, 7vw, 48px);
  }

  .yy1 {
    gap: 32px;
    padding-bottom: 48px;
  }

  .yy1 .yy {
    max-height: 56px;
    max-width: 160px;
  }

  .zdiks {
    grid-template-columns: repeat(2, 1fr);
  }
}

.svgsrc {
    width: 1.4vw;
}

.phone_tekst 
{
 margin-top: -0.19vw;
    letter-spacing: 0px; 
}

@keyframes nav-phone-heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.12);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.08);
  }
  56% {
    transform: scale(1);
  }
}

.nav__phone-img,
.nav__phone-svg {
  animation: nav-phone-heartbeat 1.8s ease-in-out infinite;
  transform-origin: center center;
}

@media (max-width: 991px) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.nav__icon12 
{
  margin-left:0.5vw;
}

.nav__icon12 {
    margin-left: 0.55vw;
    margin-top: -0.3vw;
}

.nav__icon14 
{
  margin-top:-0.12vw;
}

.viewsd1 {
    width: 1.4vw;
    height: 1.3vw;
}

.nav__icon14 {
    margin-top: -0.18vw;
    margin-left: 0.3vw;
}

.nav__links {
    display: flex;
    gap: 28px;
    margin-top: 0vw;
    margin-left: 1.9vw;
    gap: 2.5vw;
    height: 4vw;
    align-content: flex-start;
    align-items: flex-start;
    margin-top: -0.2vw;
}

.hero__watermark {
    position: absolute;
    bottom: 2.2vw;
    left: 31px;
    font-family: var(--font-serif);
    font-size: clamp(200px, 28vw, 380px);
    font-weight: 600;
    color: var(--gold);
    opacity: 1;
    line-height: 1;
    pointer-events: none;
    z-index: 2;
    user-select: none;
    z-index: 9999;
}

.hero__title-line--small {
    margin-top: -0.1vw;
}

.about__title-dash {
    display: block;
    width: 3vw;
    max-width: 72px;
    height: 1px;
    background: #B58F34;
    flex-shrink: 0;
    margin-left: 0.8vw;
    margin-top: 0.4vw;
}

.about__title-row {
    display: flex;
    align-items: center;
    gap: 0.94vw;
    justify-content: flex-start;
    align-content: center;
    margin-left: 2vw;
    margin-top: -0.4vw;
}

.about__hline1 {
    position: absolute;
    top: 0;
    left: 75%;
    right: 0;
    height: 20.2vw;
    background: #000;
    opacity: 0.1;
    z-index: 2;
    width: 1px;
}

.about__hline {
    position: absolute;
    top: 0;
    left: 95.3%;
    right: 0;
    height: 20.2vw;
    background: #000;
    opacity: 0.1;
    z-index: 2;
    width: 1px;
}

.about__portrait {
    position: absolute;
    top: 39.5%;
    left: 39.69%;
    width: 20.63%;
    aspect-ratio: 396 / 569;
    z-index: 4;
    overflow: hidden;
}

.about__text-wrap {
    position: absolute;
    top: 39.5%;
    left: 60.3%;
    display: flex;
    align-items: flex-start;
    gap: 2.5vw;
    z-index: 3;
    width: 35.05%;
    height: 29.38vw;
    padding-left: 5vw;
    padding-right: 4vw;
    padding-top: 2.4vw;
    border: 1px solid #00000026;
    background: #F8F8F8;
}

.gf1 {
    position: absolute;
    width: 17.08vw;
    height: 19.77vw;
    left: 33vw;
    z-index: 9;
}

.about__logo-right {
    position: absolute;
    top: 7.9%;
    right: 6.9%;
    width: 16.09%;
    height: auto;
    aspect-ratio: 309 / 227;
    object-fit: contain;
    z-index: 3;
}
.about__image {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    width: 50%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 1;
    height: 44.5vw;
}

.about__card-text {
    flex: 1;
    padding-top: 2px;
    min-width: 0;
    margin-left: -4px;
}

.about__card-text p {
    font-family: "Kumbh Sans", sans-serif;
    font-size: clamp(13px, 0.89vw, 17px);
    line-height: 1.47;
    color: #000;
    margin-bottom: 1.4em;
}

.about__invite {
    font-weight: 700;
    opacity: 0.75;
    margin-top: -5px;
    margin-bottom: 35px !important;
}

.about__role123 
{
      margin-top: 0vw;
    font-size: 0.766vw;
}

.about__btn {
    display: flex;
    width: clamp(140px, 9.27vw, 178px);
    height: clamp(44px, 2.92vw, 56px);
    padding-bottom: 16px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border: 2px solid #000;
    color: #000;
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.88px;
    background: transparent;
    transition: background 0.3s, color 0.3s;
    gap: 0px;
    padding: 0px;
    margin-top: 1.98vw;
    margin-left: 0vw;
}

.about__title {
    position: absolute;
    top: 12.6%;
    left: 36.88%;
    z-index: 10;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(32px, 3.54vw, 68px);
    letter-spacing: -3.4px;
    line-height: normal;
}

.about__role123 {
    margin-top: 0vw;
    font-size: 0.766vw !important;
}

.events__header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 3vw;
    padding-left: 9.8vw;
    margin-top: -9.8vw;
}

.events__header-line {
    width: 56px;
    height: 1px;
    background: #B58F34;
    flex-shrink: 0;
}

.event-card__countdown {
    position: absolute;
    top: 18px;
    right: 35px;
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 2;
}

.sep1 {
    margin-right: 1.85vw;
    height: 1.8vw;
    margin-top: 0.2vw;
}

.event-card__countdown {
    position: absolute;
    top: 18px;
    right: 53px;
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 2;
}

.event-card__countdown-item {
    display: flex;
    align-items: center;
    gap: 13px;
}

.sep1 {
    margin-right: 1.45vw;
    height: 1.8vw;
    margin-top: 0.2vw;
}

.event-card__content111 {
    position: absolute;
    bottom: 114px;
    left: 48px;
    z-index: 2;
}


.event-card__footer {
    position: absolute;
    bottom: 1.4vw;
    left: 7px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 28px 48px;
    z-index: 2;
    align-content: center;
    gap: 2.2vw;
}

.event-card__content {
    position: absolute;
    bottom: 78px;
    left: 34px;
    z-index: 2;
}

.event-card__label {
    display: block;
    color: #ffffff;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 8px;
    margin-left: 0px;
}

.events__grid {
    display: grid;
    grid-template-columns: 73.77fr 25.63fr;
    width: 100%;
    max-width: 1828px;
    margin: 0 auto;
    margin-left: 4.6%;
    justify-content: center;
}

.events__grid {
    display: grid;
    grid-template-columns: 73.77fr 26.63fr;
    width: 100%;
    max-width: 1828px;
    margin: 0 auto;
    margin-left: 4.6%;
    justify-content: center;
}

.event-card__content {
    position: absolute;
    bottom: 113px;
    left: 41px;
    z-index: 2;
}

.event-card__footer {
    position: absolute;
    bottom: 1.4vw;
    left: -5px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 28px 48px;
    z-index: 2;
    align-content: center;
    gap: 2.2vw;
}

.event-card--archive .event-card__content {
    position: absolute;
    bottom: 78px;
    left: 38px;
    z-index: 2;
}

.event-card--upcoming, .event-card--archive {
    width: 100%;
    height: 744px;
}

.event-card__content111 .event-card__content {
    position: absolute;
    bottom: 109px;
    left: 43px;
    z-index: 2;
}

.event-card__footer {
    position: absolute;
    bottom: 1.2vw;
}

.event-card--archive .event-card__content {
    position: absolute;
    bottom: 73px;
    left: 38px;
    z-index: 2;
}
.event-card__content {
    position: absolute;
    bottom: 109px;
    left: 41px;
    z-index: 2;
}

.projects__image {
    position: relative;
    display: flex;
    width: 100%;
    height: 756px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.projects__wrap {
    display: grid;
    grid-template-columns: 34.21fr 65.79fr;
    width: 1830px;
    max-width: 100%;
    height: 756px;
}

.projects__heading-line {
    width: 60px;
    height: 1px;
    background: #F6D67B;
    flex-shrink: 0;
    margin-top: -8px;
}

.projects__heading-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: -0.2vw;
}

.projects__heading-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: -0.2vw;
}


.projects__subtitle {
    position: relative;
    z-index: 2;
    margin-bottom: 28px;
    color: #FFF;
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -1.5px;
    margin-top: 1.33vw;
    margin-left: 4.7vw;
}
.projects__subtitle-line {
    width: 31px;
    height: 1px;
    background: #FFF;
    opacity: 0.5;
    flex-shrink: 0;
}

.projects__body {
    position: relative;
    z-index: 2;
    flex: 1;
    margin-left: 7.4vw;
    margin-top: -1.2vw;
}

.projects {
    display: flex;
    justify-content: flex-end;
    padding: 0 45px 80px;
    max-width: 1918px;
    margin: 0 auto;
    margin-right: -3vw;
    margin-top: 3.7vw;
}
.projects__heading {
    position: relative;
    z-index: 2;
    margin-bottom: 32px;
    margin-left: 2.5vw;
    margin-top: 1.5vw;
}

.projects__heading-bold {
    color: #F6D67B;
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -2.4px;
    margin-left: 0.2vw;
    margin-right: -0.2vw;
}

.projects__subtitle {
    position: relative;
    z-index: 2;
    margin-bottom: 28px;
    color: #FFF;
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -1.5px;
    margin-top: 1.33vw;
    margin-left: 4.1vw;
}
.projects__subtitle-row {
    display: flex;
    align-items: center;
    gap: 18px;
}

.projects__body {
    position: relative;
    z-index: 2;
    flex: 1;
    margin-left: 6.9vw;
    margin-top: -1.2vw;
    width: 19vw;
}

.projects__heading-line {
    width: 60px;
    height: 1px;
    background: #F6D67B;
    flex-shrink: 0;
    margin-top: 1px;
}

.oproc 
{
  margin-top:-0.4vw;
}

.oproc {
    margin-top: -0vw !important;
    margin-bottom: -0.7vw !important;
}

.projects__archive {
    position: relative;
    z-index: 2;
    color: #FFF;
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 400;
    opacity: 0.75;
    margin-top: auto;
    transition: opacity 0.3s;
    width: 100%;
    margin-left: -2.49vw;
    width: 32.6vw;
    margin-top: 2.7vw;
    display: flex;
    height: 4.3vw;
    border-top: 1px solid #ffffff24;
    padding-top: 1.8vw;
    padding-left: 9.3vw;
    letter-spacing: -1px;
}
.projects__archive {
    position: relative;
    z-index: 2;
    color: #FFF;
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 400;
    opacity: 0.75;
    margin-top: auto;
    transition: opacity 0.3s;
    width: 100%;
    margin-left: -2.49vw;
    width: 32.6vw;
    margin-top: 2.7vw;
    display: flex;
    height: 4.3vw;
    border-top: 1px solid #ffffff24;
    padding-top: 1.8vw;
    padding-left: 9.3vw;
    letter-spacing: -1px;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    gap: 0.6vw;
}

.events__cta-btn {
    display: flex;
    width: 235px;
}

.projects__image-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 44px 85px;
    z-index: 2;
    padding-left: 3.35vw;
}

.weekend 
{
 margin-top: -0.6vw; 
}

.projects__btn {
    display: flex;
    width: 156px;
    height: 55px;
    padding-bottom: 16px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border: 2px solid #FFF;
    color: #FFF;
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.88px;
    background: transparent;
    flex-shrink: 0;
    transition: background 0.3s, color 0.3s;
    margin-right: -1.1vw;
    margin-bottom: 11px;
    padding-top: 14px;
}
.section_sekcja1 {
    background: #fff;
    padding: 0px 0 0;
    max-width: 1920px;
    margin: 0 auto;
    margin-top: -0.2vw;
}

.section_sekcja1__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 56px;
    padding: 0 40px;
    margin-left: -2.8vw;
}

.yy1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 7vw, 98px);
    flex-wrap: wrap;
    padding: 0 48px 72px;
    max-width: 1600px;
    margin: 0 auto;
}

.zdik {
    display: flex;
    width: 100%;
    height: 16.5vw;
    justify-content: center;
    align-items: center;
}

.zdiks {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    width: 100%;
    margin-top: 1.3vw;
    margin-bottom: 0vw;
}

.footer__grid {
    display: grid;
    grid-template-columns: 49.6vw 21.4vw 29vw;
    max-width: 1920px;
    margin: 0 auto;
    min-height: 480px;
    align-items: stretch;
}

.footer__watermark {
    position: absolute;
    left: 27px;
    bottom: 85px;
    width: 64%;
    max-width: 377px;
    opacity: 0.1;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.footer__slogan-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-top: 49px;
    margin-bottom: auto;
    margin-left: 6vw;
}

.footer__nav {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 64px;
    margin-top: 48px;
    padding-top: 0px;
    margin-left: 6vw;
    margin-top: 0.2vw;
    margin-bottom: -0.3vw;
}

.footer__col:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 27px;
    right: 0;
    width: 1px;
    height: 100%;
    background: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0, rgba(255, 255, 255, 0.25) 3px, transparent 3px, transparent 8px);
    height: 13.6vw;
}

.footer__col--info, .footer__col--contact {
    padding-top: 24px;
    margin-left: -0.37vw;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-shrink: 0;
}

.footer__social {
    display: flex;
    gap: 14px;
    margin-top: auto;
    padding-top: 0px;
    margin-top: 2.3vw;
}

.footer__contacts {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 1.4vw;
}

.footer__contacts li:last-child {
    margin-bottom: 0px;
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    margin-top: 20px !important;
}

.footer__donate {
    color: #FFF;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    margin: 0;
    margin-bottom: 9px;
}

.footer__account, .footer__iban {
    color: #FFF;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: normal;
    opacity: 0.75;
    margin: 0;
    margin-top: -3px;
}

.footer__bottom {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    padding: 28px 72px 36px;
    border-top: 0px solid rgba(255, 255, 255, 0.1);
    max-width: 1920px;
    margin: 0 auto;
    gap: 24px;
    position: absolute;
    top: 16.4vw;
    left: -4.3vw;
    justify-items: center;
    justify-content: center;
}

.footer__copy {
    color: #FFF;
    text-align: center;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    opacity: 0.75;
    margin: 0;
    grid-column: 2;
    justify-self: center;
    position: absolute;
    left: -9.5vw;
    bottom: 2.5vw;
}

.footer__contacts li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer__top-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-family: "Kumbh Sans", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
}

.footer__top {
    color: #FFF;
    font-family: "Cormorant Garamond", serif;
    font-size: 16px;
    font-weight: 400;
    opacity: 0.75;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: opacity 0.3s;
    justify-self: start;
}

.footer__donate {
    color: #FFF;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    margin: 0;
    margin-bottom: 15px;
}

.footer__watermark {
    position: absolute;
    left: 27px;
    bottom: 85px;
    width: 64%;
    max-width: 377px;
    opacity: 1;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.event-card--upcoming .df1 {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 53.77%, rgba(0, 0, 0, 0.92) 100%);
    width: 69.95vw;
    height: 744px;
    position: absolute;
    bottom: 0;
    z-index: 9;
    left: 0vw;
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

.event-card--upcoming:hover .df1 {
    opacity: 1;
}

.event-card__footer {
    position: absolute;
    bottom: 1.2vw;
    z-index: 9;
}
.event-card__content {
    position: absolute;
    bottom: 109px;
    left: 41px;
    z-index: 9;
}

.odb 
{
  color: #FFF;
font-family: "Kumbh Sans";
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: normal;
opacity: 0.75;
}

.bot1 
{
width: 1px;
height: 11px;
opacity: 0.2;
background: #FFF;
}

.odb1 
{
 color: #FFF;
font-family: "Kumbh Sans";
font-size: 15px;
font-style: normal;
font-weight: 800;
line-height: normal;
}

.bot2 
{
width: 1px;
height: 31px;
opacity: 0.2;
background: #FFF;
}

.event-content-row1 
{
  display:flex;
}

.event-content-row 
{
  display: flex;
}

.event-content-row {
    display: flex;
    flex-direction: column;
    margin-top: 1.6vw;
    gap: 1vw;
}

.event-content-row1 {
    display: flex;
    gap: 1vw;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}

.event-content-row1 {
    display: grid;
    gap: 1vw;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    grid-template-columns: 5.5vw 0.1vw 11vw;
}

.marker 
{
color: #FFF;
text-align: right;
font-family: "Kumbh Sans";
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: normal;
opacity: 0.75;
}

.marker b 
{
 font-weight: 800; 
}

.marker {
    color: #FFF;
    text-align: right;
    font-family: "Kumbh Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.75;
    position: absolute;
    top: 1.8vw;
    right: 2.7vw;
}


.event-card--archive .event-content-row {
    display: flex;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.45s ease, visibility 0.45s ease, transform 0.45s ease;
}

.event-card--archive .marker {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.45s ease, visibility 0.45s ease, transform 0.45s ease;
}

.event-card--archive:hover img {
    filter: none;
}

.event-card--archive:hover .marker {
    opacity: 0.75;
    visibility: visible;
    transform: translateY(0);
}

.event-card--archive:hover .event-content-row {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.event-content-row {
    margin-bottom: -1.1vw;
}

.marker {
    right: 2.3vw;
}

.morefiok 
{
     position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 49vw;
    object-fit: cover; 
}

.about__image {
  overflow: hidden;
}

.about__image .about__image-slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.about__image .about__image-slide--active {
  opacity: 1;
}

/* ===== Button hover fill (top → bottom) ===== */
.btn,
.about__btn,
.events__cta-btn,
.projects__btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.45s ease;
}

.btn::before,
.about__btn::before,
.events__cta-btn::before,
.projects__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s ease;
  z-index: -1;
}

.btn:hover::before,
.about__btn:hover::before,
.events__cta-btn:hover::before,
.projects__btn:hover::before {
  transform: scaleY(1);
}

.btn--ghost.btn--white::before {
  background: var(--white);
}

.btn--ghost.btn--dark::before {
  background: var(--black);
}

.about__btn::before,
.events__cta-btn::before {
  background: #000;
}

.projects__btn::before {
  background: #fff;
}

.btn--ghost.btn--white:hover,
.btn--ghost.btn--dark:hover,
.about__btn:hover,
.events__cta-btn:hover,
.projects__btn:hover {
  background: transparent;
}

/* ===== Event cards smooth hover ===== */
@keyframes rso-ken-burns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}

.event-card--upcoming[data-countdown] > img,
.page-wydarzenie--upcoming .event-detail-hero__media img,
.projects__slider-slide--active {
  animation: rso-ken-burns 24s ease-in-out infinite alternate;
  transform-origin: center center;
  will-change: transform;
}

.event-card--archive img {
  transition: filter 0.45s ease;
}

.event-card--upcoming .df1 {
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.event-card--upcoming:hover .df1 {
  opacity: 1;
}

.event-card--archive .marker {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.45s ease, visibility 0.45s ease, transform 0.45s ease;
}

.event-card--archive .event-content-row {
  display: flex;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.45s ease 0.08s, visibility 0.45s ease 0.08s, transform 0.45s ease 0.08s;
}

.event-card--archive:hover .marker {
  opacity: 0.75;
  visibility: visible;
  transform: translateY(0);
}

.event-card--archive:hover .event-content-row {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.event-card__details {
  position: absolute;
  right: 48px;
  bottom: 49px;
  z-index: 11;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #FFF;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.88px;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.event-card__details svg,
.event-card__details .class_svgs {
  flex-shrink: 0;
  display: block;
}

.event-card--upcoming:hover .event-card__details {
  opacity: 1;
  visibility: visible;
}

.event-card--archive .event-card__content.event-card__content--archive {
  bottom: -16px;
  transition: bottom 0.45s ease;
}

.event-card--archive:hover .event-card__content.event-card__content--archive {
  bottom: 73px;
}

.nav__item--has-submenu {
  position: relative;
}

.nav__links.nav__links--left > li {
  transition: border-color 0.3s ease;
}

.nav__links.nav__links--left > li:hover {
  border-bottom-color: #F6D67B;
}

.nav__links.nav__links--left > li:hover > a {
  color: #F6D67B;
}

.nav__submenu {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  width: 165px;
  height: 130px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  box-sizing: border-box;
  background: #2C2C2C;
  border: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 20;
}

.nav__submenu--short {
  height: 92px;
}

.nav__item--has-submenu:hover .nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__links.nav__links--left .nav__submenu li {
  border-bottom: none;
  padding-bottom: 0;
}

.nav__submenu a {
  display: block;
  padding: 0;
  color: #FFF;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.32px;
  opacity: 0.75;
  text-transform: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.nav__submenu a:hover {
  color: #F6D67B;
  opacity: 1;
}

.search-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 161px;
  background: #2C2C2C;
  z-index: 10000;
  transform: translateY(-100%);
  transition: transform 0.45s ease;
}

.search-bar--open {
  transform: translateY(0);
}

.search-bar__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
  width: 100%;
  max-width: 1920px;
  height: 161px;
  margin: 0 auto;
  padding: 0 48px;
  box-sizing: border-box;
}

.search-bar__logo {
  display: flex;
  flex-shrink: 0;
}

.search-bar__logo .xsvg {
  display: block;
  width: 129px;
  height: 91px;
  aspect-ratio: 152 / 91;
  object-fit: contain;
  margin-left: 1vw;
}

.search-bar__form {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.search-bar__field {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 1036px;
  max-width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 10px;
  margin-left: -6vw;
}

.search-bar__input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  outline: none;
  color: #FFF;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.6px;
}

.search-bar__input::placeholder {
  color: #FFF;
  opacity: 0.75;
}

.search-bar__submit,
.search-bar__close {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.search-bar__close {
  margin-right: 4vw;
  margin-left: -4vw;
}

.search-bar__submit svg,
.search-bar__close svg {
  display: block;
  width: 24px;
  height: 24px;
}

.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 378px;
  height: 100vh;
  background: #FFF;
  z-index: 10000;
  transform: translateX(100%);
  transition: transform 0.45s ease;
  display: flex;
  flex-direction: column;
  padding: 67px 42px 60px;
  box-sizing: border-box;
}

.side-menu__mobile {
  display: none;
}

.side-menu__desktop {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.side-menu--open {
  transform: translateX(0);
}

.side-menu__close {
  position: absolute;
  top: 67px;
  right: 59px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: #000;
}

.side-menu__close svg {
  display: block;
  width: 24px;
  height: 24px;
}

.side-menu__social {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding-top: 40px;
}

.side-menu__social-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  color: #000;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.48px;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.side-menu__social-link svg {
  flex-shrink: 0;
  display: block;
  width: 30px;
  height: 30px;
}

.side-menu__social-link--last {
  border-bottom: none;
}

.side-menu__contact {
  padding-bottom: 20px;
}

.side-menu__contact-title {
  color: #000;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 16px;
}

.side-menu__divider {
  display: block;
  width: 293px;
  height: 1px;
  opacity: 0.25;
  background: #000;
  margin-bottom: 24px;
}

.side-menu__contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #000;
  text-decoration: none;
  margin-bottom: 16px;
}

.side-menu__contact-item svg {
  flex-shrink: 0;
  display: block;
}

.side-menu__contact-phone {
  font-family: "Kumbh Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.side-menu__contact-email {
  font-family: "Kumbh Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* ===== Fundacja page ===== */
.page-fundacja #top,
.page-fundator #top,
.page-wladze #top,
.page-kontakt #top,
.page-partnerzy #top,
.page-wydarzenia #top,
.page-wydarzenie #top,
.page-projekty #top,
.page-projekty-archiwalne #top {
  background-image: none;
}

.page-header {
  background: #111;
  color: #fff;
  padding: 1.2vw 0 1.8vw;
  max-width: 100%;
}

.page-header .logo img {
  width: auto;
  height: auto;
  max-height: 7vw;
  object-fit: contain;
}

.fundacja-about {
  max-width: 1920px;
  margin: 0 auto;
  background: #fff;
}

.fundacja-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
}

.fundacja-about__image img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  object-position: center top;
}

.fundacja-about__right {
  display: flex;
  flex-direction: column;
}

.fundacja-about__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 56px 64px 48px 56px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.fundacja-about__title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  color: #B58F34;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -2.4px;
}

.fundacja-about__title-line {
  width: 59px;
  height: 1px;
  background: #B58F34;
  flex-shrink: 0;
}

.fundacja-about__logo-box {
  flex-shrink: 0;
  width: 170px;
  height: 170px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.fundacja-about__logo-box img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.fundacja-about__text {
  flex: 1;
  padding: 48px 64px 64px 56px;
  background: #fff;
}

.fundacja-about__text p {
  font-family: "Kumbh Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.65;
  color: #333;
  margin: 0 0 22px;
}

.fundacja-about__text p:last-child {
  margin-bottom: 0;
}

.fundacja-about__text strong {
  font-weight: 600;
  color: #000;
}

.fundacja-support {
  position: relative;
  background: url("baner.png") center center / cover no-repeat;
  overflow: hidden;
}

.fundacja-support__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(60, 40, 12, 0.88) 0%,
    rgba(80, 55, 18, 0.82) 50%,
    rgba(60, 40, 12, 0.88) 100%
  );
}

.fundacja-support__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(200px, 1fr) minmax(280px, 1.4fr) minmax(240px, 1fr);
  gap: 48px;
  align-items: center;
  max-width: 1920px;
  margin: 0 auto;
  padding: 72px 80px;
  color: #fff;
}

.fundacja-support__title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -2.4px;
  white-space: nowrap;
}

.fundacja-support__title-line {
  width: 59px;
  height: 1px;
  background: #fff;
  flex-shrink: 0;
}

.fundacja-support__text {
  margin: 0;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.65;
}

.fundacja-support__text strong {
  font-weight: 600;
}

.fundacja-support__bank {
  text-align: right;
  font-family: "Kumbh Sans", sans-serif;
}

.fundacja-support__bank-label {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
}

.fundacja-support__account {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.3px;
}

.fundacja-support__iban-label {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  opacity: 0.9;
}

.fundacja-support__iban {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.section_sekcja1--fundacja {
  padding-bottom: 80px;
}

.section_sekcja1--fundacja .yy1 {
  padding-bottom: 0;
}

.ref_fes__accent {
  font-weight: 700;
}

.page-fundacja .footer__brand-logo,
.page-fundator .footer__brand-logo,
.page-wladze .footer__brand-logo,
.page-kontakt .footer__brand-logo,
.page-partnerzy .footer__brand-logo,
.page-wydarzenia .footer__brand-logo,
.page-wydarzenie .footer__brand-logo,
.page-projekty .footer__brand-logo,
.page-projekty-archiwalne .footer__brand-logo {
  width: auto;
  height: auto;
  max-width: 66px;
  object-fit: contain;
}

@media (max-width: 1100px) {
  .fundacja-about__grid {
    grid-template-columns: 1fr;
  }

  .fundacja-about__image img {
    min-height: 420px;
  }

  .fundacja-support__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 56px 40px;
  }

  .fundacja-support__bank {
    text-align: left;
  }

  .fundacja-support__title {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .fundacja-about__head {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 24px 32px;
  }

  .fundacja-about__text {
    padding: 32px 24px 48px;
  }

  .fundacja-about__logo-box {
    width: 140px;
    height: 140px;
  }
}


.page-header .logo img {
    width: auto;
    height: auto;
    max-height: 6vw;
    object-fit: contain;
}

.page-header .nav__links {
    display: flex;
    gap: 28px;
    margin-top: 0vw;
    margin-left: 1.5vw;
    gap: 2.5vw;
    height: 4vw;
    align-content: flex-start;
    align-items: flex-start;
    margin-top: 1vw;
}

.page-header .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    margin-top: -1.9vw;
}


.page-header .nav__phone {
    font-size: 12px;
    letter-spacing: 0.5px;
    color: var(--white);
    color: #FFF;
    font-family: "Cormorant Garamond";
    font-size: 27px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
    gap: 1.1vw;
    margin-right: 11.99vw;
    margin-left: 2vw;
    margin-top: 0.8vw;
}

.page-header .nav__icon12 {
    margin-left: 0.55vw;
    margin-top: 0.7vw;
}

.page-header .nav__icon14 {
    margin-top: 0.7vw;
    margin-left: 0.3vw;
}

.page-header {
    background: #111;
    color: #fff;
    padding: 1.2vw 0 1.8vw;
    max-width: 100%;
    height: 8.5vw;
}

.fundacja-about__image img {
    width: 100%;
    height: 100%;
    min-height: 521px;
    object-fit: cover;
    object-position: center top;
    max-height: 40.5vw;
}

.fundacja-about__title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    color: #B58F34;
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: -2.4px;
    margin-left: 1.3vw;
    color: #B58F34;
    font-family: "Cormorant Garamond";
    font-size: 58px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -2.9px;
}

.fundacja-about__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 56px 64px 48px 56px;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    width: 45vw;
}

.fundacja-about__text {
    flex: 1;
    padding: 62px 80px 63px 75px;
    background: #fff;
    width: 91%;
    border: 1px solid #E0E0E0;
    background: #F8F8F8;
}

.fundacja-about__text p {
    font-family: "Kumbh Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.65;
    color: #333;
    margin: 0 0 22px;
    opacity: 0.75;
    color: #000;
    font-family: "Kumbh Sans";
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
}

.fundacja-about__logo-box {
    flex-shrink: 0;
    width: 390px;
    height: 281px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03);
    margin-top: -2.8vw;
    margin-bottom: -2.6vw;
    border-top: 0px;
    border-bottom: 0px;
    margin-right: -3.4vw;
}

.fundacja-about__logo-box img {
    width: 12vw;
    height: auto;
    object-fit: contain;
}

.fundacja-about__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 56px 64px 48px 56px;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    width: 45.3vw;
}

.fundacja-about__text {
    flex: 1;
    padding: 62px 80px 63px 75px;
    background: #fff;
    width: 91.54%;
    border: 1px solid #E0E0E0;
    background: #F8F8F8;
    padding-top: 3.59vw;
    padding-left: 4.2vw;
}

.fundacja-about__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 56px 64px 48px 56px;
    background: #fff;
    border-bottom: 0px solid rgba(0, 0, 0, 0.08);
    width: 45.3vw;
}

.fundacja-about__logo-box img {
    width: 12vw;
    height: auto;
    object-fit: contain;
    margin-top: -0.6vw;
}

.fundacja-about__title {
    margin-top: -0.6vw;
}

.class_bottom
{
  margin-top: 1.4vw !important;
    margin-bottom: 1.4vw !important; 
}


.fundacja-support {
    position: relative;
    background: url(baner.png) center center / cover no-repeat;
    overflow: hidden;
    width: 95.1vw;
}


.fundacja-support__title-line {
    width: 59px;
    height: 1px;
    background: #fff;
    flex-shrink: 0;
    margin-top: -2.76vw;
    margin-left: -0.4vw;
    margin-right: 0.3vw;
}

.fundacja-support__title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: -2.4px;
    white-space: nowrap;
    margin-left: 6vw;
    margin-top: -0.4vw;
}

.fundacja-support__text {
    margin: 0;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.65;
    margin-left: 6.9vw;
    margin-top: -1.4vw;
    width: 28.88vw;
    border-right: 1px solid white;
    height: 7vw;
    margin-top: -0.5vw;
    padding-right: 3vw;
    text-align: center;
}

.fundacja-support__text strong {
    font-weight: 600;
    display: flex;
    margin-top: 1.2vw;
}

.fundacja-support__text {
    margin: 0;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.65;
    margin-left: 6.9vw;
    margin-top: -1.4vw;
    width: 28.88vw;
    border-right: 1px solid #ffffff3d;
    height: 7vw;
    margin-top: -0.5vw;
    padding-right: 4.8vw;
    text-align: center;
}

.fundacja-support__bank {
    text-align: left;
    font-family: "Kumbh Sans", sans-serif;
    padding-left: 3.6vw;
    margin-top: -1.6vw;
}

.fundacja-support__bank-label {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    color: #FFF;
    font-family: "Kumbh Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 39px;
}

.fundacja-support__account {
    margin: 0 0 18px;
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0px;
    color: #FFF;
    font-family: "Kumbh Sans";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 39px;
    margin-top: -0.6vw;
    margin-bottom: 1vw;
}

.fundacja-support__bank {
    text-align: left;
    font-family: "Kumbh Sans", sans-serif;
    padding-left: 3.6vw;
    margin-top: -1.1vw;
    height: 8vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.fundacja-support__iban-label {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    opacity: 0.9;
    color: #FFF;
    font-family: "Kumbh Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 39px;
    margin-top: -1vw;
}

.fundacja-support__iban {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    color: #FFF;
    font-family: "Kumbh Sans";
    font-size: 21.8px;
    font-style: normal;
    font-weight: 400;
    line-height: 39px;
    margin-top: -0.2vw;
}

.fundacja-support {
    position: relative;
    background: url(baner.png) center center / cover no-repeat;
    overflow: hidden;
    width: 95.1vw;
    height: 13.4vw;
    margin-bottom: 4.2vw;
}

.fundacja-support__title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: -2.4px;
    white-space: nowrap;
    margin-left: 6vw;
    margin-top: -0.99vw;
}

.section_sekcja1--fundacja {
    padding-bottom: 98px;
}

.fundacja-support__title b 
{
  font-weight: 700;
}

.fundacja-support {
    width: 95vw;
  }

/* ===== Fundator page ===== */
.fundator-story {
  max-width: 1920px;
  margin: 0 auto;
  background: #fff;
}

.fundator-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.fundator-story__text {
  padding: 62px 80px 63px 75px;
  background: #fff;
  width: 91.54%;
  border: 1px solid #E0E0E0;
  border-top: 0;
  border-left: 0;
  padding-top: 3.59vw;
  padding-left: 4.2vw;
}

.fundator-story__text p {
  font-family: "Kumbh Sans", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 25px;
  color: #000;
  margin: 0 0 22px;
  opacity: 0.75;
}

.fundator-story__text p:last-child {
  margin-bottom: 0;
}

.fundator-story__text strong {
  font-weight: 600;
  color: #000;
  opacity: 1;
}

.fundator-story__image img {
  width: 100%;
  height: 100%;
  min-height: 521px;
  object-fit: cover;
  object-position: center top;
  max-height: 40.5vw;
}

.page-fundator .fundacja-about__image img {
  object-position: center center;
}

@media (max-width: 1100px) {
  .fundator-story__grid {
    grid-template-columns: 1fr;
  }

  .fundator-story__image {
    order: -1;
  }

  .fundator-story__text {
    width: 100%;
    border-right: 0;
  }

  .fundator-story__image img {
    min-height: 420px;
    max-height: none;
  }
}

@media (max-width: 768px) {
  .fundator-story__text {
    padding: 32px 24px 48px;
  }
}

.fundator-story__text strong {
    font-weight: 600;
    color: #000;
    opacity: 1;
    font-family: "Kumbh Sans";
}

.fundator-story {
    max-width: 1920px;
    margin: 0 auto;
    background: #fff;
    width: 91.45%;
}

.fundator-story__image img {
    width: 100%;
    height: 100%;
    min-height: 521px;
    object-fit: cover;
    object-position: center top;
    max-height: 40.5vw;
    height: 644px;
}

.fundator-story__text {
    padding: 62px 80px 63px 75px;
    background: #fff;
    width: 99.54%;
    border: 0px solid #E0E0E0;
    border-top: 0;
    border-left: 0;
    padding-top: 3.59vw;
    padding-left: 4.2vw;
    text-align: justify;
}
.fundator-story {
    max-width: 1920px;
    margin: 0 auto;
    background: #fff;
    width: 91.45%;
    margin-bottom: 4vw;
}

.fundator-story__text {
    padding: 123px 80px 61px 79px;
    background: #fff;
    width: 99.54%;
    border: 0px solid #E0E0E0;
    border-top: 0;
    border-left: 0;
    padding-top: 4.8vw;
    padding-left: 5.3vw;
    text-align: justify;
}

.fundator-story__text p {
    font-family: "Kumbh Sans", sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    color: #000;
    margin: 0 0 24px;
    opacity: 0.75;
}

.fundacja-about__text {
    text-align: justify;
}

.ref_fes {
    color: #B58F34;
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: -2.4px;
    margin: 0;
    opacity: 0.75;
    color: #B58F34;
    font-family: "Cormorant Garamond";
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -2.4px;
}

/* ===== Władze Fundacji page ===== */
.wladze {
  max-width: 1920px;
  margin: 0 auto;
  background: #fff;
}

.wladze__grid {
  display: grid;
  grid-template-columns: 1fr 575px 1fr;
  min-height: 609px;
}

.wladze__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4vw 4.2vw 4vw 4.5vw;
  background: #fff;
}

.wladze__title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 2.8vw;
  color: #B58F34;
  font-family: "Cormorant Garamond", serif;
  font-size: 58px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -2.9px;
}

.wladze__title-line {
  width: 59px;
  height: 1px;
  background: #B58F34;
  flex-shrink: 0;
}

.wladze__text {
  text-align: justify;
}

.wladze__text p {
  margin: 0 0 22px;
  color: #000;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 25px;
  opacity: 0.75;
}

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

.wladze__text strong {
  font-weight: 600;
  opacity: 1;
}

.wladze__portrait {
  width: 575px;
  height: 609px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: #E8E8E8;
  overflow: hidden;
}

.wladze__portrait img {
  width: 575px;
  height: 609px;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center top;
}

.wladze__board {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.wladze__member {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5vw 2vw;
}

.wladze__board-divider {
  width: 575px;
  max-width: 100%;
  height: 1px;
  margin: 0 auto;
  background: #CDCDCD;
  flex-shrink: 0;
}

.wladze__member-name {
  margin: 0 0 12px;
  color: #000;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.6px;
  opacity: 0.75;
}

.wladze__member-role {
  margin: 0 0 16px;
  color: #000;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.wladze__member-line {
  display: block;
  width: 60px;
  height: 1px;
  margin: 0 auto 16px;
  background: #B58F34;
}

.wladze__member-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #000;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.wladze__member-email svg {
  flex-shrink: 0;
}

.wladze__member-email:hover {
  opacity: 1;
}

@media (max-width: 1100px) {
  .wladze__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .wladze__portrait {
    order: -1;
    width: 100%;
    height: auto;
    max-width: 575px;
    margin: 0 auto;
  }

  .wladze__portrait img {
    width: 100%;
    height: auto;
    min-height: 420px;
    max-height: none;
    aspect-ratio: 575 / 609;
  }

  .wladze__intro {
    padding: 40px 24px 32px;
  }

  .wladze__title {
    font-size: 48px;
    margin-bottom: 32px;
  }

  .wladze__member {
    padding: 40px 24px;
  }

  .wladze__board-divider {
    width: 100%;
  }
}

.wladze__grid {
    display: grid;
    grid-template-columns: 39.6vw 575px 1fr;
    min-height: 609px;
}

.wladze__portrait {
    width: 575px;
    height: 609px;
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: #E8E8E8;
    overflow: hidden;
}

.wladze__intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4vw 5.2vw 4vw 8.95vw;
    background: #fff;
    padding-top: 1vw;
}

.wladzee 
{
 margin-top: 4.2vw;
    line-height: 1.2;
    margin-bottom: 0.3vw; 
}

.wladze__portrait {
    width: 575px;
    height: 617px;
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: #E8E8E8;
    overflow: hidden;
}

.wladze__portrait img {
    width: 575px;
    height: 617px;
    flex-shrink: 0;
    object-fit: cover;
    object-position: center top;
    object-fit: cover;
}

.wladze__grid {
    display: grid;
    grid-template-columns: 39.6vw 580px 1fr;
    min-height: 609px;
}

.wladze__portrait {
    width: 584px;
    height: 617px;
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: #E8E8E8;
    overflow: hidden;
}

.wladze__member {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 2.5vw 2vw;
    padding-left: 2.5vw;
    padding-top: 79px;
}

.wladze__member {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 2.5vw 2vw;
    padding-left: 2.5vw;
    padding-top: 79px;
}

.wladze__member-role {
    margin: 0 0 16px;
    color: #000;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 0.5vw;
    margin-bottom: 1.34vw;
}

.wladze__member-email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #000;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    opacity: 0.75;
    transition: opacity 0.2s ease;
    margin-top: 0.2vw;
}

.wladze__member12
{
  padding-top: 70px;
}

.wladze {
    max-width: 1920px;
    margin: 0 auto;
    background: #fff;
    margin-bottom: 4.3vw;
}

.wladze__portrait {
    width: 584px;
    height: 617px;
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: #e8e8e800;
    overflow: hidden;
}

.ref_fes {
    font-weight: 400;
}

.wladze__member-email {
    gap: 15px;
}

/* ===== Kontakt page ===== */
.page-kontakt .page-header .nav__links > li:last-child > a {
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
}

.kontakt {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  padding: 3vw 5vw 4vw;
  background: #fff;
  overflow: hidden;
}

.kontakt__watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.kontakt__watermark img {
  width: min(520px, 40vw);
  height: auto;
}

.kontakt__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: start;
}

.kontakt__title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 2.2vw;
  color: #B58F34;
  font-family: "Cormorant Garamond", serif;
  font-size: 58px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -2.9px;
}

.kontakt__title-line {
  width: 59px;
  height: 1px;
  background: #B58F34;
  flex-shrink: 0;
}

.kontakt__brand {
  margin: 0 0 28px;
  color: #000;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.5px;
  opacity: 0.75;
}

.kontakt__list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.kontakt__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.kontakt__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  margin-top: 2px;
}

.kontakt__link {
  color: #000;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.75;
  text-decoration: none;
}

a.kontakt__link:hover {
  opacity: 1;
}

.kontakt__link--phone {
  font-size: 19px;
  font-weight: 600;
  opacity: 1;
}

.kontakt__link--email {
  opacity: 0.75;
}

.kontakt__legal {
  margin: 0 0 28px;
  color: #000;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.75;
}

.kontakt__donate {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 32px;
}

.kontakt__donate-body p {
  margin: 0 0 6px;
  color: #000;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.75;
}

.kontakt__donate-body p:last-child {
  margin-bottom: 0;
}

.kontakt__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kontakt__social-link {
  display: block;
  line-height: 0;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.kontakt__social-link:hover {
  opacity: 1;
}

.kontakt__form-wrap {
  padding-top: 1vw;
}

.kontakt__form-title {
  margin: 0 0 36px;
  color: #000;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.5px;
  opacity: 0.75;
}

.kontakt__form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.kontakt__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kontakt__label {
  color: #000;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.75;
}

.kontakt__input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #CDCDCD;
  background: transparent;
  padding: 8px 0 10px;
  color: #000;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 17px;
  font-weight: 400;
  outline: none;
}

.kontakt__input:focus {
  border-bottom-color: #B58F34;
}

.kontakt__textarea {
  resize: vertical;
  min-height: 100px;
}

.kontakt__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #000;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.75;
  cursor: pointer;
}

.kontakt__consent input {
  margin-top: 3px;
  flex-shrink: 0;
}

.kontakt__consent a {
  color: #000;
  text-decoration: underline;
}

.kontakt__submit {
  align-self: flex-start;
  margin-top: 8px;
  padding: 14px 32px;
  border: 1px solid #000;
  background: transparent;
  color: #000;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 17px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.kontakt__submit:hover {
  background: #000;
  color: #fff;
}

.kontakt-map {
  width: 100%;
  background: #fff;
}

.kontakt-map__inner {
  position: relative;
  width: 100%;
  height: 420px;
}

.kontakt-map__frame {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%);
}

.kontakt-map__route {
  position: absolute;
  right: 40px;
  bottom: 32px;
  z-index: 2;
  padding: 16px 28px;
  background: #000;
  color: #fff;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 17px;
  font-weight: 400;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.kontakt-map__route:hover {
  opacity: 0.85;
}

@media (max-width: 1100px) {
  .kontakt__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .kontakt {
    padding: 40px 24px;
  }

  .kontakt__title {
    font-size: 48px;
  }

  .kontakt-map__inner {
    height: 320px;
  }

  .kontakt-map__route {
    right: 16px;
    bottom: 16px;
    padding: 12px 20px;
    font-size: 15px;
  }
}


.kontakt {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    padding: 3vw 5vw 4vw;
    background: #fff;
    overflow: hidden;
    padding-left: 9.8vw;
}

.kontakt__title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 0 1.2vw;
    color: #B58F34;
    font-family: "Cormorant Garamond", serif;
    font-size: 58px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -2.9px;
}

.kontakt__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.kontakt__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    margin-top: 2px;
}

.kontakt__link.kontakt__link--email
{
  margin-top: 0.3vw;
}

.kontakt__item11 
{
  margin-top: -0.5vw;
    margin-left: -0.2vw;
}

.kontakt__icon111 
{
  margin-top: -0.5vw;
  margin-left: -0.2vw;
}

.kontakt__icon111 {
    margin-top: 0;
    margin-left: 0;
    width: 26px;
    height: 26px;
}

.kontakt__item11 {
    margin-top: -0.3vw;
    margin-left: -0.2vw;
}

.kontakt__legal {
    margin: 0 0 28px;
    color: #000;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.75;
    margin-left: 2vw;
    margin-top: -0.6vw;
}

.kontakt__legal {
    margin: 0 0 28px;
    color: #000;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.75;
    margin-left: 2vw;
    margin-top: -0.6vw;
    display: grid;
    grid-template-columns: 7.7vw 1vw 9vw 1vw 8vw;
    margin-bottom: 2vw;
}

.kontakt__donate-account 
{
  margin-top: 1vw;
}

.kontakt__social {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 4.7vw;
    margin-left: 2vw;
}

.kontakt__donate-body p {
    margin: 0 0 13px;
    color: #000;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.75;
}

.kontakt__social {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 3.7vw;
    margin-left: 2vw;
}
.kontakt__form-wrap {
    padding-top: 1vw;
    margin-left: -0.6vw;
}

.kontakt__form-title {
    margin: 2px 0 36px;
    color: #000;
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1.5px;
    opacity: 0.75;
    text-align: center;
}

.kontakt__form {
    display: flex;
    flex-direction: column;
    gap: 17px;
    margin-top: 2.9vw;
}

.kontakt__input {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #CDCDCD;
    background: transparent;
    padding: 4px 0 10px;
    color: #000;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 17px;
    font-weight: 400;
    outline: none;
}

.kontakt__form {
    display: flex;
    flex-direction: column;
    gap: 19px;
    margin-top: 3.1vw;
}
.kontakt__input {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #CDCDCD;
    background: transparent;
    padding: 4px 0 10px;
    color: #000;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 17px;
    font-weight: 400;
    outline: none;
}

.kontakt__consent input {
    margin-top: 3px;
    flex-shrink: 0;
    width: 1vw;
    height: 1vw;
    margin-left: -0.1vw;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    align-content: center;
}

.kontakt__consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #000;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.75;
    cursor: pointer;
    margin-top: 0.5vw;
}

.kontakt__consent input {
    margin-top: 0px;
    flex-shrink: 0;
    width: 1vw;
    height: 1vw;
    margin-left: -0.1vw;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    align-content: center;
}

.kontakt__consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #000;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.75;
    cursor: pointer;
    color: #000;
    font-family: "Kumbh Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.kontakt__submit {
    align-self: flex-start;
    margin-top: 8px;
    padding: 14px 32px;
    border: 1px solid #000;
    background: transparent;
    color: #000;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 17px;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    margin: auto;
    width: 12vw;
    margin-left: 14.58vw;
    color: #000;
    text-align: center;
    font-family: "Cormorant Garamond";
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.88px;
    margin-top: 3vw;
}

.kontakt-map__route {
    position: absolute;
    right: 40px;
    bottom: 32px;
    z-index: 2;
    padding: 0;
    background: #000;
    color: #fff;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    transition: opacity 0.2s ease;
    color: #FFF;
    text-align: center;
    font-family: "Cormorant Garamond";
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.88px;
    width: 234px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.kontakt-map {
    width: 100%;
    background: #fff;
    margin-bottom: 4vw;
}

.kontakt-map {
    width: 100%;
    background: #fff;
    margin-bottom: 4vw;
    position: relative;
}

.emblema 
{
    width: 52px;
    height: 52px;
    position: absolute;
    z-index: 9;
    left: 48.77vw;
    top: 9vw;
}

/* ===== Partnerzy page ===== */
.page-partnerzy .page-header .nav__links > li:nth-child(4) > a {
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
}

.partnerzy-page {
  max-width: 1920px;
  margin: 0 auto;
  padding: 3vw 0 5vw;
  background: #fff;
}

.partnerzy-page__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 56px;
  padding: 0 40px;
}

.partnerzy-page__line {
  width: 60px;
  height: 1px;
  background: #B58F34;
  flex-shrink: 0;
}

.partnerzy-page__title {
  color: #B58F34;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -2.4px;
  margin: 0;
}

.partnerzy-slider {
  padding: 0 40px;
}

.partnerzy-slider__viewport {
  overflow: hidden;
  max-width: calc(349px * 5);
  margin: 0 auto;
}

.partnerzy-slider__track {
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.partnerzy-grid {
  display: grid;
  grid-template-columns: repeat(5, 349px);
  gap: 0;
  justify-content: center;
}

.partnerzy-card {
  width: 349px;
  height: 209px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}

.partnerzy-card--alt {
  background: #D9D9D9;
}

.partnerzy-card--spacer {
  padding: 0;
  pointer-events: none;
}

.partnerzy-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: filter 0.35s ease, opacity 0.35s ease;
}

.partnerzy-card:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.partnerzy-slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.partnerzy-slider__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.partnerzy-slider__arrow--dim {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

.partnerzy-slider__arrow:not(.partnerzy-slider__arrow--dim):hover {
  opacity: 0.7;
}

@media (max-width: 1920px) {
  .partnerzy-slider__viewport {
    max-width: min(calc(349px * 5), calc(100vw - 80px));
  }

  .partnerzy-grid {
    grid-template-columns: repeat(5, min(349px, calc((100vw - 80px) / 5)));
  }

  .partnerzy-card {
    width: 100%;
    height: auto;
    aspect-ratio: 349 / 209;
  }
}

@media (max-width: 1200px) {
  .partnerzy-slider__viewport {
    max-width: min(calc(349px * 3), calc(100vw - 80px));
  }

  .partnerzy-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .partnerzy-page__title {
    font-size: 36px;
  }

  .partnerzy-slider__viewport {
    max-width: calc(100vw - 48px);
  }

  .partnerzy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partnerzy-slider__nav {
    margin-top: 32px;
  }
}

.partnerzy-page__title {
    color: #B58F34;
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: -2.4px;
    margin: 0;
    color: #B58F34;
    text-align: center;
    font-family: "Cormorant Garamond";
    font-size: 58px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -2.9px;
    opacity: 0.75;
    margin-left: -4vw;
}

.partnerzy-page__line {
    width: 60px;
    height: 1px;
    background: #B58F34;
    flex-shrink: 0;
    margin-left: -4.6vw;
}

.partnerzy-page__title {
    color: #B58F34;
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: -2.4px;
    margin: 0;
    color: #B58F34;
    text-align: center;
    font-family: "Cormorant Garamond";
    font-size: 58px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -2.9px;
    opacity: 0.75;
    margin-left: 0vw;
}

.partnerzy-card--alt {
    background: #d9d9d929;
}

.partnerzy-card img {
    opacity: 1;
}

/* ===== Wydarzenia page ===== */
.page-wydarzenia .page-header .nav__links > li:nth-child(2) > a {
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
}

.wydarzenia-hero {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.page-wydarzenia .wydarzenia-hero .event-card--upcoming {
  width: 100%;
  max-width: none;
  height: 749px;
}

.page-wydarzenia .wydarzenia-hero .event-card--upcoming .df1 {
  width: 100%;
  left: 0;
}

.wydarzenia-archive {
  max-width: 1920px;
  margin: 0 auto;
  padding: 72px 45px 96px;
  background: #fff;
}

.wydarzenia-archive__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
}

.wydarzenia-archive__line {
  width: 60px;
  height: 1px;
  background: #B58F34;
  flex-shrink: 0;
}

.wydarzenia-archive__title {
  margin: 0;
  color: #B58F34;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -2.4px;
  line-height: normal;
}

.wydarzenia-archive__slider {
  display: flex;
  align-items: center;
  gap: 24px;
}

.wydarzenia-archive__viewport {
  flex: 1;
  overflow: hidden;
}

.wydarzenia-archive__track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.page-wydarzenia .wydarzenia-archive__card.event-card--archive {
  width: 442px;
  height: 589px;
  flex: 0 0 442px;
}

.page-wydarzenia .wydarzenia-archive__card .event-card__content--archive {
  bottom: 32px;
  left: 28px;
  right: 28px;
}

.page-wydarzenia .wydarzenia-archive__card .event-card__title--archive {
  font-size: 32px;
  letter-spacing: -1.6px;
}

.page-wydarzenia .wydarzenia-archive__card .marker {
  top: 24px;
  right: 24px;
}

.page-wydarzenia .wydarzenia-archive__card .event-card__content.event-card__content--archive {
  bottom: 28px;
}

.page-wydarzenia .wydarzenia-archive__card:hover .event-card__content.event-card__content--archive {
  bottom: 56px;
}

.page-wydarzenia .wydarzenia-archive__card .event-content-row1 {
  grid-template-columns: 88px 1px 1fr;
  gap: 12px;
}

.wydarzenia-archive__arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #B58F34;
  background: #fff;
  cursor: pointer;
  transition: opacity 0.3s ease, background 0.3s ease;
}

.wydarzenia-archive__arrow--next {
  background: #B58F34;
  border-color: #B58F34;
}

.wydarzenia-archive__arrow--dim {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.wydarzenia-archive__arrow:not(.wydarzenia-archive__arrow--dim):hover {
  opacity: 0.85;
}

@media (max-width: 1920px) {
  .page-wydarzenia .wydarzenia-archive__card.event-card--archive {
    width: calc((100% - 72px) / 4);
    flex-basis: calc((100% - 72px) / 4);
    height: auto;
    aspect-ratio: 442 / 589;
  }
}

@media (max-width: 1200px) {
  .page-wydarzenia .wydarzenia-archive__card.event-card--archive {
    width: calc((100% - 48px) / 3);
    flex-basis: calc((100% - 48px) / 3);
    aspect-ratio: 442 / 589;
    height: auto;
  }
}

@media (max-width: 1100px) {
  .page-wydarzenia .wydarzenia-hero .event-card--upcoming {
    width: 100%;
    height: auto;
    aspect-ratio: 1920 / 749;
  }

  .page-wydarzenia .wydarzenia-archive__card.event-card--archive {
    aspect-ratio: 442 / 589;
    height: auto;
  }
}

@media (max-width: 900px) {
  .page-wydarzenia .wydarzenia-hero .event-card--upcoming {
    height: auto;
    aspect-ratio: 1920 / 749;
  }

  .wydarzenia-archive {
    padding: 48px 24px 72px;
  }

  .wydarzenia-archive__title {
    font-size: 36px;
  }

  .page-wydarzenia .wydarzenia-archive__card.event-card--archive {
    width: calc((100% - 24px) / 2);
    flex-basis: calc((100% - 24px) / 2);
  }
}

@media (max-width: 600px) {
  .page-wydarzenia .wydarzenia-archive__card.event-card--archive {
    width: 100%;
    flex-basis: 100%;
  }

  .wydarzenia-archive__slider {
    gap: 12px;
  }

  .wydarzenia-archive__arrow {
    width: 40px;
    height: 40px;
  }
}


.page-wydarzenia .wydarzenia-hero .event-card--upcoming {
    width: 100%;
    max-width: none;
    height: 791px;
}

.page-wydarzenia  .event-card__countdown {
    position: absolute;
    top: 18px;
    right: 77px;
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 2;
}

.page-wydarzenia .event-card__content {
    position: absolute;
    bottom: 109px;
    left: 77px;
    z-index: 9;
}

.page-wydarzenia .event-card__footer {
    position: absolute;
    bottom: 1.4vw;
    left: 33px;
}

.page-wydarzenia .event-card__details {
    position: absolute;
    right: 79px;
}

.wydarzenia-archive__title {
    margin: 0;
    color: #B58F34;
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: -2.4px;
    line-height: normal;
}

.wydarzenia-archive {
    max-width: 1920px;
    margin: 0 auto;
    padding: 55px 20px 96px;
    background: #fff;
}

.wydarzenia-archive__title strong 
{
  font-weight: 700;
}

.wydarzenia-archive__title {
    margin: 0;
    color: #B58F34;
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: -2.4px;
    line-height: normal;
    color: #B58F34;
    text-align: center;
    font-family: "Cormorant Garamond";
    font-size: 58px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -2.9px;
    opacity: 0.9;
}

.wydarzenia-archive__title {
    margin: 0;
    color: #B58F34;
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: -2.4px;
    line-height: normal;
    color: #B58F34;
    text-align: center;
    font-family: "Cormorant Garamond";
    font-size: 58px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -2.9px;
    opacity: 0.9;
    margin-top: 1vw;
    margin-bottom: 1vw;
}

.page-wydarzenia .wydarzenia-archive__card .event-card__content.event-card__content--archive {
    bottom: -43px;
}

.page-wydarzenia .event-card--archive img {
    filter: none;
}

/* ===== Wydarzenie detail page ===== */
.page-wydarzenie .page-header .nav__links > li:nth-child(2) > a {
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
}

.event-detail-hero {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0;
  background: #fff;
}

.event-detail-hero__grid {
  display: grid;
  grid-template-columns: 960px 1fr;
  gap: 0;
  min-height: 704px;
}

.event-detail-hero__media {
  position: relative;
  width: 960px;
  height: 704px;
  flex-shrink: 0;
  overflow: hidden;
}

.event-detail-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
  z-index: 1;
}

.event-detail-hero__media img {
  width: 960px;
  height: 704px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.page-wydarzenie--archive .event-detail-hero__media img {
  filter: grayscale(100%);
}

/* vertical countdown — same as homepage, rotated layout */
.page-wydarzenie .event-detail-hero__media .event-card__countdown--vertical {
  position: absolute;
  top: 40px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  z-index: 2;
}

.page-wydarzenie .event-card__countdown--vertical .event-card__countdown-sep--h {
  width: 72px;
  height: 1px;
  background: #fff;
  opacity: 0.25;
  flex-shrink: 0;
}

.event-detail-hero__info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 48px 64px 48px 56px;
  box-sizing: border-box;
}

.event-detail__label {
  display: block;
  color: #B58F34;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 16px;
}

.page-wydarzenie--archive .event-detail__label {
  color: #888;
}

.event-detail__title {
  margin: 0 0 24px;
  color: #B58F34;
  font-family: "Cormorant Garamond", serif;
  font-size: 58px;
  font-weight: 600;
  letter-spacing: -2.9px;
  line-height: 1.05;
}

.page-wydarzenie--archive .event-detail__title {
  color: #222;
}

.event-detail__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding: 18px 0;
  margin: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.event-detail__meta-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.event-detail__meta-label {
  color: #000;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.event-detail__meta-sep {
  width: 1px;
  height: 18px;
  background: #000;
  opacity: 0.15;
  flex-shrink: 0;
}

.event-detail__meta-value {
  color: #000;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.event-detail__intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.event-detail__intro p {
  margin: 0;
  opacity: 0.75;
  color: #000;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 25px;
}

.event-detail-gallery {
  max-width: 1920px;
  margin: 0 auto;
  padding: 64px 45px 72px;
  background: #fff;
}

.event-detail-gallery__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

.event-detail-gallery__line {
  width: 60px;
  height: 1px;
  background: #B58F34;
  flex-shrink: 0;
}

.event-detail-gallery__title {
  margin: 0;
  color: #B58F34;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -2.4px;
}

.event-detail-gallery__title-strong {
  opacity: 0.75;
  color: #B58F34;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -2.4px;
}

.event-detail-gallery__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.event-detail-gallery__item {
  display: flex;
  flex-shrink: 0;
  cursor: zoom-in;
  line-height: 0;
}

.event-detail-gallery__grid img,
.event-detail-gallery__item img {
  display: block;
  width: 320px;
  height: 317px;
  object-fit: cover;
  filter: grayscale(100%);
  flex-shrink: 0;
}

/* GLightbox overrides */
.glightbox-container,
.goverlay {
  z-index: 10001 !important;
}

.glightbox-container .gslide-image img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100vh !important;
  object-fit: contain !important;
}

.event-detail-nav {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 45px 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: #fff;
}

.event-detail-nav__card {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 120px;
  padding: 20px 24px;
  background: #f5f5f5;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s ease;
}

.event-detail-nav__card:hover {
  background: #ececec;
}

.event-detail-nav__card img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  flex-shrink: 0;
}

.event-detail-nav__card--next {
  justify-content: flex-end;
  text-align: right;
}

.event-detail-nav__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-detail-nav__label {
  color: #888;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.event-detail-nav__name {
  color: #111;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -1.2px;
  line-height: 1.2;
}

.event-card--link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.event-card--link .event-card__details {
  pointer-events: none;
}

a.wydarzenia-archive__card,
a.wydarzenia-hero__link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.wydarzenia-hero__link {
  cursor: pointer;
}

@media (max-width: 1200px) {
  .event-detail-hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .event-detail-hero__media {
    width: 100%;
    height: auto;
    aspect-ratio: 960 / 704;
  }

  .event-detail-hero__media img {
    width: 100%;
    height: 100%;
    aspect-ratio: 960 / 704;
  }

  .event-detail-hero__info {
    padding: 40px 32px 48px;
  }

  .event-detail-gallery__grid img {
    width: calc(50% - 8px);
    height: auto;
    aspect-ratio: 320 / 317;
    max-width: 320px;
  }

  .event-detail-nav {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .event-detail-hero,
  .event-detail-gallery,
  .event-detail-nav {
    padding-left: 24px;
    padding-right: 24px;
  }

  .event-detail__title {
    font-size: 40px;
  }

  .event-detail-gallery__grid img {
    width: 100%;
    max-width: 320px;
  }

  .event-detail-nav__card {
    flex-direction: column;
    text-align: center;
  }

  .event-detail-nav__card--next {
    flex-direction: column-reverse;
    text-align: center;
  }
}

/* ===== Projekty page ===== */
.page-projekty .page-header .nav__links > li:nth-child(3) > a {
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
}

.projekty-page {
  max-width: 1920px;
  margin: 0 auto;
  background: #fff;
}

.projekty-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: auto;
}

.projekty-row__text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: auto;
  padding: 48px 56px;
  box-sizing: border-box;
}

.projekty-row--dark .projekty-row__text {
  background: #1D1D1D;
  color: #fff;
}

.projekty-row__head {
  margin-bottom: 20px;
}

.projekty-row__head-line {
  width: 60px;
  height: 1px;
  background: #B58F34;
  flex-shrink: 0;
}

.projekty-row__date {
  color: #fff;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.projekty-row__title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 20px;
  color: #B58F34;
  font-family: "Cormorant Garamond", serif;
  font-size: 76px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -3.8px;
}

.projekty-row__title-line {
  width: 60px;
  height: 1px;
  background: #B58F34;
  flex-shrink: 0;
}

.projekty-row__tagline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 28px;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.5px;
}

.projekty-row__tagline-line {
  width: 40px;
  height: 1px;
  background: #B58F34;
  flex-shrink: 0;
}

.projekty-row__body p {
  margin: 0 0 20px;
  color: #fff;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}

.projekty-row__invite {
  margin-bottom: 0;
}

.projekty-row__invite strong {
  font-weight: 700;
}

.projekty-row__media {
  height: 100%;
  overflow: visible;
}

.projekty-row__media img {
  width: 100%;
  height: 41.3vw;
  object-fit: cover;
  object-position: center;
  display: block;
  position: sticky;
  top: 8.4vw;
}

.projekty-row__text--light {
  background: #fff;
}

.projekty-row__text--light .projekty-row__body p {
  opacity: 0.75;
  color: #000;
  font-weight: 300;
}

.projekty-row__text--light .projekty-row__body strong {
  font-weight: 700;
  opacity: 1;
}

.projekty-page__cta {
  display: flex;
  justify-content: center;
  padding: 56px 45px 80px;
}

.projekty-page__archive-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 56px;
  padding: 0 32px;
  border: 2px solid #000;
  color: #000;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.88px;
  text-decoration: none;
  background: transparent;
  transition: background 0.3s ease, color 0.3s ease;
}

.projekty-page__archive-btn:hover {
  background: #000;
  color: #fff;
}

@media (max-width: 1100px) {
  .projekty-row {
    grid-template-columns: 1fr;
    height: auto;
  }

  .projekty-row__text,
  .projekty-row__media,
  .projekty-row__media img {
    height: auto;
    min-height: 320px;
  }

  .projekty-row__media img {
    aspect-ratio: 16 / 10;
  }

  .projekty-row__title {
    font-size: 42px;
  }

  .projekty-row__tagline {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .projekty-row__text {
    padding: 32px 24px;
  }

  .projekty-page__cta {
    padding: 40px 24px 64px;
  }
}

/* ===== Projekty archiwalne page ===== */
.page-projekty-archiwalne .page-header .nav__links > li:nth-child(3) > a {
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
}

.projekty-archiwalne {
  max-width: 1920px;
  margin: 0 auto;
  padding: 72px 100px 80px;
  background: #fff;
  box-sizing: border-box;
}

.projekty-archiwalne__layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 120px;
  align-items: stretch;
}

.projekty-archiwalne__intro {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.projekty-archiwalne__title {
  margin: 0 0 20px;
}

.projekty-archiwalne__title-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.projekty-archiwalne__title-line {
  width: 56px;
  height: 1px;
  background: #B58F34;
  flex-shrink: 0;
  margin-top: 22px;
}

.projekty-archiwalne__title-text {
  display: flex;
  flex-direction: column;
  color: #B58F34;
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -2.8px;
}

.projekty-archiwalne__desc {
  margin: 0;
  max-width: 240px;
  color: rgba(0, 0, 0, 0.5);
  font-family: "Kumbh Sans", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 22px;
}

.projekty-archiwalne__current-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 196px;
  height: 52px;
  margin-top: auto;
  padding: 0 28px;
  border: 1px solid #000;
  color: #000;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.88px;
  text-decoration: none;
  background: transparent;
  transition: background 0.3s ease, color 0.3s ease;
}

.projekty-archiwalne__current-btn:hover {
  background: #000;
  color: #fff;
}

.projekty-archiwalne__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.projekty-archiwalne__pages {
  position: relative;
  flex: 1;
}

.projekty-archiwalne__page {
  display: none;
}

.projekty-archiwalne__page--active {
  display: block;
}

.projekty-archiwalne__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 100px;
}

.projekty-archiwalne__col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.projekty-archiwalne__card {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  text-decoration: none;
  color: inherit;
}

.projekty-archiwalne__card-image {
  display: flex;
  flex-shrink: 0;
  width: 308px;
  height: 202px;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.projekty-archiwalne__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.35s ease;
}

.projekty-archiwalne__card:hover .projekty-archiwalne__card-image img {
  filter: grayscale(0%);
}

.projekty-archiwalne__card-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  padding-left: 24px;
}

.projekty-archiwalne__card-date {
  color: #000;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  opacity: 0.5;
}

.projekty-archiwalne__card-title {
  margin-top: 4px;
  color: #000;
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.3px;
  max-width: 192px;
}

.projekty-archiwalne__card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: #000;
  text-align: right;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.88px;
}

.projekty-archiwalne__card-link svg,
.projekty-archiwalne__card-link .class_svgs {
  flex-shrink: 0;
  color: #000;
}

.projekty-archiwalne__empty {
  margin: 0;
  color: #000;
  opacity: 0.75;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 25px;
}

.projekty-archiwalne__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 64px;
}

.projekty-archiwalne__page-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 8px;
  border: none;
  background: transparent;
  color: #000;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.projekty-archiwalne__page-arrow--dim {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.projekty-archiwalne__page-arrow:not(.projekty-archiwalne__page-arrow--dim):hover {
  opacity: 0.6;
}

.projekty-archiwalne__page-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(0, 0, 0, 0.55);
  font-family: "Kumbh Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.projekty-archiwalne__page-num.is-active {
  border-color: #B58F34;
  color: #000;
}

.projekty-archiwalne__page-num:hover:not(.is-active) {
  color: #000;
}

@media (max-width: 1400px) {
  .projekty-archiwalne {
    padding: 64px 56px 72px;
  }

  .projekty-archiwalne__layout {
    gap: 64px;
  }

  .projekty-archiwalne__columns {
    gap: 40px 56px;
  }

  .projekty-archiwalne__card-image {
    width: 260px;
    height: 171px;
  }
}

@media (max-width: 1100px) {
  .projekty-archiwalne__layout {
    grid-template-columns: 260px 1fr;
    gap: 48px;
  }

  .projekty-archiwalne__title-text {
    font-size: 44px;
    letter-spacing: -2.2px;
  }

  .projekty-archiwalne__title-line {
    margin-top: 18px;
  }

  .projekty-archiwalne__card-title {
    font-size: 24px;
  }
}

@media (max-width: 900px) {
  .projekty-archiwalne {
    padding: 48px 24px 64px;
  }

  .projekty-archiwalne__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .projekty-archiwalne__intro {
    min-height: auto;
  }

  .projekty-archiwalne__current-btn {
    margin-top: 32px;
  }

  .projekty-archiwalne__columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .projekty-archiwalne__col {
    gap: 0;
  }
}

@media (max-width: 560px) {
  .projekty-archiwalne__card {
    flex-direction: column;
    align-items: flex-start;
  }

  .projekty-archiwalne__card-body {
    padding-left: 0;
    padding-top: 16px;
  }

  .projekty-archiwalne__card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 308 / 202;
  }

  .projekty-archiwalne__card-title {
    max-width: none;
  }
}

.projects__body p {
    color: #FFF;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 21px;
    margin-top: 1.67vw;
}

.projects__archive {
    position: relative;
    z-index: 2;
    color: #FFF;
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 400;
    opacity: 0.75;
    margin-top: auto;
    transition: opacity 0.3s;
    width: 100%;
    margin-left: -2.49vw;
    width: 32.6vw;
    margin-top: 1.4vw;
    display: flex;
    height: 4.3vw;
    border-top: 1px solid #ffffff24;
    padding-top: 1.8vw;
    padding-left: 9.3vw;
    letter-spacing: -1px;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    gap: 0.6vw;
}

.footer__address {
    opacity: 0.75;
}

.kontakt_leftss 
{
     background: linear-gradient(128deg, #EDEDED 15.21%, #FFF 97.84%);
    width: 960px;
    height: 706px;
    position: absolute;
    left: 0px;
    top: 0vw; 
}

.logog 
{
 width: 388px;
    height: 233px;
    position: absolute;
    top: 22vw;
    left: 29vw; 
}

.page-kontakt .page-header .nav__links > li:last-child > a {
    border-bottom: 1px solid #b59842;
    padding-bottom: 23px;
}



.kontakt__donate-iban-label 
{
  font-weight: 600 !important;
}

.partnerzy-card {
        border: 1px solid #f2f2f2;
    }

.footer__donate {
    color: #c6c6c6;
}

.footer__iban-label {
    color: #9c9c9c;
}

.partnerzy-slider__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 65px;
    margin-bottom: -30px;
}

.page-partnerzy .page-header .nav__links > li:nth-child(4) > a {
    border-bottom: 1px solid #c5ad68;
    padding-bottom: 22px;
}

.page-projekty .page-header .nav__links > li:nth-child(3) > a {
    border-bottom: 1px solid #c5ad68;
    padding-bottom: 22px;
}

.page-wydarzenia .page-header .nav__links > li:nth-child(2) > a {
   border-bottom: 1px solid #c5ad68;
    padding-bottom: 22px;
}

.page-kontakt .page-header .nav__links > li:last-child > a,
.page-partnerzy .page-header .nav__links > li:nth-child(4) > a,
.page-wydarzenia .page-header .nav__links > li:nth-child(2) > a,
.page-wydarzenie .page-header .nav__links > li:nth-child(2) > a,
.page-projekty .page-header .nav__links > li:nth-child(3) > a,
.page-projekty-archiwalne .page-header .nav__links > li:nth-child(3) > a,
.page-fundacja .page-header .nav__links > li:first-child > a,
.page-fundator .page-header .nav__links > li:first-child > a,
.page-wladze .page-header .nav__links > li:first-child > a,
.page-kontakt .footer__nav > li:last-child > a,
.page-partnerzy .footer__nav > li:nth-child(4) > a,
.page-wydarzenia .footer__nav > li:nth-child(2) > a,
.page-wydarzenie .footer__nav > li:nth-child(2) > a,
.page-projekty .footer__nav > li:nth-child(3) > a,
.page-projekty-archiwalne .footer__nav > li:nth-child(3) > a,
.page-projekt .footer__nav > li:nth-child(3) > a,
.page-fundacja .footer__nav > li:first-child > a,
.page-fundator .footer__nav > li:first-child > a,
.page-wladze .footer__nav > li:first-child > a {
  color: #F6D67B;
}

.wydarzenia-hero .event-card__label {
    color: #f2da7c;
}

.page-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: linear-gradient(269deg, rgba(0, 0, 0, 0.87) 0%, rgba(0, 0, 0, 0.00) 65.33%), #1D1D1D;
}

.projekty-row__date {
    color: #fff;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    color: #FFF;
    font-family: "Kumbh Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.projekty-row__head {
    margin-bottom: 20px;
    margin-left: 11.2vw;
    color: #FFF;
    font-family: "Kumbh Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 0.9vw;
}

.projekty-row__title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 20px;
    color: #B58F34;
    font-family: "Cormorant Garamond", serif;
    font-size: 63px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -3.8px;
    color: #F6D67B;
    font-family: "Cormorant Garamond";
    font-size: 58px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -2.9px;
}

.projekty-row__text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
    padding: 48px 56px;
    box-sizing: border-box;
    align-items: flex-start;
    align-content: flex-start;
    padding-top: 3.3vw;
}

.projekty-row__title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 20px;
    color: #B58F34;
    font-family: "Cormorant Garamond", serif;
    font-size: 63px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -3.8px;
    color: #F6D67B;
    font-family: "Cormorant Garamond";
    font-size: 58px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -2.9px;
    margin-left: 6.67vw;
    gap: 23px;
    margin-top: -1vw;
}

.projekty-row__tagline-line {
    width: 30px;
    height: 1px;
    background: #B58F34;
    flex-shrink: 0;
}

.projekty-row__tagline-line {
    width: 30px;
    height: 1px;
    background: #B58F34;
    flex-shrink: 0;
    margin-right: 5px !important;
}

.projekty-row__body 
{
      margin-left: 11vw;
    margin-top: 0.7vw;
    width: 31vw;
}

.projekty-row__tagline {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 28px;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -1.5px;
    margin-left: 8.4vw;
    margin-top: 0.2vw;
}

.projekty-row.projekty-row--light .projekty-row__body {
    margin-left: 1vw;
    margin-top: 0.7vw;
    width: 38vw;
    text-align: justify;
}

.projekty-row__body p {
    margin: 0 0 20px;
    color: #fff;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    color: #FFF;
    font-family: "Kumbh Sans";
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    opacity: 0.75;
}

.projekty-archiwalne {
    max-width: 1920px;
    margin: 0 auto;
    padding: 72px 100px 80px;
    background: #fff;
    box-sizing: border-box;
    height: 43.7vw;
}

.projekty-archiwalne {
    max-width: 1920px;
    margin: 0 auto;
    padding: 72px 100px 80px;
    background: #fff;
    box-sizing: border-box;
    height: 43.7vw;
    margin-left: 4.67vw;
}

.projekty-archiwalne__title-text {
    display: flex;
    flex-direction: column;
    color: #B58F34;
    font-family: "Cormorant Garamond", serif;
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -2.8px;
    opacity: 0.75;
}
.projekty-archiwalne__title-line {
    width: 56px;
    height: 1px;
    background: #B58F34;
    flex-shrink: 0;
    margin-top: 34px;
}

.projekty-archiwalne__title-text {
    display: flex;
    flex-direction: column;
    color: #B58F34;
    font-family: "Cormorant Garamond", serif;
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.23;
    letter-spacing: -2.8px;
    opacity: 0.75;
    margin-left: 0.4vw;
    margin-top: -0.2vw;
}
.projekty-archiwalne__desc {
    margin: 0;
    max-width: 240px;
    color: rgba(0, 0, 0, 0.5);
    font-family: "Kumbh Sans", sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 22px;
    color: #000;
    font-family: "Kumbh Sans";
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    opacity: 0.75;
    margin-top: 0.4vw;
    margin-left: 4.2vw;
}

.projekty-archiwalne__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px 100px;
    margin-left: 0.8vw;
    margin-top: 0.5vw;
}

.projekty-archiwalne__card-body {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
    padding-left: 2.1vw;
    height: 10vw;
    padding-top: 1.3vw;
}


.projekty-archiwalne__card-title {
    margin-top: 11px;
    color: #000;
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -1.3px;
    max-width: 192px;
}

.projekty-archiwalne__card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    color: #000;
    text-align: right;
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.88px;
}

.projekty-archiwalne__current-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 196px;
    height: 52px;
    margin-top: auto;
    padding: 0 28px;
    border: 2px solid #000;
    color: #000;
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.88px;
    text-decoration: none;
    background: transparent;
    transition: background 0.3s ease, color 0.3s ease;
    display: flex;
    width: 234px;
    height: 56px;
    padding-bottom: 16px;
    flex-direction: column;
    align-items: center;
    gap: 11px;
    align-content: center;
    padding-top: 0.8vw;
    margin-left: 3vw;
}

.projekty-archiwalne {
    max-width: 1920px;
    margin: 0 auto;
    padding: 72px 100px 80px;
    background: #fff;
    box-sizing: border-box;
    height: auto;
    margin-left: 4.67vw;
}

body.is-side-menu-open {
  overflow: hidden;
}

.nav__icon14--fixed {
  display: none;
}

body.is-side-menu-open .nav__icon14--fixed {
  visibility: hidden;
  pointer-events: none;
}

.nav__icon-hamburger,
.nav__phone-svg {
  display: none;
}

@media (min-width:991px)
{
  .event-detail-hero__media img {
    width: 960px;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.event-detail-hero__media {
    position: relative;
    width: 960px;
    height: 41.2vw !important;
}

.event-detail-gallery {
    max-width: 1920px;
    margin: 0 auto;
    padding: 64px 45px 72px;
    background: #fff;
    padding-left: 0px;
    padding-right: 0px;
}

.event-detail-gallery__grid {
    display: grid;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.event-detail-nav__card {
    display: flex;
    align-items: center;
    gap: 1.5vw;
    min-height: 120px;
    padding: 0;
    background: #f5f5f500;
    text-decoration: none;
    color: inherit;
    transition: background 0.3s ease;
}

.event-detail-nav__card:hover {
    background: #ececec00;
}
.event-detail-nav__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.event-detail-nav {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0px 45px 63px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    background: #fff;
    width: 71.3vw;
}

    .event-detail-nav {
        max-width: 1920px;
        margin: 0 auto;
        padding: 0px 45px 63px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        background: #fff;
        width: 71.3vw;
        padding-top: 3vw;
    }

        .event-detail-gallery {
        max-width: 1920px;
        margin: 0 auto;
        padding: 64px 45px 72px;
        background: #fff;
        padding-left: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
    }

    .page-wydarzenie .page-header .nav__links > li:nth-child(2) > a {
    border-bottom: 1px solid #F6D67B;
    padding-bottom: 1.2vw;
}

.event-detail__intro p {
    margin: 0;
    opacity: 0.75;
    color: #000;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    text-align: justify;
}

.event-detail-hero__info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 48px 64px 48px 56px;
    box-sizing: border-box;
    padding-right: 7vw;
}

.row_jj 
{
     color: #000;
    text-align: justify;
    font-family: "Kumbh Sans";
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    opacity: 0.75;
    margin: auto;
    width: 86%;
    margin-top: 2.4vw; 
}

.row_jj p 
{
 margin-bottom: 1vw; 
}

}

/* ===== Site arrow icon (class_svgs) ===== */
.class_svgs {
  display: block;
  flex-shrink: 0;
  width: auto;
  height: 14px;
  fill: currentColor;
}

.projects__archive .class_svgs {
  height: 0.85em;
  fill: currentColor;
}

.event-card__details .class_svgs {
  height: 12px;
}

.projekty-archiwalne__card-link .class_svgs {
  height: 12px;
}

.partnerzy-slider__arrow .class_svgs,
.partners-yy-slider__arrow .class_svgs {
  height: 14px;
}

.wydarzenia-archive__arrow .class_svgs {
  height: 16px;
}

@media (max-width: 991px) {
  .class_svgs {
    height: 16px;
  }

  .projects__archive--before-partners .class_svgs {
    height: 18px;
  }

  .event-card__details .class_svgs {
    height: 16px;
  }

  .projekty-archiwalne__card-link .class_svgs {
    height: 16px;
  }

  .partnerzy-slider__arrow .class_svgs,
  .partners-yy-slider__arrow .class_svgs {
    height: 18px;
  }

  .wydarzenia-archive__arrow .class_svgs {
    height: 18px;
  }
}




