@media (min-width: 991px) {
/* ===== 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: 72.8vw;
}

/* ===== 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: 0.624vw 1.872vw;
  font-family: var(--font-sans);
  font-size: 0.572vw;
  font-weight: 500;
  letter-spacing: 0.104vw;
  text-transform: uppercase;
  border: 0.052vw 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: 0.416vw 1.248vw;
  font-size: 0.52vw;
}

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

.logo__emblem {
  width: 2.912vw;
  height: 2.912vw;
}

.logo__name {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.676vw;
  font-weight: 600;
  letter-spacing: 0.156vw;
  color: var(--gold);
}

.logo__sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.364vw;
  font-weight: 400;
  letter-spacing: 0.104vw;
  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: 0.052vw;
}

.section-title--left {
  margin-bottom: 0.624vw;
}

.section-title--center {
  text-align: center;
  margin-bottom: 2.496vw;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 1.248vw;
  max-width: var(--max-width);
  margin: 0 auto 2.08vw;
  padding: 0 2.08vw;
}

.section-header__line {
  flex: 0 0 3.12vw;
  height: 0.052vw;
  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: -2.08vw;
  left: -1.04vw;
  font-family: var(--font-serif);
  font-size: clamp(10.4vw, 28vw, 19.76vw);
  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: 1.456vw 2.496vw;
  max-width: 100%;
}

.nav__links {
  display: flex;
  gap: 1.456vw;
}

.nav__links a {
  font-size: 0.572vw;
  font-weight: 400;
  letter-spacing: 0.078vw;
  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: 1.04vw;
}

.nav__phone {
  font-size: 0.624vw;
  letter-spacing: 0.026vw;
  color: var(--white);
}

.nav__icon {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.208vw;
  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: 2.08vw 1.248vw 6.24vw;
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 400;
  margin-bottom: 2.08vw;
  max-width: 41.6vw;
}

.hero__title-line {
  display: block;
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  color: var(--gold);
  letter-spacing: 0.052vw;
  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: 0.208vw;
}

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

/* ===== About ===== */
.about {
  position: relative;
  width: 100%;
  max-width: 99.84vw;
  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(1.664vw, 3.54vw, 3.536vw);
  letter-spacing: -0.1768vw;
  line-height: normal;
}

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

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

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

.about__title-light {
  display: block;
  margin-top: 0.104vw;
  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: 0.052vw;
  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: 0.052vw;
  height: 44.19%;
  min-height: 14.56vw;
  max-height: 20.176vw;
  opacity: 0.1;
  background: #000;
  flex-shrink: 0;
}

.about__card-text {
  flex: 1;
  padding-top: 0.208vw;
  min-width: 0;
}

.about__card-text p {
  font-family: "Kumbh Sans", sans-serif;
  font-size: clamp(0.676vw, 0.89vw, 0.884vw);
  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: 1.456vw;
}

.about__signature {
  font-family: "Kuba Reczny", cursive;
  font-size: clamp(1.456vw, 2.4vw, 2.392vw);
  font-weight: 400;
  line-height: normal;
  color: #000;
  margin: 1.248vw 0 0.208vw;
}

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

.about__btn {
  display: flex;
  width: clamp(7.28vw, 9.27vw, 9.256vw);
  height: clamp(2.288vw, 2.92vw, 2.912vw);
  padding-bottom: 0.832vw;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.572vw;
  border: 0.104vw solid #000;
  color: #000;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.144vw;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.04576vw;
  background: transparent;
  transition: background 0.3s, color 0.3s;
}

.about__btn:hover {
  color: #fff;
}

/* ===== Events ===== */
.events {
  max-width: 99.84vw;
  margin: 0 auto;
  padding: 4.16vw 2.34vw 3.12vw;
}

.events__header {
  display: flex;
  align-items: center;
  gap: 1.248vw;
  margin-bottom: 2.08vw;
  padding-left: 2.34vw;
}

.events__header-line {
  width: 3.744vw;
  height: 0.052vw;
  background: #B58F34;
  flex-shrink: 0;
}

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

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

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

.event-card--upcoming,
.event-card--archive {
  width: 100%;
  height: 38.948vw;
}

.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: 2.08vw;
  right: 2.496vw;
  display: flex;
  align-items: center;
  gap: 1.248vw;
  z-index: 2;
}

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

.event-card__countdown-sep {
  width: 0.052vw;
  height: 2.496vw;
  background: #FFF;
  opacity: 0.25;
  flex-shrink: 0;
}

.event-card__countdown-item {
  display: flex;
  align-items: baseline;
  gap: 0.416vw;
}

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

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

.event-card__content {
  position: absolute;
  bottom: 4.576vw;
  left: 2.496vw;
  z-index: 2;
}

.event-card__content--archive {
  bottom: 2.496vw;
  left: 1.664vw;
  right: 1.664vw;
}

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

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

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

.event-card__title--archive {
  color: #FFF;
  font-size: 1.872vw;
  letter-spacing: -0.0936vw;
}

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

.event-card__footer-group {
  display: flex;
  align-items: center;
  gap: 0.832vw;
}

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

.event-card__footer-sep {
  width: 0.052vw;
  height: 0.936vw;
  background: #FFF;
  opacity: 0.4;
  flex-shrink: 0;
}

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

.events__cta {
  display: flex;
  justify-content: center;
  margin-top: 2.496vw;
}

.events__cta-btn {
  display: flex;
  width: 11.44vw;
  height: 2.912vw;
  align-items: center;
  justify-content: center;
  border: 0.104vw solid #000;
  color: #000;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.144vw;
  font-weight: 700;
  letter-spacing: -0.04576vw;
  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 2.34vw 4.16vw;
  max-width: 99.84vw;
  margin: 0 auto;
}

.projects__wrap {
  display: grid;
  grid-template-columns: 34.21fr 65.79fr;
  width: 95.16vw;
  max-width: 100%;
  height: 39.624vw;
}

.projects__text {
  position: relative;
  background: #1D1D1D;
  color: #FFF;
  padding: 2.912vw 2.496vw 2.08vw;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.projects__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 19.76vw;
  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: 1.664vw;
}

.projects__heading-row {
  display: flex;
  align-items: center;
  gap: 1.04vw;
}

.projects__heading-line {
  width: 3.744vw;
  height: 0.052vw;
  background: #F6D67B;
  flex-shrink: 0;
}

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

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

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

.projects__subtitle-row {
  display: flex;
  align-items: center;
  gap: 0.832vw;
}

.projects__subtitle-line {
  width: 2.08vw;
  height: 0.052vw;
  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: 0.884vw;
  font-weight: 400;
  line-height: 1.3vw;
  margin-bottom: 1.04vw;
}

.projects__invite {
  margin-top: 0.416vw;
}

.projects__invite strong {
  font-weight: 700;
}

.projects__archive {
  position: relative;
  z-index: 2;
  color: #FFF;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.144vw;
  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: 39.624vw;
  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: 2.08vw 2.496vw;
  z-index: 2;
}

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

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

.projects__image-title span {
  display: block;
}

.projects__btn {
  display: flex;
  width: 8.112vw;
  height: 2.912vw;
  padding-bottom: 0.832vw;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.572vw;
  border: 0.104vw solid #FFF;
  color: #FFF;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.144vw;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.04576vw;
  background: transparent;
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s;
}

.projects__btn:hover {
  color: #000;
}

/* ===== Partners ===== */
.partners {
  padding: 4.16vw 2.08vw;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.partner-logo {
  font-family: var(--font-sans);
  font-size: 0.728vw;
  font-weight: 500;
  letter-spacing: 0.156vw;
  color: #999;
  text-transform: uppercase;
  padding: 1.04vw 1.664vw;
  border: 0.052vw 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, 12.48vw);
}

.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: 2.704vw;
  height: 2.704vw;
  border-radius: 50%;
  border: 0.052vw 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 0.208vw 1.04vw rgba(197, 160, 89, 0.2);
}

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

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

.footer__col {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 2.912vw 2.496vw;
  min-height: 100%;
}

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

.footer__col--tagline {
  padding-left: 3.744vw;
}

.footer__watermark {
  position: absolute;
  left: 0;
  bottom: 4.16vw;
  width: 55%;
  max-width: 17.68vw;
  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: 1.248vw;
  margin-top: 1.248vw;
  margin-bottom: auto;
}

.footer__line {
  width: 3.12vw;
  height: 0.052vw;
  background: #B58F34;
  flex-shrink: 0;
  margin-top: 1.456vw;
}

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

.footer__nav {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 1.456vw;
  margin-top: 2.496vw;
  padding-top: 1.664vw;
}

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

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

.footer__col--info,
.footer__col--contact {
  padding-top: 0.416vw;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 1.04vw;
  margin-bottom: 1.456vw;
  flex-shrink: 0;
}

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

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

.footer__social {
  display: flex;
  gap: 0.624vw;
  margin-top: auto;
  padding-top: 2.08vw;
}

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

.footer__social a:hover {
  opacity: 0.75;
}

.footer__social svg {
  width: 2.236vw;
  height: 2.236vw;
  display: block;
}

.footer__brand-name {
  display: flex;
  flex-direction: column;
  color: #FFF;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.456vw;
  font-weight: 600;
  line-height: 1.508vw;
  letter-spacing: -0.0728vw;
}

.footer__subheading {
  color: #FFF;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.456vw;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.0728vw;
  margin: 0 0 1.872vw;
  flex-shrink: 0;
}

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

.footer__contacts li {
  display: flex;
  align-items: center;
  gap: 1.04vw;
  margin-bottom: 1.456vw;
}

.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: 1.664vw;
}

.footer__contacts-item--donate .footer__contact-icon {
  padding-top: 0.104vw;
}

.footer__contact-body {
  display: flex;
  flex-direction: column;
  gap: 0.52vw;
}

.footer__contacts a {
  color: #FFF;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 0.936vw;
  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: 1.04vw;
  font-weight: 600;
  opacity: 0.75;
}

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

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

.footer__iban-label {
  color: #FFF;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 0.832vw;
  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: 1.456vw 3.744vw 1.872vw;
  border-top: 0.052vw solid rgba(255, 255, 255, 0.1);
  max-width: 99.84vw;
  margin: 0 auto;
  gap: 1.248vw;
}

.footer__top {
  color: #FFF;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.936vw;
  font-weight: 400;
  opacity: 0.75;
  display: flex;
  align-items: center;
  gap: 0.624vw;
  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: 1.456vw;
  height: 1.456vw;
  border: 0.052vw solid rgba(255, 255, 255, 0.35);
  font-family: "Kumbh Sans", sans-serif;
  font-size: 0.624vw;
  font-weight: 500;
  line-height: 1;
}

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

/* ===== Responsive ===== */
@media (max-width: 57.2vw) {
  .nav {
    grid-template-columns: 1fr;
    gap: 1.04vw;
    text-align: center;
    padding: 1.04vw 1.248vw;
  }

  .nav__links--left {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.832vw;
  }

  .nav__right {
    justify-content: center;
  }

  .about {
    aspect-ratio: auto;
    height: auto;
    min-height: 0;
    padding-bottom: 2.496vw;
  }

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

  .about__logo-right {
    position: relative;
    top: auto;
    right: auto;
    display: block;
    margin: 1.664vw auto 0;
    width: 11.44vw;
    height: auto;
  }

  .about__title {
    position: relative;
    top: auto;
    left: auto;
    padding: 2.08vw 1.664vw 0;
    font-size: clamp(2.5rem, 6vw, 3.536vw);
  }

  .about__title-light {
    line-height: 1.1;
    margin-left: 2.496vw;
  }

  .about__hline {
    display: none;
  }

  .about__portrait {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 20.592vw;
    height: auto;
    margin: 1.664vw 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: 1.664vw;
    gap: 0;
  }

  .about__divider {
    width: 100%;
    height: 0.052vw;
    margin-bottom: 1.664vw;
  }

  .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: 1.04vw;
    right: 1.04vw;
    gap: 0.624vw;
    flex-wrap: wrap;
  }

  .event-card__countdown-num {
    font-size: 2.08vw;
  }

  .event-card__title {
    font-size: clamp(1.456vw, 5vw, 2.496vw);
  }

  .event-card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.624vw;
    padding: 1.04vw 1.248vw;
  }

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

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

  .projects__image-title {
    font-size: clamp(1.872vw, 6vw, 3.952vw);
  }

  .projects__heading-bold,
  .projects__heading-light {
    font-size: clamp(1.664vw, 5vw, 2.496vw);
  }

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

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

  .footer__col {
    padding: 0 1.664vw 2.08vw;
  }

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

  .footer__col--tagline {
    padding-left: 1.664vw;
  }

  .footer__watermark {
    position: relative;
    bottom: auto;
    margin-bottom: 1.248vw;
    width: 10.4vw;
  }

  .footer__bottom {
    grid-template-columns: 1fr;
    padding: 1.248vw 1.664vw;
    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: 10.4vw;
  }

  .gallery__btn {
    display: none;
  }
}

@media (max-width: 39.936vw) {
  .about__title-light {
    margin-left: 1.664vw;
  }

  .footer__heading {
    font-size: clamp(1.456vw, 7vw, 2.496vw);
  }

  .footer__nav {
    gap: 0.832vw;
  }

  .footer__brand-name {
    font-size: 1.144vw;
    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: 0.572vw;
    font-weight: 400;
    letter-spacing: 0.078vw;
    text-transform: none;
    color: var(--white);
    transition: color 0.3s;
    color: #FFF;
    font-family: "Cormorant Garamond";
    font-size: 1.144vw;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.04576vw;
}

.nav__phone {
    font-size: 0.624vw;
    letter-spacing: 0.026vw;
    color: var(--white);
    color: #FFF;
    font-family: "Cormorant Garamond";
    font-size: 1.404vw;
    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: 0.052vw;
    line-height: 1.4;
    color: #F6D67B;
    font-family: "Cormorant Garamond";
    font-size: 3.14522vw;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.157248vw;
}

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

.svgsrc 
{
  width: 1.4vw;
}

.nav__phone {
    font-size: 0.624vw;
    letter-spacing: 0.026vw;
    color: var(--white);
    color: #FFF;
    font-family: "Cormorant Garamond";
    font-size: 1.404vw;
    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: 0.624vw;
    letter-spacing: 0.026vw;
    color: var(--white);
    color: #FFF;
    font-family: "Cormorant Garamond";
    font-size: 1.404vw;
    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: 0.312vw;
    text-align: center;
    margin-top: -0.5vw;
}

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

.nav__links {
    display: flex;
    gap: 1.456vw;
    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: 0.052vw solid #ffffff1c;
    padding-bottom: 1vw; 
}

.nav__right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.04vw;
    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: 1.04vw;
    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: 2.08vw;
    max-width: 41.6vw;
    margin-top: 18.77vw;
}

.hero__title-line {
    display: block;
    font-size: clamp(1.4rem, 3.5vw, 2.4rem);
    color: var(--gold);
    letter-spacing: 0.052vw;
    line-height: 1.4;
    color: #F6D67B;
    font-family: "Cormorant Garamond";
    font-size: 3.14522vw;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.157248vw;
    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: 0.208vw;
    color: #F6D67B;
    font-family: "Cormorant Garamond";
    font-size: 3.14522vw;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.157248vw;
    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: 0.624vw 1.872vw;
    font-family: var(--font-sans);
    font-size: 0.572vw;
    font-weight: 500;
    letter-spacing: 0.104vw;
    text-transform: none;
    border: 0.052vw 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: 1.144vw;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.04576vw;
}
.hero__watermark {
    position: absolute;
    bottom: 4.5vw;
    left: 1.612vw;
    font-family: var(--font-serif);
    font-size: clamp(10.4vw, 28vw, 19.76vw);
    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: 1.612vw;
    font-family: var(--font-serif);
    font-size: clamp(10.4vw, 28vw, 19.76vw);
    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: 0.624vw;
    letter-spacing: 0.026vw;
    color: var(--white);
    color: #FFF;
    font-family: "Cormorant Garamond";
    font-size: 1.404vw;
    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: 49.92vw;
    height: 45.656vw;
    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: 99.84vw;
    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: 99.84vw;
    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: -0.468vw;
    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: 0.052vw;
    background: #000;
    opacity: 0.1;
    z-index: 2;
    width: 45.33vw;
}
.about__divider {
    width: 0.052vw;
    height: 28vw;
    min-height: 14.56vw;
    max-height: 20.176vw;
    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: 0.052vw 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: 0.052vw;
}

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

.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(1.664vw, 3.54vw, 3.536vw);
    letter-spacing: -0.1768vw;
    line-height: normal;
}

.about__btn {
    display: flex;
    width: clamp(7.28vw, 9.27vw, 9.256vw);
    height: clamp(2.288vw, 2.92vw, 2.912vw);
    padding-bottom: 0.832vw;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.572vw;
    border: 0.104vw solid #000;
    color: #000;
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.144vw;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.04576vw;
    background: transparent;
    transition: background 0.3s, color 0.3s;
    gap: 0;
    padding: 0;
}

.about__card-text .about__signature {
    color: #000;
    font-family: "Kuba Reczny", cursive;
    font-size: 2.392vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 1.248vw 0 0.208vw;
    margin-bottom: -0.7vw;
    margin-left: -0.2vw;
    margin-top: 1.5vw;
}
.about__invite {
    font-weight: 700;
    opacity: 0.75;
    margin-top: 1.092vw;
    margin-bottom: 1.872vw !important;
}

.about__btn {
    display: flex;
    width: clamp(7.28vw, 9.27vw, 9.256vw);
    height: clamp(2.288vw, 2.92vw, 2.912vw);
    padding-bottom: 0.832vw;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.572vw;
    border: 0.104vw solid #000;
    color: #000;
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.144vw;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.04576vw;
    background: transparent;
    transition: background 0.3s, color 0.3s;
    gap: 0;
    padding: 0;
    margin-top: 1.8vw;
    margin-left: -0.2vw;
}

.events {
    max-width: 99.84vw;
    margin: 0 auto;
    padding: 0;
}

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

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

.events__header {
    display: flex;
    align-items: center;
    gap: 1.248vw;
    margin-bottom: 2.392vw;
    padding-left: 10vw;
}

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

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

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

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

.event-card__countdown {
    position: absolute;
    top: 4.16vw;
    right: 2.496vw;
    display: flex;
    align-items: center;
    gap: 1.716vw;
    z-index: 2;
}

.sep1 
{
  margin-right: 1.8vw;
}

.event-card__countdown {
    position: absolute;
    top: 1.144vw;
    right: 2.496vw;
    display: flex;
    align-items: center;
    gap: 1.716vw;
    z-index: 2;
}

.event-card__countdown {
    position: absolute;
    top: 1.144vw;
    right: 2.288vw;
    display: flex;
    align-items: center;
    gap: 1.716vw;
    z-index: 2;
}

.event-card__countdown-item {
    display: flex;
    align-items: center;
    gap: 0.832vw;
}

.event-card__countdown {
    position: absolute;
    top: 1.144vw;
    right: 2.288vw;
    display: flex;
    align-items: center;
    gap: 1.404vw;
    z-index: 2;
}

.event-card__content {
    position: absolute;
    bottom: 5.564vw;
    left: 2.496vw;
    z-index: 2;
}

.event-card__footer {
    position: absolute;
    bottom: 1vw;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.456vw 2.496vw;
    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: 1.456vw 2.496vw;
    z-index: 2;
    align-content: center;
    gap: 2.7vw;
}

.event-card__footer-group {
    display: flex;
    align-items: center;
    gap: 1.04vw;
}

.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: 1.456vw 2.496vw;
    z-index: 2;
    align-content: center;
    gap: 2.2vw;
}

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

.event-card__content {
    position: absolute;
    bottom: 3.588vw;
    left: 2.08vw;
    z-index: 2;
}

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

.event-card__content111 {
    position: absolute;
    bottom: 5.616vw;
    left: 2.08vw;
    z-index: 2;
}

.event-card__countdown {
    position: absolute;
    top: 1.144vw;
    right: 2.288vw;
    display: flex;
    align-items: center;
    gap: 1.56vw;
    z-index: 2;
}

.event-card__label {
    display: block;
    color: #F6D67B;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 0.832vw;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 0.416vw;
    margin-left: 0.364vw;
}


.projects {
    display: flex;
    justify-content: flex-end;
    padding: 0 2.34vw 4.16vw;
    max-width: 99.84vw;
    margin: 0 auto;
    margin-right: -2.5vw;
    margin-top: -0.5vw;
}

.events__cta {
    display: flex;
    justify-content: center;
    margin-top: 3.016vw;
}

.events__cta-btn {
    display: flex;
    width: 12.428vw;
    height: 2.912vw;
    align-items: center;
    justify-content: center;
    border: 0.104vw solid #000;
    color: #000;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.144vw;
    font-weight: 700;
    letter-spacing: -0.04576vw;
    background: transparent;
    transition: background 0.3s, color 0.3s;
    margin-bottom: -0.5vw;
}

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

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

.projects__archive {
    position: relative;
    z-index: 2;
    color: #FFF;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.144vw;
    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: 0.052vw 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: 3.952vw;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.1976vw;
}

.projects__btn {
    display: flex;
    width: 8.112vw;
    height: 2.912vw;
    padding-bottom: 0.832vw;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.572vw;
    border: 0.104vw solid #FFF;
    color: #FFF;
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.144vw;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.04576vw;
    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: 0.884vw;
    font-weight: 400;
    line-height: 1.3vw;
    margin-bottom: 1.04vw;
    margin-top: 2vw;
}


.projects {
    display: flex;
    justify-content: flex-end;
    padding: 0 2.34vw 4.16vw;
    max-width: 99.84vw;
    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: 1.716vw 2.496vw;
    z-index: 2;
    padding-left: 3.6vw;
}

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

.section_sekcja1__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.248vw;
  margin-bottom: 2.912vw;
  padding: 0 2.08vw;
}

.section_sekcja1__line {
  width: 3.12vw;
  height: 0.052vw;
  background: #B58F34;
  flex-shrink: 0;
}

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

.yy1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.248vw, 4vw, 3.328vw);
  flex-wrap: wrap;
  padding: 0 2.496vw 3.744vw;
  max-width: 83.2vw;
  margin: 0 auto;
}

.yy1 .yy {
  width: auto;
  height: auto;
  max-height: 3.744vw;
  max-width: 11.44vw;
  object-fit: contain;
}

.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(0);
  transition: filter 0.5s ease-in-out;
}

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

.section_sekcja1__instagram {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 4.264vw;
  height: 4.264vw;
  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: 4.264vw;
  height: 4.264vw;
  display: block;
}

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

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

@media (max-width: 39.936vw) {
  .ref_fes {
    font-size: clamp(1.456vw, 7vw, 2.496vw);
  }

  .yy1 {
    gap: 1.664vw;
    padding-bottom: 2.496vw;
  }

  .yy1 .yy {
    max-height: 2.912vw;
    max-width: 8.32vw;
  }

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

.svgsrc {
    width: 1.4vw;
}

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

@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: 51.532vw) {
  [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: 1.456vw;
    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: 1.612vw;
    font-family: var(--font-serif);
    font-size: clamp(10.4vw, 28vw, 19.76vw);
    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: 3.744vw;
    height: 0.052vw;
    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: 0.052vw;
}

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

.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: 0.052vw 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: 0.104vw;
    min-width: 0;
    margin-left: -0.208vw;
}

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

.about__invite {
    font-weight: 700;
    opacity: 0.75;
    margin-top: -0.26vw;
    margin-bottom: 1.82vw !important;
}

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

.about__btn {
    display: flex;
    width: clamp(7.28vw, 9.27vw, 9.256vw);
    height: clamp(2.288vw, 2.92vw, 2.912vw);
    padding-bottom: 0.832vw;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.572vw;
    border: 0.104vw solid #000;
    color: #000;
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.144vw;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.04576vw;
    background: transparent;
    transition: background 0.3s, color 0.3s;
    gap: 0;
    padding: 0;
    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(1.664vw, 3.54vw, 3.536vw);
    letter-spacing: -0.1768vw;
    line-height: normal;
}

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

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

.events__header-line {
    width: 2.912vw;
    height: 0.052vw;
    background: #B58F34;
    flex-shrink: 0;
}

.event-card__countdown {
    position: absolute;
    top: 0.936vw;
    right: 1.82vw;
    display: flex;
    align-items: center;
    gap: 1.56vw;
    z-index: 2;
}

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

.event-card__countdown {
    position: absolute;
    top: 0.936vw;
    right: 2.756vw;
    display: flex;
    align-items: center;
    gap: 1.56vw;
    z-index: 2;
}

.event-card__countdown-item {
    display: flex;
    align-items: center;
    gap: 0.676vw;
}

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

.event-card__content111 {
    position: absolute;
    bottom: 5.928vw;
    left: 2.496vw;
    z-index: 2;
}


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

.event-card__content {
    position: absolute;
    bottom: 4.056vw;
    left: 1.768vw;
    z-index: 2;
}

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

.events__grid {
    display: grid;
    grid-template-columns: 73.77fr 25.63fr;
    width: 100%;
    max-width: 95.056vw;
    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: 95.056vw;
    margin: 0 auto;
    margin-left: 4.6%;
    justify-content: center;
}

.event-card__content {
    position: absolute;
    bottom: 5.876vw;
    left: 2.132vw;
    z-index: 2;
}

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

.event-card--archive .event-card__content {
    position: absolute;
    bottom: 4.056vw;
    left: 1.976vw;
    z-index: 2;
}

.event-card--upcoming, .event-card--archive {
    width: 100%;
    height: 38.688vw;
}

.event-card__content111 .event-card__content {
    position: absolute;
    bottom: 5.668vw;
    left: 2.236vw;
    z-index: 2;
}

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

.event-card--archive .event-card__content {
    position: absolute;
    bottom: 3.796vw;
    left: 1.976vw;
    z-index: 2;
}
.event-card__content {
    position: absolute;
    bottom: 5.668vw;
    left: 2.132vw;
    z-index: 2;
}

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

.projects__wrap {
    display: grid;
    grid-template-columns: 34.21fr 65.79fr;
    width: 95.16vw;
    max-width: 100%;
    height: 39.312vw;
}

.projects__heading-line {
    width: 3.12vw;
    height: 0.052vw;
    background: #F6D67B;
    flex-shrink: 0;
    margin-top: -0.416vw;
}

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

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


.projects__subtitle {
    position: relative;
    z-index: 2;
    margin-bottom: 1.456vw;
    color: #FFF;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.56vw;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.078vw;
    margin-top: 1.33vw;
    margin-left: 4.7vw;
}
.projects__subtitle-line {
    width: 1.612vw;
    height: 0.052vw;
    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 2.34vw 4.16vw;
    max-width: 99.736vw;
    margin: 0 auto;
    margin-right: -3vw;
    margin-top: 3.7vw;
}
.projects__heading {
    position: relative;
    z-index: 2;
    margin-bottom: 1.664vw;
    margin-left: 2.5vw;
    margin-top: 1.5vw;
}

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

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

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

.projects__heading-line {
    width: 3.12vw;
    height: 0.052vw;
    background: #F6D67B;
    flex-shrink: 0;
    margin-top: 0.052vw;
}

.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: 1.144vw;
    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: 0.052vw solid #ffffff24;
    padding-top: 1.8vw;
    padding-left: 9.3vw;
    letter-spacing: -0.052vw;
}
.projects__archive {
    position: relative;
    z-index: 2;
    color: #FFF;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.144vw;
    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: 0.052vw solid #ffffff24;
    padding-top: 1.8vw;
    padding-left: 9.3vw;
    letter-spacing: -0.052vw;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    gap: 0.6vw;
}

.events__cta-btn {
    display: flex;
    width: 12.22vw;
}

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

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

.projects__btn {
    display: flex;
    width: 8.112vw;
    height: 2.86vw;
    padding-bottom: 0.832vw;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.572vw;
    border: 0.104vw solid #FFF;
    color: #FFF;
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.144vw;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.04576vw;
    background: transparent;
    flex-shrink: 0;
    transition: background 0.3s, color 0.3s;
    margin-right: -1.1vw;
    margin-bottom: 0.572vw;
    padding-top: 0.728vw;
}
.section_sekcja1 {
    background: #fff;
    padding: 0 0 0;
    max-width: 99.84vw;
    margin: 0 auto;
    margin-top: -0.2vw;
}

.section_sekcja1__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.936vw;
    margin-bottom: 2.912vw;
    padding: 0 2.08vw;
    margin-left: -2.8vw;
}

.yy1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.248vw, 7vw, 5.096vw);
    flex-wrap: wrap;
    padding: 0 2.496vw 3.744vw;
    max-width: 83.2vw;
    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: 99.84vw;
    margin: 0 auto;
    min-height: 24.96vw;
    align-items: stretch;
}

.footer__watermark {
    position: absolute;
    left: 1.404vw;
    bottom: 4.42vw;
    width: 64%;
    max-width: 19.604vw;
    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: 1.248vw;
    margin-top: 2.548vw;
    margin-bottom: auto;
    margin-left: 6vw;
}

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

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

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

.footer__brand {
    display: flex;
    align-items: center;
    gap: 1.04vw;
    margin-bottom: 2.08vw;
    flex-shrink: 0;
}

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

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

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

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

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

.footer__bottom {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    padding: 1.456vw 3.744vw 1.872vw;
    border-top: 0 solid rgba(255, 255, 255, 0.1);
    max-width: 99.84vw;
    margin: 0 auto;
    gap: 1.248vw;
    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: 0.728vw;
    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: 1.04vw;
    margin-bottom: 1.04vw;
}

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

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

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

.footer__watermark {
    position: absolute;
    left: 1.404vw;
    bottom: 4.42vw;
    width: 64%;
    max-width: 19.604vw;
    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: 38.688vw;
    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: 5.668vw;
    left: 2.132vw;
    z-index: 9;
}

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

.bot1 
{
width: 0.052vw;
height: 0.572vw;
opacity: 0.2;
background: #FFF;
}

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

.bot2 
{
width: 0.052vw;
height: 1.612vw;
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: 0.78vw;
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: 0.78vw;
    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(0.624vw);
    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(-0.416vw);
    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: 0;
    left: 0;
    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(-0.416vw);
  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(0.624vw);
  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: 2.496vw;
  bottom: 2.548vw;
  z-index: 11;
  display: inline-flex;
  align-items: center;
  gap: 0.624vw;
  color: #FFF;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.144vw;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.04576vw;
  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: -0.832vw;
  transition: bottom 0.45s ease;
}

.event-card--archive:hover .event-card__content.event-card__content--archive {
  bottom: 3.796vw;
}

.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% + 0.052vw);
  left: 0;
  width: 8.58vw;
  height: 6.76vw;
  display: flex;
  flex-direction: column;
  gap: 0.832vw;
  padding: 0.832vw;
  box-sizing: border-box;
  background: #2C2C2C;
  border: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.312vw);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 20;
}

.nav__submenu--short {
  height: 4.784vw;
}

.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: 0.832vw;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.01664vw;
  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: 8.372vw;
  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: 2.496vw;
  width: 100%;
  max-width: 99.84vw;
  height: 8.372vw;
  margin: 0 auto;
  padding: 0 2.496vw;
  box-sizing: border-box;
}

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

.search-bar__logo .xsvg {
  display: block;
  width: 6.708vw;
  height: 4.732vw;
  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: 1.04vw;
  width: 53.872vw;
  max-width: 100%;
  border-bottom: 0.052vw solid rgba(255, 255, 255, 0.35);
  padding-bottom: 0.52vw;
  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: 1.664vw;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.0832vw;
}

.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: 1.248vw;
  height: 1.248vw;
}

.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 19.656vw;
  height: 100vh;
  background: #FFF;
  z-index: 10000;
  transform: translateX(100%);
  transition: transform 0.45s ease;
  display: flex;
  flex-direction: column;
  padding: 3.484vw 2.184vw 3.12vw;
  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: 3.484vw;
  right: 3.068vw;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.248vw;
  height: 1.248vw;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: #000;
}

.side-menu__close svg {
  display: block;
  width: 1.248vw;
  height: 1.248vw;
}

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

.side-menu__social-link {
  display: flex;
  align-items: center;
  gap: 1.04vw;
  padding: 0.936vw 0;
  color: #000;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.248vw;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.02496vw;
  text-decoration: none;
  border-bottom: 0.052vw solid rgba(0, 0, 0, 0.25);
}

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

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

.side-menu__contact {
  padding-bottom: 1.04vw;
}

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

.side-menu__divider {
  display: block;
  width: 15.236vw;
  height: 0.052vw;
  opacity: 0.25;
  background: #000;
  margin-bottom: 1.248vw;
}

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

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

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

.side-menu__contact-email {
  font-family: "Kumbh Sans", sans-serif;
  font-size: 0.832vw;
  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: 99.84vw;
  margin: 0 auto;
  background: #fff;
}

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

.fundacja-about__image img {
  width: 100%;
  height: 100%;
  min-height: 37.44vw;
  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: 2.08vw;
  padding: 2.912vw 3.328vw 2.496vw 2.912vw;
  background: #fff;
  border-bottom: 0.052vw solid rgba(0, 0, 0, 0.08);
}

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

.fundacja-about__title-line {
  width: 3.068vw;
  height: 0.052vw;
  background: #B58F34;
  flex-shrink: 0;
}

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

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

.fundacja-about__text {
  flex: 1;
  padding: 2.496vw 3.328vw 3.328vw 2.912vw;
  background: #fff;
}

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

.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(10.4vw, 1fr) minmax(14.56vw, 1.4fr) minmax(12.48vw, 1fr);
  gap: 2.496vw;
  align-items: center;
  max-width: 99.84vw;
  margin: 0 auto;
  padding: 3.744vw 4.16vw;
  color: #fff;
}

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

.fundacja-support__title-line {
  width: 3.068vw;
  height: 0.052vw;
  background: #fff;
  flex-shrink: 0;
}

.fundacja-support__text {
  margin: 0;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 0.832vw;
  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 0.52vw;
  font-size: 0.728vw;
  font-weight: 600;
  line-height: normal;
}

.fundacja-support__account {
  margin: 0 0 0.936vw;
  font-size: 1.144vw;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.0156vw;
}

.fundacja-support__iban-label {
  margin: 0 0 0.208vw;
  font-size: 0.728vw;
  font-weight: 400;
  line-height: normal;
  opacity: 0.9;
}

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

.section_sekcja1--fundacja {
  padding-bottom: 4.16vw;
}

.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: 3.432vw;
  object-fit: contain;
}

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

  .fundacja-about__image img {
    min-height: 21.84vw;
  }

  .fundacja-support__inner {
    grid-template-columns: 1fr;
    gap: 1.664vw;
    padding: 2.912vw 2.08vw;
  }

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

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

@media (max-width: 39.936vw) {
  .fundacja-about__head {
    flex-direction: column;
    align-items: flex-start;
    padding: 2.08vw 1.248vw 1.664vw;
  }

  .fundacja-about__text {
    padding: 1.664vw 1.248vw 2.496vw;
  }

  .fundacja-about__logo-box {
    width: 7.28vw;
    height: 7.28vw;
  }
}


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

.page-header .nav__links {
    display: flex;
    gap: 1.456vw;
    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: 0.312vw;
    text-align: center;
    margin-top: -1.9vw;
}


.page-header .nav__phone {
    font-size: 0.624vw;
    letter-spacing: 0.026vw;
    color: var(--white);
    color: #FFF;
    font-family: "Cormorant Garamond";
    font-size: 1.404vw;
    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: 27.092vw;
    object-fit: cover;
    object-position: center top;
    max-height: 40.5vw;
}

.fundacja-about__title {
    display: flex;
    align-items: center;
    gap: 1.04vw;
    margin: 0;
    color: #B58F34;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.496vw;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: -0.1248vw;
    margin-left: 1.3vw;
    color: #B58F34;
    font-family: "Cormorant Garamond";
    font-size: 3.016vw;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.1508vw;
}

.fundacja-about__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.08vw;
    padding: 2.912vw 3.328vw 2.496vw 2.912vw;
    background: #fff;
    border-bottom: 0.052vw solid rgba(0, 0, 0, 0.08);
    width: 45vw;
}

.fundacja-about__text {
    flex: 1;
    padding: 3.224vw 4.16vw 3.276vw 3.9vw;
    background: #fff;
    width: 91%;
    border: 0.052vw solid #E0E0E0;
    background: #F8F8F8;
}

.fundacja-about__text p {
    font-family: "Kumbh Sans", sans-serif;
    font-size: 0.832vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.65;
    color: #333;
    margin: 0 0 1.144vw;
    opacity: 0.75;
    color: #000;
    font-family: "Kumbh Sans";
    font-size: 0.884vw;
    font-style: normal;
    font-weight: 300;
    line-height: 1.3vw;
}

.fundacja-about__logo-box {
    flex-shrink: 0;
    width: 20.28vw;
    height: 14.612vw;
    border: 0.052vw solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.248vw;
    box-shadow: 0 0 0 0.052vw rgba(0, 0, 0, 0.03);
    margin-top: -2.8vw;
    margin-bottom: -2.6vw;
    border-top: 0;
    border-bottom: 0;
    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: 2.08vw;
    padding: 2.912vw 3.328vw 2.496vw 2.912vw;
    background: #fff;
    border-bottom: 0.052vw solid rgba(0, 0, 0, 0.08);
    width: 45.3vw;
}

.fundacja-about__text {
    flex: 1;
    padding: 3.224vw 4.16vw 3.276vw 3.9vw;
    background: #fff;
    width: 91.54%;
    border: 0.052vw 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: 2.08vw;
    padding: 2.912vw 3.328vw 2.496vw 2.912vw;
    background: #fff;
    border-bottom: 0 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: 3.068vw;
    height: 0.052vw;
    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: 1.04vw;
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.496vw;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: -0.1248vw;
    white-space: nowrap;
    margin-left: 6vw;
    margin-top: -0.4vw;
}

.fundacja-support__text {
    margin: 0;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 0.832vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.65;
    margin-left: 6.9vw;
    margin-top: -1.4vw;
    width: 28.88vw;
    border-right: 0.052vw 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: 0.832vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.65;
    margin-left: 6.9vw;
    margin-top: -1.4vw;
    width: 28.88vw;
    border-right: 0.052vw 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 0.52vw;
    font-size: 0.728vw;
    font-weight: 600;
    line-height: normal;
    color: #FFF;
    font-family: "Kumbh Sans";
    font-size: 0.832vw;
    font-style: normal;
    font-weight: 700;
    line-height: 2.028vw;
}

.fundacja-support__account {
    margin: 0 0 0.936vw;
    font-size: 1.144vw;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0;
    color: #FFF;
    font-family: "Kumbh Sans";
    font-size: 1.144vw;
    font-style: normal;
    font-weight: 400;
    line-height: 2.028vw;
    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 0.208vw;
    font-size: 0.832vw;
    font-weight: 400;
    line-height: normal;
    opacity: 0.9;
    color: #FFF;
    font-family: "Kumbh Sans";
    font-size: 0.832vw;
    font-style: normal;
    font-weight: 700;
    line-height: 2.028vw;
    margin-top: -1vw;
}

.fundacja-support__iban {
    margin: 0;
    font-size: 0.832vw;
    font-weight: 400;
    line-height: normal;
    color: #FFF;
    font-family: "Kumbh Sans";
    font-size: 1.1336vw;
    font-style: normal;
    font-weight: 400;
    line-height: 2.028vw;
    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: 1.04vw;
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.496vw;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: -0.1248vw;
    white-space: nowrap;
    margin-left: 6vw;
    margin-top: -0.99vw;
}

.section_sekcja1--fundacja {
    padding-bottom: 5.096vw;
}

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

.fundacja-support {
    width: 95vw;
  }

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

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

.fundator-story__text {
  padding: 3.224vw 4.16vw 3.276vw 3.9vw;
  background: #fff;
  width: 91.54%;
  border: 0.052vw 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: 0.884vw;
  font-style: normal;
  font-weight: 300;
  line-height: 1.3vw;
  color: #000;
  margin: 0 0 1.144vw;
  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: 27.092vw;
  object-fit: cover;
  object-position: center top;
  max-height: 40.5vw;
}

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

@media (max-width: 57.2vw) {
  .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: 21.84vw;
    max-height: none;
  }
}

@media (max-width: 39.936vw) {
  .fundator-story__text {
    padding: 1.664vw 1.248vw 2.496vw;
  }
}

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

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

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

.fundator-story__text {
    padding: 3.224vw 4.16vw 3.276vw 3.9vw;
    background: #fff;
    width: 99.54%;
    border: 0 solid #E0E0E0;
    border-top: 0;
    border-left: 0;
    padding-top: 3.59vw;
    padding-left: 4.2vw;
    text-align: justify;
}
.fundator-story {
    max-width: 99.84vw;
    margin: 0 auto;
    background: #fff;
    width: 91.45%;
    margin-bottom: 4vw;
}

.fundator-story__text {
    padding: 6.396vw 4.16vw 3.172vw 4.108vw;
    background: #fff;
    width: 99.54%;
    border: 0 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: 0.884vw;
    font-style: normal;
    font-weight: 300;
    line-height: 1.3vw;
    color: #000;
    margin: 0 0 1.248vw;
    opacity: 0.75;
}

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

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

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

.wladze__grid {
  display: grid;
  grid-template-columns: 1fr 29.9vw 1fr;
  min-height: 31.668vw;
}

.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: 1.04vw;
  margin: 0 0 2.8vw;
  color: #B58F34;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.016vw;
  font-style: normal;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.1508vw;
}

.wladze__title-line {
  width: 3.068vw;
  height: 0.052vw;
  background: #B58F34;
  flex-shrink: 0;
}

.wladze__text {
  text-align: justify;
}

.wladze__text p {
  margin: 0 0 1.144vw;
  color: #000;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 0.884vw;
  font-style: normal;
  font-weight: 300;
  line-height: 1.3vw;
  opacity: 0.75;
}

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

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

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

.wladze__portrait img {
  width: 29.9vw;
  height: 31.668vw;
  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: 29.9vw;
  max-width: 100%;
  height: 0.052vw;
  margin: 0 auto;
  background: #CDCDCD;
  flex-shrink: 0;
}

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

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

.wladze__member-line {
  display: block;
  width: 3.12vw;
  height: 0.052vw;
  margin: 0 auto 0.832vw;
  background: #B58F34;
}

.wladze__member-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.52vw;
  color: #000;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 0.884vw;
  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: 57.2vw) {
  .wladze__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

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

  .wladze__intro {
    padding: 2.08vw 1.248vw 1.664vw;
  }

  .wladze__title {
    font-size: 2.496vw;
    margin-bottom: 1.664vw;
  }

  .wladze__member {
    padding: 2.08vw 1.248vw;
  }

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

.wladze__grid {
    display: grid;
    grid-template-columns: 39.6vw 29.9vw 1fr;
    min-height: 31.668vw;
}

.wladze__portrait {
    width: 29.9vw;
    height: 31.668vw;
    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: 29.9vw;
    height: 32.084vw;
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: #E8E8E8;
    overflow: hidden;
}

.wladze__portrait img {
    width: 29.9vw;
    height: 32.084vw;
    flex-shrink: 0;
    object-fit: cover;
    object-position: center top;
    object-fit: cover;
}

.wladze__grid {
    display: grid;
    grid-template-columns: 39.6vw 30.16vw 1fr;
    min-height: 31.668vw;
}

.wladze__portrait {
    width: 30.368vw;
    height: 32.084vw;
    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: 4.108vw;
}

.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: 4.108vw;
}

.wladze__member-role {
    margin: 0 0 0.832vw;
    color: #000;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 0.884vw;
    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: 0.52vw;
    color: #000;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 0.884vw;
    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: 3.64vw;
}

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

.wladze__portrait {
    width: 30.368vw;
    height: 32.084vw;
    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: 0.78vw;
}

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

.kontakt {
  position: relative;
  max-width: 99.84vw;
  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(27.04vw, 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: 1.04vw;
  margin: 0 0 2.2vw;
  color: #B58F34;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.016vw;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.1508vw;
}

.kontakt__title-line {
  width: 3.068vw;
  height: 0.052vw;
  background: #B58F34;
  flex-shrink: 0;
}

.kontakt__brand {
  margin: 0 0 1.456vw;
  color: #000;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.56vw;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.078vw;
  opacity: 0.75;
}

.kontakt__list {
  list-style: none;
  margin: 0 0 1.248vw;
  padding: 0;
}

.kontakt__item {
  display: flex;
  align-items: flex-start;
  gap: 0.728vw;
  margin-bottom: 0.936vw;
}

.kontakt__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.352vw;
  margin-top: 0.104vw;
}

.kontakt__link {
  color: #000;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 0.884vw;
  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: 0.988vw;
  font-weight: 600;
  opacity: 1;
}

.kontakt__link--email {
  opacity: 0.75;
}

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

.kontakt__donate {
  display: flex;
  align-items: flex-start;
  gap: 0.728vw;
  margin-bottom: 1.664vw;
}

.kontakt__donate-body p {
  margin: 0 0 0.312vw;
  color: #000;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 0.884vw;
  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: 0.624vw;
}

.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 1.872vw;
  color: #000;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.56vw;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.078vw;
  opacity: 0.75;
}

.kontakt__form {
  display: flex;
  flex-direction: column;
  gap: 1.456vw;
}

.kontakt__field {
  display: flex;
  flex-direction: column;
  gap: 0.52vw;
}

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

.kontakt__input {
  width: 100%;
  border: 0;
  border-bottom: 0.052vw solid #CDCDCD;
  background: transparent;
  padding: 0.416vw 0 0.52vw;
  color: #000;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 0.884vw;
  font-weight: 400;
  outline: none;
}

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

.kontakt__textarea {
  resize: vertical;
  min-height: 5.2vw;
}

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

.kontakt__consent input {
  margin-top: 0.156vw;
  flex-shrink: 0;
}

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

.kontakt__submit {
  align-self: flex-start;
  margin-top: 0.416vw;
  padding: 0.728vw 1.664vw;
  border: 0.052vw solid #000;
  background: transparent;
  color: #000;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 0.884vw;
  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: 21.84vw;
}

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

.kontakt-map__route {
  position: absolute;
  right: 2.08vw;
  bottom: 1.664vw;
  z-index: 2;
  padding: 0.832vw 1.456vw;
  background: #000;
  color: #fff;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 0.884vw;
  font-weight: 400;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

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

@media (max-width: 57.2vw) {
  .kontakt__grid {
    grid-template-columns: 1fr;
    gap: 2.496vw;
  }

  .kontakt {
    padding: 2.08vw 1.248vw;
  }

  .kontakt__title {
    font-size: 2.496vw;
  }

  .kontakt-map__inner {
    height: 16.64vw;
  }

  .kontakt-map__route {
    right: 0.832vw;
    bottom: 0.832vw;
    padding: 0.624vw 1.04vw;
    font-size: 0.78vw;
  }
}


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

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

.kontakt__item {
    display: flex;
    align-items: flex-start;
    gap: 0.728vw;
    margin-bottom: 0.936vw;
}

.kontakt__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.144vw;
    margin-top: 0.104vw;
}

.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: 1.352vw;
    height: 1.352vw;
}

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

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

.kontakt__legal {
    margin: 0 0 1.456vw;
    color: #000;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 0.884vw;
    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: 1.3vw;
    margin-top: 4.7vw;
    margin-left: 2vw;
}

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

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

.kontakt__form-title {
    margin: 0.104vw 0 1.872vw;
    color: #000;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.56vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.078vw;
    opacity: 0.75;
    text-align: center;
}

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

.kontakt__input {
    width: 100%;
    border: 0;
    border-bottom: 0.052vw solid #CDCDCD;
    background: transparent;
    padding: 0.208vw 0 0.52vw;
    color: #000;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 0.884vw;
    font-weight: 400;
    outline: none;
}

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

.kontakt__consent input {
    margin-top: 0.156vw;
    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: 0.624vw;
    color: #000;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 0.728vw;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.75;
    cursor: pointer;
    margin-top: 0.5vw;
}

.kontakt__consent input {
    margin-top: 0;
    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: 0.624vw;
    color: #000;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 0.728vw;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.75;
    cursor: pointer;
    color: #000;
    font-family: "Kumbh Sans";
    font-size: 0.728vw;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.kontakt__submit {
    align-self: flex-start;
    margin-top: 0.416vw;
    padding: 0.728vw 1.664vw;
    border: 0.052vw solid #000;
    background: transparent;
    color: #000;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 0.884vw;
    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: 1.144vw;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.04576vw;
    margin-top: 3vw;
}

.kontakt-map__route {
    position: absolute;
    right: 2.08vw;
    bottom: 1.664vw;
    z-index: 2;
    padding: 0;
    background: #000;
    color: #fff;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 0.884vw;
    font-weight: 400;
    text-decoration: none;
    transition: opacity 0.2s ease;
    color: #FFF;
    text-align: center;
    font-family: "Cormorant Garamond";
    font-size: 1.144vw;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.04576vw;
    width: 12.168vw;
    height: 2.912vw;
    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: 2.704vw;
    height: 2.704vw;
    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: 0.052vw solid #fff;
  padding-bottom: 0.104vw;
}

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

.partnerzy-page__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.248vw;
  margin-bottom: 2.912vw;
  padding: 0 2.08vw;
}

.partnerzy-page__line {
  width: 3.12vw;
  height: 0.052vw;
  background: #B58F34;
  flex-shrink: 0;
}

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

.partnerzy-slider {
  padding: 0 2.08vw;
}

.partnerzy-slider__viewport {
  overflow: hidden;
  max-width: calc(18.148vw * 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, 18.148vw);
  gap: 0;
  justify-content: center;
}

.partnerzy-card {
  width: 18.148vw;
  height: 10.868vw;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.248vw;
  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;
}

.partnerzy-slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.248vw;
  margin-top: 2.496vw;
}

.partnerzy-slider__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.416vw 0.624vw;
  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: 99.84vw) {
  .partnerzy-slider__viewport {
    max-width: min(calc(18.148vw * 5), calc(100vw - 4.16vw));
  }

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

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

@media (max-width: 62.4vw) {
  .partnerzy-slider__viewport {
    max-width: min(calc(18.148vw * 3), calc(100vw - 4.16vw));
  }

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

@media (max-width: 39.936vw) {
  .partnerzy-page__title {
    font-size: 1.872vw;
  }

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

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

  .partnerzy-slider__nav {
    margin-top: 1.664vw;
  }
}

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

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

.partnerzy-page__title {
    color: #B58F34;
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.496vw;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: -0.1248vw;
    margin: 0;
    color: #B58F34;
    text-align: center;
    font-family: "Cormorant Garamond";
    font-size: 3.016vw;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.1508vw;
    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: 0.052vw solid #fff;
  padding-bottom: 0.104vw;
}

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

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

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

.wydarzenia-archive {
  max-width: 99.84vw;
  margin: 0 auto;
  padding: 3.744vw 2.34vw 4.992vw;
  background: #fff;
}

.wydarzenia-archive__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.248vw;
  margin-bottom: 2.496vw;
}

.wydarzenia-archive__line {
  width: 3.12vw;
  height: 0.052vw;
  background: #B58F34;
  flex-shrink: 0;
}

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

.wydarzenia-archive__slider {
  display: flex;
  align-items: center;
  gap: 1.248vw;
}

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

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

.page-wydarzenia .wydarzenia-archive__card.event-card--archive {
  width: 22.984vw;
  height: 30.628vw;
  flex: 0 0 22.984vw;
}

.page-wydarzenia .wydarzenia-archive__card .event-card__content--archive {
  bottom: 1.664vw;
  left: 1.456vw;
  right: 1.456vw;
}

.page-wydarzenia .wydarzenia-archive__card .event-card__title--archive {
  font-size: 1.664vw;
  letter-spacing: -0.0832vw;
}

.page-wydarzenia .wydarzenia-archive__card .marker {
  top: 1.248vw;
  right: 1.248vw;
}

.page-wydarzenia .wydarzenia-archive__card .event-card__content.event-card__content--archive {
  bottom: 1.456vw;
}

.page-wydarzenia .wydarzenia-archive__card:hover .event-card__content.event-card__content--archive {
  bottom: 2.912vw;
}

.page-wydarzenia .wydarzenia-archive__card .event-content-row1 {
  grid-template-columns: 4.576vw 0.052vw 1fr;
  gap: 0.624vw;
}

.wydarzenia-archive__arrow {
  flex-shrink: 0;
  width: 2.496vw;
  height: 2.496vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0.052vw 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: 99.84vw) {
  .page-wydarzenia .wydarzenia-archive__card.event-card--archive {
    width: calc((100% - 3.744vw) / 4);
    flex-basis: calc((100% - 3.744vw) / 4);
    height: auto;
    aspect-ratio: 442 / 589;
  }
}

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

@media (max-width: 57.2vw) {
  .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: 46.8vw) {
  .page-wydarzenia .wydarzenia-hero .event-card--upcoming {
    height: auto;
    aspect-ratio: 1920 / 749;
  }

  .wydarzenia-archive {
    padding: 2.496vw 1.248vw 3.744vw;
  }

  .wydarzenia-archive__title {
    font-size: 1.872vw;
  }

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

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

  .wydarzenia-archive__slider {
    gap: 0.624vw;
  }

  .wydarzenia-archive__arrow {
    width: 2.08vw;
    height: 2.08vw;
  }
}


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

.page-wydarzenia  .event-card__countdown {
    position: absolute;
    top: 0.936vw;
    right: 4.004vw;
    display: flex;
    align-items: center;
    gap: 1.56vw;
    z-index: 2;
}

.page-wydarzenia .event-card__content {
    position: absolute;
    bottom: 5.668vw;
    left: 4.004vw;
    z-index: 9;
}

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

.page-wydarzenia .event-card__details {
    position: absolute;
    right: 4.108vw;
}

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

.wydarzenia-archive {
    max-width: 99.84vw;
    margin: 0 auto;
    padding: 2.86vw 1.04vw 4.992vw;
    background: #fff;
}

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

.wydarzenia-archive__title {
    margin: 0;
    color: #B58F34;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.496vw;
    font-weight: 300;
    letter-spacing: -0.1248vw;
    line-height: normal;
    color: #B58F34;
    text-align: center;
    font-family: "Cormorant Garamond";
    font-size: 3.016vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.1508vw;
    opacity: 0.9;
}

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

.page-wydarzenia .wydarzenia-archive__card .event-card__content.event-card__content--archive {
    bottom: -2.236vw;
}

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

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

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

.event-detail-hero__grid {
  display: grid;
  grid-template-columns: 49.92vw 1fr;
  gap: 0;
  min-height: 36.608vw;
}

.event-detail-hero__media {
  position: relative;
  width: 49.92vw;
  height: 36.608vw;
  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: 49.92vw;
  height: 36.608vw;
  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: 2.08vw;
  right: 2.496vw;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.248vw;
  z-index: 2;
}

.page-wydarzenie .event-card__countdown--vertical .event-card__countdown-sep--h {
  width: 3.744vw;
  height: 0.052vw;
  background: #fff;
  opacity: 0.25;
  flex-shrink: 0;
}

.event-detail-hero__info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2.496vw 3.328vw 2.496vw 2.912vw;
  box-sizing: border-box;
}

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

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

.event-detail__title {
  margin: 0 0 1.248vw;
  color: #B58F34;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.016vw;
  font-weight: 600;
  letter-spacing: -0.1508vw;
  line-height: 1.05;
}

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

.event-detail__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.832vw 1.248vw;
  padding: 0.936vw 0;
  margin: 0;
  border-top: 0.052vw solid rgba(0, 0, 0, 0.12);
  border-bottom: 0.052vw solid rgba(0, 0, 0, 0.12);
}

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

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

.event-detail__meta-sep {
  width: 0.052vw;
  height: 0.936vw;
  background: #000;
  opacity: 0.15;
  flex-shrink: 0;
}

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

.event-detail__intro {
  display: flex;
  flex-direction: column;
  gap: 1.04vw;
  margin-top: 1.456vw;
}

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

.event-detail-gallery {
  max-width: 99.84vw;
  margin: 0 auto;
  padding: 3.328vw 2.34vw 3.744vw;
  background: #fff;
}

.event-detail-gallery__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.248vw;
  margin-bottom: 2.08vw;
}

.event-detail-gallery__line {
  width: 3.12vw;
  height: 0.052vw;
  background: #B58F34;
  flex-shrink: 0;
}

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

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

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

.event-detail-gallery__grid img {
  display: flex;
  width: 16.64vw;
  height: 16.484vw;
  object-fit: cover;
  filter: grayscale(100%);
  flex-shrink: 0;
}

.event-detail-nav {
  max-width: 99.84vw;
  margin: 0 auto;
  padding: 0 2.34vw 4.992vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.248vw;
  background: #fff;
}

.event-detail-nav__card {
  display: flex;
  align-items: center;
  gap: 1.248vw;
  min-height: 6.24vw;
  padding: 1.04vw 1.248vw;
  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: 6.24vw;
  height: 4.16vw;
  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: 0.416vw;
}

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

.event-detail-nav__name {
  color: #111;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.456vw;
  font-weight: 600;
  letter-spacing: -0.0624vw;
  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: 62.4vw) {
  .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: 2.08vw 1.664vw 2.496vw;
  }

  .event-detail-gallery__grid img {
    width: calc(50% - 0.416vw);
    height: auto;
    aspect-ratio: 320 / 317;
    max-width: 16.64vw;
  }

  .event-detail-nav {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 39.936vw) {
  .event-detail-hero,
  .event-detail-gallery,
  .event-detail-nav {
    padding-left: 1.248vw;
    padding-right: 1.248vw;
  }

  .event-detail__title {
    font-size: 2.08vw;
  }

  .event-detail-gallery__grid img {
    width: 100%;
    max-width: 16.64vw;
  }

  .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: 0.052vw solid #fff;
  padding-bottom: 0.104vw;
}

.projekty-page {
  max-width: 99.84vw;
  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: 2.496vw 2.912vw;
  box-sizing: border-box;
}

.projekty-row--dark .projekty-row__text {
  background: #1D1D1D;
  color: #fff;
}

.projekty-row__head {
  margin-bottom: 1.04vw;
}

.projekty-row__head-line {
  width: 3.12vw;
  height: 0.052vw;
  background: #B58F34;
  flex-shrink: 0;
}

.projekty-row__date {
  color: #fff;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 0.78vw;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.projekty-row__title {
  display: flex;
  align-items: center;
  gap: 0.832vw;
  margin: 0 0 1.04vw;
  color: #B58F34;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.952vw;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.1976vw;
}

.projekty-row__title-line {
  width: 3.12vw;
  height: 0.052vw;
  background: #B58F34;
  flex-shrink: 0;
}

.projekty-row__tagline {
  display: flex;
  align-items: center;
  gap: 0.832vw;
  margin: 0 0 1.456vw;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.56vw;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.078vw;
}

.projekty-row__tagline-line {
  width: 2.08vw;
  height: 0.052vw;
  background: #B58F34;
  flex-shrink: 0;
}

.projekty-row__body p {
  margin: 0 0 1.04vw;
  color: #fff;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 0.884vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3vw;
}

.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: 2.912vw 2.34vw 4.16vw;
}

.projekty-page__archive-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 11.44vw;
  height: 2.912vw;
  padding: 0 1.664vw;
  border: 0.104vw solid #000;
  color: #000;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.144vw;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.04576vw;
  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: 57.2vw) {
  .projekty-row {
    grid-template-columns: 1fr;
    height: auto;
  }

  .projekty-row__text,
  .projekty-row__media,
  .projekty-row__media img {
    height: auto;
    min-height: 16.64vw;
  }

  .projekty-row__media img {
    aspect-ratio: 16 / 10;
  }

  .projekty-row__title {
    font-size: 2.184vw;
  }

  .projekty-row__tagline {
    font-size: 1.248vw;
  }
}

@media (max-width: 39.936vw) {
  .projekty-row__text {
    padding: 1.664vw 1.248vw;
  }

  .projekty-page__cta {
    padding: 2.08vw 1.248vw 3.328vw;
  }
}

/* ===== Projekty archiwalne page ===== */
.page-projekty-archiwalne .page-header .nav__links > li:nth-child(3) > a {
  border-bottom: 0.052vw solid #fff;
  padding-bottom: 0.104vw;
}

.projekty-archiwalne {
  max-width: 99.84vw;
  margin: 0 auto;
  padding: 3.744vw 5.2vw 4.16vw;
  background: #fff;
  box-sizing: border-box;
}

.projekty-archiwalne__layout {
  display: grid;
  grid-template-columns: 15.6vw 1fr;
  gap: 6.24vw;
  align-items: stretch;
}

.projekty-archiwalne__intro {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.projekty-archiwalne__title {
  margin: 0 0 1.04vw;
}

.projekty-archiwalne__title-row {
  display: flex;
  align-items: flex-start;
  gap: 0.728vw;
}

.projekty-archiwalne__title-line {
  width: 2.912vw;
  height: 0.052vw;
  background: #B58F34;
  flex-shrink: 0;
  margin-top: 1.144vw;
}

.projekty-archiwalne__title-text {
  display: flex;
  flex-direction: column;
  color: #B58F34;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.912vw;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.1456vw;
}

.projekty-archiwalne__desc {
  margin: 0;
  max-width: 12.48vw;
  color: rgba(0, 0, 0, 0.5);
  font-family: "Kumbh Sans", sans-serif;
  font-size: 0.78vw;
  font-weight: 300;
  line-height: 1.144vw;
}

.projekty-archiwalne__current-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10.192vw;
  height: 2.704vw;
  margin-top: auto;
  padding: 0 1.456vw;
  border: 0.052vw solid #000;
  color: #000;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.144vw;
  font-weight: 600;
  letter-spacing: -0.04576vw;
  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: 2.912vw 5.2vw;
}

.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: 16.016vw;
  height: 10.504vw;
  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: 1.248vw;
}

.projekty-archiwalne__card-date {
  color: #000;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 0.78vw;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  opacity: 0.5;
}

.projekty-archiwalne__card-title {
  margin-top: 0.208vw;
  color: #000;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.352vw;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.0676vw;
  max-width: 9.984vw;
}

.projekty-archiwalne__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.416vw;
  margin-top: 0.416vw;
  color: #000;
  text-align: right;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.144vw;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.04576vw;
}

.projekty-archiwalne__card-link svg,
.projekty-archiwalne__card-link .class_svgs {
  flex-shrink: 0;
  color: #000;
}

.projekty-archiwalne__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.832vw;
  margin-top: 3.328vw;
}

.projekty-archiwalne__page-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 0.416vw;
  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: 1.872vw;
  height: 1.872vw;
  padding: 0;
  border: 0.052vw solid transparent;
  background: transparent;
  color: rgba(0, 0, 0, 0.55);
  font-family: "Kumbh Sans", sans-serif;
  font-size: 0.78vw;
  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: 72.8vw) {
  .projekty-archiwalne {
    padding: 3.328vw 2.912vw 3.744vw;
  }

  .projekty-archiwalne__layout {
    gap: 3.328vw;
  }

  .projekty-archiwalne__columns {
    gap: 2.08vw 2.912vw;
  }

  .projekty-archiwalne__card-image {
    width: 13.52vw;
    height: 8.892vw;
  }
}

@media (max-width: 57.2vw) {
  .projekty-archiwalne__layout {
    grid-template-columns: 13.52vw 1fr;
    gap: 2.496vw;
  }

  .projekty-archiwalne__title-text {
    font-size: 2.288vw;
    letter-spacing: -0.1144vw;
  }

  .projekty-archiwalne__title-line {
    margin-top: 0.936vw;
  }

  .projekty-archiwalne__card-title {
    font-size: 1.248vw;
  }
}

@media (max-width: 46.8vw) {
  .projekty-archiwalne {
    padding: 2.496vw 1.248vw 3.328vw;
  }

  .projekty-archiwalne__layout {
    grid-template-columns: 1fr;
    gap: 2.496vw;
  }

  .projekty-archiwalne__intro {
    min-height: auto;
  }

  .projekty-archiwalne__current-btn {
    margin-top: 1.664vw;
  }

  .projekty-archiwalne__columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .projekty-archiwalne__col {
    gap: 0;
  }
}

@media (max-width: 29.12vw) {
  .projekty-archiwalne__card {
    flex-direction: column;
    align-items: flex-start;
  }

  .projekty-archiwalne__card-body {
    padding-left: 0;
    padding-top: 0.832vw;
  }

  .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: 0.884vw;
    font-weight: 400;
    line-height: 1.3vw;
    margin-bottom: 1.092vw;
    margin-top: 1.67vw;
}

.projects__archive {
    position: relative;
    z-index: 2;
    color: #FFF;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.144vw;
    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: 0.052vw solid #ffffff24;
    padding-top: 1.8vw;
    padding-left: 9.3vw;
    letter-spacing: -0.052vw;
    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: 49.92vw;
    height: 36.712vw;
    position: absolute;
    left: 0;
    top: 0vw; 
}

.logog 
{
 width: 20.176vw;
    height: 12.116vw;
    position: absolute;
    top: 22vw;
    left: 29vw; 
}

.page-kontakt .page-header .nav__links > li:last-child > a {
    border-bottom: 0.052vw solid #b59842;
    padding-bottom: 1.196vw;
}



.kontakt__donate-iban-label 
{
  font-weight: 600 !important;
}

.partnerzy-card {
        border: 0.052vw solid #f2f2f2;
    }

.footer__donate {
    color: #c6c6c6;
}

.footer__iban-label {
    color: #9c9c9c;
}

.partnerzy-slider__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.248vw;
    margin-top: 3.38vw;
    margin-bottom: -1.56vw;
}

.page-partnerzy .page-header .nav__links > li:nth-child(4) > a {
    border-bottom: 0.052vw solid #c5ad68;
    padding-bottom: 1.144vw;
}

.page-projekty .page-header .nav__links > li:nth-child(3) > a {
    border-bottom: 0.052vw solid #c5ad68;
    padding-bottom: 1.144vw;
}

.page-wydarzenia .page-header .nav__links > li:nth-child(2) > a {
   border-bottom: 0.052vw solid #c5ad68;
    padding-bottom: 1.144vw;
}

.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: 0.78vw;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    color: #FFF;
    font-family: "Kumbh Sans";
    font-size: 0.78vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.projekty-row__head {
    margin-bottom: 1.04vw;
    margin-left: 11.2vw;
    color: #FFF;
    font-family: "Kumbh Sans";
    font-size: 0.78vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 0.9vw;
}

.projekty-row__title {
    display: flex;
    align-items: center;
    gap: 0.832vw;
    margin: 0 0 1.04vw;
    color: #B58F34;
    font-family: "Cormorant Garamond", serif;
    font-size: 3.276vw;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.1976vw;
    color: #F6D67B;
    font-family: "Cormorant Garamond";
    font-size: 3.016vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.1508vw;
}

.projekty-row__text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
    padding: 2.496vw 2.912vw;
    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: 0.832vw;
    margin: 0 0 1.04vw;
    color: #B58F34;
    font-family: "Cormorant Garamond", serif;
    font-size: 3.276vw;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.1976vw;
    color: #F6D67B;
    font-family: "Cormorant Garamond";
    font-size: 3.016vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.1508vw;
    margin-left: 6.67vw;
    gap: 1.196vw;
    margin-top: -1vw;
}

.projekty-row__tagline-line {
    width: 1.56vw;
    height: 0.052vw;
    background: #B58F34;
    flex-shrink: 0;
}

.projekty-row__tagline-line {
    width: 1.56vw;
    height: 0.052vw;
    background: #B58F34;
    flex-shrink: 0;
    margin-right: 0.26vw !important;
}

.projekty-row__body 
{
      margin-left: 11vw;
    margin-top: 0.7vw;
    width: 31vw;
}

.projekty-row__tagline {
    display: flex;
    align-items: center;
    gap: 0.832vw;
    margin: 0 0 1.456vw;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.56vw;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.078vw;
    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 1.04vw;
    color: #fff;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 0.884vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3vw;
    color: #FFF;
    font-family: "Kumbh Sans";
    font-size: 0.884vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3vw;
    opacity: 0.75;
}

.projekty-archiwalne {
    max-width: 99.84vw;
    margin: 0 auto;
    padding: 3.744vw 5.2vw 4.16vw;
    background: #fff;
    box-sizing: border-box;
    height: 43.7vw;
}

.projekty-archiwalne {
    max-width: 99.84vw;
    margin: 0 auto;
    padding: 3.744vw 5.2vw 4.16vw;
    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: 2.912vw;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.1456vw;
    opacity: 0.75;
}
.projekty-archiwalne__title-line {
    width: 2.912vw;
    height: 0.052vw;
    background: #B58F34;
    flex-shrink: 0;
    margin-top: 1.768vw;
}

.projekty-archiwalne__title-text {
    display: flex;
    flex-direction: column;
    color: #B58F34;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.912vw;
    font-style: normal;
    font-weight: 600;
    line-height: 1.23;
    letter-spacing: -0.1456vw;
    opacity: 0.75;
    margin-left: 0.4vw;
    margin-top: -0.2vw;
}
.projekty-archiwalne__desc {
    margin: 0;
    max-width: 12.48vw;
    color: rgba(0, 0, 0, 0.5);
    font-family: "Kumbh Sans", sans-serif;
    font-size: 0.78vw;
    font-weight: 300;
    line-height: 1.144vw;
    color: #000;
    font-family: "Kumbh Sans";
    font-size: 0.884vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3vw;
    opacity: 0.75;
    margin-top: 0.4vw;
    margin-left: 4.2vw;
}

.projekty-archiwalne__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.912vw 5.2vw;
    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: 0.572vw;
    color: #000;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.352vw;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.0676vw;
    max-width: 9.984vw;
}

.projekty-archiwalne__card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.416vw;
    margin-top: 1.3vw;
    color: #000;
    text-align: right;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.144vw;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.04576vw;
}

.projekty-archiwalne__current-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 10.192vw;
    height: 2.704vw;
    margin-top: auto;
    padding: 0 1.456vw;
    border: 0.104vw solid #000;
    color: #000;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.144vw;
    font-weight: 600;
    letter-spacing: -0.04576vw;
    text-decoration: none;
    background: transparent;
    transition: background 0.3s ease, color 0.3s ease;
    display: flex;
    width: 12.168vw;
    height: 2.912vw;
    padding-bottom: 0.832vw;
    flex-direction: column;
    align-items: center;
    gap: 0.572vw;
    align-content: center;
    padding-top: 0.8vw;
    margin-left: 3vw;
}

.projekty-archiwalne {
    max-width: 99.84vw;
    margin: 0 auto;
    padding: 3.744vw 5.2vw 4.16vw;
    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:51.532vw)
{
  .event-detail-hero__media img {
    width: 49.92vw;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.event-detail-hero__media {
    position: relative;
    width: 49.92vw;
    height: 41.2vw !important;
}

.event-detail-gallery {
    max-width: 99.84vw;
    margin: 0 auto;
    padding: 3.328vw 2.34vw 3.744vw;
    background: #fff;
    padding-left: 0;
    padding-right: 0;
}

.event-detail-gallery__grid {
    display: grid;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.event-detail-nav__card {
    display: flex;
    align-items: center;
    gap: 1.5vw;
    min-height: 6.24vw;
    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: 0.208vw;
}

.event-detail-nav {
    max-width: 99.84vw;
    margin: 0 auto;
    padding: 0 2.34vw 3.276vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.248vw;
    background: #fff;
    width: 71.3vw;
}

    .event-detail-nav {
        max-width: 99.84vw;
        margin: 0 auto;
        padding: 0 2.34vw 3.276vw;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.248vw;
        background: #fff;
        width: 71.3vw;
        padding-top: 3vw;
    }

        .event-detail-gallery {
        max-width: 99.84vw;
        margin: 0 auto;
        padding: 3.328vw 2.34vw 3.744vw;
        background: #fff;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
    }

    .page-wydarzenie .page-header .nav__links > li:nth-child(2) > a {
    border-bottom: 0.052vw 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: 0.884vw;
    font-style: normal;
    font-weight: 300;
    line-height: 1.3vw;
    text-align: justify;
}

.event-detail-hero__info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2.496vw 3.328vw 2.496vw 2.912vw;
    box-sizing: border-box;
    padding-right: 7vw;
}

.row_jj 
{
     color: #000;
    text-align: justify;
    font-family: "Kumbh Sans";
    font-size: 0.884vw;
    font-style: normal;
    font-weight: 300;
    line-height: 1.3vw;
    opacity: 0.75;
    margin: auto;
    width: 86%;
    margin-top: 2.4vw; 
}

.row_jj p 
{
 margin-bottom: 1vw; 
}

}









}


@media (min-width:991px)
{
  .projekty-row.projekty-row--light .projekty-row__body {
    margin-left: 1vw;
    margin-top: 0;
    width: 38vw;
    text-align: justify;
}

    .projekty-archiwalne__current-btn {
        margin-left: 4.2vw;
    }

        .page-projekty-archiwalne .page-header .nav__links > li:nth-child(3) > a {
        border-bottom: 0.052vw solid #F6D67B;
        padding-bottom: 1.2vw;
    }

    .xsvg 
    {
      width:3.44vw;
      height:2.03vw;
    }

    .footer__contact-icon svg 
    {
      width:1.25vw;
    }

    .nav__links.nav__links--left li {
        border-bottom: 0.052vw solid #ffffff1c;
        padding-bottom: 1vw;
        line-height: 1.4;
    }

        .page-kontakt .page-header .nav__links > li:last-child > a {
        border-bottom: 0.052vw solid #b59842;
        padding-bottom: 0.998vw;
    }

        .page-partnerzy .page-header .nav__links > li:nth-child(4) > a {
        border-bottom: 0.052vw solid #c5ad68;
        padding-bottom: 1.056vw;
    }

        .nav__links.nav__links--left li {
        border-bottom: 0.052vw solid #ffffff1c;
        padding-bottom: 1vw;
        line-height: 1.3vw;
    }

        .wydarzenia-archive__arrow--next {
        background: #B58F34;
        border-color: #B58F34;
        width: 2.6vw;
        height: 2.6vw;
        border: 1px solid #B58F34;
        background: #FFF;
    }

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

    .wydarzenia-archive__arrow--next {
        background: #B58F34;
        border-color: #B58F34;
        width: 2.6vw;
        height: 2.6vw;
        border: 1px solid #B58F34;
        background: #FFF;
    }

.wydarzenia-archive__slider svg 
{
      width: 1.2vw;
}

.page-wydarzenia .wydarzenia-archive__card.event-card--archive {
        width: 21.984vw;
        height: 30.628vw;
        flex: 0 0 22.984vw;
        max-width: 21.984vw;
    }

    .page-wydarzenie .event-detail-hero__media .event-card__countdown--vertical {
        position: absolute;
        top: 2.08vw;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 1.248vw;
        z-index: 2;
    }

    .page-wydarzenie .event-card__countdown--vertical .event-card__countdown-sep--h {
        width: 8.744vw;
        height: 0;
        background: #ffffff00;
        opacity: 0.25;
        flex-shrink: 0;
        border-bottom: 2px dotted white;
    }

    .event-card__countdown-label {
        color: #FFF;
        font-family: "Kumbh Sans", sans-serif;
        font-size: 0.884vw;
        font-weight: 800;
        line-height: normal;
        opacity: 0.75;
        text-align: right;
        padding-right: 1.5vw;
    }
        .event-card__countdown-item {
        display: flex;
        align-items: center;
        gap: 0.676vw;
        padding-right: 1.5vw;
    }

.logo img 
{
  width:11.93vw;
}

.hero__watermark img 
{
  width:25.57vw;
}

    .partnerzy-card img {
        max-width: 100%;
        max-height: 4vw;
    }

    .partnerzy-slider__arrow .class_svgs {
      height: 1.15vw;
    }

    .kontakt__social-link svg
    {
      max-width:1.56vw;
    }

    .footer__heading-accent 
    {
      font-weight: 600;
    }

    .projekty-archiwalne__title-line {
        width: 2.912vw;
        height: 0.052vw;
        background: #B58F34;
        flex-shrink: 0;
        margin-top: 3.568vw;
    }

}

@media (max-width:991px)
{
  .wydarzenia-archive__arrow--next {
    background: #b58f3400;
    border-color: #B58F34;
}

    .event-card.event-card--archive .event-card__title {
        color: #FFF;
        font-family: "Cormorant Garamond";
        font-size: 25px;
        font-style: normal;
        font-weight: 600;
        line-height: 1.1 !important;
        letter-spacing: -1.5px;
        margin-bottom: 68px !important;
    }
    .page-wydarzenia .wydarzenia-archive__card .event-card__content.event-card__content--archive {
    bottom: 20px;
}

    .event-detail-hero, .event-detail-gallery, .event-detail-nav {
        padding-left: 0;
        padding-right: 0;
    }

    .row_jj 
    {
    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;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: -24px;
    }

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

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

.about__btn:hover {
    color: #fff !important;
}



}

@media (min-width:991px)
{
      .page-wydarzenia .wydarzenia-archive__card.event-card--archive {
        width: 21.984vw;
        height: 30.628vw;
        flex: 0 0 22.984vw;
        max-width: 21.5vw;
    }
    .goverlay {
        background: rgb(0 0 0 / 0%);
        display:none !important;
    }

    .footer__social svg {
        width: 2.236vw;
        height: 2.136vw;
        display: block;
    }

        .side-menu {
        padding: 3.484vw 2.184vw 0.12vw;
        box-sizing: border-box;
    }

    .zdik img {
        filter: grayscale(100);
    }

    .zdik img:hover {
        filter: grayscale(0);
    }
        .hero {
        position: relative;
        min-height: 100vh;
        }
        .morefiok {
        height: 49.7vw;
        }
}

@media (max-width:991px)
{
  .page-sub .nav__icon14 {
        z-index: 9999999 !important;
    }
        .page-sub .projekty-archiwalne__card-link {
        display: inline-flex;
        align-items: center !important;
        text-align: left;
    }

    .page-home .hero__title-line--small {
        display: inline;
        margin-left: 2px !important;
        margin-top: 0;
        color: #f6d67b;
        font-family: "Cormorant Garamond", serif;
        font-size: 23px !important;
        font-style: italic;
        font-weight: 700;
        line-height: normal;
        letter-spacing: -1.3px;
        opacity: 0.75;
    }
}


@media (max-width:991px)
{
  .page-sub .footer__tail .footer__copy {
        line-height: 1.8;
    }

        .page-home .events {
    
        z-index: 9 !important;
    }
    .page-home .nav__phone {
        z-index: 9999 !important;
    }
}

@media (min-width:991px)
{
 .page-id-251 .nav {
        position: fixed;
        z-index: 999 !important;
        max-width: 100%;
        width: 100%;
    }


.fix .logo img {
        width: 11.93vw;
        max-height: 6vw;
        object-fit: contain;
    }

     .fix .nav__links {
        margin-top: 1.8vw;
    }

    .fix .nav__right {
        margin-top: -0.89999vw;
    }

       .fix .nav {
        position: fixed;
        z-index: 999;
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        padding: 1.456vw 2.496vw;
        max-width: 100%;
        width: 100%;
        background: linear-gradient(269deg, rgba(0, 0, 0, 0.87) 0%, rgba(0, 0, 0, 0.00) 65.33%), #1D1D1D;
    }


   .page-id-251 .hero__title {
        margin-top: 30.77vw;
    }


    .footer__contacts .rso {
        color: #f5d454 !important;
        opacity: 1 !important;
        margin-left: 2px !important;
        font-weight: 600 !important;
    }

    .fix .nav {
        position: fixed;
        z-index: 999;
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        padding: 0.456vw 2.496vw;
        max-width: 100%;
        width: 100%;
        background: linear-gradient(269deg, rgba(0, 0, 0, 0.87) 0%, rgba(0, 0, 0, 0.00) 65.33%), #1D1D1D;
    }

    .fix .logo img {
        width: 9.93vw;
        max-height: 4vw;
        object-fit: cover;
        object-position: top;
    }

        .fix .nav {
        position: fixed;
        z-index: 999;
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        padding: 0.456vw 2.496vw;
        max-width: 100%;
        width: 100%;
        background: linear-gradient(269deg, rgba(0, 0, 0, 0.87) 0%, rgba(0, 0, 0, 0.00) 65.33%), #1D1D1D;
        padding-bottom: 0px;
    }

.dektop_off 
{
  display:none !important;
}
}


.class_svgs {
  display: block;
  flex-shrink: 0;
  width: auto;
  height: 0.85em;
  fill: currentColor;
}

.projects__archive .class_svgs {
  fill: #fff;
}

.projekty-page {
        max-width: 100% !important;
}

.about {
        max-width: 100% !important;
}
    .fundacja-about {
        max-width: 100% !important;
    }

    .kontakt {
        max-width: 100% !important;
    }

    .partnerzy-page {
        max-width: 100% !important;
    }

        .kontakt-map__frame {
        filter: grayscale(0%);
    }


@media (min-width:991px)
{
  #top {
        background-image: none !important;
    }

        body {
        overflow-x: hidden !important;
        width: 100% !important;
        min-width: 100% !important;
    }
    html 
    {
      width:100% !important;
      min-width:100% !important;
      overflow-x: hidden !important;
    }
        .gf1 {
        height: 19.73vw;
    }
 
}

@media (min-width:991px) {
    .pol {
        font-size: 1.7vw;
        font-weight: 300;
        text-transform: math-auto;
        padding: 0 2vw;
        display: inline-block;
        white-space: nowrap;
        font-family: "Kumbh Sans", sans-serif;
        text-shadow: none;
        color: black;
    }
    .hero__title-line--small {
        text-shadow: 5px 5px 7px #000000;
    }
    .hero__title-line
    {
        text-shadow: 5px 5px 7px #000000;
    }
}