/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marmelad&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --bg-sand: #F5F3EF;
  --text-dark: #2B2623;
  --text-muted: #6B635B;
  --accent-gold: #C2A87E;
  --accent-gold-dark: #A38A60;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: 1px solid rgba(255, 255, 255, 0.3);
  --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);

  --shadow-lux: 0 30px 60px -15px rgba(43, 38, 35, 0.15);
  --shadow-float: 0 15px 35px -5px rgba(43, 38, 35, 0.1);
  --glass-border: 1px solid rgba(255, 255, 255, 0.6);
  --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);

  --paper-bg: #fdfbf7;
  --gold-dark: #8a6d3b;
  --gold-matte: #9e7e4b;
  --text-main: #4a403a;
  --text-on-gold: #f2f0eb;
  --paper-texture-url: url('../img/cream-paper-2.png');
  --hero-bg-color: #E6DBC6;

  --header-height: 3.5rem;
  --x: 40px;
  --m: 10px;
  --icon-size: 4rem;

  --font-head: 'Marmelad', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
  --font-quote: 'Playfair Display' . sans-serif;

  /*========== Colors ==========*/
  --title-color: #b68340;
  --text-color: hsl(220, 8%, 40%);
  --white-color: hsl(0, 0%, 100%);
  --black-color: hsl(220, 8%, 6%);
  --body-color: hsl(29, 37%, 89%);
  --sand-color: #b68340;
  --container-color: hsl(220, 8%, 96%);
  --strong-color: hsl(0, 0%, 31%);
  --opacity-color-40: hsla(48, 13%, 93%, .6);
  --opacity-color-30: hsla(0, 0%, 90%, .3);
  --opacity-color-20: hsla(0, 0%, 90%, .2);
  --h3-color: hsl(0, 0%, 31%);
  --gradient--sand-color: linear-gradient(110deg, var(--color-sauna1) 0%, var(--color-sauna2) 38%, var(--color-sauna3) 72%, var(--color-sauna4) 100%);
  --gradient--sand2-color: linear-gradient(110deg, var(--color-sauna4) 0%, var(--color-sauna3) 38%, var(--color-sauna2) 72%, var(--color-sauna1) 100%);
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  /* --body-font: "Montserrat", sans-serif; */
  --second-font: "Marmelad", cursive;
  --biggest-font-size: 3rem;
  --big-font-size: 1.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --h4-font-size: 0.97rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .770rem;

  --color-light-bg: #f9f8f7;
  --color-sauna1: #f3e4cc;
  --color-sauna2: #d7c8ae;
  --color-sauna3: #b2a191;
  --color-sauna4: #8e705f;
  --color-sauna5: #fdfdfc;
  --color-accent: #b68340;
  --color-text-light: #f0e9d5;
  --color-text-dark: #2d2823;
  --color-text-gradient: #5c4a3e;
  --text-title-mobile: 1.38rem;
  --text-title-tablet: 2rem;
  --text-title-desktop: 2.45rem;
  --text-sub-mobile: 1.08rem;
  --text-sub-tablet: 1.2rem;
  --text-sub-desktop: 1.28rem;
  --section-padding-mobile: 30px 0;
  --section-padding-tablet: 44px 0;
  --section-padding-desktop: 60px 0;
  --section-margin-mobile: 0;
  --section-margin-tablet: 0;
  --section-margin-desktop: 0;
  --section-min-height-mobile: 180px;
  --section-min-height-tablet: 220px;
  --section-min-height-desktop: 260px;
  --border-radius: 0;
  --content-max-width: 1200px;
  --content-padding-mobile: 12px;
  --content-padding-tablet: 36px;
  --content-padding-desktop: 80px;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 600;
  --font-thin: 100;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}


/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 6rem;
    --large-font-size: 3.4rem;
    --big-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

/* body {
  font-family: 'Marcellus', serif;
  min-height: 100vh;
  background: radial-gradient(circle at 50% 50%, #FBF9F6, #ECE5DD);
  background-attachment: fixed;
  background-size: cover;
} */


h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
div,
button,
input,
textarea,
select {
  font-family: 'Marcellus', sans-serif;
}



html {
  scrollbar-color: rgba(138, 109, 59, 0.5) rgba(189, 141, 58, 0.05);
  /* scrollbar-width: thin; */
  scroll-behavior: auto !important;
  background-image:
    radial-gradient(circle at var(--bg-x, 50%) var(--bg-y, 50%),
      #FBF9F6 0%, #ECE5DD 100%),
    radial-gradient(at 40% 45%, #d7c8ae 0px, transparent 60%),
    radial-gradient(at 70% 40%, #f3e4cc 0px, transparent 60%),
    radial-gradient(at 0% 5%, #b2a191 0px, transparent 60%),
    radial-gradient(at 100% 95%, #b68340 0px, transparent 60%);
}

input,
button,
body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
  overflow-x: hidden;
  transition: background-color .4s;
}

input,
button {
  outline: none;
  border: none;
}

h1,
h2,
h3,
h4 {
  font-weight: var(--font-semi-bold);
}

h1 {
  /* font-family: 'Marcellus', sans-serif; */
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 0.95;
  margin-bottom: 25px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

h1 span {
  font-style: italic;
  background: linear-gradient(to right, #fff, #e0d4c3);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h3 {
  font-size: var(--text-sub-mobile);
  margin-bottom: 0.36em;
  margin-top: -0.22em;
  font-weight: 400;
  /* text-align: center; */
  opacity: 0.85;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 3;
}

h2 {
  color: var(--sand-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: 100%;
}

strong {
  font-weight: var(--font-semi-bold);
  color: var(--strong-color);
}

*:has(strong) {
  color: var(--strong-color);
}

.dark-theme::-webkit-scrollbar {
  background-color: hsl(220, 6%, 15%);
}

.dark-theme::-webkit-scrollbar-thumb {
  background-color: hsl(220, 6%, 40%);
}


/* --- TŁO FIXED --- */
.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, #FBF9F6, #ECE5DD);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.6;
  animation: float 25s infinite ease-in-out alternate;
}

.blob-1 {
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: #EBDCCF;
}

.blob-2 {
  bottom: -10%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: #DBCBB8;
  animation-delay: -5s;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  box-sizing: border-box;
}

.grid {
  display: grid;
  /* gap: 1.5rem; */
}

/* .section {
  padding-block: 5rem 5rem;
  min-height: 80vh;
} */

section.light {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, #FBF9F6, #ECE5DD);
}


::selection {
  background: var(--accent-gold);
  color: #fff;
}


/* -- FIRST SECTION --*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Mulish:wght@300;400;600;800&display=swap');

.offer-wrapper {
  --o-bg: #F7F5F0;
  --o-txt: #3E342F;
  --o-muted: #6D5E55;
  --o-gold: #9C824A;
  isolation: isolate;
  background-color: #F7F5F0;
  isolation: isolate;

  /* background-color: var(--o-bg); */
  background-image:
    radial-gradient(circle at 50% 50%, rgba(251, 249, 246, 0.4) 0%, #ECE5DD 70%),
    radial-gradient(at 40% 45%, #d7c8ae 0px, transparent 80%),
    radial-gradient(at 70% 40%, #f3e4cc 0px, transparent 80%),
    radial-gradient(at 0% 5%, #b2a191 0px, transparent 80%),
    radial-gradient(at 100% 95%, #e6cba7 0px, transparent 80%);
  width: 100%;
  position: relative;
  z-index: 10;
  border-radius: 50px 50px 0 0;
  margin-top: 0;
  box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  box-sizing: border-box;
}

/* @media (max-width: 900px) {
  .offer-wrapper {
    border-radius: 30px 30px 0 0;
  }
} */

.offer-wrapper *,
.offer-wrapper *::before,
.offer-wrapper *::after {
  box-sizing: border-box;
}

.offer-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
}

.offer-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  text-align: left;
  z-index: 2;
}

.offer-subtitle {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Mulish', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--o-gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.offer-subtitle::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  background-color: var(--o-gold);
  border-radius: 50%;
}

.offer-wrapper h2 {
  font-family: var(--font-head);
  font-size: 50px;
  line-height: 1.1;
  font-weight: 300;
  color: var(--o-txt);
  margin: 0 0 2.5rem 0;
  padding: 0;
}

.offer-wrapper h2 em {
  font-family: var(--font-head);
  font-style: normal !important;
  font-weight: 400;
  color: var(--o-gold);
}

.offer-text {
  font-family: var(--font-body);
  color: var(--o-muted);
  line-height: 1.6;
  font-size: 1.2rem;
  font-weight: 200;
}

.offer-text p {
  font-family: var(--font-body);
  font-weight: 200;
  margin-bottom: 1.5rem;
  margin-top: 0;
  font-size: 1.2rem;
}

.offer-text p:last-child {
  margin-bottom: 1.5rem;
}

.offer-signature {
  background: linear-gradient(90deg,
      var(--o-gold) 0%,
      color-mix(in srgb, var(--o-gold) 70%, #fff) 50%,
      var(--o-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-body);
  color: var(--o-muted);
  line-height: 1.6;
  font-size: 1.2rem;
  font-weight: 300;
  /* delikatny glow */
  /* text-shadow: 
    0 0 4px rgba(156, 130, 74, 0.3),
    0 0.5px 1px rgba(0,0,0,0.1);
   */

}


/* .subtitle {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-gold);
  display: block;
  position: relative;
  padding-left: 40px;
  font-family: var(--font-head);
  line-height: 1.4;
} */

.offer-visual {
  position: relative;
  transform: translateZ(0);
}

.offer-mask {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
  border-radius: 0 100px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 20px 40px rgba(40, 35, 30, 0.08),
    0 4px 12px rgba(40, 35, 30, 0.04);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateZ(0);
  will-change: transform, box-shadow;
}

.offer-mask:hover {
  transform: translateY(-8px);
  box-shadow:
    0 30px 60px rgba(40, 35, 30, 0.12),
    0 8px 24px rgba(40, 35, 30, 0.06);
}

.offer-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(10%) contrast(95%);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
  transform-origin: center;
}

.offer-mask:hover img {
  transform: scale(1.05);
}

/*--- BADGE---*/
.offer-badge {
  position: absolute;
  width: 120px;
  height: 120px;
  z-index: 10;
  top: 60px;
  left: 0;
  transform: translateX(-50%);
  background: rgba(247, 245, 240, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.offer-badge-txt {
  will-change: transform;
}

.offer-badge-txt text {
  font-family: 'Marmelad', sans-serif;
  font-size: 11px;
  font-weight: 400;
  fill: var(--o-txt);
  text-transform: uppercase;
}

.text-main {
  fill: #fff;
}

.star {
  fill: #ffd700;
}


.offer-icon {
  position: absolute;
  font-size: 1.5rem;
  color: var(--o-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

.o-mob {
  display: none;
}

.o-desk {
  display: block;
}

/*--- MEDIA QUERIES (MOBILE) ---*/
@media (max-width: 900px) {
  .offer-wrapper {
    border-radius: 35px 35px 0 0;
    margin-top: 0;
    min-height: 100svh;
  }

  .offer-section {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem 3rem 1.5rem;
    gap: 2rem;
  }

  .offer-visual {
    width: 100%;
    order: -1;
    margin-bottom: 35px;
  }

  .offer-mask {
    height: 400px;
    border-radius: 40px 40px 0 0;
    box-shadow: 0 15px 30px rgba(40, 35, 30, 0.08);
  }

  .offer-mask:hover {
    transform: none;
  }

  .offer-content {
    width: 100%;
    order: 2;
  }

  .offer-badge {
    width: 90px;
    height: 90px;
    bottom: -25px;
    right: -10px;
    top: auto;
    left: auto;
    transform: none;
  }

  .o-desk {
    display: none;
  }

  .o-mob {
    display: block;
  }

  .o-mob text {
    font-size: 10px !important;
    letter-spacing: 2px !important;
  }

  .offer-icon svg {
    width: 18px;
    height: 18px;
  }

  .offer-wrapper h2,
  .main-title,
  .about-section {
    font-size: 2.5rem !important;
  }

  .offer-text p,
  .offer-signature {
    font-size: 1rem;
  }


}


/* SECOND SECTION SLIDER DW */
:root {
  --c-text-dark: #2A2420;
  --c-text-light: #5A504B;
  --c-gold-accent: #C4A484;
  --c-bg-warm: #F9F7F5;
  --o-bg: #F7F5F0;
  --shadow-soft-premium:
    0 25px 50px -12px rgba(60, 50, 40, 0.12),
    0 40px 70px -15px rgba(60, 50, 40, 0.08);
}

/* body {
  margin: 0;
  background-color: var(--c-bg-warm);
  font-family: 'Montserrat', sans-serif;
  color: var(--c-text-dark);
  overflow-x: hidden;
} */

/* --- GŁÓWNA SEKCJA (Układ Sticky) --- */
.premium-about-section {
  width: 100%;
  background-color: #F7F5F0;
  isolation: isolate;

  /* background-color: var(--o-bg); */
  background-image:
    radial-gradient(circle at 50% 50%, #FBF9F6 0%, #ECE5DD 100%),
    radial-gradient(at 40% 45%, #d7c8ae 0px, transparent 60%),
    radial-gradient(at 70% 40%, #f3e4cc 0px, transparent 60%),
    radial-gradient(at 0% 5%, #b2a191 0px, transparent 60%),
    radial-gradient(at 100% 95%, #b68340 0px, transparent 60%);
  /* background: radial-gradient(circle at 50% 50%, #ECE5DD, #FBF9F6); */
  padding: 8rem 2rem;
  position: relative;
  z-index: 10;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}

/* --- LEWA STRONA (STICKY) --- */
.about-sticky-side {
  width: 40%;
  position: sticky;
  top: 150px;
  height: auto;
  padding-right: 2rem;
}

.sticky-content .eyebrow {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--c-gold-accent);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.sticky-content .main-title {
  font-family: var(--font-head);
  font-size: 50px;
  font-weight: 300;
  color: var(--c-text-dark);
  line-height: 1.1;
  margin: 0 0 2rem 0;
}

.gold-separator {
  width: 60px;
  height: 1px;
  background-color: var(--c-gold-accent);
  margin-bottom: 2rem;
}

.sticky-description {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-text-light);
  max-width: 400px;
}

.about-scroll-side {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 8rem;
  padding-top: 2rem;
}

.narrative-block {
  position: relative;
  width: 100%;
  pointer-events: none;
}

.narrative-image-wrapper,
.narrative-glass-card {
  pointer-events: auto;
  cursor: default;
}

.narrative-image-wrapper {
  width: 90%;
  height: 550px;
  margin-left: auto;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft-premium);
}

.narrative-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.1, 0, 0.1, 1);
}

.narrative-block:hover .narrative-image-wrapper img {
  transform: scale(1.05);
}

.narrative-glass-card {
  position: absolute;
  bottom: 150px;
  left: 0;
  width: 55%;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 250, 245, 0.75) 100%);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 2.5rem;
  z-index: 2;
  box-shadow:
    0 15px 40px rgba(60, 50, 40, 0.05),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.narrative-block:hover .narrative-glass-card {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(60, 50, 40, 0.1);
}

.narrative-number {
  font-family: var(--font-head);
  font-size: 3rem;
  color: rgba(196, 164, 132, 0.3);
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-weight: 600;
  display: none;
}

.narrative-glass-card h3 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 400;
  color: var(--c-text-dark);
  margin: 0 0 1rem 0;
}

.narrative-glass-card p {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--c-text-light);
  margin: 0;
}

.narrative-block {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.narrative-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.narrative-glass-card {
  overflow: hidden;
  position: relative;
}


.narrative-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent 0%,
      rgba(255, 255, 255, 0.4) 50%,
      transparent 100%);
  transform: skewX(-25deg);
  transition: left 0.7s ease;
  pointer-events: none;
}


.narrative-block:hover .narrative-glass-card::before {
  left: 150%;
  transition: left 0.7s ease-in-out;
}


.narrative-image-wrapper img {
  transform: scale(1.25);
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transition: none;
}

/* --- PUNKT D: STYL LICZNIKA --- */
.progress-indicator {
  margin-top: 3rem;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--c-gold-accent);
  opacity: 0;
  animation: fadeIn 1s forwards 0.5s;
}

.progress-indicator .divider,
.progress-indicator .total-slides {
  opacity: 0.5;
  font-size: 1.5rem;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}


@media (max-width: 768px) {
  .progress-indicator {
    display: none;
  }

  .narrative-glass-card h3 {
    font-size: 1.6rem;
  }
}

/* --- MOBILE --- */
@media (max-width: 1024px) {
  .premium-about-section {
    padding: 4rem 1.5rem;
  }

  .about-container {
    flex-direction: column;
    gap: 3rem;
  }

  .about-sticky-side {
    width: 100%;
    position: relative;
    top: 0;
    padding-right: 0;
  }

  .sticky-content .main-title {
    font-size: 3rem;
  }

  .about-scroll-side {
    width: 100%;
    gap: 4rem;
    padding-top: 0;
  }

  .narrative-image-wrapper {
    width: 100%;
    height: 450px;
    margin-left: 0;
    border-radius: 20px;
  }

  .narrative-glass-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: -90px;
    margin-left: 1rem;
    margin-right: 1rem;
    width: auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.8rem;
  }

  .narrative-image-wrapper img {
    transform: scale(1.0);
    transition: transform 1.5s ease;
  }
}

/* THIRD SECTION CO*/
:root {
  --c-bg-sand: #F7F5F0;
  --c-text-main: #1F1F1F;
  --c-text-muted: #4A4A4A;
  --c-gold-accent: #9C8259;
  --card-height-desktop: 550px;
  --card-height-mobile: 85vh;
  --card-sticky-top: 60px;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --transition-curve: cubic-bezier(0.2, 0.8, 0.2, 1);
}

.offer-stack-section {
  background-color: #F7F5F0;
  isolation: isolate;
  /* background-color: var(--o-bg); */
  background-image:
    radial-gradient(circle at 50% 50%, #FBF9F6 0%, #ECE5DD 100%),
    radial-gradient(at 40% 45%, #d7c8ae 0px, transparent 60%),
    radial-gradient(at 70% 40%, #f3e4cc 0px, transparent 60%),
    radial-gradient(at 0% 5%, #b2a191 0px, transparent 60%),
    radial-gradient(at 100% 95%, #b68340 0px, transparent 60%);
  position: relative;
  z-index: 10;
  padding: 4rem 1rem 8rem;
  width: 100%;
  box-sizing: border-box;
  overflow: clip;
}

.stack-container-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.offer-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.eyebrow {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-gold-accent);
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--font-head);

}

.main-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: #2A2420;
  line-height: 1.1;
}


.stack-container {
  width: 100%;
  position: relative;
}


.sticky-card {
  position: sticky;
  top: var(--card-sticky-top);
  height: var(--card-height-desktop);
  margin-bottom: 4rem;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  padding-left: 5%;
  will-change: transform, filter;
  transform-origin: center top;
}


.sticky-card:nth-child(1) {
  z-index: 1;
}

.sticky-card:nth-child(2) {
  z-index: 2;
}

.sticky-card:nth-child(3) {
  z-index: 3;
}

.sticky-card:nth-child(3) .card-bg-photo img {
  object-position: 50% 65%;
}

.sticky-card:nth-child(4) {
  z-index: 4;
}

.sticky-card:nth-child(4) .card-bg-photo img {
  object-position: 50%;
}

.sticky-card:nth-child(5) {
  z-index: 5;
}

.sticky-card:nth-child(5) .card-bg-photo img {
  object-position: 50% 63%;
}

.sticky-card:nth-child(6) .card-bg-photo img {
  object-position: 50% 60%;
}


.card-bg-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.card-bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}


.card-glass-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.card-number {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--c-gold-accent);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.card-title {
  font-family: var(--font-head);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--c-text-main);
}

.card-description {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--c-text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.card-link {
  text-decoration: none;
  color: var(--c-text-main);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--c-gold-accent);
  padding-bottom: 5px;
}


@media (max-width: 950px) {

  .sticky-card {
    top: 80px;
    height: var(--card-height-mobile);
    min-height: 500px;
    margin-bottom: 2rem;
    padding: 0;
    flex-direction: column;
    justify-content: flex-end;
  }

  .sticky-card {
    position: sticky;
    top: 80px;
    height: var(--card-height-mobile);
    min-height: 500px;
    margin-bottom: 2rem;
    padding: 0;
    flex-direction: column;
    justify-content: flex-end;
  }

  .card-bg-photo img {
    object-position: center 20%;
  }

  .card-glass-panel {
    margin: 1rem;
    padding: 1.5rem;
    width: auto;
    max-width: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.92);
  }

  .card-title {
    font-size: 1.6rem;
  }

  .card-description {
    font-size: 0.9rem;
    display: -webkit-box;
    /* -webkit-line-clamp: 4; */
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .card-link {
    display: block;
    width: 100%;
    text-align: center;
    border: 1px solid var(--c-gold-accent);
    border-radius: 8px;
    padding: 12px 0;
    margin-top: 0.5rem;
    border-bottom: 1px solid var(--c-gold-accent);
    /* Reset */
  }

}

.section-wrapper {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 100px 0;
}

/* TYPOGRAFIA */
.content-section h2 {
  margin-bottom: 2rem;
}

.content-section p {

  margin-bottom: 25px;

}

.subtitle {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 24px;
  position: relative;
  padding-left: 40px;
}

.subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--accent-gold);
}

h2 {
  /* font-family: 'Cormorant Garamond', serif; */
  font-size: 56px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 35px;
  color: var(--text-dark);
  letter-spacing: -1px;
}

h2 span {
  font-style: italic;
  font-weight: 400;
}

/* --- TYPOGRAFIA I POGRUBIENIA (LUXURY STYLE) --- */

p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.9;
  font-weight: 300;
  /* margin-bottom: 25px; */
  /* max-width: 480px; */
  letter-spacing: 0.01em;
}

p+p {
  margin-top: -10px;
}


strong,
b {
  font-weight: 500;
  color: #997F55;
}

/* BUTTONY */
.btn-gold {
  display: inline-block;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 40px;
  color: var(--accent-gold-dark);
  background: transparent;
  border: 1px solid var(--accent-gold);
  border-radius: 100px;
  font-weight: 600;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-gold);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-smooth);
}

.btn-gold:hover {
  color: #fff;
  border-color: var(--accent-gold);
  box-shadow: 0 10px 25px rgba(194, 168, 126, 0.4);
  transform: translateY(-2px);
}

.btn-gold:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* MEDIA BASE */
.media-frame {
  position: relative !important;
  overflow: hidden !important;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  transform: translateZ(0);
  display: block;
}

.parallax-img {
  width: 100%;
  height: 140%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: -20%;
  left: 0;
  transition: none !important;
}




.media-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: var(--glass-border);
  border-radius: inherit;
  pointer-events: none;
  z-index: 10;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.5s ease;
}

.parallax-img {
  position: absolute;
  width: 100%;

  /* TO JEST KLUCZOWE: */
  height: 140% !important;
  top: -20%;
  object-fit: cover;
  left: 0;
  will-change: transform;
  transition: none !important;
}

/* .media-frame:hover img {
  transform: scale(1.08);
} */


.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.visual-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.bento-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 0.8fr;
  gap: 20px;
  height: 550px;
  align-items: center;
}

.stone {
  width: 100%;
  box-shadow: var(--shadow-lux);
}


.stone:nth-child(1) {
  height: 60%;
  align-self: start;
  margin-top: 20px;
  border-radius: 150px 150px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 40px 80px -20px rgba(43, 38, 35, 0.3);
}

.stone:nth-child(2) {
  height: 90%;
  z-index: 2;
  border-radius: 200px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 40px 80px -20px rgba(43, 38, 35, 0.3);
}

.stone:nth-child(3) {
  height: 60%;
  align-self: end;
  margin-bottom: 20px;
  border-radius: 0 0 150px 150px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 40px 80px -20px rgba(43, 38, 35, 0.3);
}


/* --- MANIFESTO SCROLL --- */
.manifesto-track {
  height: 300vh;
  position: relative;
}

.manifesto-section {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  --progress: 0;
}

.manifesto-bg-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  background-color: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  width: calc(60% + (40% * var(--progress)));
  height: calc(60% + (40% * var(--progress)));
  border-radius: calc(100px - (100px * var(--progress)));

  overflow: hidden;
  transition: width 0.1s linear, height 0.1s linear, border-radius 0.1s linear;
  will-change: width, height, border-radius;
}


.manifesto-bg {
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1519823551278-64ac92734fb1?q=80&w=2000&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  filter: saturate(0.8) brightness(0.9);
  transform: scale(calc(1.1 - (0.1 * var(--progress))));
}


.manifesto-container {
  height: calc(60vh + (40vh * var(--progress)));
  display: grid;
  grid-template-areas: "stack";
  place-items: center;
  padding: 4rem 2rem;
  box-sizing: border-box;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.4) 40%, rgba(255, 255, 255, 0) 65%);
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0;
}


.manifesto-pre,
.manifesto-text {
  grid-area: stack;
  transition: all 0.1s linear;
  opacity: clamp(0, (0.6 - var(--progress)) * 5, 1);
  transform: translateY(calc(0px - (var(--progress) * 100px)));
  filter: blur(calc((var(--progress) - 0.4) * 10px));
  z-index: 1;
}


.manifesto-pre {
  grid-area: stack;
  align-self: start;
  opacity: 1;
  transform: none;
  filter: none;
  z-index: 20;
  margin-top: 0;
  display: block;
  font-size: 0.8rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #5a5a5a;
  font-weight: 600;
}

.manifesto-text {
  opacity: clamp(0, (0.55 - var(--progress)) * 10, 1);
  transform: translateY(calc(0px - (var(--progress) * 80px)));
  filter: blur(calc((var(--progress) - 0.4) * 10px));

  z-index: 5;
}

.manifesto-text {
  opacity: clamp(0, (0.55 - var(--progress)) * 10, 1);
  transform: translateY(calc(0px - (var(--progress) * 80px)));
  filter: blur(calc((var(--progress) - 0.4) * 10px));

  z-index: 5;
}


.highlight {
  position: relative;
  display: inline-block;

  color: #967D3D;
  font-style: italic;
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  vertical-align: baseline;
}

a.highlight {
  cursor: pointer;
  transition: color 0.5s ease-out;
}

a.highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;

  background: linear-gradient(90deg,
      transparent 0%,
      rgba(150, 125, 61, 0.0) 20%,
      rgba(150, 125, 61, 0.0) 80%,
      transparent 100%);

  filter: blur(2px);
  transform: translateY(2px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  pointer-events: none;
}


a.highlight:hover {
  color: #B59A4A;
}

a.highlight:hover::after {
  opacity: 0.7;
  transform: translateY(0);

  background: linear-gradient(90deg,
      transparent 0%,
      rgba(181, 154, 74, 0.6) 30%,
      rgba(181, 154, 74, 0.6) 70%,
      transparent 100%);

  filter: blur(3px);
  height: 4px;
}

a.highlight:active {
  color: #856E33;
  transition-duration: 0.1s;
}

a.highlight:active::after {
  opacity: 0.3;
  width: 90%;
  left: 5%;
  transition-duration: 0.1s;
}

.manifesto-desc,
.manifesto-line {
  grid-area: stack;
  transition: all 0.1s linear;
  opacity: clamp(0, (var(--progress) - 0.6) * 5, 1);
  transform: translateY(calc(50px - ((var(--progress) - 0.6) * 250px)));

  z-index: 10;
}

.manifesto-desc {
  opacity: clamp(0, (var(--progress) - 0.55) * 10, 1);
  transform: translateY(calc(80px - ((var(--progress) - 0.55) * 300px)));
  max-width: 800px;
  z-index: 6;
}

.manifesto-text,
.manifesto-desc {
  grid-area: stack;
  align-self: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 3.5vw, 1.8rem);
  line-height: 1.4;
  color: #323232;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
  margin: 0;
  transition: all 0.1s linear;
}


.manifesto-line {
  grid-area: stack;
  align-self: end;
  margin-bottom: 0;
  z-index: 20;
  opacity: 0.5;
  transform: none;
  filter: none;
  transition: none;
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, #967D3D, transparent);
  /* opacity: 0.6; */
}

.private-layout,
.business-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.business-layout {
  grid-template-columns: 1.2fr 0.8fr;
}

.arch-wrapper,
.mirror-arch-wrapper {
  position: relative;
  height: 650px;
  width: 100%;
}

/* Główny Łuk */
.arch-main {
  width: 85%;
  height: 100%;
  border-radius: 400px 400px 0 0;
  position: absolute;
  right: 0;
  top: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 40px 80px -20px rgba(43, 38, 35, 0.3);
}


.arch-main-left {
  width: 85%;
  height: 100%;
  border-radius: 400px 400px 0 0;
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 40px 80px -20px rgba(43, 38, 35, 0.3);
}


.pebble-container {
  position: absolute;
  z-index: 5;
  padding: 10px;
  background: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50% 50% 50% 0;
  box-shadow: var(--shadow-float);
  transform: translate(0, 0);
  animation: pebble-float 6s ease-in-out infinite;
}


.arch-wrapper .pebble-container {
  right: 8%;
  left: auto;
  bottom: 8%;
}

.mirror-arch-wrapper .pebble-container {
  left: -10%;
  right: auto;
  bottom: -10%;
}

.pebble-float {
  width: 200px;
  height: 200px;
  border-radius: inherit;
}

@keyframes pebble-float {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, -14px);
  }
}


.corp-old-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 100px;
  opacity: 0.9;
}

.panorama-wrapper {
  width: 100%;
  height: 500px;
  border-radius: 30px;
  position: relative;
  box-shadow: var(--shadow-lux);
}

.corp-overlay-card {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: #fff;
  padding: 40px;
  width: 400px;
  border-radius: 20px;
  box-shadow: var(--shadow-lux);
  z-index: 10;
}

.corp-overlay-card::after {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid var(--bg-sand);
  border-radius: 15px;
  pointer-events: none;
}



/* MOBILE */
@media(max-width: 900px) {
  /* .section-wrapper {
    padding: 60px 0; 
  } */

  .about-layout,
  .private-layout,
  .business-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .bento-grid {
    height: 400px;
  }

  .private-layout,
  .business-layout {
    display: flex;
    flex-direction: column-reverse;
  }

  .arch-wrapper,
  .mirror-arch-wrapper {
    height: 450px;
  }

  .arch-main,
  .arch-main-left {
    width: 100%;
    border-radius: 200px 200px 0 0;
  }

  .pebble-container {
    width: 140px;
    height: 140px;
    bottom: -20px;
    left: -10px;
  }

  .pebble-container-right {
    width: 140px;
    height: 140px;
    bottom: -20px;
    right: -10px;
  }

  .pebble-float {
    width: 100%;
    height: 100%;
  }

  .corp-overlay-card {
    position: relative;
    bottom: 0;
    right: 0;
    width: 100%;
    margin-top: -50px;
  }

  h2 {
    font-size: 38px;
  }

  .mirror-arch-wrapper .pebble-container {
    left: 0;
    right: auto;
    bottom: -8%;
  }
}


.media-frame {
  position: relative !important;
  overflow: hidden;
  display: block;
}

.motto-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  box-sizing: border-box;
  background: linear-gradient(to top, rgba(26, 24, 22, 0.9) 0%, rgba(26, 24, 22, 0) 70%);
  z-index: 20;
  pointer-events: none;
}

.motto-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: #fff;
  line-height: 1.4;
  text-align: center;
  position: relative;
  margin: 0 !important;
  bottom: 10%;
}

.motto-text::before {
  content: '“';
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: var(--accent-gold);
  opacity: 0.6;
}


@media (min-width: 901px) {
  .motto-overlay {
    padding-bottom: 140px !important;
    padding-left: 40px;
    padding-right: 40px;
  }

  .motto-text {
    font-size: 25px;
    max-width: 600px;
  }

  .motto-text::before {
    font-size: 80px;
    top: -50px;
  }
}


@media (max-width: 900px) {
  .motto-overlay {
    padding-bottom: 90px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .motto-text {
    font-size: 20px;
    max-width: 100% !important;
  }

  .motto-text::before {
    font-size: 60px;
    top: -35px;
  }
}

.specs-container {
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-soft);
  max-width: 100%;
  box-shadow: var(--shadow-float);
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.spec-label {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.spec-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: #997F55;
  font-style: italic;
}

.spec-separator {
  width: 1px;
  height: 30px;
  background: rgba(0, 0, 0, 0.1);
}


@media(max-width: 900px) {
  .specs-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .spec-separator {
    width: 30px;
    height: 1px;
  }
}

@media (max-width: 768px) {
  .manifesto-container {
    padding: 2rem 1.5rem;
    width: 90%;
    max-width: 100%;
    backdrop-filter: blur(8px);
  }

  /* .manifesto-text {
    font-size: 1.8rem;
  } */
}

section.gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;

  background:
    radial-gradient(at 40% 45%, #d7c8ae 0px, transparent 60%),
    radial-gradient(at 70% 40%, #f3e4cc 0px, transparent 60%),
    radial-gradient(at 0% 5%, #b2a191 0px, transparent 60%),
    radial-gradient(at 100% 95%, #b68340 0px, transparent 60%);
  opacity: 0.5;
  mask-image: linear-gradient(to bottom,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%);
}

section.gradient>* {
  position: relative;
  z-index: 1;
}

.section__title {
  font-size: var(--big-font-size);
  color: var(--title-color);
  text-align: center;
}

.section__subtitle {
  font-size: var(--h2-font-size);
  color: var(--title-color);
  text-align: center;
  margin-bottom: 2rem;
  color: var(--sand-color);
  margin-top: -3.5rem;
}

.section__description {
  font-size: var(--normal-font-size);
  color: var(--title-color);
  text-align: center;
  margin-bottom: 2rem;
}

.text-container.shadow-box {
  background-color: var(--opacity-color-40);
  /* background: linear-gradient(135deg, #f8fafc, #e6fcf5); */
  border-radius: 1.5rem;
  padding: 2rem 2.5rem;
  margin: 2rem auto 4rem auto;
  max-width: 90vw;
  width: 100%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  line-height: 1.6;
  color: var(--white-color);
  transition: background-color 0.4s;
  box-sizing: border-box;
  font-weight: 400;
}

.shadow-box h3 {
  margin-top: 0;
  color: #333;
}

.shadow-box strong {
  font-weight: 600;
}

.shadow-box p {
  line-height: 1.6;
  /* color: #2d3436; */
  color: var(--text-color);
  margin-bottom: 1rem;
  text-align: left;
  font-weight: 300;
  font-size: var(--normal-font-size);
}

.shadow-box p+p {
  margin-top: 1rem;
}

.shadow-box hr {
  border: none;
  border-top: 1px solid #d7cfc3;
  margin: 1.5rem 0;
  opacity: 0.3;
}


main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, #FBF9F6, #ECE5DD);
}

/*=============== HEADER & NAV ===============*/
/* .header {
  position: fixed;
  width: 100%;
  top: 45px;
  left: 0;
  background-color: transparent;
  z-index: var(--z-fixed);
  transition: background-color .4s, box-shadow .4s, top .4s;
} */

.promo-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 20;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  font-family: 'Marcellus', sans-serif;
  margin-bottom: 20px;
}

.promo-content {
  display: flex;
  gap: 15px;
  align-items: center;
  text-align: center;
  animation: fadeSlide 6s infinite ease-in-out;
}

@keyframes fadeSlide {

  0%,
  45% {
    opacity: 1;
    transform: translateY(0);
  }

  50%,
  95% {
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


@media screen and (max-width: 1024px) {
  .promo-messages {
    width: 70vw;
    font-size: 0.85em;
  }

  .promo-btn {
    padding: 7px 20px;
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 768px) {
  .promo-bar {
    gap: 1rem;
    height: 40px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
  }

  .promo-messages.mobile {
    width: 95vw;
    font-size: 0.8em;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
  }

  .promo-messages.mobile .promo-message {
    position: static;
    transform: none;
    opacity: 1;
    display: inline-block;
  }

  .promo-messages.mobile .scrolling-text {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 30s linear infinite;
    animation-delay: -5s;
    will-change: transform;
    color: var(--white-color);
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0%);
    }

    100% {
      transform: translateX(-50%);
    }
  }
}

@media screen and (max-width: 480px) {
  .promo-messages.mobile {
    width: 90vw;
  }

  .promo-messages.mobile .scrolling-text {
    animation-duration: 25s;
    color: var(--white-color);
  }
}


@media screen and (max-width: 1150px) {
  /* .nav__menu {
    position: fixed;
    top: -120%;
    left: 0;
    background-color: var(--body-color);
    width: 100%;
    padding-block: 4rem;
    box-shadow: 0 8px 16px hsla(0, 0%, 0%, .1);
    border-radius: 0 0 1.5rem 1.5rem;
    transition: top .4s;
  } */

  .numbered-section {
    max-width: 90%;
    margin: 35px 30px;
    padding: 22px 28px;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .section-description {
    font-size: .9rem;
  }

  .fancy-list li {
    margin-bottom: 24px;
  }

  .number-circle {
    min-width: 32px;
    height: 32px;
    font-size: .95rem;
  }

  .fancy-list li:not(:last-child)::after {
    left: 16px;
    top: 38px;
    bottom: -18px;
    width: 2px;
  }

  .content {
    margin-left: 16px;
  }

}



.show-menu {
  top: 0;
}


.bg-header {
  background-color: var(--body-color);
  box-shadow: 0 8px 16px hsla(0, 0%, 0%, .1);
}

/* .bg-header :is(.nav__logo, .nav__toggle, .nav__theme) {
  color: var(--title-color);
} */

/* .bg-header .nav__logo img {
  filter: invert(100%);
} */

/* Active link */
.active-link::after {
  width: 60%;
}

/*=============== HOME ===============*/
.home {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.home {
  padding-top: 12rem;
}

/* .home {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20rem;

} */
.home__bg,
.home__blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;


}

.home__bg {
  object-fit: cover;
  /* object-position: center; */
  object-position: center 30%;
}

.home__blur {
  background-color: rgba(0, 0, 0, 0.10);
  backdrop-filter: none;
  transition: background-color 0.4s;

}




.home__data {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--white-color);
  gap: 1rem;
}

.home__container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 0 1rem;
  z-index: 2;
  height: 100vh;
}

/* .home__text {
  background-color: rgba(1, 68, 33, 0.7);
  padding: 1.5rem 1rem;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 1.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  color: var(--white-color);
} */

.home__text {
  background-color: rgba(1, 68, 33, 0.7);
  backdrop-filter: blur(10px);
  color: var(--white-color);
  padding: 1.5rem 1.5rem;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 1.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  color: var(--white-color);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.50);
}

.home__data {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.home__title {
  font-size: 1.8rem;
  font-weight: var(--font-bold);
  line-height: 130%;
  margin: 0;
  color: var(--white-color);
  opacity: .95;
}

.home__description {
  max-width: 800px;
  margin: 0;
  font-weight: 200;
  color: var(--white-color);
  opacity: .95;
}

.home__swiper {
  max-width: 320px;
  border-radius: 1.5rem;
  opacity: .95;
}


/* Swiper class */
.home__swiper .swiper-button-prev::after,
.home__swiper .swiper-button-next::after {
  content: '';
}

.home__swiper :is(.swiper-button-prev, .swiper-button-next) {
  color: var(--white-color);
  font-size: 1.5rem;
  background-color: var(--opacity-color-30);
  backdrop-filter: blur(24px);
  width: 2rem;
  height: 2rem;
  border-radius: .25rem;
  top: initial;
  bottom: 1.25rem;
  transition: background-color .4s;
}

.scrollIcon {
  width: 30px;
  height: 45px;
  border: 1px solid #BFBFBF;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  position: relative;
}

.scrollIcon:after {
  content: 'Scroll down';
  color: #BFBFBF;
  font-family: 'Marmelad', sans-serif;
  font-weight: 100;
  font-size: 0.65rem;
  width: 100px;
  display: block;
  position: absolute;
  bottom: 0;
  text-align: center;
  animation: scrollText 2s infinite;
}

i.scroll {
  background: #BFBFBF;
  width: 3px;
  height: 8px;
  display: block;
  border-radius: 40px;
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateY(40%);
  }

  100% {
    opacity: .7;
    transform: translateY(130%);
  }
}

@keyframes scrollText {
  0% {
    opacity: 1;
    transform: translateY(120%);
  }

  100% {
    opacity: .0;
    transform: translateY(180%);
  }
}

.home__swiper .swiper-button-prev {
  left: initial;
  right: 4rem;
}

.home__swiper .swiper-button-next {
  right: 1.25rem;
}

/*=============== BUTTON ===============*/
.button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: linear-gradient(to bottom,
      hsl(164, 100%, 35%),
      hsl(164, 100%, 21%));
  color: white;
  border-radius: 1.5rem;
  /* font-weight: 600; */
  font-size: 1.15rem;
  border: none;
  cursor: pointer;
  max-width: 600px;
  box-sizing: border-box;
}

.button-text {
  white-space: normal;
  word-break: break-word;
  line-height: 1.3;
}

.button i {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.button:hover i {
  transform: translateX(.5rem);

}

.button__opa-30 {
  background-color: rgba(1, 68, 33, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}



.button_bottom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: .5rem;
  color: var(--white-color);
  padding: 1rem 2rem;
  font-size: var(--smaller-font-size);
  border-radius: .5rem;
  transition: background-color .4s;
}


.button_bottom i {
  font-weight: initial;
  font-size: .9rem;
  transition: transform .4s;
}

.button_bottom:hover i {
  transform: translateY(.5rem);
  color: var(--white-color);
}

.button_bottom:hover,
.button_bottom:active,
.button_bottom:focus {
  color: var(--white-color) !important;
}




/*=============== ABOUT US ===============*/
.about-section .content-column .text p {
  margin-bottom: 1em;
}

.about-section .content-column .text p strong {
  color: var(--sand-color);
  font-weight: 700;
}



.custom-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.custom-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: 0;
  margin-right: 0;
}

.custom-col-6 {
  position: relative;
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

.about-section .content-column {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 40px;
}

.about-section .image-column {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  .custom-col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .about-section .image-column {
    margin-top: 50px;
    padding-top: 0;
    margin-bottom: 50px;
  }

  .about-section .content-column {
    padding-right: 30px;
    margin-bottom: 0;
  }

  .about-section .image-column {
    padding-left: 30px;
  }

  .about-section .content-column .inner-column {
    padding-top: 50px;
    padding-right: 15px;
  }

  .about-section .image-column .inner-column {
    margin-left: 15px;
  }
}



.about-section {
  position: relative;
  padding: 0 0 5rem 0;
  overflow: hidden;
}

.about-section .content-column .inner-column {
  position: relative;
  padding-right: 0;
  padding-top: 50px;
}

.about-section .content-column .text {
  position: relative;
  /* color:#777777; */
  font-size: 15px;
  line-height: 2em;
  margin-bottom: 40px;
  text-align: justify;
}

.about-section .content-column .email {
  position: relative;
  color: #252525;
  font-weight: 700;
  margin-bottom: 50px;
}

.about-section .image-column .inner-column {
  position: relative;
  padding: 40px 40px 0px 0px;
  margin-left: 0px;
}

.about-section .image-column .inner-column:after {
  position: absolute;
  content: '';
  right: 0px;
  top: 0px;
  left: 40px;
  bottom: 100px;
  z-index: -1;
  border: 2px solid var(--sand-color);
  border-radius: 1.5rem;
}

.about-section .image-column .inner-column .image {
  position: relative;
}

.about-section .image-column .inner-column .image:before {
  position: absolute;
  content: '';
  left: 0px;
  bottom: -50px;
  width: 299px;
  height: 299px;
  background: url(img/pattern-2.png) no-repeat;
}

.about-section .image-column .inner-column .image img {
  position: relative;
  width: 100%;
  display: block;
  border-radius: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.about-section .image-column .inner-column .image .overlay-box {
  position: absolute;
  left: 40px;
  bottom: 48px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box {
  position: relative;
  color: var(--white-color);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4em;
  padding-left: 125px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);


}

.about-section .image-column .inner-column .image .overlay-box .year-box .number {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 110px;
  height: 110px;
  color: var(--sand-color);
  font-size: 68px;
  font-weight: 700;
  line-height: 105px;
  text-align: center;
  background-color: var(--white-color);
  border: 1px solid var(--sand-color);
  opacity: .9;
  border-radius: 1.5rem;
}

.about-section .btn-style-three:before {
  position: absolute;
  content: '';
  left: 10px;
  top: 10px;
  z-index: -1;
  right: -10px;
  bottom: -10px;
  background: url(../img/pattern-1.jpg) repeat;
  border-radius: 1.5rem;
}

.about-section .btn-style-three:hover {
  color: #ffffff;
  background: var(--sand-color);

}

.about-section .btn-style-three {
  position: relative;
  line-height: 24px;
  color: #252525;
  font-size: 15px;
  font-weight: 700;
  background: none;
  display: inline-block;
  padding: 11px 40px;
  background-color: #ffffff;
  text-transform: capitalize;
  border: 2px solid var(--sand-color);
  font-family: 'Marmelad', serif;
  border-radius: 1.5rem;
}

.sec-title2 {
  color: #fff;
}

.sec-title {
  position: relative;
  padding-bottom: 40px;
}

.sec-title .title {
  position: relative;
  color: var(--sand-color);
  font-size: var(--h3-font-size);
  font-weight: 700;
  padding-right: 50px;
  margin-bottom: 15px;
  display: inline-block;
  text-transform: uppercase;
}

.sec-title .title:before {
  position: absolute;
  content: '';
  right: 0px;
  bottom: 7px;
  width: 40px;
  height: 1px;
  background-color: #bbbbbb;
}


/*=============== O NAS KAFELKI TESTOWE ===============*/

.content-grid {
  max-width: 1400px;
  margin: 40px auto 20px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  z-index: 2;
  position: relative;
}

.info-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 35px;
  text-align: left;
  transition: all 0.3s ease-out;
  overflow: hidden;
  position: relative;
  color: #2C3E50;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px 0 rgba(31, 38, 135, 0.2);
}


.info-card i {
  font-size: 3em;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.3s ease;
  text-align: center;
}

.info-card:hover i {
  transform: scale(1.1);
}

.info-card:nth-child(1) i {
  color: #A5D6A7;
  text-shadow: 0 0 10px rgba(165, 214, 167, 0.8);
}

.info-card:nth-child(1) h2 {
  color: #A0522D;
}

.info-card:nth-child(1) li::before {
  color: #A5D6A7;
}

.info-card:nth-child(2) i {
  color: #E0BBE4;
  text-shadow: 0 0 10px rgba(224, 187, 228, 0.8);
}

.info-card:nth-child(2) h2 {
  color: #A0522D;
}

.info-card:nth-child(2) li::before {
  color: #E0BBE4;
}

.info-card:nth-child(3) i {
  color: #A7C7E7;
  text-shadow: 0 0 10px rgba(167, 199, 231, 0.8);
}

.info-card:nth-child(3) h2 {
  color: #A0522D;
}

.info-card:nth-child(3) li::before {
  color: #A7C7E7;
}

.info-card h2 {
  font-family: 'Marmelad', sans-serif;
  margin: 10px 0 15px 0;
  color: #A0522D;
  font-weight: 700;
  font-size: 1.6em;
  letter-spacing: 0.5px;
  text-align: center;
}

.info-card p {
  line-height: 1.7;
  margin-bottom: 25px;
  color: #5B4F4F;
  font-weight: 400;
  text-align: center;
}

.info-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 0;
  border-top: 1px solid #D2B48C;
  padding-top: 15px;
}

.info-card li {
  margin: 12px 0;
  padding-left: 30px;
  position: relative;
  color: #5B4F4F;
  line-height: 1.6;
  font-weight: 400;
  transition: color 0.3s ease;
}

.info-card li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #A0522D;
  font-size: 1.1em;
  top: 0;
  transition: transform 0.3s ease;
}

.info-card li:hover {
  color: #2C3E50;
}


@media (max-width: 1024px) {
  .content-grid {
    margin: 35px auto 20px auto;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
  }

  .info-card {
    padding: 30px;
    border-radius: 1.25rem;
  }

  .info-card i {
    font-size: 2.5em;
  }

  .info-card li::before {
    font-size: 1em;
  }
}

@media (max-width: 768px) {


  .content-grid {
    margin: 25px auto 15px auto;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }

  .info-card {
    padding: 25px;
    margin-bottom: 10px;
    border-radius: 1rem;
  }

  .info-card h2 {
    font-size: 1.4em;
  }

  .info-card p {
    font-size: 0.95em;
  }

  .info-card li {
    margin: 10px 0;
    padding-left: 25px;
    font-size: 0.95em;
  }

  .info-card i {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .info-card li::before {
    font-size: 1em;
  }

  .info-card:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  .content-grid {
    margin: 20px auto 10px auto;
    gap: 15px;
    padding: 0 5px;
  }

  .info-card {
    padding: 20px;
    border-radius: 0.75rem;
  }

  .info-card h2 {
    font-size: 1.3em;
    margin: 8px 0 12px 0;
  }

  .info-card p {
    margin-bottom: 20px;
    font-size: 0.9em;
    line-height: 1.5;
  }

  .info-card li {
    margin: 8px 0;
    padding-left: 22px;
    font-size: 0.9em;
  }

  .info-card li::before {
    font-size: 0.95em;
    left: -2px;
  }

  .info-card i {
    font-size: 2em;
    margin-bottom: 12px;
  }

}

@media (max-width: 320px) {
  .content-grid {
    margin: 20px auto 10px auto;
  }

  .info-card {
    padding: 15px;
    border-radius: 0.5rem;
  }

  .info-card h2 {
    font-size: 1.2em;
  }

  .info-card p {
    font-size: 0.85em;
  }

  .info-card li {
    padding-left: 20px;
    font-size: 0.85em;
  }

  .info-card li::before {
    font-size: 0.9em;
  }
}

/*=============== SWIPER ===============*/

.main-container {
  display: grid;
  grid-template-columns: 35% 40%;
  height: 70vh;
  /* background: radial-gradient(at 40% 45%, #f2f2f2 0px, transparent 50%),
    radial-gradient(at 70% 40%, #d9b8ad 0px, transparent 50%),
    radial-gradient(at 0% 5%, #92aebb 0px, transparent 50%),
    radial-gradient(at 100% 95%, #b3bee3 0px, transparent 50%) #f2f2f2; */
  overflow: hidden;

  justify-content: center;
  align-items: center;
}

.swiper {
  width: 340px;
  aspect-ratio: 2/3;
  padding: 30px 0;
  justify-self: end;
}

.swiper-slide {
  position: relative;
  border-radius: 10px;
  box-shadow: 3px 8px 15px rgba(51, 55, 55, 0.8);
  user-select: none;
}

.swiper-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.context {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: rgba(51, 55, 55, 1);
  justify-self: start;
  padding-left: 5px;
}

.context h1 {
  font-family: "Tilt Neon", sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 5rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -2px !important;
  margin-bottom: 60px;
  color: #0b158d;
}

.context h1,
.list {
  width: 450px;
  max-width: 100%;
}

.list-item {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.icon-box {
  width: var(--x);
  height: var(--x);
  border-radius: 50%;
  background-color: rgba(11, 21, 141, 0.1);
  border: 1px solid rgba(11, 21, 141, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, border-color 0.3s ease;
  margin-right: calc(var(--m) + 15px);
}

.icon-box img {
  width: var(--icon-size);
  height: var(--icon-size);
  display: block;
  filter: invert(1) grayscale(100%) brightness(100%);
  opacity: 0.8;
}


.list-item.active .icon-box {
  background-color: var(--sand-color);
  border-color: var(--sand-color);
}

.list-item .icon-box {
  transform: translateX(-100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.list-item.active .icon-box {
  opacity: 1;
  transform: translateX(0%);

}

.list-item p {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.2;
  opacity: 0.4;
  margin-left: calc(-1 * (var(--x) * var(--m)));
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.list-item.active p {
  opacity: 1;
  margin-left: 0;
}

@media (max-width: 1200px) {
  :root {
    --x: 20px;
    --icon-size: 1rem;
    --m: 5px;
  }


  .main-container {
    grid-template-columns: 40% 45%;
  }

  .swiper {
    width: 300px;
    justify-self: end;
  }

  .context {
    justify-self: start;
    padding-left: 5px;
  }

  :root {
    --x: 20px;
    --m: 5px;
  }

  .icon-box {
    margin-right: calc(var(--m) + 10px);
  }

  .icon-box i {
    font-size: 1rem;
  }

  .context h1,
  .list {
    width: 380px;
  }

  .context h1 {
    margin-bottom: 40px;
  }

  .list-item {
    margin-bottom: 16px;
  }
}

@media (max-width: 950px) {
  .main-container {
    grid-template-columns: 45% 45%;
  }

  .swiper {
    width: 250px;
    margin-right: 0;
  }
}


@media (max-width: 770px) {
  :root {
    --icon-size: 0.9rem;
  }

  .main-container {
    grid-template-columns: 100%;
    grid-template-rows: 50% 50%;
    grid-template-areas:
      "slider"
      "context";
    place-items: center;
    justify-content: center;
    align-content: center;
  }

  .swiper {
    justify-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 250px;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .slider {
    grid-area: slider;
    width: 100%;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .context {
    grid-area: context;
    justify-self: center;
    align-items: center;
    padding-left: 0;
    margin-top: 0 !important;
  }

  .context h1,
  .list {
    width: 100%;
    white-space: normal;
    text-overflow: clip;
  }

  .list-item p {
    font-size: 1.2rem;
    opacity: 1;
    white-space: normal;
    text-overflow: clip;
  }

  .list {
    padding-left: 10%;
    padding-right: 10%;
  }

  .swiper-slide {
    box-shadow: none;
  }
}

@media (max-width: 480px) {
  .swiper {
    width: 220px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 0 !important;
  }

  .list-item p {
    font-size: 1rem;
  }

  .context h1 {
    text-align: center;
  }
}



/*=============== GALLERY ===============*/
.gallery__options {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 100vh;
  transition: .25s;
  margin: 0;
}

.gallery__options .credit {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: inherit;
}

.steam-corner {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -160px;
  width: 180px;
  height: 135px;
  z-index: 1;
  pointer-events: none;
}

.steam-corner svg .bench {
  opacity: 0;

}

.steam-corner svg .steam {
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.9)) blur(0.5px);
  opacity: 0;
  animation: steamUp 8s infinite cubic-bezier(0.5, 0, 0.5, 1);
  will-change: transform, opacity;

}


.steam-corner svg .steam:nth-child(4) {
  animation-delay: 0s;
  animation-duration: 8s;
}

.steam-corner svg .steam:nth-child(5) {
  animation-delay: 1.5s;
  animation-duration: 8.3s;
}

.steam-corner svg .steam:nth-child(6) {
  animation-delay: 3s;
  animation-duration: 7.8s;
}

.steam-corner svg .steam:nth-child(7) {
  animation-delay: 4.5s;
  animation-duration: 8.2s;
}

@keyframes steamUp {
  0% {
    transform: translateY(0px) translateX(0px) scaleY(1);
    opacity: 0;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.9)) blur(0.5px);
  }

  50% {
    opacity: 0.3;
    transform: translateY(-25px) translateX(0.3px) scaleY(0.95);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.95)) blur(1px);
  }

  100% {
    transform: translateY(-50px) translateX(0px) scaleY(0.8);
    opacity: 0;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.9)) blur(0.5px);
  }
}

.gallery__options .options {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  min-width: 800px;
  max-width: 1200px;
  width: calc(100% - 60px);
  height: 50vh;
  max-height: 50vh;
  margin: 0 auto;
  padding: 0 10px;
  border-radius: 40px;
}


@media screen and (max-width: 768px) {
  .gallery__options {
    flex-direction: column;
    height: auto;
    justify-content: flex-start;
    align-items: stretch;
  }

  .gallery__options .options {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex-shrink: 0;
    min-width: 280px;
    max-width: 100%;
    width: 100%;
    height: auto;
    gap: 3px;
    padding: 8px;
  }

  .gallery__options .options .option {
    width: 100%;
    box-sizing: border-box;
    min-width: 100%;
    flex: 0 0 auto;
    margin: 0;
    border-radius: 20px;
    height: 35px;
    padding: 4px 8px;
    background-size: cover;
    background-position: center center;
    pointer-events: auto;
    z-index: 2;
    will-change: height, background-size;
  }

  .gallery__options .options .option.active {
    height: 25px;
    padding: 4px 12px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    pointer-events: auto;
    z-index: 3;
    transition: height 0.8s cubic-bezier(0.05, 0.61, 0.41, 0.95),
      background-size 0.8s ease,
      transform 0.6s ease,
      padding 0.8s ease;
  }

  .gallery__options .options .option .label {
    height: 25px;
  }

  .gallery__options .options .option .label .icon {
    min-width: 20px;
    max-width: 20px;
    height: 20px;
    font-size: 0.7rem;
  }

  .gallery__options .options .option .label .info .main {
    font-size: 0.6rem;
  }

  .gallery__options .options .option .label .info .sub {
    font-size: 8px;
  }

  .gallery__options .options .option:not(.active) .label {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    transition: top 0.5s ease, transform 0.5s ease;
  }

  .gallery__options .options .option.active .label {
    bottom: 4px;
    top: auto;
    transform: none;
    transition: bottom 0.5s ease, top 0.5s ease, transform 0.5s ease;
  }
}


@media screen and (max-width: 480px) {
  .gallery__options .options {
    padding: 6px;
    border-radius: 15px;
    gap: 2px;
  }

  .gallery__options .options .option {
    height: 30px;
    padding: 3px 6px;
  }

  .gallery__options .options .option.active {
    height: 21px;
    padding: 3px 10px;
    transition: height 0.8s cubic-bezier(0.05, 0.61, 0.41, 0.95),
      background-size 0.8s ease,
      transform 0.6s ease,
      padding 0.8s ease;
  }

  .gallery__options .options .option .label {
    height: 22px;
  }

  .gallery__options .options .option .label .icon {
    min-width: 18px;
    max-width: 18px;
    height: 18px;
    font-size: 0.65rem;
  }

  .gallery__options .options .option .label .info .main {
    font-size: 0.55rem;
  }

  .gallery__options .options .option .label .info .sub {
    font-size: 7px;
  }

  .gallery__options .options .option.active .label {
    bottom: 3px;
  }
}

.gallery__options .options .option {
  position: relative;
  overflow: hidden;
  border-radius: 30px !important;
  min-width: 90px;
  flex-basis: 90px;
  margin: 10px 5px;
  background: var(--optionBackground, var(--defaultBackground, #E6E9ED));
  background-size: cover;
  background-position: center center;
  cursor: pointer;
  transition: .5s cubic-bezier(0.05, 0.61, 0.41, 0.95),
    background-size .5s ease,
    margin .5s ease,
    flex-basis .5s ease,
    height 0.8s ease;
  flex: 1 1 90px;
  pointer-events: auto;
  z-index: 1;
}

.gallery__options .options .option:nth-child(1) {
  --defaultBackground: #ED5565;
}

.gallery__options .options .option:nth-child(2) {
  --defaultBackground: #FC6E51;
}

.gallery__options .options .option:nth-child(3) {
  --defaultBackground: #FFCE54;
}

.gallery__options .options .option:nth-child(4) {
  --defaultBackground: #2ECC71;
}

.gallery__options .options .option:nth-child(5) {
  --defaultBackground: #5D9CEC;
}

.gallery__options .options .option.active {
  flex-grow: 10000;
  flex-basis: 1000px;
  transform: scale(1);
  max-width: 1000px;
  margin: 10px 0;
  border-radius: 40px !important;
  background-size: cover;
  background-position: center center;
}

.gallery__options .options .option.active .shadow {
  box-shadow: inset 0 -120px 120px -120px black, inset 0 -120px 120px -100px black;
}

.gallery__options .options .option.active .label {
  bottom: 20px;
  left: 20px;
  right: auto;
  width: auto;
  justify-content: flex-start;
}

.gallery__options .options .option.active .label .info>div {
  left: 0px;
  opacity: 1;
  transform: translateX(0);
}

.gallery__options.options .option:not(.active) {
  flex-grow: 1;
  flex-basis: 90px;
  border-radius: 30px !important;
}

.gallery__options .options .option:not(.active) .shadow {
  bottom: -40px;
  box-shadow: inset 0 -120px 0px -120px black, inset 0 -120px 0px -100px black;
}

.gallery__options .options .option:not(.active) .label {
  bottom: 20px;
  left: 0;
  right: 0;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.gallery__options .option:not(.active) .label .info {
  display: none !important;
  max-width: 0;
  margin-left: 0;
  visibility: hidden;
  opacity: 0;
}

.gallery__options .options .option:not(.active) .label .info>div {
  left: 0;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .5s ease-out, transform .5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.gallery__options .options .option .shadow {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 120px;
  transition: .5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.gallery__options .options .option .label {
  display: flex;
  position: absolute;
  right: 0px;
  height: 40px;
  transition: .5s cubic-bezier(0.05, 0.61, 0.41, 0.95),
    bottom .5s ease,
    left .5s ease,
    right .5s ease,
    width .5s ease,
    justify-content .5s ease,
    top .5s ease,
    transform .5s ease;
}

.gallery__options .options .option .label .icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: white;
  color: var(--defaultBackground);
  transition: .5s ease;
  opacity: 0.8;
}

.gallery__options .options .option .label .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 10px;
  color: white;
  white-space: pre;
  max-width: 250px;
  overflow: hidden;
  visibility: visible;
  opacity: 1;
  transition: .5s cubic-bezier(0.05, 0.61, 0.41, 0.95),
    max-width .5s ease,
    opacity .5s ease-out,
    transform .5s ease-out,
    visibility .5s ease;
}

.gallery__options .options .option .label .info>div {
  position: relative;
  transition: .5s cubic-bezier(0.05, 0.61, 0.41, 0.95), opacity .5s ease-out, transform .5s ease-out;
}

.gallery__options .options .option .label .info .main {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.gallery__options .options .option .label .info .sub {
  transition-delay: .1s;
  font-weight: 100;
  font-size: 15px;
}


/*=============== JOIN ===============*/
.join__container {
  row-gap: 3rem;
  padding-bottom: 3rem;
}

.join__data {
  text-align: center;
}

.join__data .section__title {
  margin-bottom: 1rem;
}

.join__description {
  margin-bottom: 2rem;
}

.join__description {
  font-size: var(--h2-font-size);
  color: var(--sand-color);
}

.join__form {
  display: grid;
  row-gap: 1rem;
}

.join__input {
  width: 100%;
  background-color: var(--container-color);
  color: var(--text-color);
  padding: 1.5rem 1rem;
  border-radius: .5rem;
  transition: background-color .4s;
}

.join__button {
  padding-block: 1.25rem;
  cursor: pointer;
}

.join__img {
  width: 300px;
  border-radius: 1.5rem;
  justify-self: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.carousel-video-box {
  max-width: 1100px;
  margin: 20px auto;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}


.carousel-video-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
}

.carousel-video-header-row h2 {
  font-size: var(--h2-font-size);
}

.counter {
  font-size: 1.5em;
  font-weight: 700;
  color: var(--sand-color);
  margin-right: 5px;
  letter-spacing: -1px;
}

.sortowanie select {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1.5px solid #cacaca;
  font-size: 0.9em;
  color: #232323;
  /* box-shadow: 0 1px 3px #007bff25; */
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 160px;

}

/* .sortowanie select:focus {
  border: sold 1 px red;
  box-shadow: 0 0 0 3px #38383833;
} */

.opinion {
  padding: 20px;
  display: grid;
  grid-template-columns: 200px 1fr 100px;
  gap: 20px;
  align-items: start;
}

.col1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.gwiazdki-big {
  color: var(--sand-color);
  font-size: 1.6em;
  line-height: 1;
}

.autor {
  font-weight: 700;
  font-size: 1.1em;
  margin-top: 4px;
}

.zweryfikowany {
  margin-top: 6px;
  color: #519e51;
  font-size: 0.7em;
  display: flex;
  align-items: center;
  gap: 5px;
}

.zweryfikowany svg {
  width: 1em;
  height: 1em;
}

.col2 {
  text-align: left;
}

.naglowek {
  font-weight: 700;
  font-size: 1.17em;
  margin-bottom: 6px;
  color: #212121;
}

.opinion-tresc {
  font-size: 1.05em;
  color: #222;
  margin: 0;
}

.col3 {
  text-align: right;
  color: #888;
  font-size: 0.8em;
  font-weight: var(--font-semi-bold);
  white-space: nowrap;
}


/* --- IKONY SOCIAL MEDIA W MENU --- */
.social-icons-menu-wrapper {
  margin-top: 30px;
  padding-right: 40px;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.social-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(74, 64, 58, 0.3);
  border-radius: 50%;
  color: #4a403a;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-circle i {
  font-size: 16px;
}

.social-circle:hover {
  border-color: #4a403a;
  background-color: #4a403a;
  color: #fff;
  transform: translateY(-3px);
}


/* ==================== FOOTER ==================== */


/* 
.footer__logo span:hover {
  background-position: 100%; 
  text-shadow: 0 0 12px rgba(255,255,255,0.9);
} */



/* --- CONTENT w stopce --- */

::-webkit-scrollbar {
  width: 16px;
}

::-webkit-scrollbar-track {
  background: rgba(176, 125, 36, 0.03);
}

::-webkit-scrollbar-thumb {
  background-color: rgba(138, 109, 59, 0.5);
  border: 6px solid transparent;
  background-clip: content-box;
  border-radius: 20px;
  transition: background-color 0.3s ease, border-width 0.3s ease;
}


::-webkit-scrollbar-thumb:hover {
  background-color: #f88800 !important;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5) !important;
}

/*=============== SCROLL UP ===============*/
/* .scrollup {
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background-color: var(--body-color);
  box-shadow: 0 8px 16px hsla(0, 0%, 0%, .15);
  color: var(--title-color);
  display: inline-flex;
  padding: 6px;
  font-size: 1.25rem;
  border-radius: .25rem;
  z-index: var(--z-tooltip);
  transition: bottom .4s, transform .4s, background-color .4s;
} */

.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background-color: var(--body-color);
  box-shadow: 0 8px 16px hsla(0, 0%, 0%, .1);
  color: var(--title-color);
  display: inline-flex;
  padding: 6px;
  font-size: 1.25rem;
  border-radius: .25rem;
  z-index: var(--z-tooltip);
  transition: bottom .4s, transform .4s, background-color .4s;
}

.scrollup:hover {
  transform: translateY(-.5rem);
}

/* #scroll-up {
  z-index: 999;
  transition: opacity 0.3s ease;
}

.modal[style*="display: flex"] + #scroll-up {
  display: none !important; 
} */


/* Show Scroll Up */
.show-scroll {
  bottom: 3rem;
}

.modal-content.active .scrollup {
  display: none;
}


/* @media screen and (min-width: 375px) {
  .container {
    margin-inline: 1rem;
  }

  .home {
    height: auto;
    padding: 7rem 4rem;

  }
} */



.hero-container {
  width: 100%;
  height: 100dvh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 0;
  margin: 0;
  background-color: var(--hero-bg-color, #E6DBC6);
  position: sticky;
  top: 0;
  z-index: 0;
  height: 100vh;
  height: 100svh;
  width: 100%;
  margin-bottom: 0;
}

#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  background-color: var(--hero-bg-color, #E6DBC6);
  pointer-events: none;
}

#background-video.loaded {
  opacity: 1;
}

/* .video-overlay {
  background: radial-gradient(circle,
      rgba(43, 38, 35, 0.2) 0%,
      rgba(43, 38, 35, 0.7) 100%
    );
} */

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}

/* .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;


  background: radial-gradient(circle at center,
      rgba(60, 50, 40, 0.4) 0%,

      rgba(40, 30, 20, 0.85) 100%

    );

} */

/* .main-header {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  width: calc(100% - 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  padding-bottom: 15px;
} */

.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  box-sizing: border-box;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

/* .main-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
} */

.logo a {
  display: inline-block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo img {
  display: block;
  width: 80px;
  max-width: 100%;
  height: auto;
  user-select: none;
  margin-top: .5rem;
}

.header-right-section {
  display: flex;
  align-items: center;
  gap: 25px;
}

.social-media a {
  display: inline-block;
  color: #fff;
  font-size: 1rem;
  margin-left: 10px;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

#lang-toggle {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  color: #fff;
  border-radius: 30px;
  padding: 5px 10px;
  font-family: 'Marmelad', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  width: 50px;
  text-align: center;
}

body.nav-active #lang-toggle {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* --- KONTENER: Szklana Kapsułka --- */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  border-radius: 30px;
  padding: 4px;
}

/* --- PRZYCISKI (Opcje) --- */
.lang-btn {
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: 'Marmelad', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 14px;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);

  will-change: transform, background, box-shadow, border-color;
}

.lang-btn.active {
  color: #ffffff;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.15),
    inset 0 0 5px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);

  transform: scale(1);
}

/* --- HOVER NA NIEAKTYWNYM --- */
.lang-btn:not(.active):hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 5;
  text-align: center;
  transform: translateY(0%);
  padding: 0 20px;
  text-transform: capitalize;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  /* font-family: 'Marcellus', serif; */
  font-family: var(--font-head);
}

/* .headings {
  margin-bottom: 10px;
} */

.hero-content .overline {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d2b480;
  margin-bottom: 5px;
  opacity: 0.8;
}

.hero-content h1 {
  font-size: 2.4rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  opacity: 0.8;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  opacity: 0;
  /* animation: fadeInUps 1s 0.4s forwards; */
  color: #ffffff;
  font-feature-settings: "kern" 1;
  -webkit-font-smoothing: antialiased;
}

.hero-content h2 {
  font-size: 1.7rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
  /* text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2); */
  opacity: 0.9;
  /* background: linear-gradient(to right, #E8DCC0, #E8DCC0); */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* text-shadow:
    0 0 1px rgba(255, 195, 117, 0.7),
    0 0 3px rgba(255, 202, 111, 0.674); */
  opacity: 0;
  /* animation: fadeInUps 1s 0.5s forwards; */
  color: #f7dfaf;

}

.hero-content .description {
  font-family: 'Playfair Display', sans-serif;
  font-weight: 100 !important;
  font-size: 16px;
  line-height: 1.5;
  max-width: 350px !important;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 50px;
  /* opacity: 0.9; */
  text-transform: none;
  letter-spacing: 1px;
  font-style: normal !important;
  margin-top: .5rem;
}


.split-text-anim {
  font-family: sans-serif;
  font-size: 24px;
  line-height: 1.15;
  perspective: 600px;
  backface-visibility: hidden;
  margin: 0;
}

.split-text-anim span {
  display: inline-block;
  vertical-align: middle;
}


.cta-wrapper {
  opacity: 0;
  display: inline-block;
  will-change: opacity, transform, filter;
}



.cta-button {
  position: relative;
  display: inline-block;
  padding: 18px 36px;
  background: transparent;
  border: none;
  font-family: 'Marmelad', sans-serif !important;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  color: #fff;
  text-decoration: none;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateZ(0);
  z-index: 1;
}


.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.1),
    inset 0 0 20px rgba(255, 255, 255, 0.05);
  z-index: -1;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}


.cta-button:hover {
  transform: translateY(-3px);
}

.cta-button:hover::before {
  transform: scale(1.04);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.18),
    inset 0 0 20px rgba(255, 255, 255, 0.18);
}



@keyframes fadeInUps {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero-content h1 {
  animation: fadeInUps 1.8s 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-content h2 {
  animation: fadeInUps 1.8s 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* .hero-content .description  {
  animation: fadeInUps 1.8s 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
} */

.cta-wrapper {
  /*  animation: fadeInUps 2.5s 2.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;*/
  animation: adeInUp 2.5s 3.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-footer-bar {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: auto;
  transition: opacity 0.1s linear;
  will-change: transform, opacity;
  padding-bottom: env(safe-area-inset-bottom, 20px);
}

.scroll-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  white-space: nowrap;
  /* transition: opacity 0.5s ease; */
  animation: pulseText 3s infinite ease-in-out;
  font-family: 'Marmelad', sans-serif;
  /* transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out; */
}

@keyframes pulseText {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

.scroll-line-container {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}


.scroll-line-active {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(247, 223, 175, 0) 0%,
      rgba(247, 223, 175, 0.5) 40%,
      #ffffff 50%,
      rgba(247, 223, 175, 0.5) 60%,
      rgba(247, 223, 175, 0) 100%);
  filter: blur(0.5px);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  animation: lightBeam 2.5s infinite;
}


@keyframes lightBeam {

  0% {
    transform: translateY(-100%);
  }

  10% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

/* --- FIX WIDEO (Szare tło) --- */
#background-video {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-color: #000;
}

#background-video.loaded {
  opacity: 1;
}

/* .logo a:hover {
  transform: scale(1.07);
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.4));
} */

.social-media a:hover {
  transform: scale(1.2);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.hero-content.translating {
  opacity: 0;
  transform: translateY(10px);
  animation-play-state: paused !important;
}

.hero-content.translating .scroll-text {
  animation: none !important;
}

.hero-stats-bar.translating {
  opacity: 0 !important;
  /* transform: translateY(10px); */
}

#lang-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

#lang-toggle.active {
  background-color: #fff;
  color: #000;
}


.mouse-down {
  position: absolute !important;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
  z-index: 10;
  width: 22px;
  height: 38px;
  /* border: 1.3px solid rgba(255, 255, 255, 0.3); */
  border: 1.2px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  opacity: 0.7;
}

.bullet {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 5px;
  background: #fff;
  border-radius: 4px;
  animation: scrollFlow 2s infinite;
}

@keyframes scrollFlow {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  75% {
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(18px);
    opacity: 0;
  }
}



/* PASTYLKA NAWIGACYJNA */

#smartNav {
  --sn-paper-bg: #fdfbf7;
  --sn-gold-dark: #8A6D3B;
  --sn-gold-matte: #9e7e4b;
  --sn-text-main: #4a403a;
  --sn-paper-texture: url('../img/cream-paper-2.png');
  font-family: 'Lora', serif;
  font-size: 16px;
  line-height: normal;
  text-align: left;
  box-sizing: border-box;
}

#smartNav *,
#smartNav *::before,
#smartNav *::after {
  box-sizing: border-box;
}

/* Główny kontener */
#smartNav.tactile-nav {
  position: fixed;
  top: 30px;
  left: 50%;
  width: max-content;
  max-width: 90vw;
  transform: translate(-50%, -140%) scale(0.92);
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px 12px 6px;
  border-radius: 64px;
  box-shadow:
    0 4px 6px -1px rgba(60, 45, 30, 0.12),
    0 10px 15px -3px rgba(60, 45, 30, 0.20),
    0 25px 50px -12px rgba(60, 45, 30, 0.35);
  z-index: 99999;
  transition: transform 0.5s cubic-bezier(0.5, 0, 0.2, 1), opacity 0.3s ease-in;
}

/* Stan widoczny */
#smartNav.tactile-nav.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
  transition:
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.5s ease;
}

/* --- STYL "DUCHA" W SEKCJI HERO --- */
/* Gdy pastylka jest na samej górze, nadajemy jej lżejszy wygląd */
/* #smartNav.tactile-nav.is-at-top {
  box-shadow:
    0 4px 6px -1px rgba(60, 45, 30, 0.05),
    0 10px 15px -3px rgba(60, 45, 30, 0.10);

} */

/* #smartNav.tactile-nav.is-at-top .nav-texture {
  opacity: 0.6;
  border-color: rgba(138, 109, 59, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
} */

/* #smartNav.tactile-nav.is-at-top .btn-inset-gold {
  box-shadow:
    0 5px 10px -2px rgba(60, 45, 30, 0.08),
    inset 0 2px 0 rgba(255, 255, 255, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
} */

/* --- BLOKADA SCROLLA STRONY --- */
body.lock-scroll {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
}


/* --- PANEL REGULAMINU --- */
#etiquettePanel.active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 9999;
  -webkit-overflow-scrolling: touch;
}

#smartNav.force-hide {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease, visibility 0.3s;
}

/* Tło papierowe */
#smartNav .nav-texture {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  background-color: var(--sn-paper-bg, #fdfbf7);
  background-image: var(--sn-paper-texture);
  background-blend-mode: multiply;
  box-shadow:
    inset 0 4px 6px rgba(255, 255, 255, 0.95),
    inset 0 -4px 8px rgba(138, 109, 59, 0.12),
    0 0 0 1px rgba(138, 109, 59, 0.25);
}

/* Lista */
#smartNav .nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
  flex: 1;
}

#smartNav .nav-item {
  position: relative;
  margin: 0;
  padding: 0;
}

#smartNav .nav-item a {
  text-decoration: none;
  font-family: var(--font-head);
  color: var(--sn-text-main);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 6px;
  transition: color 0.3s ease;
  white-space: nowrap;

}

/* Linki */
#smartNav .nav-item a,
#smartNav .dropdown-toggle {
  text-decoration: none !important;
  font-family: var(--font-head);
  color: var(--sn-text-main);
  font-size: 15px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  padding: 8px 4px;
}

#smartNav .nav-item a:hover,
#smartNav .dropdown-toggle:hover {
  color: var(--sn-gold-dark);
}

#smartNav .chevron {
  font-size: 10px;
  transition: transform 0.3s;
  opacity: 0.6;
}

#smartNav .nav-item:hover .chevron {
  transform: rotate(180deg);
}

/* Submenu */
#smartNav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 170px;
  background: var(--sn-paper-bg);
  border-radius: 12px;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 15px 40px rgba(60, 45, 30, 0.15);
  border: 1px solid rgba(138, 109, 59, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 100000;
}

#smartNav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

#smartNav .dropdown-menu li {
  list-style: none !important;
  margin: 0;
  padding: 0;
  display: block;
}

#smartNav .dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  color: var(--sn-text-main);
  text-align: center;
  border-bottom: 1px solid rgba(138, 109, 59, 0.08);
  background: transparent;
}

#smartNav .dropdown-menu li:last-child a {
  border-bottom: none;
}

#smartNav .dropdown-menu li a:hover {
  background: rgba(138, 109, 59, 0.08);
  color: var(--sn-gold-dark);
}

#smartNav .shop-return {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 10px;
  border-radius: 50%;
  background: rgba(138, 109, 59, 0.05);
  box-shadow:
    inset 0 2px 4px rgba(60, 45, 30, 0.08),
    0 1px 1px rgba(255, 255, 255, 0.8);
  margin-right: 10px;
  transition: background 0.3s ease;
}

#smartNav .shop-return:hover {
  background: rgba(138, 109, 59, 0.1);
  transform: none !important;
}

#smartNav .shop-return .pill-icon-custom {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block;
}

#smartNav .shop-return:hover .pill-icon-custom {
  transform: scale(1.08) !important;
  color: #b48811 !important;
}

#smartNav .shop-return::after {
  content: '';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background: linear-gradient(to bottom, transparent, rgba(138, 109, 59, 0.3), transparent);
}

#smartNav .btn-inset-gold {
  background-color: var(--sn-paper-bg);
  background-image: var(--sn-paper-texture);
  background-blend-mode: multiply;
  color: var(--sn-text-main);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(138, 109, 59, 0.2);
  box-shadow:
    0 6px 12px -3px rgba(138, 109, 59, 0.15),
    inset 0 2px 0 rgba(255, 255, 255, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  flex-shrink: 0;
}

#smartNav .btn-icon {
  font-size: 14px;
  color: var(--sn-gold-dark);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#smartNav .btn-inset-gold:hover {
  border-color: rgba(138, 109, 59, 0.5);
  background-color: #fffefc;
  box-shadow:
    0 15px 30px -5px rgba(138, 109, 59, 0.2),
    inset 0 0 0 transparent,
    0 0 0 1px rgba(138, 109, 59, 0.1);
  color: var(--sn-gold-dark) !important;
}

#smartNav .btn-inset-gold:hover .btn-icon {
  transform: scale(1.01);
  color: #b48811;
}

#smartNav .btn-inset-gold:active {
  transform: translateY(1px);
  box-shadow:
    0 2px 10px rgba(60, 45, 30, 0.1),
    inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

#smartNav .pill-icon-custom {
  display: inline-block;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
  color: #8A6D3B;
}

#smartNav .pill-icon-custom:hover {
  /* transform: scale(1.15) rotate(-10deg); */
  color: #b48811;
}

#smartNav .pill-icon-custom svg {
  stroke: currentColor;
  display: block;
}

#smartNav.tactile-nav {
  padding: 16px;
  border-radius: 64px;
}

#smartNav .brand-zone {
  display: flex;
  align-items: center;
  gap: 25px;
}

#smartNav .brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.8;
}

#smartNav .brand-icon:hover {
  transform: scale(1.1);
  opacity: 1;
}

#smartNav .nav-separator {
  width: 1px;
  height: 22px;
  background-color: rgba(138, 109, 59, 0.3);
}


/*  KURTYNA #hero */
.page-transition-curtain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 20, 20, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999 !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (hover: hover) {

  #smartNav .nav-item a:hover,
  #smartNav .dropdown-toggle:hover {
    color: var(--sn-gold-dark);
  }

  #smartNav .nav-item:hover .chevron {
    transform: rotate(180deg);
  }

  #smartNav .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  #smartNav .btn-inset-gold:hover {
    transform: translateY(-2px);
    border-color: rgba(138, 109, 59, 0.5);
    background-color: #fffefc;
    box-shadow:
      0 15px 30px -5px rgba(138, 109, 59, 0.2),
      inset 0 0 0 transparent,
      0 0 0 1px rgba(138, 109, 59, 0.1);
  }

  #smartNav .btn-inset-gold:hover .btn-icon {
    transform: scale(1.15) rotate(-10deg);
    color: #b48811;
  }

  #smartNav .brand-icon:hover {
    transform: scale(1.1);
    opacity: 1;
    color: #b48811;
  }

  #smartNav .pill-icon-custom:hover {
    color: #b48811;
  }
}

#smartNav .nav-item a:focus-visible,
#smartNav .dropdown-toggle:focus-visible,
#smartNav .btn-inset-gold:focus-visible,
#smartNav .brand-icon:focus-visible {
  outline: 2px solid var(--sn-gold-matte);
  outline-offset: 4px;
  border-radius: 4px;
}

#smartNav .btn-inset-gold:focus-visible {
  border-radius: 40px;
}


@media (max-width: 768px) {

  /* PASTYLKA */
  #smartNav.tactile-nav {
    top: auto;
    bottom: 24px;
    transform: translate(-50%, 150%) scale(0.95);
    width: max-content;
    max-width: 96vw;
    padding: 13px 12px;
    gap: 8px;
  }

  #smartNav.tactile-nav.is-visible {
    transform: translate(-50%, 0) scale(1);
  }


  #smartNav .nav-list {
    gap: 10px;
    flex: 1 1 auto;
  }

  #smartNav .nav-item a,
  #smartNav .dropdown-toggle {
    font-size: 13px !important;
    padding: 4px 2px;
    transition: color 0.4s ease-in-out, transform 0.4s ease-in-out;
  }

  #smartNav .hide-mobile {
    display: none;
  }

  #smartNav .btn-inset-gold {
    flex-shrink: 0;
    padding: 8px 12px;
    font-size: 13px;
  }


  #smartNav .brand-zone {
    gap: 8px !important;
  }

  #smartNav .shop-return {
    padding: 8px;
    margin-right: 8px;
  }

  #smartNav .shop-return::after {
    display: none;
  }

  /* #smartNav .nav-separator {
    height: 18px;
  } */

  #smartNav .brand-icon svg,
  #smartNav .pill-icon-custom svg {
    width: 19px;
    height: 19px;
  }

  #smartNav .dropdown-menu {
    bottom: 100%;
    top: auto;
    margin-bottom: 10px;
  }

  .scroll-text {
    font-size: 0.5rem;
    letter-spacing: 2px;
  }

  #smartNav .nav-item a[target="_blank"] svg {
    display: none !important;

  }

  .hero-content .overline {
    font-size: 10px;

  }

}

/* KONIEC PASTYLKi*/


.stat-item:hover .stat-icon {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats-bar {
  position: absolute;
  bottom: 50px;
  left: 20px;
  right: 20px;
  z-index: 10;

  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  width: calc(100% - 40px);
  max-width: none;
  padding: 0;
  box-sizing: border-box;
  flex-wrap: nowrap;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}


.stats-group-left,
.stats-group-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 50%;
}


.stats-group-left {
  align-items: flex-start;
}

.stats-group-left .stat-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: auto;
}

.stats-group-right {
  align-items: flex-end;
}

.stats-group-right .stat-item {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
  width: auto;
}

.stat-item {
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}


.stat-item .stat-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.stat-icon img {
  width: 0.7rem;
  height: 0.7rem;
  display: block;
  filter: invert(1) grayscale(100%) brightness(100%);
  opacity: 0.8;
}

.stat-item .stat-text {
  font-size: 0.7rem;
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  opacity: 0.7;
  white-space: nowrap;
  line-height: 1.2;
  transition: opacity 0.3s ease-in-out;
}


.stats-group-left .stat-icon {
  order: 1;
  margin-right: 5px;
  margin-left: 0;
}

.stats-group-left .stat-text {
  order: 2;
  text-align: left;
  margin-left: 5px;
  margin-right: 0;
}

.stats-group-right .stat-icon {
  order: 1;
  margin-left: 5px;
  margin-right: 0;
}

.stats-group-right .stat-text {
  order: 2;
  text-align: right;
  margin-right: 5px;
  margin-left: 0;
}



.nav-but-wrap {
  position: relative;
  width: 35px;
  height: 30px;
  z-index: 101;
  font-family: 'Tenor Sans', sans-serif;
}

.menu-icon {
  width: 35px;
  height: 30px;
  position: relative;
  top: auto;
  right: auto;
  z-index: 2;

  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.menu-icon__line {
  height: 2px;
  width: 30px;
  display: block;
  background-color: #fff;
  margin-bottom: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  pointer-events: none;

}

.menu-icon__line:last-child {
  margin-bottom: 0;
}

.menu-icon__line-left {
  width: 16.5px;
  transition: all 200ms linear;
}

.menu-icon__line-right {
  width: 16.5px;
  float: right;
  transition: all 200ms linear;
}

.menu-icon:hover .menu-icon__line-left,
.menu-icon:hover .menu-icon__line-right {
  width: 30px;
}

body.nav-active .menu-icon__line {
  background-color: #4a403a !important;
  box-shadow: none;
}

body.nav-active .menu-icon__line-left {
  width: 30px;
  transform: translateY(8px) rotate(45deg);
}

body.nav-active .menu-icon__line:nth-child(2) {
  opacity: 0;
}

body.nav-active .menu-icon__line:nth-child(3) {
  width: 30px;
  transform: translateY(-8px) rotate(-45deg);
}

body.nav-active .menu-icon__line-right {
  width: 30px;
  transform: translateY(-8px) rotate(-45deg);
}

body.nav-active .menu-icon:hover .menu-icon__line-left,
body.nav-active .menu-icon:hover .menu-icon__line-right {
  width: 30px;
}


nav {
  position: fixed;
  top: 5px;
  right: 15px;
  z-index: 9999;
  pointer-events: none;
}

.nav:before,
.nav:after {
  content: "";
  position: fixed;
  top: 45px;
  right: 60px;
  width: 0;
  height: 0;
  border-bottom-left-radius: 100%;
  z-index: 2;
  transition:
    width 0.5s cubic-bezier(0.65, 0.05, 0.36, 1),
    height 0.5s cubic-bezier(0.65, 0.05, 0.36, 1),
    border-radius 0.5s ease;
  transition-delay: 0.3s;
}

.nav:before {
  background-color: rgba(74, 64, 58, 0.2);
  transition-delay: 0.1s;
}

.nav:after {
  background-color: #f0ebe5;
  background-image: url('https://www.transparenttextures.com/patterns/cream-paper.png');
  background-blend-mode: multiply;
  box-shadow: -10px 15px 40px rgba(0, 0, 0, 0.2);
  transition-delay: 0s;
}

.nav:after {
  background-color: #f0ebe5;
  background-image: url('https://www.transparenttextures.com/patterns/cream-paper.png');
  background-blend-mode: multiply;
  box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.15);
  transition-delay: 0s;
}

/* body.nav-active .nav-but-wrap {
  position: fixed; 
  z-index: 101;
  top: auto;
  right: auto;
} */


body.nav-active .nav {
  pointer-events: auto;
}

body.nav-active .menu-icon {
  position: fixed;
  top: 67px;
  right: 87px;
  z-index: 10001;
  transform: none;
  transition: top 0.3s ease, right 0.3s ease, transform 0.3s ease;
}

@media (max-width: 1024px) {
  body.nav-active .menu-icon {
    top: 45px;
    right: 45px;
  }
}


@media (max-width: 768px) {
  body.nav-active .menu-icon {
    top: 25px;
    right: 25px;
  }
}


body.nav-active .nav:before,
body.nav-active .nav:after {
  width: 300px;
  height: 320px;
  border-radius: 1.5rem;
  transition-delay: 0s;
}

body.nav-active .nav:before {
  transition-delay: 0s;
}

body.nav-active .nav:after {
  transition-delay: 0.15s;
}


body.nav-active.box-expanded .nav:before,
body.nav-active.box-expanded .nav:after {
  height: 430px !important;
  transition-delay: 0s;
}


.nav__content {
  position: fixed;
  visibility: hidden;
  top: 120px;
  right: 70px;
  width: 280px;
  text-align: right;
  z-index: 20001;
}

body.nav-active .nav__content {
  visibility: visible;
}

.nav__list {
  position: relative;
  padding: 0;
  margin: 0;
  z-index: 2;
  list-style: none;
}

.nav__list-item {
  position: relative;
  display: block;
  opacity: 0;
  transform: translate(30px, 0%);
  transition: opacity .2s ease, transform .3s ease;
  margin-top: 5px;
  margin-bottom: 5px;
}

body.nav-active .nav__list-item {
  opacity: 1;
  transform: translateX(0%);
}

body.nav-active .nav__list-item:nth-child(1) {
  transition-delay: 0.5s;
}

body.nav-active .nav__list-item:nth-child(2) {
  transition-delay: 0.6s;
}

body.nav-active .nav__list-item:nth-child(3) {
  transition-delay: 0.7s;
}

body.nav-active .nav__list-item:nth-child(4) {
  transition-delay: 0.8s;
}

body.nav-active .nav__list-item:nth-child(5) {
  transition-delay: 0.9s;
}

body.nav-active .social-icons-menu-wrapper {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.0s;
}

.nav__list-item a {
  position: relative;
  text-decoration: none;
  color: #2b2623;
  font-family: 'Tenor Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.2em;
  padding-right: 40px;
  padding-left: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  display: inline-block;
  transition: all 200ms linear;
  text-transform: lowercase;
}

.nav__list-item a:after {
  position: absolute;
  color: #4a403a;
  content: '';
  top: 50%;
  right: 0;
  width: 5px;
  height: 0;
  opacity: 0;
  background-color: #8c7b70;
  transition: all 200ms linear;
  transform: translateY(-50%);
  content: none;
}

.nav__list-item.active-nav a::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #cda45e;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}

.nav__list-item.active-nav a {
  font-weight: 600;
  color: #000;
}

.nav__list-item a:hover:after,
.nav__list-item.active-nav a:after {
  height: 100%;
  opacity: 1;
}


.nav__submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;

  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    max-height 0.3s cubic-bezier(0.65, 0.05, 0.36, 1),
    opacity 0.2s ease-out,
    transform 0.2s ease-out;

  transition-delay: 0s;
}

.nav__list-item.submenu-open .nav__submenu {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
  transition:
    max-height 0.5s cubic-bezier(0.65, 0.05, 0.36, 1),
    opacity 0.4s ease-out,
    transform 0.4s ease-out;


  transition-delay: 0.2s;
}

.nav__submenu-item {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.nav__list-item.submenu-open .nav__submenu-item {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.nav__list-item.submenu-open .nav__submenu-item:nth-child(2) {
  transition-delay: 0.35s;
}

.nav__list-item.submenu-open .nav__submenu-item:nth-child(3) {
  transition-delay: 0.4s;
}

.nav__submenu-item a {
  font-size: 18px;
  padding: 5px 40px 5px 0;
  color: rgba(74, 64, 58, 0.5);
  font-weight: 400;
}

.nav__submenu-item a:hover {
  color: #4a403a;
  padding-right: 50px;
}

.nav__submenu-item a:before {
  content: '–';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #8c7b70;
  opacity: 0;
  transition: opacity 0.2s;
}

.nav__submenu-item a:hover:before {
  opacity: 1;
}


.social-icons-menu-wrapper {
  margin-top: 30px;
  padding-right: 40px;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.social-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #2b2623;
  border-radius: 50%;
  color: #2b2623;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-circle i {
  font-size: 16px;
}

.social-circle:hover {
  border-color: #4a403a;
  background-color: #4a403a;
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .hero-container {
    height: 100dvh;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    box-sizing: border-box;
  }

  .cta-button {
    margin-top: 1rem;
    padding: 18px 26px;
    font-size: 0.8rem;
    font-size: 0.7rem;
    letter-spacing: 2px;
  }

  .hero-content .description {
    font-size: clamp(.80rem, 4vw, .84rem);
    margin-bottom: 25px;
    max-width: 245px !important;
  }

}


@media (min-width: 768px) {
  .main-header {
    top: 30px;
    left: 30px;
    right: 30px;
    width: calc(100% - 60px);
    /* margin-top: 2rem; */
  }

  .logo img {
    width: 100px;
  }

  .header-right-section {
    gap: 20px;
  }

  .social-media a {
    font-size: 1rem;
    margin-left: 15px;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-content h2 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }

  /* .cta-button {
    padding: 10px 24px;
    font-size: 0.9rem;
  } */

  .hero-stats-bar {
    bottom: 70px;
    left: 30px;
    right: 30px;
    width: calc(100% - 60px);
  }

  .stats-group-left,
  .stats-group-right {
    gap: 20px;
  }

  .stat-item .stat-icon {
    width: 40px;
    height: 40px;
  }

  .stat-icon img {
    width: 0.9rem;
    height: 0.9rem;
  }

  .stat-item .stat-text {
    font-size: 0.7rem;
  }
}

@media (min-width: 992px) {
  .main-header {
    top: 30px;
    left: 5%;
    right: 5%;
    width: 90%;
    padding-bottom: 20px;
  }

  /* .logo img {
    width: 70px;
  } */

  .header-right-section {
    gap: 25px;
  }

  .social-media a {
    font-size: 1.1rem;
    margin-left: 20px;
  }

  #lang-toggle {
    padding: 6px 14px;
    font-size: 0.8rem;
    width: 60px;
  }

  /* .headings {
    margin-bottom: 15px;
  } */

  .hero-content h1 {
    font-size: clamp(2.2rem, 7vw, 4rem);
    letter-spacing: -2px;
  }

  .hero-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.4rem);
  }

  .hero-content .description {
    font-size: clamp(1rem, 2vw, 1.1rem);
    /* margin-bottom: 40px; */
  }

  /* .cta-button {
    padding: 12px 28px;
    font-size: .7rem;
  } */

  .hero-stats-bar {
    bottom: 80px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);

    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
    width: 50%;
    padding: 0;
    gap: 20px !important;
  }

  .stats-group-left,
  .stats-group-right {
    display: contents;
    width: auto;
    gap: 0;
  }

  .stat-item {
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 120px;
    flex: 1 !important;
    max-width: none;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 15px !important;
  }

  .stat-item .stat-icon {
    width: 45px;
    height: 45px;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 10;
    order: 1;
    flex-shrink: 0;
  }

  .stat-icon img {
    width: 1.8rem !important;
    height: 1.8rem !important;
    margin: 0 !important;
  }

  .stats-group-left .stat-icon,
  .stats-group-right .stat-icon {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin: 0 !important;
  }

  .stats-group-left .stat-item,
  .stats-group-right .stat-item {
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 15px !important;
  }

  .stat-item .stat-text {
    width: 100%;
    /* max-width: 180px; – usunięto, aby tekst mógł zawijać w pełnej szerokości item */
    line-height: 1.2;
    height: auto;
    overflow: visible;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    text-align: center !important;
    z-index: 5;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 5px !important;
    box-sizing: border-box !important;
    order: 2;
    flex-grow: 1;
  }

  .stat-item .stat-text[lang="en"] {
    hyphens: none !important;
    overflow-wrap: anywhere !important;
    max-width: 120px !important;
  }

  .stat-item .stat-text[lang="pl"] {
    overflow-wrap: break-word !important;
    max-width: none;
  }

  .stats-group-left .stat-text,
  .stats-group-right .stat-text {
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
}


/* --- SEKCJA BOOKERO --- */

:root {
  --color-bg: #FDFBF7;
  --color-text-main: #2a2a2c;
  --color-text-sub: #6e6e73;
  --color-accent: #D4AF37;
  --color-accent-dark: #b59226;
  --card-radius: 24px;
  --shadow-subtle: 0 10px 30px -10px rgba(0, 0, 0, 0.07);
  --shadow-hover: 0 20px 40px -12px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-main);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

h2,
h3 {
  font-family: var(--font-head);
  font-weight: 400;
  margin: 0;
}

/* --- HERO SECTION STYLES --- */
.hero-intro {
  position: relative;
  height: 100vh;
  width: 100%;
  background-image: url('https://images.unsplash.com/photo-1596178065887-1198b6148b2b?q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  z-index: 10;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInHero 1.5s ease-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.hero-subtitle {
  display: block;
  font-family: var(--font-head, sans-serif);
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.8;
}

.hero-intro h1 {
  font-family: var(--font-head, sans-serif);
  font-size: 5rem;
  font-weight: 400;
  margin: 0 0 20px 0;
  line-height: 1.1;
}

.hero-intro p {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  max-width: 500px;
  margin: 0 auto;
  opacity: 0.9;
}


.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.7;
}

.scroll-indicator span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-indicator .line {
  width: 1px;
  height: 60px;
  background: #fff;
}

@keyframes fadeInHero {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-intro h1 {
    font-size: 3rem;
  }
}


@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.8rem !important;
  }
}


.magazine-section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 2rem;
  letter-spacing: -0.03em;
  margin-bottom: 15px;
  color: #111;
}

.section-header p {
  color: var(--color-text-sub);
  font-size: 1rem;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- FILTERS --- */
.filters-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding: 15px;
  background-color: #f4f4f4;
  border-radius: 8px;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-group label {
  font-weight: bold;
  margin-right: 5px;
}

#hostSelect {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  min-width: 150px;
  cursor: pointer;
}

.filter-btn {
  padding: 8px 16px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

/* .filter-btn:hover {
  background-color: #e9e9e9;
} */

.filter-btn.active {
  color: var(--sn-gold-dark);
  font-weight: 600;
  opacity: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
  min-height: 500px;
  transition: all 0.3s ease;
}

.control-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}


:root {
  --nav-padding: 6px;
  --btn-ver-padding: 10px;
  --btn-hor-padding: 24px;
  --sn-paper-bg: #fdfbf7;
  /* --sn-paper-texture: url('https://www.transparenttextures.com/patterns/cream-paper.png');
   */
  --sn-paper-texture: url('../img/cream-paper-2.png');
  --sn-gold-dark: #8a6d3b;
  /* --font-head: 'Tenor Sans', sans-serif; */
  --nav-padding: 7px;
}

/* --- KONTENER (TOR) --- */
.filter-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: var(--nav-padding);
  background-color: var(--sn-paper-bg);
  background-image: var(--sn-paper-texture);
  border: 1px solid rgba(138, 109, 59, 0.15);
  border-radius: 60px;
  box-shadow:
    inset 0 2px 8px rgba(0, 0, 0, 0.04),
    0 15px 35px -10px rgba(60, 45, 30, 0.15);
  isolation: isolate;
}



/* --- PASTYLKA (ACTIVE BACKGROUND) --- */
.sliding-pill {
  position: absolute;
  top: var(--nav-padding);
  bottom: var(--nav-padding);
  left: var(--nav-padding);
  width: 0;
  background-color: rgba(255, 255, 255, 0.75);
  background-image: var(--sn-paper-texture);
  border-radius: 40px;
  box-shadow:
    0 4px 10px rgba(138, 109, 59, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition:
    left 0.5s cubic-bezier(0.23, 1, 0.32, 1),
    width 0.5s cubic-bezier(0.23, 1, 0.32, 1);

  z-index: 1;
  pointer-events: none;
}

/* --- PRZYCISKI --- */
.filter-btn {
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  padding: var(--btn-ver-padding) var(--btn-hor-padding);

  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  color: var(--sn-text-main);
  opacity: 0.6;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}

.filter-btn:hover:not(.active) {
  opacity: 1;
  color: var(--sn-gold-dark);
  background-color: rgba(138, 109, 59, 0.05);
  border-radius: 40px;
  transform: scale(1.02);
}


.filter-btn.active {
  opacity: 1;
  color: #5c4415;
  font-weight: 500;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  transform: scale(1);
}

/* --- DROPDOWN --- */
.custom-select-wrapper {
  position: relative;
  width: 240px;
  font-family: inherit;
  user-select: none;
  z-index: 100;
  outline: none;
}

.custom-select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s ease;
}

.custom-select-trigger:hover {
  border-color: rgba(0, 0, 0, 0.2);
}

.custom-select-wrapper.open .custom-select-trigger i {
  transform: rotate(180deg);
}

.custom-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);

  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 101;
  max-height: 300px;
  overflow-y: auto;
}

.custom-select-wrapper.open .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.custom-option {
  padding: 12px 20px;
  font-size: 13px;
  color: #555;
  cursor: pointer;
  transition: background 0.1s;
  border-bottom: 1px solid #f9f9f9;
}

.custom-option:last-child {
  border-bottom: none;
}

.custom-option:hover {
  background-color: #f5f5f7;
  color: #000;
}

.custom-option.selected {
  background-color: #f0f0f0;
  font-weight: normal !important;
  color: #000;
}

.magazine-section,
.container,
.control-bar {
  overflow: visible !important;
}


.custom-select-wrapper {
  z-index: 100;
  position: relative;
}

.custom-options {
  z-index: 101;
}

/* --- GRID --- */
/* .events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
} */

/* --- KARTA --- */
.mag-card {
  border-radius: var(--card-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 520px;
  position: relative;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  transform: translateZ(0);
  will-change: transform, opacity, filter;
  -webkit-font-smoothing: antialiased;
  backface-visibility: hidden;
}



.mag-card.show,
.load-more-container.show {
  animation: steamRise 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes steamRise {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}


.mag-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.mag-card-img-wrap {
  position: relative;
  width: 100%;
  height: 70%;
  z-index: 0;
  overflow: hidden;
}

.mag-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.mag-card:hover .mag-card-img {
  transform: scale(1.08);
}

.mag-card.is-animating {
  pointer-events: none;
}

/* DATA GLASSMORPHISM */
.date-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 18px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.date-day {
  display: block;
  font-family: var(--font-head);
  font-size: 1.4rem;
  line-height: 1;
  color: #000;
}

.date-month {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-accent-dark);
  margin-top: 4px;
  font-weight: 600;
}

.mag-card-content {
  position: relative;
  z-index: 10;
  margin-top: -80px;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.6) 20%,
      rgba(255, 255, 255, 0.95) 25%,
      #ffffff 90%);

  border-top: none;
  border-radius: 0;
  box-shadow: none;
  padding: 30px 24px 24px 24px;
  padding-top: 60px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.mag-card-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.8));
  pointer-events: none;
  z-index: 1;
}

.mag-card-cat {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent-dark);
  margin-bottom: 8px;
  font-weight: 800;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}


.mag-card h3 {
  font-size: 1.4rem;
  color: #111;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 15px;
}

.meta-strip {
  display: flex;
  gap: 16px;
  margin-bottom: .7rem;
  margin-top: 0;
  color: var(--color-text-sub);
  font-size: 11px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.meta-item i {
  color: var(--color-accent);
  margin-right: 6px;
}

.mag-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  /* -webkit-line-clamp: 2; */
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.price-tag {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: #000;
  line-height: 1;
}

.price-label {
  font-size: 9px;
  color: #999;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.btn-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-circle i {
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}

.btn-circle:hover {
  background-color: var(--color-accent);
  transform: scale(1.05);
}

.btn-circle:hover i {
  transform: rotate(0deg);
}

/* --- PROMO CARD --- */
.mag-card.promo-card {
  background: linear-gradient(135deg, #e3c48b 0%, #d4af37 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  justify-content: center;
  align-items: flex-start;
  padding: 40px;
}

.promo-card h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 20px;
  z-index: 2;
  padding-bottom: 0;
}

.promo-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  z-index: 2;
  margin-bottom: 40px;
  /* -webkit-line-clamp: unset; */
}

.btn-promo-white {
  padding: 15px 30px;
  background: #fff;
  color: #b59226;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  z-index: 2;
  transition: all 0.3s;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-promo-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}


.load-more-container {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
  display: none;
  flex-direction: column;
  align-items: center;
  position: relative;
  transform: translateZ(0);
  will-change: transform, opacity;
}


.load-more-container.show {
  display: flex;
  animation: steamRise 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}


.load-more-container::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  pointer-events: none;
}

/* --- PRZYCISK (WERSJA SOFT / NO BORDER) --- */
.btn-load-more {
  background: #fff;
  color: #333;
  border: 1px solid transparent;
  padding: 16px 50px;
  border-radius: 100px;

  font-family: var(--font-head, sans-serif);
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.5px;
  cursor: pointer;
  position: relative;
  z-index: 5;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(0, 0, 0, 0.02);

  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* --- EFEKT HOVER (UNIESIENIE) --- */
.btn-load-more:hover {
  transform: translateY(-3px);

  color: #000;


  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(0, 0, 0, 0.0);
}

/* --- EFEKT KLIKNIĘCIA --- */
.btn-load-more:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* --- STAN ŁADOWANIA --- */
.btn-load-more.loading {
  opacity: 0.7;
  pointer-events: none;
  background: #f9f9f9;
  cursor: wait;
}

.btn-load-more i {
  margin-right: 10px;
}

@keyframes steamRise {
  0% {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(5px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.fa-spin {
  animation: spin 1s linear infinite;
  display: inline-block;
}

.mag-card.hidden {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1600px) {
  .events-grid {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .events-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 10px 20px 40px 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }

  .events-grid::-webkit-scrollbar {
    display: none;
  }

  .mag-card {
    min-width: 85vw;
    max-width: 85vw;
    height: auto;
    min-height: 480px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    margin: 0;
  }

  .mag-card-img-wrap {
    height: 250px;
  }
}

@media (max-width: 600px) {
  .control-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    margin-bottom: 30px;
  }

  .filter-container {
    display: flex;
    width: 100%;
    max-width: 100vw;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px;
    margin: 0 -20px;
    width: calc(100% + 40px);
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    justify-content: flex-start;
  }

  .filter-container::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex-shrink: 0;
  }

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

  .mag-card {
    height: auto;
    min-height: 480px;
  }

  .mag-card-img-wrap {
    height: 280px;
  }

  .custom-select-wrapper {
    width: 100%;
  }
}


.magazine-section {
  position: relative;
}

.sticky-action-wrapper {
  position: absolute;
  right: 15px;
  top: 350px;
  bottom: 0;
  width: 70px;
  pointer-events: none;
  z-index: 90;
  display: block;
}

.btn-glass-pill {
  position: sticky;
  top: calc(100vh - 80px);
  float: right;
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--font-head, sans-serif);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: .55rem;
  font-weight: 600;
  color: #111;
}

.btn-glass-pill:hover {
  background: #fff;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 24px;
  background: #111;
  color: #fff;
  border-radius: 50%;
}

.pill-icon svg {
  stroke: currentColor;
}

.btn-glass-pill:hover .pill-icon {
  background: #D4AF37;
  transition: background 0.3s ease;
}

/* --- 2. DRAWER & OVERLAY (Panel boczny) --- */

.etiquette-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.8);
  /* backdrop-filter: blur(6px); */
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  /* display: flex; */
  /* justify-content: flex-end; */
}

.etiquette-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --- PASEK BOCZNY (Rodzic) --- */
.etiquette-drawer {
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 450px;
  height: 100dvh;
  background: #FDFBF7;
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
  transition: right 0.8s cubic-bezier(0.19, 1, 0.22, 1);

  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem 0 0 1rem;
}

/* --- TREŚĆ (Dziecko scrollowane) --- */
.drawer-content {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 20px;
  overflow: hidden;
  position: relative;
}

.etiquette-overlay.active .etiquette-drawer {
  right: 0;
}

.drawer-wrapper {
  width: 100%;
}

/* Header Panelu */
.drawer-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  border-bottom: 1px solid rgb(238, 238, 238);
  background: rgb(253, 251, 247);
  min-height: 85px;
  box-shadow: 0 8px 15px -5px rgba(0, 0, 0, 0.06);
}

.drawer-header h3 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: #111;
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  width: max-content;
  max-width: 70%;
}

.drawer-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #F2F0EB;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #111;
  margin-left: 0;
  z-index: 2;
}

.drawer-close:hover {
  background: #EBE8E1;
  transform: rotate(90deg);
}

.drawer-content {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 20px;

  /* Płynność i focus */
  scroll-behavior: smooth;
  outline: none;
  overscroll-behavior: contain;
}

.intro-text {
  margin-bottom: 30px;
  /* font-style: italic; */
  color: #666;
  line-height: 1.4;
  text-align: center;
  font-size: .9rem;
}

/* Lista zasad */
.manifesto-list {
  display: flex;
  flex-direction: column;
}

.manifesto-item {
  display: flex;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.manifesto-num {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: #D4AF37;
  opacity: 0.6;
  min-width: 30px;
}

.manifesto-text h4 {
  margin: 0 0 8px 0;
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: #111;
}

.manifesto-text p {
  margin: 0;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.drawer-footer {
  padding: 15px;
  text-align: center;
  opacity: 0.6;
  box-shadow: 0px -8px 15px rgba(0, 0, 0, 0.06);
}

.drawer-footer p {
  margin-bottom: 10px;
}

/* --- LUXURY SUB-POINTS (ELEGANT LIST) --- */
.luxury-sublist {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
}

.luxury-sublist li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;

  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  text-align: left;
}

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

.luxury-sublist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background-color: #D4AF37;
  transform: rotate(45deg);
  opacity: 0.8;
}

/* Scrollbar */
.manifesto-scroll::-webkit-scrollbar {
  width: 6px;
}

.manifesto-scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

/* --- MOBILE --- */
@media (max-width: 768px) {
  .sticky-action-wrapper {
    right: 20px;
    top: 650px;
  }

  .btn-glass-pill {
    top: calc(100vh - 70px);

    padding: 0;
    width: 50px;
    height: 50px;
    justify-content: center;
    border-radius: 50%;
  }

  .pill-text {
    display: none;
  }

  .pill-icon {
    width: 20px;
    height: 20px;
    background: transparent;
    color: #111;
  }

  .etiquette-drawer {
    max-width: 100%;
  }

  .drawer-content {
    padding: 25px;
  }
}

/* --- STYL SEKCJI TESTOWEJ (JOURNAL) --- */
.journal-section {
  position: relative;
  background-color: #111;
  color: #fff;
  padding: 120px 0 80px 0;
  min-height: 800px;
  z-index: 100;
}

.journal-header {
  text-align: center;
  margin-bottom: 80px;
}

.journal-header .sub-title {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #D4AF37;
  display: block;
  margin-bottom: 20px;
}

.journal-header h2 {
  font-family: var(--font-head);
  font-size: 3rem;
  color: #fff;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 100px;
}

.journal-item {
  cursor: pointer;
}

.j-img {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  margin-bottom: 25px;
  opacity: 0.7;
  transition: opacity 0.4s ease;
}

.journal-item:hover .j-img {
  opacity: 1;
}

.journal-item h4 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #fff;
}

.journal-item p {
  font-size: 0.95rem;
  color: #888;
  line-height: 1.6;
}

.footer-note {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  color: #555;
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .journal-grid {
    grid-template-columns: 1fr;
  }
}




/* --- SEKCJA MAPA FOOTER --- */

:root {
  --lux-bg: #F5F2EB;
  --lux-glass: rgba(255, 255, 255, 0.75);
  --lux-brown-dark: #4A403A;
  --lux-brown-light: #8C8279;
  --lux-gold: #BFA070;
  --lux-gold-hover: #A88B5D;
  --radius-card: 32px;
  --radius-btn: 100px;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Manrope', sans-serif;
}

* {
  box-sizing: border-box;
}

.luxury-map-section {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 600px;
  background-color: var(--lux-bg);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* --- MAPA --- */
.map-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.google-map-styled {
  width: 100%;
  height: 100%;
  filter: grayscale(100%) sepia(20%) brightness(105%) contrast(85%);
  mix-blend-mode: multiply;
  opacity: 0.6;
  transition: opacity 0.5s ease;
}

.google-map-styled:hover {
  opacity: 0.9;
}

.map-fade-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--lux-bg) 0%, var(--lux-bg) 15%, rgba(245, 242, 235, 0) 60%);
  pointer-events: none;
  z-index: 2;
}

/* --- KARTA GLASSMORPHISM (ZMODYFIKOWANA) --- */
.glass-card {
  position: relative;
  z-index: 10;
  margin-left: 10%;
  width: 420px;
  background: var(--lux-glass);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-card);
  box-shadow:
    0 24px 48px rgba(74, 64, 58, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  overflow: hidden;
}

.card-content {
  padding: 56px 48px;
}


.card-top-decoration {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.line {
  width: 40px;
  height: 1px;
  background: var(--lux-gold);
}

.subtitle {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-gold);
  display: block;
  /* margin-bottom: 24px; */
  position: relative;
  padding-left: 40px;
  font-family: var(--font-head);
  line-height: 1.4;
}

.luxury-title {
  font-family: var(--font-serif);
  font-size: 42px;
  line-height: 1.1;
  color: var(--lux-brown-dark);
  font-weight: 400;
  margin: 0 0 40px 0;
}

.italic-accent {
  font-style: italic;
  display: block;
  font-size: 0.9em;
  opacity: 0.9;
}

.details-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}


.detail-row.align-top {
  align-items: flex-start;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-top: 5px;
}


.hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(74, 64, 58, 0.1);
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.hour-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.hour-row .day {
  flex-basis: 100px;
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--lux-brown-light);
  letter-spacing: 0.05em;
  text-align: left;
}

.hour-row .time,
.hour-row .status {
  text-align: right;
}

.hour-row .time {
  font-family: var(--font-head);
  font-size: 15px;
  color: var(--lux-brown-dark);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: 1.5px;
}

.hour-row .status {
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--lux-brown-light);
  font-style: italic;
  font-weight: 500;
  opacity: 0.8;
}

.closed-row .time {
  font-style: italic;
  opacity: 0.7;
  font-size: 14px;
}

.icons-box {
  color: var(--lux-gold);
  padding-top: 0px;
}

.text-group .label {
  display: block;
  font-family: var(--font-head);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--lux-brown-light);
  margin-bottom: 14px;
  font-weight: 600;
}

.text-group p {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--lux-brown-dark);
  font-weight: 100;
  margin: 0;
  line-height: 1.4;
}

.btn-luxury {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 32px;
  background-color: var(--lux-brown-dark);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-btn);

  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  box-shadow: 0 10px 20px rgba(74, 64, 58, 0.15);
}

.btn-luxury:hover {
  background-color: var(--lux-gold);
  padding-right: 28px;
  box-shadow: 0 15px 30px rgba(191, 160, 112, 0.25);
  transform: translateY(-2px);
}

.btn-luxury .arrow-icon {
  transition: transform 0.4s ease;
}

.btn-luxury:hover .arrow-icon {
  transform: translateX(5px);
}

/* --- MOBILE --- */
@media (max-width: 900px) {
  .luxury-map-section {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }

  .map-wrapper {
    position: relative;
    height: 50vh;
    width: 100%;
  }

  .map-fade-overlay {
    background: linear-gradient(180deg, rgba(245, 242, 235, 0) 0%, var(--lux-bg) 95%);
    top: auto;
    bottom: 0;
    height: 30%;
  }

  .glass-card {
    width: 90%;
    margin: -60px auto 40px auto;
    border-radius: 24px;

    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.05);
  }

  .card-content {
    padding: 40px 32px;
  }

  .luxury-title {
    font-size: 32px;
  }
}


/* --- MOTTO CYTAT --- */
:root {
  --bg-color: #F2F0E9;
  --text-dark: #2C2A26;
  --gold-accent: #A48965;
  --quote-color: rgba(164, 137, 101, 0.25);
}


/* --- SEKCJA STEAM QUOTE --- */
.section-steam-quote {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  /* margin-top: 20vh;
  margin-bottom: 20vh; */
}

.quote-wrapper {
  position: relative;
  padding: 0 5%;
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.steam-text {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 6rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  position: relative;
  z-index: 2;
  margin: 0;
}

.steam-line {
  display: block;
  will-change: opacity, filter, transform;
  opacity: 0;
  filter: blur(25px);
  transition: none !important;
}

.steam-line.highlight-text {
  font-style: italic;
  font-weight: 200;
  color: var(--gold-accent);
  margin-top: 10px;
}

/* --- Cudzysłowy (Tło) --- */
.quote-bg {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(8rem, 20vw, 20rem);
  color: var(--quote-color);
  position: absolute;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}

.quote-left {
  top: -10%;
  left: 0;
  transform: translateY(50px);
}

.quote-right {
  bottom: -10%;
  right: 0;
  transform: translateY(-50px);
}


/* --- SEKCJA HORYZONTAL GALLERY BALIA --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Manrope:wght@300;400;500&display=swap');

.deep-soothe-wrapper {
  --ds-bg: #F5F3EF;
  --ds-text: #2B2623;
  --ds-muted: #6B635B;
  --ds-gold: #C2A87E;
  --ds-shadow: 0 30px 60px -15px rgba(43, 38, 35, 0.15);

  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: var(--ds-bg);
  position: relative;
  font-family: 'Manrope', sans-serif;
  z-index: 1;
}

/* --- BLUR / FADE (Mgła na bokach) --- */
.deep-soothe-wrapper::before,
.deep-soothe-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 3vw;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.deep-soothe-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--ds-bg) 0%, rgba(245, 243, 239, 0) 100%);
}

.deep-soothe-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--ds-bg) 0%, rgba(245, 243, 239, 0) 100%);
}

.deep-soothe-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 60px;
  padding-left: 10vw;
  padding-right: 10vw;
  width: max-content;
  height: 70vh;
  align-items: center;
  will-change: transform;
}

/* KARTA - KONFIGURACJA */
.deep-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 38vw;
  min-width: 38vw;
  flex: 0 0 38vw;
}

/* KARTA TEKSTOWA */
.deep-text-card {
  width: 30vw;
  min-width: 30vw;
  flex: 0 0 30vw;
  margin-right: 40px;
}

.deep-text-content {
  max-width: 500px;
}

/* TYPOGRAFIA */
.deep-subtitle {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--ds-gold);
  display: block;
  margin-bottom: 24px;
  position: relative;
  padding-left: 40px;
}

.deep-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--ds-gold);
}

.deep-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 35px;
  color: var(--ds-text);
  letter-spacing: -1px;
  margin-top: 0;
}

.deep-title span {
  font-style: italic;
  font-weight: 400;
}

.deep-desc {
  font-size: 16px;
  color: var(--ds-muted);
  line-height: 1.8;
  font-weight: 300;
}

/* KAFELEK (RAMKA) */
.deep-img-holder {
  width: 100%;
  height: 45vh;
  overflow: hidden;
  border-radius: 8rem;
  position: relative;
  box-shadow: var(--ds-shadow);
  transform: perspective(1000px) rotateY(2deg);
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  background: #1a1a1a;
  z-index: 2;
}

.deep-card:hover .deep-img-holder {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.deep-parallax-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
  display: block;
  transform: scale(1.3);
}

.deep-card-label {
  margin-top: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--ds-muted);
  letter-spacing: 0.5px;
  display: block;
  text-align: center;
}

/* --- MOBILE (<= 900px) --- */
@media(max-width: 900px) {

  .deep-soothe-wrapper {
    display: flex;
    align-items: flex-start;
    height: 100vh;
    padding: 0;
  }

  .deep-soothe-wrapper::before,
  .deep-soothe-wrapper::after {
    width: 8vw;
  }

  .deep-soothe-track {
    gap: 20px;
    padding-left: 5vw;
    padding-right: 5vw;
    padding-top: 15vh;
    align-items: flex-start;
    height: 100%;
  }

  /* KARTY NA MOBILE */
  .deep-card {
    width: 85vw !important;
    min-width: 85vw !important;
    flex: 0 0 85vw !important;
    justify-content: flex-start;
  }

  /* TEKST NA MOBILE */
  .deep-text-card {
    width: 85vw !important;
    min-width: 85vw !important;
    flex: 0 0 85vw !important;
    margin-right: 10px;
    justify-content: flex-start;
  }

  .deep-title {
    font-size: 36px;
  }

  .deep-img-holder {
    height: 45vh !important;
    min-height: 350px;
    transform: none !important;
    border-radius: 5rem
  }
}

/* ---  SEKCJA KORZYŚCI SLIDER -----*/
:root {
  --heat-bg-dark: #F7F4EF;
  --heat-text-main: #3E3228;
  --heat-text-light: #F5F0EB;
  --heat-icon-subtle: #E6DCC3;
}

.heat-scrolly-section * {
  box-sizing: border-box;
}

.heat-spacer {
  /* height: 30vh; */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B68D40;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-style: italic;
  background: var(--heat-bg-dark);
  position: relative;
  z-index: 20;
  text-align: center;
}

/* --- KONTENER GŁÓWNY --- */
.heat-scrolly-section {
  height: 450vh;
  position: relative;
  width: 100%;
  z-index: 10;
  font-family: 'Cormorant Garamond', serif;
  background-color: var(--heat-bg-dark);
  color: var(--heat-text-main);
}

.heat-sticky-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding: 0;
  background-color: var(--heat-bg-dark);
}

.heat-sticky-wrapper.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.heat-sticky-wrapper.is-ended {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
}

/* --- TŁO --- */
.heat-bg-container {
  position: relative;
  width: 94%;
  height: 90vh;
  margin: 5vh auto;
  z-index: 1;
  overflow: hidden;
  border-radius: 40px;
  box-shadow: 0 40px 100px -30px rgba(62, 50, 40, 0.2);
  will-change: transform;
}

.heat-bg-image {
  position: absolute;
  height: 130%;
  width: 100%;
  top: -15%;
  left: 0;
  background-image: url('https://images.pexels.com/photos/18647959/pexels-photo-18647959.jpeg');
  background-size: cover;
  background-position: center;
  will-change: transform;
  filter: brightness(0.9) contrast(1.1);
}

.heat-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(40, 30, 20, 0.15);
  z-index: 2;
}

/* --- CONTENT GRID --- */
.heat-content-grid {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6vw;
  padding-left: 8vw;
  padding-right: 5vw;
  pointer-events: none;
}

/* --- LEWA KOLUMNA (TEKST) --- */
.heat-text-column {
  position: relative;
  height: 100%;
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  z-index: 1;
}

.heat-headline-wrapper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  opacity: 1;
}

.heat-headline-text {
  font-size: 4.8rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.01em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  text-align: center;
}

.heat-line-mask {
  display: block;
  overflow: hidden;
  padding-bottom: 5px;
}

.heat-line-inner {
  display: block;
  transform: translateY(110%) rotateX(10deg);
  transform-origin: bottom right;
  will-change: transform;
  opacity: 0;
}

/* --- PRAWA KOLUMNA (KARTA) --- */
.heat-card-column {
  position: relative;
  height: 100%;
  width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  pointer-events: auto;
  z-index: 10;
}

#heat-floatingCard {
  position: absolute !important;
  top: 10% !important;
  right: 8% !important;
  left: auto !important;
  bottom: auto !important;
  margin: 0 !important;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.8s ease;
}

#heat-floatingCard.heat-card-visible {
  opacity: 1;
}

.heat-glass-card {
  width: 380px;
  height: 300px;
  border-radius: 2rem;
  overflow: hidden;
  background: rgba(15, 12, 10, 0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.4);
}

.heat-card-track {
  height: 100%;
  width: 100%;
  will-change: transform;
  transition: none;
}

.heat-card-slide {
  height: 100%;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.heat-icon {
  color: var(--heat-icon-subtle);
  font-size: 1.8rem;
  margin-bottom: 25px;
  opacity: 0.8;
  filter: drop-shadow(0 0 12px rgba(230, 220, 195, 0.15));
}

.heat-card-p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: var(--heat-text-light);
  margin: 0;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  .heat-bg-container {
    width: 100%;
    height: 100vh;
    top: 0;
    margin: 0;
    border-radius: 0;
  }

  .heat-content-grid {
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
    justify-content: flex-start;
  }

  .heat-text-column {
    width: 100%;
    height: 40%;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 0;
    padding-bottom: 20px;
  }

  .heat-headline-wrapper {
    text-align: center;
    align-items: center;
    top: auto;
    bottom: 30px;
    transform: none;
  }

  .heat-headline-text {
    font-size: 2.8rem;
    text-align: center;
  }

  .heat-line-inner {
    transform-origin: bottom center;
  }

  .heat-card-column {
    width: 100%;
    height: 45%;
    align-items: center;
    justify-content: flex-start;
    padding-top: 30px;
  }

  #heat-floatingCard {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    margin-top: 0 !important;
  }

  .heat-glass-card {
    width: 90vw;
    max-width: 360px;
    height: 240px;
    background: rgba(10, 10, 10, 0.65);
  }

  .heat-card-slide {
    padding: 30px 25px;
  }

  .heat-icon {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .heat-card-p {
    font-size: 1.25rem;
  }
}


/*KOTANT SEKCJA*/
:root {
  --lux-bg: #F5F2EB;
  --lux-brown-dark: #4A403A;
  --lux-brown-light: #8C8279;
  --lux-gold: #BFA070;
  --radius-pill: 100px;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Manrope', sans-serif;
}

.service-contact-strip {
  width: 100%;
  max-width: 100vw;
  padding: 80px 5%;
  background-color: var(--lux-bg);
  border-top: 1px solid rgba(191, 160, 112, 0.15);
  box-sizing: border-box;
  overflow-x: hidden;
  position: relative;
  z-index: 10;
}

.contact-content-wrapper {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: nowrap;
}

.contact-header {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
}

.tiny-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--lux-gold);
  margin-bottom: 12px;
  font-weight: 600;
}

.contact-title {
  font-family: var(--font-head);
  font-size: 26px;
  color: var(--lux-brown-dark);
  margin: 0.5rem 0;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.contact-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--lux-brown-light);
  margin: 0;
  line-height: 1.5;
  text-wrap: balance;
  max-width: 100%;
}

.contact-actions-grid {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-shrink: 0;
}

.action-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 20px 10px 10px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  min-width: 220px;
  box-sizing: border-box;
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.action-label {
  font-family: var(--font-head);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
  margin-bottom: 2px;
}

.action-value {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
}

.action-pill.primary {
  background-color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 20px rgba(74, 64, 58, 0.05);
}

.action-pill.primary .icon-circle {
  background-color: var(--lux-brown-dark);
  color: #fff;
}

.action-pill.primary .text-col {
  color: var(--lux-brown-dark);
}

.action-pill.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(74, 64, 58, 0.1);
}

.action-pill.secondary {
  background-color: transparent;
  border: 1px solid rgba(74, 64, 58, 0.1);
}

.action-pill.secondary .icon-circle {
  background-color: rgba(191, 160, 112, 0.15);
  color: var(--lux-brown-dark);
}

.action-pill.secondary .text-col {
  color: var(--lux-brown-dark);
}

.action-pill.secondary:hover {
  background-color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(74, 64, 58, 0.05);
}

.social-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 20px;
  border: none;
  padding: 0;
}

.social-label {
  font-family: var(--font-head) !important;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--lux-gold);
  line-height: 1;
  margin-right: 5px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(74, 64, 58, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lux-brown-dark);
  transition: all 0.3s ease;
  background-color: transparent;
}

.social-btn:hover {
  background-color: var(--lux-gold);
  border-color: var(--lux-gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(191, 160, 112, 0.3);
}

@media (max-width: 1024px) {

  .contact-content-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .contact-header {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .contact-actions-grid {
    justify-content: center;
  }
}

.contact-desc {
  margin: 0 auto;
}

@media (max-width: 768px) {
  .service-contact-strip {
    padding: 60px 20px;
  }

  .contact-content-wrapper {
    gap: 32px;
  }

  .contact-header {
    text-align: left;
  }


  .contact-actions-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .action-pill {
    width: 100%;
    justify-content: flex-start;
  }

  .social-group {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(74, 64, 58, 0.1);
    padding-top: 24px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .action-pill {
    padding: 6px 16px 6px 6px;

  }
}