/* Zmienne globalne motywu i podstawowe ustawienia projektu */
:root {
  --container-width: 1200px;
  --header-height: 78px;
  --color-bg: #f6f3ef;
  --color-surface: #ffffff;
  --color-surface-alt: #ece3d8;
  --color-text: #201917;
  --color-text-muted: #635855;
  --color-accent: #b6572f;
  --color-accent-dark: #8a3919;
  --color-border: rgba(32, 25, 23, 0.12);
  --color-shadow: rgba(32, 25, 23, 0.12);
  --section-padding: 72px;
  --radius-large: 28px;
  --radius-medium: 20px;
  --radius-small: 12px;
  --transition: 220ms ease;
  --color-hero-bg: #06070a;
  --color-hero-surface: rgba(11, 14, 20, 0.56);
  --color-hero-border: rgba(255, 255, 255, 0.12);
  --color-hero-text: rgba(255, 255, 255, 0.92);
  --color-hero-muted: rgba(233, 236, 242, 0.7);
  --color-hero-gold: #e1b676;
  --color-hero-gold-light: #f3d9a6;
  --color-hero-cyan: #84d7ff;
  --color-hero-glow: rgba(132, 215, 255, 0.28);
  --hero-viewport-min: 760px;
}

/* Reset bazowych elementów i ustawienia ogólne strony */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

main {
  display: flex;
  flex-direction: column;
  overflow: clip;
  background: #1c1d21;
}

.section {
  width: 100%;
}

/* Wspólne kontenery do ograniczania szerokości treści */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.narrow-container {
  max-width: 900px;
}

.full-width-image,
.full-width-media {
  width: 100%;
  display: block;
}

/* Styl nagłówka strony i nawigacji głównej */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 14px 12px 0;
  background: transparent;
  border-bottom: 0;
}

.header-inner {
  width: min(calc(100vw - 24px), var(--container-width));
  max-width: none;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(14, 18, 26, 0.22), rgba(14, 18, 26, 0.08));
  backdrop-filter: blur(18px);
  flex-wrap: wrap;
  transition:
    background-color var(--transition),
    border-color var(--transition),
  box-shadow var(--transition),
  transform var(--transition);
}

.nav-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.nav-toggle span {
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: #ffffff;
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.site-header.is-menu-open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.is-menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.site-header.is-scrolled .header-inner {
  background: rgba(7, 10, 16, 0.72);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 18px 50px -30px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(132, 215, 255, 0.06);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  color: #ffffff;
}

.brand-kicker {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.54);
}

.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 2vw, 2.1rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 0.95;
}

.brand-name span {
  color: var(--color-hero-gold);
}

.site-nav {
  width: 100%;
  order: 3;
  display: grid;
  gap: 10px;
  justify-content: stretch;
  padding-top: 4px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    max-height 280ms ease,
    opacity 220ms ease,
    padding-top 220ms ease;
}

.site-header.is-menu-open .site-nav {
  max-height: 420px;
  opacity: 1;
  pointer-events: auto;
  padding-top: 14px;
}

.site-nav a {
  position: relative;
  width: 100%;
  padding: 12px 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    color var(--transition),
    text-shadow var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    background-color var(--transition);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--color-hero-cyan), transparent);
  opacity: 0;
  box-shadow: 0 0 18px var(--color-hero-glow);
  transform: scaleX(0.45);
  transition: opacity var(--transition), transform var(--transition);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(132, 215, 255, 0.34);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav .nav-cta {
  padding-inline: 18px;
  color: #ffffff;
  border: 1px solid rgba(225, 182, 118, 0.42);
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 0 1px rgba(132, 215, 255, 0.06),
    0 0 22px rgba(225, 182, 118, 0.12);
}

.site-nav .nav-cta::after {
  left: 18px;
  right: 18px;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.is-active {
  border-color: rgba(225, 182, 118, 0.72);
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 24px rgba(225, 182, 118, 0.16),
    0 0 34px rgba(132, 215, 255, 0.12);
}

/* Sekcja hero i jej główne elementy wizualne */
.hero-section,
.content-section,
.parallax-section {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("assets/images/hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--color-hero-bg);
  isolation: isolate;
  overflow: clip;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.55) 46%, rgba(0, 0, 0, 0.65) 100%),
    radial-gradient(circle at 50% 30%, rgba(132, 215, 255, 0.06), transparent 30%);
  z-index: -1;
}

.hero-shell {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  width: min(calc(100% - 48px), 1320px);
  max-width: none;
  padding-top: calc(var(--header-height) + 26px);
  padding-bottom: 26px;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  margin: auto;
  padding: 0 40px;
  text-align: center;
  color: var(--color-hero-text);
  display: grid;
  justify-items: center;
  gap: 0;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px);
}

.hero-title,
.hero-content h1 {
  margin: 0;
  max-width: 10ch;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.7rem, 11vw, 4.5rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0.08em;
  white-space: normal;
  text-transform: uppercase;
  color: #ffffff;
  -webkit-text-stroke: 1.2px rgba(0, 0, 0, 0.62);
  paint-order: stroke fill;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.4),
    0 0 18px rgba(255, 215, 160, 0.35),
    0 0 38px rgba(255, 170, 90, 0.25);
  animation: heroTitlePulse 4.5s ease-in-out infinite;
}

.hero-description {
  width: min(100%, 24ch);
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(247, 245, 239, 0.88);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.18rem, 4.8vw, 1.56rem);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0.02em;
  font-style: italic;
  text-wrap: pretty;
  text-align: center;
  text-shadow:
    0 8px 24px rgba(0, 0, 0, 0.22),
    0 0 22px rgba(255, 220, 170, 0.08);
}

.hero-services,
.hero-events {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  width: min(100%, 420px);
  margin: clamp(56px, 9vh, 96px) 0 0;
  padding: 0 0 14px;
  list-style: none;
  position: relative;
}

.hero-services::after,
.hero-events::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 210, 140, 0.9),
    transparent
  );
  animation: lineGlow 4s linear infinite;
}

.hero-services li,
.hero-events li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.hero-events li:not(:last-child)::after {
  content: "•";
  color: rgba(243, 217, 166, 0.72);
}

.hero-events li::before {
  content: none;
}

.hero-events li:not(:last-child)::after {
  content: none;
}

.hero-events li::after {
  content: none;
}

.hero-events.hero-services li::before,
.hero-events.hero-services li::after,
.hero-events.hero-services li:not(:last-child)::after {
  content: none !important;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

/* Główne przyciski CTA i animacje akcentów */
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  padding: 14px 26px;
  border: 0;
  border-radius: 999px;
  background: var(--color-accent);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), background-color var(--transition);
}

.primary-button:hover {
  transform: translateY(-2px);
  background: var(--color-accent-dark);
}

.hero-cta-button {
  margin-top: clamp(40px, 6vh, 64px);
  padding: 16px 24px;
  min-height: 54px;
  border: 1px solid rgba(255, 248, 226, 0.18);
  background:
    linear-gradient(135deg, #f5c76e, #ff9a3c);
  color: #1c1308;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow:
    0 20px 44px -18px rgba(0, 0, 0, 0.72),
    0 0 20px rgba(255, 170, 70, 0.5);
  animation: glowPulse 3s infinite ease-in-out;
}

.hero-cta-button:hover {
  transform: translateY(-2px) scale(1.05);
  background:
    linear-gradient(135deg, #ffd27e, #ffa84d);
  box-shadow:
    0 24px 48px -16px rgba(0, 0, 0, 0.78),
    0 0 30px rgba(255, 170, 70, 0.62);
}

/* Animacje używane w sekcji hero */
@keyframes glowPulse {
  0%,
  100% {
    box-shadow:
      0 18px 38px -18px rgba(0, 0, 0, 0.68),
      0 0 16px rgba(255, 170, 70, 0.38);
  }

  50% {
    box-shadow:
      0 22px 46px -18px rgba(0, 0, 0, 0.76),
      0 0 26px rgba(255, 170, 70, 0.58);
  }
}

.hero-services li:not(:last-child)::after,
.hero-events li:not(:last-child)::after {
  content: "•";
  color: rgba(243, 217, 166, 0.72);
}

.hero-cta,
.hero-cta-button {
  background: linear-gradient(135deg, #4c2813, #9d5727);
  color: #fff5e6;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  box-shadow:
    0 0 14px rgba(193, 108, 45, 0.36),
    0 0 30px rgba(104, 52, 22, 0.32);
  animation: ctaPulse 3s ease-in-out infinite;
}

.hero-cta:hover,
.hero-cta-button:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #5a3017, #b2662f);
  box-shadow:
    0 0 18px rgba(214, 130, 64, 0.46),
    0 0 40px rgba(124, 62, 27, 0.4);
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow:
      0 0 10px rgba(193, 108, 45, 0.28),
      0 0 22px rgba(104, 52, 22, 0.2);
  }

  50% {
    box-shadow:
      0 0 16px rgba(214, 130, 64, 0.42),
      0 0 34px rgba(124, 62, 27, 0.34);
  }
}

@keyframes lineGlow {
  0% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.4;
  }
}

@keyframes heroTitlePulse {
  0%,
  100% {
    transform: scale(1);
    text-shadow:
      0 0 8px rgba(255, 255, 255, 0.36),
      0 0 18px rgba(255, 215, 160, 0.22),
      0 0 34px rgba(255, 170, 90, 0.16);
  }

  50% {
    transform: scale(1.02);
    text-shadow:
      0 0 12px rgba(255, 255, 255, 0.48),
      0 0 26px rgba(255, 215, 160, 0.34),
      0 0 44px rgba(255, 170, 90, 0.24);
  }
}

.hero-services li:not(:last-child)::after,
.hero-events li:not(:last-child)::after {
  content: "\2022";
  color: rgba(243, 217, 166, 0.72);
}

.hero-title,
.hero-content h1 {
  -webkit-text-stroke: 1.8px rgba(0, 0, 0, 0.88);
  transform-origin: center center;
}

.hero-cta,
.hero-cta-button {
  position: relative;
  isolation: isolate;
  background: linear-gradient(135deg, rgba(239, 200, 129, 0.72), rgba(189, 136, 61, 0.68));
  color: #fffdf8;
  border: 1px solid rgba(255, 235, 188, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 245, 221, 0.28),
    0 0 18px rgba(20, 10, 4, 0.18);
}

.hero-cta::after,
.hero-cta-button::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -12px;
  height: 22px;
  border-radius: 999px;
  background: rgba(225, 182, 118, 0.3);
  filter: blur(16px);
  z-index: -1;
  pointer-events: none;
}

.hero-cta:hover,
.hero-cta-button:hover {
  background: linear-gradient(135deg, rgba(246, 208, 140, 0.78), rgba(199, 145, 69, 0.74));
  box-shadow:
    inset 0 1px 0 rgba(255, 245, 221, 0.34),
    0 0 24px rgba(30, 16, 7, 0.24);
}

.hero-cta:hover::after,
.hero-cta-button:hover::after {
  background: rgba(225, 182, 118, 0.38);
}

.hero-services,
.hero-events {
  margin-top: clamp(56px, 9vh, 96px);
}

.demo-notice {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

/* Uniwersalne sekcje treści i nagłówki bloków */
.content-section {
  padding: var(--section-padding) 0;
  background: #1c1d21;
  color: #d0d0d0;
}

.section-heading {
  margin-bottom: 40px;
  text-align: center;
}

.section-heading-left {
  text-align: left;
}

.section-title,
#video .section-heading h2 {
  margin: 0 0 28px;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  font-family: "Playfair Display", serif;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
}

.section-title::after,
#video .section-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 140px;
  height: 2px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  background: linear-gradient(
    90deg,
    rgba(255, 200, 120, 0),
    rgba(255, 200, 120, 1),
    rgba(255, 200, 120, 0)
  );
  transition: transform 0.8s ease;
}

#video.section-visible .section-heading h2::after,
#oferta.section-visible .section-title::after,
#opinie.section-visible .section-title::after,
#galeria.section-visible .section-title::after,
#kontakt.section-visible .section-title::after {
  transform: translateX(-50%) scaleX(1);
}

#kontakt.section-visible .contact-underline {
  transform: scaleX(1);
}

.supporting-copy {
  margin: 18px 0 0;
  color: #d0d0d0;
}

.section-label {
  color: #e8c17a;
}

/* Sekcja wideo z osadzonym materiałem */
.video-wrapper {
  width: min(calc(100% - 40px), 900px);
  margin-left: auto;
  margin-right: auto;
  margin-top: 70px;
  position: relative;
  padding: 0;
  overflow: hidden;
  background: rgba(20, 20, 24, 0.92);
  border: 2px solid rgba(232, 193, 122, 0.16);
  border-radius: var(--radius-large);
  box-shadow: 0 24px 40px -32px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 0;
  display: block;
  position: relative;
  z-index: 1;
}

/* Sekcje parallax i animowane karty informacyjne */
.parallax-section {
  height: 70vh;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.parallax-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.parallax-bg {
  position: absolute;
  inset: -10% 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: none;
  will-change: transform;
  z-index: 0;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.65)
  );
  z-index: 2;
}

.parallax-content {
  position: relative;
  z-index: 3;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding-top: 48px;
  padding-bottom: 48px;
  text-align: center;
}

.parallax-stats,
.parallax-services {
  flex-wrap: wrap;
}

.parallax-card {
  flex: 1 1 100%;
  max-width: 460px;
  padding: 20px 18px;
  color: #ffffff;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 520ms ease,
    transform 520ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.parallax-section.is-visible .parallax-card {
  opacity: 1;
  transform: translateY(0);
}

.parallax-section.is-visible .parallax-card:nth-child(2) {
  transition-delay: 120ms;
}

.parallax-section.is-visible .parallax-card:nth-child(3) {
  transition-delay: 240ms;
}

.parallax-number {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.parallax-text {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 600;
  line-height: 1.5;
  text-wrap: balance;
}

.parallax-service-copy {
  flex-basis: 100%;
  max-width: 100%;
  width: 100%;
}

.parallax-service-copy .parallax-number,
.parallax-service-copy .parallax-text {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  overflow-wrap: normal;
  word-break: normal;
  white-space: normal;
}

.parallax-service-copy .parallax-number {
  text-wrap: pretty;
}

.parallax-service-copy .parallax-text {
  margin-top: 24px;
  text-wrap: pretty;
}

/* Ustawienie kolejności głównych sekcji na stronie */
#video {
  order: 2;
  padding-top: 120px;
  padding-bottom: 120px;
}

.parallax-section[aria-label="Parallax image 1"] {
  order: 3;
}

#oferta {
  order: 4;
}

.parallax-section[aria-label="Parallax image 2"] {
  order: 5;
}

#opinie {
  order: 6;
}

#galeria {
  order: 7;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#kontakt {
  order: 8;
}

#kontakt .section-heading {
  text-align: center;
}

#kontakt .section-title::after {
  content: none;
}

/* Sekcja oferty i karty z pakietami */
.contact-section {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 80px;
}

.offer-grid,
.gallery-grid {
  display: grid;
  gap: 24px;
}

#oferta .container {
  max-width: 1100px;
}

.offer-grid {
  grid-template-columns: 1fr;
  gap: 28px;
}

.info-card,
.review-card,
.contact-form {
  background: rgba(20, 20, 24, 0.92);
  border: 1px solid rgba(232, 193, 122, 0.16);
  border-radius: var(--radius-large);
  box-shadow: 0 24px 40px -32px rgba(0, 0, 0, 0.5);
}

.info-card {
  padding: 28px;
}

.offer-card {
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.offer-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(232, 193, 122, 0.28);
  box-shadow: 0 26px 48px -30px rgba(0, 0, 0, 0.58);
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.5rem;
  color: #ffffff;
}

.offer-details {
  display: grid;
  gap: 32px;
  margin-top: 40px;
}

.offer-subtitle {
  margin: 0 0 24px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  color: #ffffff;
}

.offer-list {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 12px;
  color: #d0d0d0;
}

.offer-list li::marker {
  color: #e8c17a;
}

.offer-packages {
  display: grid;
  gap: 24px;
}

.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.package-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
}

.package-card h4 {
  margin: 0;
  font-size: 1.4rem;
  color: #ffffff;
}

.compact-list {
  gap: 10px;
}

.package-price {
  margin: auto 0 0;
  padding-top: 8px;
  font-weight: 700;
  color: #e8c17a;
}

.package-card-featured {
  border-color: rgba(232, 193, 122, 0.16);
  box-shadow: 0 24px 40px -32px rgba(0, 0, 0, 0.5);
}

.offer-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.offer-cta {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 32px;
  border: 2px solid #e6c07a;
  border-radius: 30px;
  background: transparent;
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.offer-cta:hover {
  background: rgba(230, 192, 122, 0.1);
  box-shadow: 0 0 12px rgba(230, 192, 122, 0.35);
  transform: scale(1.05);
}

.info-card p,
.review-card blockquote,
.contact-copy,
.contact-form {
  color: #d0d0d0;
}

/* Sekcja opinii i slider recenzji */
.reviews-slider {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  overflow: visible;
}

.reviews-track-wrap {
  overflow: hidden;
  padding: 14px 0 12px;
  background: transparent;
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(100% - 16px);
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 8px 6px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  background: transparent;
  box-sizing: border-box;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-height: 100%;
  padding: 24px;
  background: #1c1d21;
  border: 1px solid rgba(230, 192, 122, 0.35);
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  box-sizing: border-box;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 192, 122, 0.5);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.review-stars {
  margin: 0 0 18px;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #d98c1d;
}

.review-card blockquote {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.review-author {
  margin: 22px 0 0;
  font-weight: 700;
  color: #ffffff;
}

.review-meta {
  margin: 8px 0 0;
  color: #e8c17a;
  font-size: 0.96rem;
  letter-spacing: 0.04em;
}

.reviews-progress {
  position: relative;
  grid-column: 1 / -1;
  width: min(100%, 420px);
  height: 4px;
  margin: 8px auto 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.reviews-progress-bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 24%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(232, 193, 122, 0.65), rgba(255, 228, 179, 0.95));
  box-shadow: 0 0 14px rgba(232, 193, 122, 0.24);
  transition: left 0.25s ease, width 0.25s ease;
}

/* Wspólne kontrolki interaktywne */
.slider-button,
.dot,
.lightbox-close,
.scroll-to-top {
  border: 0;
  cursor: pointer;
}

.slider-button {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 10px 18px -18px rgba(0, 0, 0, 0.35);
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

#review-prev,
#review-next {
  display: none;
}

.slider-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border-color: rgba(232, 193, 122, 0.24);
  box-shadow: 0 12px 22px -18px rgba(0, 0, 0, 0.4);
}

.slider-button:focus-visible {
  outline: none;
  border-color: rgba(232, 193, 122, 0.4);
  box-shadow:
    0 0 0 3px rgba(232, 193, 122, 0.08),
    0 10px 18px -18px rgba(0, 0, 0, 0.35);
}

/* Sekcja galerii zdjęć */
.gallery-grid {
  width: min(calc(100% - 40px), var(--container-width));
  margin: 0 auto;
  grid-template-columns: 1fr;
}

.gallery-item {
  padding: 0;
  border: 1px solid rgba(232, 193, 122, 0.16);
  background: rgba(20, 20, 24, 0.92);
  border-radius: var(--radius-large);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 24px 40px -32px rgba(0, 0, 0, 0.5);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 320ms ease;
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(232, 193, 122, 0.28);
  box-shadow: 0 26px 48px -30px rgba(0, 0, 0, 0.58);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* Sekcja kontaktu i formularz */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.contact-copy {
  display: contents;
}

.contact-heading-wrap {
  display: block;
  width: 100%;
}

.contact-rail {
  display: contents;
}

.contact-copy .section-heading {
  order: 1;
  margin-bottom: 0;
}

.contact-header {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.contact-header .section-title {
  margin-bottom: 0;
}

.contact-underline {
  width: 140px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 200, 120, 0),
    rgba(255, 200, 120, 1),
    rgba(255, 200, 120, 0)
  );
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.8s ease;
}

.contact-list,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-list {
  order: 4;
  margin-top: 0;
  width: max-content;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(24, 24, 29, 0.9);
  border: 1px solid rgba(232, 193, 122, 0.16);
  color: #d0d0d0;
}

.contact-item img,
.social-links img {
  width: 24px;
  height: 24px;
}

.social-links {
  order: 5;
  margin-top: 0;
  justify-content: center;
  gap: 16px;
  padding-top: 6px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(24, 24, 29, 0.9);
  border: 1px solid rgba(232, 193, 122, 0.16);
}

.contact-response-note {
  margin: 0;
  color: rgba(243, 243, 243, 0.72);
  font-size: 0.98rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.contact-response-note-desktop {
  display: none;
}

.contact-response-note-mobile {
  order: 3;
  margin-top: 2px;
  text-align: center;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 28px;
  order: 2;
  width: 100%;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  font-weight: 700;
  color: #ffffff;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(232, 193, 122, 0.14);
  border-radius: var(--radius-small);
  background: rgba(12, 12, 15, 0.92);
  color: #f3f3f3;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(243, 243, 243, 0.48);
  font-size: 0.95rem;
}

.native-select {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.contact-form input[type="date"] {
  color-scheme: dark;
}

.contact-form input[type="date"].is-empty {
  color: rgba(243, 243, 243, 0.48);
  font-size: 0.95rem;
}

.contact-form input[type="date"].is-empty::-webkit-datetime-edit {
  color: rgba(243, 243, 243, 0.48);
}

.contact-form input[type="date"]:not(.is-empty)::-webkit-datetime-edit {
  color: #f3f3f3;
}

.contact-form input[type="date"]::-webkit-calendar-picker-indicator {
  filter: brightness(0) invert(1);
  opacity: 1;
  cursor: pointer;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(232, 193, 122, 0.48);
  box-shadow: 0 0 0 1px rgba(232, 193, 122, 0.22);
}

.custom-select {
  position: relative;
}

.custom-select-trigger {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(232, 193, 122, 0.14);
  border-radius: var(--radius-small);
  background: rgba(12, 12, 15, 0.92);
  color: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: normal;
}

.custom-select-value {
  flex: 1;
  font: inherit;
}

.custom-select.is-placeholder .custom-select-value {
  color: rgba(243, 243, 243, 0.48);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: normal;
}

.custom-select-arrow {
  width: 8px;
  height: 8px;
  margin-right: 4px;
  border-right: 1.8px solid rgba(255, 255, 255, 0.88);
  border-bottom: 1.8px solid rgba(255, 255, 255, 0.88);
  transform: rotate(45deg) translateY(-1px);
  transition: transform var(--transition);
}

.custom-select.is-open .custom-select-arrow {
  transform: rotate(-135deg) translateY(-1px);
}

.custom-select-trigger:focus,
.custom-select.is-open .custom-select-trigger {
  outline: none;
  border-color: rgba(232, 193, 122, 0.48);
  box-shadow: 0 0 0 1px rgba(232, 193, 122, 0.22);
}

.contact-form input.is-invalid,
.contact-form textarea.is-invalid,
.custom-select.is-invalid .custom-select-trigger {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 1px rgba(255, 107, 107, 0.22);
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(232, 193, 122, 0.14);
  border-radius: 14px;
  background: rgba(18, 18, 24, 0.72);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity var(--transition),
    transform var(--transition),
    visibility var(--transition);
  z-index: 8;
}

.custom-select.is-open .custom-select-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select-option {
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #f5efe5;
  text-align: left;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition);
}

.custom-select-option:hover,
.custom-select-option.is-selected {
  background: rgba(232, 193, 122, 0.08);
  color: #ffffff;
}

.contact-form button[type="submit"] {
  margin-top: 0;
  border: 1px solid rgba(232, 193, 122, 0.5);
  background: rgba(255, 255, 255, 0.03);
  color: #fff5e6;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 0 1px rgba(232, 193, 122, 0.08);
}

.contact-form button[type="submit"]:hover {
  background: rgba(232, 193, 122, 0.08);
  border-color: rgba(232, 193, 122, 0.72);
  box-shadow:
    0 0 18px rgba(232, 193, 122, 0.18),
    0 10px 24px -18px rgba(0, 0, 0, 0.65);
}

.contact-form > .primary-button[type="submit"] {
  width: 100%;
  justify-self: stretch;
  order: 2;
}

.contact-form > .form-message.full-width {
  margin-top: 12px;
  grid-column: 1 / -1;
  align-self: center;
  min-height: 1.4em;
  font-size: 0.95rem;
  order: 1;
}

.form-message.is-error {
  color: #ff6b6b;
}

.form-message.is-success {
  color: #5fd68e;
}

.full-width {
  grid-column: 1 / -1;
}

/* Stopka strony */
.site-footer {
  min-height: 64px;
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 10px 20px -18px rgba(255, 255, 255, 0.12),
    inset 0 -14px 20px -18px rgba(0, 0, 0, 0.9),
    0 -14px 30px -24px rgba(0, 0, 0, 0.7);
}

.site-footer .container {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer p {
  margin: 0;
  text-align: center;
  color: rgba(243, 243, 243, 0.82);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
}

/* Lightbox galerii i przycisk powrotu do góry */
.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 7, 7, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 40;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(100%, 1100px);
  max-height: 85vh;
  border-radius: var(--radius-medium);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 2rem;
}

.scroll-to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 14px 24px -20px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.03);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px) scale(0.92);
  transition:
    opacity var(--transition),
    transform var(--transition),
    visibility var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
  z-index: 30;
}

.scroll-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(232, 193, 122, 0.22);
  box-shadow:
    0 16px 28px -18px rgba(0, 0, 0, 0.5),
    0 0 12px rgba(232, 193, 122, 0.08);
}

.scroll-to-top:focus-visible {
  outline: none;
  border-color: rgba(232, 193, 122, 0.34);
  box-shadow:
    0 0 0 3px rgba(232, 193, 122, 0.1),
    0 14px 24px -20px rgba(0, 0, 0, 0.42);
}

.scroll-to-top img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(0) invert(0.82);
}

/* Klasy pomocnicze do animowania wejścia sekcji */
.reveal-section {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsywnosc - tablet */
@media (min-width: 768px) {
  :root {
    --section-padding: 80px;
  }

  .reviews-track-wrap {
    overflow: visible;
    padding: 14px 0 12px;
  }

  .reviews-track {
    grid-auto-columns: calc((100% - 24px) / 2);
    padding: 10px 0 6px;
    scroll-padding-inline: 0;
  }

  .reviews-slider {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
  }

  #review-prev,
  #review-next {
    display: inline-flex;
  }

  .hero-events.hero-services {
    width: min(100%, 900px);
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 30px;
  }

  .hero-events.hero-services li {
    width: auto;
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .hero-events.hero-services li::before,
  .hero-events.hero-services li::after {
    content: none;
  }

  .hero-events.hero-services li:not(:last-child)::after {
    content: "\2022" !important;
    color: rgba(243, 217, 166, 0.72);
  }

  .hero-content {
    max-width: 760px;
  }

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

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

  .reviews-track {
    grid-auto-columns: calc((100% - 24px) / 2);
  }

  .slider-button {
    width: 48px;
    height: 48px;
  }
}

/* Responsywnosc - desktop */
@media (min-width: 1200px) {
  :root {
    --header-height: 76px;
    --section-padding: 96px;
  }

  .site-header {
    padding-top: 22px;
  }

  .header-inner {
    width: min(calc(100vw - 56px), 1280px);
    min-height: var(--header-height);
    padding: 10px 20px 10px 26px;
    border-radius: 999px;
    border-color: transparent;
    flex-wrap: nowrap;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    width: auto;
    order: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    padding-top: 0;
    max-height: none;
    overflow: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a,
  .site-nav .nav-cta {
    width: auto;
    padding: 10px 14px;
    font-size: 0.94rem;
    background: transparent;
    border: 0;
  }

  .site-nav .nav-cta {
    padding-inline: 18px;
    border: 1px solid rgba(225, 182, 118, 0.42);
    background: rgba(255, 255, 255, 0.03);
  }

  .hero-shell {
    min-height: 100vh;
    min-height: 100svh;
    width: min(calc(100% - 80px), 1520px);
    padding: calc(var(--header-height) + 28px) 0 28px;
  }

  .hero-content {
    max-width: 1400px;
  }

  .hero-title,
  .hero-content h1 {
    max-width: 90vw;
    font-size: clamp(5rem, 6vw, 8rem);
    line-height: 1.05;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .hero-description {
    width: min(100%, 36ch);
    max-width: 760px;
    margin-top: 40px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.8rem, 1.9vw, 2.35rem);
    font-weight: 700;
    line-height: 1.2;
  }

  .hero-cta-button {
    margin-top: clamp(72px, 8vh, 108px);
    min-height: 64px;
    padding: 20px 38px;
    font-size: 1.02rem;
  }

  .hero-events {
    gap: 18px 38px;
    margin-top: 40px;
    width: min(100%, 1100px);
    padding-bottom: 18px;
  }

  .hero-events li {
    width: auto;
    gap: 38px;
    font-size: 1.02rem;
    letter-spacing: 0.2em;
  }

  .hero-events li::before {
    content: none;
  }

  .hero-events li:not(:last-child)::after {
    content: "\2022" !important;
    color: rgba(243, 217, 166, 0.72);
  }

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

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

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

  .contact-layout {
    grid-template-columns: minmax(360px, 420px) minmax(0, 680px);
    justify-content: space-between;
    gap: 48px;
  }

  .contact-copy {
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 18px;
    width: 100%;
    max-width: 420px;
    padding-top: 10px;
  }

  .contact-copy .section-heading,
  .contact-list,
  .social-links,
  .contact-form,
  .contact-response-note-mobile {
    order: initial;
  }

  .contact-copy .section-heading {
    width: 100%;
    margin-bottom: 28px;
  }

  #kontakt .section-heading {
    text-align: left;
  }

  .contact-list {
    margin-top: 8px;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }

  .contact-item {
    width: auto;
    justify-content: center;
    padding: 13px 18px;
  }

  .social-links {
    width: 100%;
    margin-top: 10px;
    justify-content: center;
    gap: 16px;
    padding-top: 4px;
  }

  .contact-list {
    width: 100%;
    max-width: none;
    margin-top: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 14px;
  }

  .contact-item {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 16px;
  }

  .social-links {
    width: 100%;
    max-width: none;
    margin-top: 12px;
    justify-content: flex-start;
    gap: 18px;
    padding-top: 0;
    flex-wrap: nowrap;
  }

  .contact-response-note-desktop {
    display: block;
    width: 100%;
    margin-top: 34px;
    text-align: left;
    font-size: 1.08rem;
    white-space: nowrap;
  }

  .contact-response-note-mobile {
    display: none;
  }

  .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 680px;
    justify-self: end;
    padding: 36px 38px;
  }

  .contact-form > .primary-button[type="submit"] {
    width: auto;
    justify-self: start;
  }

  .contact-form > .form-message.full-width {
    grid-column: 2;
  }

  .reviews-slider {
    gap: 18px;
  }

  .reviews-track {
    grid-auto-columns: calc((100% - 48px) / 3);
    gap: 24px;
  }

  .reviews-progress {
    width: min(100%, 320px);
  }

  .review-card {
    padding: 28px;
  }

  .slider-button {
    width: 52px;
    height: 52px;
  }

  .scroll-to-top {
    right: 24px;
    bottom: 24px;
    width: 50px;
    height: 50px;
    padding: 10px;
  }

  .parallax-section {
    height: 85vh;
  }

  .parallax-bg {
    transform: translateY(0);
  }

  .parallax-content {
    gap: 28px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .parallax-card {
    flex: 1 1 240px;
    max-width: 320px;
    padding: 28px 24px;
  }

  .parallax-service-copy {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
  }

  .contact-layout.container {
    width: min(calc(100vw - 64px), 1360px);
    max-width: none;
    padding-left: 32px;
    padding-right: 32px;
  }

  #kontakt .contact-layout {
    grid-template-columns: minmax(380px, 460px) minmax(0, 760px);
    justify-content: space-between;
    gap: 64px;
    align-items: start;
  }

  #kontakt .contact-copy {
    max-width: 460px;
    gap: 20px;
    padding-top: 12px;
  }

  #kontakt .contact-copy .section-heading {
    margin-bottom: 0;
    padding-left: 0;
  }

  #kontakt .section-heading {
    text-align: center;
  }

  #kontakt .section-title {
    display: block;
    width: 100%;
    max-width: none;
  }

  #kontakt .contact-list {
    width: 100%;
    max-width: 400px;
    gap: 18px;
  }

  #kontakt .contact-item {
    min-height: 68px;
    padding: 18px 22px;
    font-size: 1.03rem;
  }

  #kontakt .social-links {
    width: 100%;
    max-width: 400px;
    margin-top: 14px;
    gap: 18px;
  }

  #kontakt .social-links a {
    width: 58px;
    height: 58px;
  }

  #kontakt .contact-form {
    max-width: 760px;
    padding: 42px 40px 38px;
    border-radius: 32px;
  }

  #kontakt .contact-form label {
    gap: 12px;
  }

  #kontakt .contact-form input,
  #kontakt .contact-form select,
  #kontakt .contact-form textarea,
  #kontakt .custom-select-trigger {
    min-height: 72px;
    padding: 18px 22px;
    border-radius: 18px;
  }

  #kontakt .contact-form textarea {
    min-height: 206px;
  }

  #kontakt .contact-form > .primary-button[type="submit"] {
    min-width: 238px;
    min-height: 72px;
    border-radius: 999px;
    padding-left: 34px;
    padding-right: 34px;
  }

  #kontakt {
    --contact-shell-width: min(1360px, calc(100vw - 64px));
    --contact-shell-left: calc((100vw - var(--contact-shell-width)) / 2 + 32px);
    --contact-heading-width: 340px;
    --contact-rail-width: 400px;
  }

  #kontakt .contact-layout.container {
    width: var(--contact-shell-width);
    max-width: none;
    padding-left: 32px;
    padding-right: 32px;
  }

  #kontakt .contact-copy {
    width: 100%;
    max-width: var(--contact-rail-width);
    justify-items: start;
    gap: 0;
    padding-top: 12px;
  }

  #kontakt .contact-heading-wrap {
    display: grid;
    justify-items: center;
    justify-self: start;
    width: 100%;
    max-width: none;
    margin: 0 0 56px;
  }

  #kontakt .contact-heading-wrap.section-heading {
    width: 100%;
    margin: 0;
    text-align: center;
  }

  #kontakt .section-title {
    display: block;
    width: 100%;
    max-width: none;
  }

  #kontakt .contact-rail {
    display: grid;
    justify-items: start;
    width: 100%;
    max-width: none;
    margin-top: 64px;
  }

  #kontakt .contact-list {
    width: 100%;
    max-width: none;
    margin-top: 0;
    gap: 18px;
  }

  #kontakt .social-links {
    width: 100%;
    max-width: none;
    margin-top: 14px;
    padding-left: 0;
    justify-content: flex-start;
    gap: 18px;
  }

  #kontakt .contact-response-note-desktop {
    max-width: none;
    margin-top: 34px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  #kontakt .contact-response-note-mobile {
    font-size: 1.08rem;
  }
}
