:root {
  --color-cream: #faf7f2;
  --color-warm-white: #fffdfb;
  --color-sand: #e8e2d9;
  --color-taupe: #b5a99a;
  --color-olive: #7a8b6e;
  --color-olive-dark: #5c6b52;
  --color-charcoal: #2d2d2d;
  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "Outfit", sans-serif;
  --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-cream);
  color: var(--color-charcoal);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

/* Texture Overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.05;
  pointer-events: none;
  z-index: 9999;
}

.cursor-glow {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(122, 139, 110, 0.08) 0%,
    rgba(250, 247, 242, 0) 70%
  );
  position: fixed;
  pointer-events: none;
  z-index: 0;
  transition:
    width 0.3s,
    height 0.3s;
}

/* --- NAVIGATION SYSTEM --- */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition:
    padding 0.4s ease,
    background 0.4s ease; /* Skupiamy się na konkretach */
  backface-visibility: hidden;
}

.location-topbar {
  text-align: center;
  padding-bottom: 15px;
  font-size: 0.65rem;
  letter-spacing: 4px;
  color: var(--color-taupe);
  transition: all 0.3s ease;
  opacity: 1;
  height: auto;
}

header {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  /* Zmieniamy padding na stały, by uniknąć zmiany szerokości wewnętrznej */
  padding: 12px 30px;
  border-radius: 100px;
  transition: var(--transition);
  border: 1px solid transparent;
  background: transparent;
}

/* SCROLLED STATE */
.nav-wrapper.scrolled {
  padding: 10px 0; /* Mniejszy padding zamiast translateY */
}

.nav-wrapper.scrolled .location-topbar {
  opacity: 0;
  height: 0;
  padding: 0;
  margin: 0;
  pointer-events: none; /* Żeby nie dało się kliknąć w coś niewidocznego */
  overflow: hidden;
}

.nav-wrapper.scrolled header {
  background: rgba(255, 253, 251, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  /* Padding teraz jest taki sam jak w bazowym headerze */
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 30px rgba(122, 139, 110, 0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  letter-spacing: 3px;
  color: var(--color-olive-dark);
  transition: var(--transition);
}

.logo em {
  font-weight: 300;
  font-style: italic;
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-charcoal);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.6;
  position: relative;
  transition: opacity 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--color-olive);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a:hover::after {
  width: 100%;
}

.header-cta {
  background: var(--color-olive);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 1px;
  transition: var(--transition);
}

.header-cta:hover {
  background: var(--color-olive-dark);
  transform: scale(1.05);
}

/* --- HERO SECTION --- */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 5%;
}

.hero-content {
  max-width: 900px;
  text-align: center;
  z-index: 2;
}

.hero-badge {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-olive);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  line-height: 1.2;
  font-weight: 300;
  margin-bottom: 30px;
}

.hero h1 em {
  font-style: italic;
  display: inline-block;
  padding-right: 5px;
  background: linear-gradient(
    to right,
    var(--color-olive) 0%,
    #b8c5a9 25%,
    var(--color-olive-dark) 50%,
    #b8c5a9 75%,
    var(--color-olive) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation:
    shimmer 6s linear infinite,
    softGlow 4s ease-in-out infinite alternate;
}

@keyframes shimmer {
  to {
    background-position: 200% center;
  }
}
@keyframes softGlow {
  0% {
    filter: drop-shadow(0 0 5px rgba(122, 139, 110, 0.2));
    opacity: 0.9;
  }
  100% {
    filter: drop-shadow(0 0 15px rgba(122, 139, 110, 0.5));
    opacity: 1;
  }
}

.hero-description {
  font-size: 0.75rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: var(--color-taupe);
  margin-bottom: 60px;
}

.hero-cta-group {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.btn-primary {
  padding: 20px 48px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  background: var(--color-olive);
  color: white;
  border: 1px solid var(--color-olive);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

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

.btn-secondary {
  font-size: 0.85rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-charcoal);
  position: relative;
  padding: 12px 0;
}

.btn-secondary::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-olive);
  transform: scaleX(0.15);
  transform-origin: center;
  transition: var(--transition);
}

.btn-secondary:hover::after {
  transform: scaleX(1);
}
/* --- Poprawki dla urządzeń mobilnych (Hero Section Balance) --- */
@media (max-width: 768px) {
  /* 1. Zwiększenie przestrzeni sekcji, aby napis miał "scenę" */
  .hero {
    padding: 140px 20px 80px 20px;
    min-height: auto; /* Pozwalamy sekcji rosnąć wraz z treścią */
  }

  /* 2. Dominujący nagłówek - większy i bardziej zwarty */
  .hero h1 {
    font-size: clamp(3.2rem, 12vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
  }

  /* 3. Subtelniejszy opis, który nie walczy o uwagę z H1 */
  .hero-description {
    font-size: 0.85rem;
    line-height: 1.8;
    letter-spacing: 0.15em;
    max-width: 90%;
    margin: 0 auto 40px auto;
    opacity: 0.9;
  }

  /* 4. Przyciski jeden pod drugim - solidna podstawa wizualna */
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    max-width: 320px; /* Aby przyciski nie były nienaturalnie szerokie */
    margin: 0 auto;
    gap: 15px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 20px;
    justify-content: center;
  }

  /* 5. Mniejszy badge, by nie odciągał wzroku od góry */
  .hero-badge {
    font-size: 0.65rem;
    padding: 6px 14px;
    margin-bottom: 20px;
  }
}

/* --- ORBS --- */
.hero-orb {
  position: absolute;
  filter: blur(100px);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.3;
  pointer-events: none;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--color-sand);
  top: 10%;
  right: -5%;
  animation: orbFloatMain 25s ease-in-out infinite alternate;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--color-olive);
  bottom: 5%;
  left: 5%;
  animation: orbFloatSecondary 30s ease-in-out infinite alternate;
}

@keyframes orbFloatMain {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-10vw, 5vh) scale(1.1);
  }
}

@keyframes orbFloatSecondary {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(15vw, -10vh);
  }
}

/* --- COMPACT VALUES BAR --- */
.values-bar {
  background-color: #f2ede4; /* Bardzo subtelne odcięcie od cream */
  padding: 60px 0;
  position: relative;
  border-top: 1px solid rgba(122, 139, 110, 0.1);
}

.values-bar-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  gap: 60px;
}

.values-title-box {
  min-width: 180px;
  border-right: 1px solid var(--color-olive);
  padding-right: 30px;
}

.values-pre {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-olive);
  margin-bottom: 8px;
}

.values-title-box h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-charcoal);
  line-height: 1.1;
}

.values-items {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.v-item {
  flex: 1;
}

.v-item h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-olive-dark);
  margin-bottom: 10px;
}

.v-item p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--color-taupe);
  font-weight: 300;
  margin: 0;
}

.v-divider {
  width: 1px;
  height: 50px;
  background-color: var(--color-olive);
  opacity: 0.15;
  align-self: center;
}

/* Responsywność */
@media (max-width: 1024px) {
  .values-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .values-title-box {
    border-right: none;
    border-bottom: 1px solid var(--color-olive);
    padding-right: 0;
    padding-bottom: 20px;
    width: 100%;
  }
  .values-items {
    flex-direction: column;
    gap: 30px;
  }
  .v-divider {
    display: none;
  }
}

/* --- Subtelny Editorial Ribbon (Mobile) --- */
@media (max-width: 768px) {
  .values-bar {
    /* Używamy nieco głębszego odcienia piasku dla delikatnego kontrastu */
    background-color: #f0ede6;
    padding: 70px 0;
    margin: 20px 0;
    overflow: hidden; /* Zapewnia, że wystający napis nie zepsuje skrolowania strony */
    position: relative;
    border-top: 1px solid rgba(181, 169, 154, 0.2);
    border-bottom: 1px solid rgba(181, 169, 154, 0.2);
  }

  .values-bar-inner {
    flex-direction: column;
    gap: 0;
    padding: 0 25px;
  }

  .values-title-box {
    border: none;
    padding: 0;
    text-align: left;
    margin-bottom: -15px;
    position: relative;
    z-index: 1;
  }

  .values-title-box h2 {
    font-family: var(--font-serif);
    /* Wielki napis - wystawanie poza ekran jest stylowe (feeling premium) */
    font-size: 4.8rem;
    line-height: 1;
    color: var(--color-taupe);
    opacity: 0.25; /* Bardzo blady, by nie bił po oczach */
    font-style: italic;
    white-space: nowrap;
    margin-left: -20px; /* Lekkie przesunięcie w lewo */
    letter-spacing: -2px;
  }

  .values-items {
    flex-direction: column;
    gap: 40px;
    width: 100%;
    position: relative;
    z-index: 2;
  }

  .v-item {
    text-align: left;
    padding-left: 20px;
    /* Subtelna pionowa linia przy każdym punkcie dla porządku */
    border-left: 1px solid var(--color-olive);
  }

  .v-item h3 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-olive-dark);
    margin-bottom: 6px;
  }

  .v-item p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--color-charcoal);
    opacity: 0.8;
    max-width: 280px;
  }

  /* Ukrywamy dividery z desktopu */
  .v-divider {
    display: none;
  }
}

/* --- ABOUT MANIFESTO - REFINED VERSION --- */
.about-manifesto {
  padding: 100px 5%;
  background-color: var(--color-cream);
  overflow: hidden;
}

.manifesto-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.manifesto-visual {
  flex: 1;
  position: relative;
}

.image-wrapper {
  position: relative;
  z-index: 2;
}

/* ==========================================
   ABOUT MANIFESTO - ZREDAGOWANE I CZYSTE STYLE
   ========================================== */

/* Podstawa struktury (Wspólna dla desktop i mobile) */
.about-manifesto .manifesto-container {
  display: flex;
}

.main-img-placeholder {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.manifesto-visual .image-wrapper {
  border-radius: 0px;
}

.main-img-placeholder img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* --- DUŻE EKRANY (KOMPUTER) --- */
@media (min-width: 901px) {
  .about-manifesto .manifesto-container {
    align-items: stretch;
  }

  .main-img-placeholder {
    height: 100%;
    min-height: 500px;
  }
}

/* --- MAŁE EKRANY (TELEFON / TABLET) --- */
@media (max-width: 900px) {
  .main-img-placeholder {
    height: 65vh; /* Elastyczna wysokość obrazu na telefonie */
    min-height: 450px; /* Minimalny bezpiecznik wysokości */
    margin-bottom: 30px;
  }
}

.decorative-frame {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-taupe);
  opacity: 0.3;
  z-index: -1;
}

.manifesto-content {
  flex: 1.2;
}

.manifesto-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-olive);
  display: block;
  margin-bottom: 15px;
}

.manifesto-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 30px;
  color: var(--color-charcoal);
}

.manifesto-content h2 em {
  font-style: italic;
  color: var(--color-olive);
}

.lead-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--color-charcoal);
  margin-bottom: 30px;
}

.split-text {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.split-text p {
  flex: 1;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--color-taupe);
}

.manifesto-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-olive-dark);
  padding-left: 20px;
  border-left: 1px solid var(--color-olive);
  margin: 30px 0;
}

.manifesto-footer {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
}

.signature-initials {
  display: flex;
}

.initial {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.8rem;
  color: var(--color-olive-dark);
  border: 2px solid var(--color-cream);
  margin-right: -12px;
}

.signature-text {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
}

.signature-text strong {
  font-size: 0.85rem;
  color: var(--color-charcoal);
}

.signature-text span {
  font-size: 0.7rem;
  color: var(--color-taupe);
}

@media (max-width: 900px) {
  .manifesto-container {
    flex-direction: column;
    gap: 40px;
  }
  .split-text {
    flex-direction: column;
    gap: 15px;
  }
}
/* --- DARK LUXE SERVICES --- */
.services-dark-luxe {
  padding: 140px 5%;
  background-color: var(--color-charcoal);
  color: var(--color-warm-white);
  position: relative;
  overflow: hidden;
}

.dark-luxe-bg-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(122, 139, 110, 0.08) 0%,
    transparent 80%
  );
  pointer-events: none;
}

.dark-luxe-inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.dark-luxe-header {
  text-align: center;
  margin-bottom: 100px;
}

.luxe-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: var(--color-olive);
  display: block;
  margin-bottom: 20px;
}

.dark-luxe-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 20px;
}

.dark-luxe-header h2 em {
  font-style: italic;
  opacity: 0.8;
}

.dark-luxe-header p {
  color: var(--color-taupe);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
  font-size: 0.95rem;
}

.dark-luxe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.luxe-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(181, 169, 154, 0.05);
  padding: 60px 45px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.luxe-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--color-sand);
  transform: translateY(-10px);
}

.luxe-card.featured {
  border-color: rgba(232, 226, 217, 0.3);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}

.luxe-icon-wrap {
  width: 40px;
  height: 40px;
  color: var(--color-sand);
  margin-bottom: 40px;
  opacity: 0.8;
}

.luxe-content h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.luxe-content p {
  font-size: 0.9rem;
  color: var(--color-taupe);
  line-height: 1.8;
  margin-bottom: 35px;
  font-weight: 300;
}

.luxe-list {
  list-style: none;
  border-top: 1px solid rgba(181, 169, 154, 0.1);
  padding-top: 30px;
}

.luxe-list li {
  font-size: 0.8rem;
  margin-bottom: 12px;
  color: var(--color-sand);
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 300;
}

.luxe-list li::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--color-olive);
  border-radius: 50%;
}

@media (max-width: 1024px) {
  .dark-luxe-grid {
    grid-template-columns: 1fr;
  }
}

/* --- PACKAGES MONOLITH --- */
.packages-monolith {
  display: flex;
  min-height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.monolith-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 8%;
  position: relative;
  transition: var(--transition);
}

/* Panel Terapia - Ciemny */
.monolith-panel.therapy {
  background-color: var(--color-charcoal);
  color: var(--color-warm-white);
}

/* Panel Estetyka - Jasny */
.monolith-panel.aesthetic {
  background-color: var(--color-warm-white);
  color: var(--color-charcoal);
  border-left: 1px solid var(--color-sand);
}

.monolith-content {
  position: relative;
  z-index: 2;
  max-width: 480px;
}

.monolith-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: var(--color-olive);
  margin-bottom: 20px;
}

.monolith-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 30px;
  font-weight: 300;
}

.monolith-title em {
  font-style: italic;
}

.monolith-price {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 200;
  margin-bottom: 25px;
}

.monolith-price span {
  font-size: 1rem;
  letter-spacing: 2px;
  font-family: var(--font-sans);
  opacity: 0.8;
}

.monolith-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0.9;
  font-weight: 300;
}

.monolith-list {
  list-style: none;
  margin-bottom: 60px;
  border-top: 1px solid rgba(122, 139, 110, 0.3);
  padding-top: 30px;
}

.monolith-list li {
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.monolith-list li::before {
  content: "—";
  color: var(--color-olive);
}

/* Przyciski */
.monolith-btn {
  padding: 22px 45px;
  background: transparent;
  border: 1px solid var(--color-olive);
  color: var(--color-charcoal);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
}

.monolith-btn:hover {
  background: var(--color-olive);
  color: white;
}

.monolith-btn.btn-light {
  border-color: var(--color-sand);
  color: var(--color-warm-white);
}

.monolith-btn.btn-light:hover {
  background: var(--color-warm-white);
  color: var(--color-charcoal);
}

/* Tekst w tle */
.monolith-bg-text {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 12vw;
  font-weight: 900;
  opacity: 0.03;
  pointer-events: none;
  white-space: nowrap;
}

.monolith-panel:hover {
  flex: 1.15;
}

@media (max-width: 1024px) {
  .packages-monolith {
    flex-direction: column;
  }
  .monolith-panel {
    padding: 80px 10%;
    min-height: 80vh;
  }
  .monolith-bg-text {
    font-size: 25vw;
    bottom: 20px;
  }
}

/* ==========================================================================
   MODERN LUXURY PRICING STYLES (BOTANICAL OPLOT RESPONSIVE)
   ========================================================================== */

.pricing-luxury-section {
  padding: 120px 0; /* Górny padding dostosowany do sekcji na stronie */
  background-color: var(--color-cream); /* Spójne tło z Twojego projektu */
  overflow: hidden;
  position: relative;
}

.luxury-container {
  width: 90%;
  max-width: 850px;
  margin: 0 auto;
}

/* --- NAGŁÓWEK I STRUKTURA OPLOTU --- */
.pricing-unified-header {
  margin-bottom: 50px !important;
  text-align: center;
  display: flex;
  justify-content: center;
}

.luxury-wrap-decorator {
  position: relative;
  padding: 30px 70px;
  display: inline-block;
}

.leaf-layer-back,
.leaf-layer-front {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.leaf-layer-back {
  background-image: url("../img/galazka-cennik-pod.png");
  z-index: 1;
  opacity: 0.5;
}

.leaf-layer-front {
  background-image: url("../img/galazka-cennik-nad.png");
  z-index: 3;
  opacity: 0.8;
}

.luxury-wrap-decorator h2,
.luxury-wrap-decorator .luxe-label {
  position: relative;
  z-index: 2;
}

.pricing-luxury-section .pricing-unified-header h2 {
  margin: 10px 0;
}

/* Ruch na desktopie */
@media (hover: hover) {
  .luxury-wrap-decorator:hover .leaf-layer-back {
    transform: scale(1.02) rotate(-0.5deg);
  }
  .luxury-wrap-decorator:hover .leaf-layer-front {
    transform: scale(1.03) rotate(0.5deg);
  }
}

/* --- UKŁAD LISTY I WIERSZY (DESKTOP) --- */
.luxury-list {
  display: flex;
  flex-direction: column;
}

.luxury-item {
  position: relative;
  padding: 24px 20px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.luxury-flex-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  gap: 30px;
}

.luxury-meta {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  max-width: 80%;
}

.luxury-name {
  font-size: 1.05rem;
  color: var(--color-charcoal);
  font-weight: 400;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.luxury-price {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: var(
    --color-olive-dark
  ); /* Przepiękny stonowany odcień z Twojej palety */
  transition:
    transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    color 0.3s ease;
  white-space: nowrap;
}

/* PAKIETY */
.luxury-item.luxury-featured {
  background-color: #f2ede4; /* Subtelne, kremowo-piaskowe wypełnienie */
  border-radius: 0px;
}

.luxury-recommendation {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-taupe);
  margin-top: 4px;
  font-weight: 400;
}

.luxury-item.luxury-featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: var(--color-olive);
  opacity: 0;
  transform: scaleY(0);
  transition:
    transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.3s ease;
}

/* MIKROANIMACJE LINII (DESKTOP) */
.luxury-animated-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-sand);
}

.luxury-animated-line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--color-olive);
  transition:
    width 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    left 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

@media (hover: hover) {
  .luxury-item:hover {
    background-color: rgba(181, 169, 154, 0.04);
  }
  .luxury-item:hover .luxury-name {
    transform: translateX(6px);
  }
  .luxury-item:hover .luxury-price {
    color: var(--color-olive);
    transform: translateX(-6px);
  }
  .luxury-item:hover .luxury-animated-line::after {
    width: 100%;
    left: 0;
  }
  .luxury-item.luxury-featured:hover {
    background-color: #eae4d9;
  }
  .luxury-item.luxury-featured:hover::before {
    opacity: 1;
    transform: scaleY(1);
  }
  .luxury-item.luxury-featured:hover .luxury-name {
    transform: translateX(10px);
  }
}

/* --- REZERWACJA CTA --- */
.luxury-prestige-cta {
  margin-top: 60px;
  text-align: center;
  padding-top: 30px;
}

.prestige-cta-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-taupe);
  margin-bottom: 20px;
}

.prestige-links-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.prestige-link {
  position: relative;
  display: inline-block;
  padding: 6px 0;
  font-size: 1.15rem;
  color: var(--color-charcoal);
  text-decoration: none;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.prestige-separator {
  font-size: 1.15rem;
  color: var(--color-sand);
  user-select: none;
}

.link-underline {
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-charcoal);
  transform: scaleX(0.2);
  transform-origin: bottom left;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

@media (hover: hover) {
  .prestige-link:hover .link-text {
    color: var(--color-olive);
  }
  .prestige-link:hover .link-underline {
    transform: scaleX(1);
    background-color: var(--color-olive);
  }
}

/* DEKORATOR PRZEJŚCIA */
.luxury-section-end {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(181, 169, 154, 0.4) 50%,
    transparent
  );
  position: relative;
  margin-top: 40px;
}

.luxury-section-end::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 5px;
  height: 5px;
  background-color: var(--color-taupe);
}

/* ==========================================================================
   DEDYKOWANE POPRAWKI DLA TELEFONÓW (PERFEKCYJNY RWD MOBILE)
   ========================================================================== */
@media (max-width: 768px) {
  .pricing-luxury-section {
    padding: 80px 0 40px 0; /* Zwarte marginesy pionowe */
  }

  .luxury-container {
    width: 100%;
    padding: 0 20px; /* Margines bezpieczeństwa od boków ekranu */
  }

  /* Wyłączamy gałązki wokół nagłówka – na telefonie stawiamy na czystość */
  .leaf-layer-back,
  .leaf-layer-front {
    display: none !important;
  }

  .luxury-wrap-decorator {
    padding: 0; /* Likwidacja zbędnych pustych przestrzeni */
  }

  .pricing-unified-header h2 {
    font-size: 2.4rem !important; /* Spójna wielkość mobilna h2 z Twojego pliku */
  }

  /* Układ wiersza usługi – idealne wyrównanie w jednej linii */
  .luxury-item {
    padding: 20px 10px; /* Kompaktowe odstępy pionowe */
  }

  .luxury-flex-row {
    align-items: baseline; /* Cena idealnie równa z linią tekstu usługi */
    gap: 15px;
  }

  .luxury-meta {
    max-width: 75%;
  }

  .luxury-name {
    font-size: 0.95rem; /* Delikatniejsza czcionka, by zmieścić długie nazwy */
    line-height: 1.4;
  }

  .luxury-price {
    font-size: 1rem; /* Schludna, nienachalna cena */
    text-align: right;
  }

  /* Wyróżnione pakiety na mobile – pełny, luksusowy monolit bez marginesów */
  .luxury-item.luxury-featured {
    padding-left: 15px;
    padding-right: 15px;
    margin: 5px 0;
  }

  /* Linki kontaktowe ułożone pionowo dla wygody klikania kciukiem */
  .luxury-prestige-cta {
    margin-top: 50px;
  }

  .prestige-links-group {
    flex-direction: column;
    gap: 16px;
  }

  .prestige-separator {
    display: none; /* Ukrywamy ukośnik */
  }

  .prestige-link {
    font-size: 1.1rem;
    padding: 10px 0;
    width: 100%;
  }

  .link-underline {
    transform: scaleX(0.4); /* Wyraźniejsza kreseczka podpowiedzi na mobile */
    left: 50%;
    transform: translateX(-50%) scaleX(0.4);
  }
}

/* --- TEAM DUO SECTION (ALIGNED VERSION) --- */
.team-duo {
  padding: 100px 0;
  background-color: var(--color-warm-white);
  border-top: 1px solid var(--color-sand);
}

.team-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 5%;
}

.team-header-minimal {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-header-minimal h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--color-charcoal);
  margin: 15px 0;
}

.team-header-minimal h2 em {
  font-style: italic;
  color: var(--color-olive);
}

.v-line-decorator {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--color-olive), transparent);
  margin-top: 10px;
}

/* Siatka o równych wysokościach kolumn */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
  align-items: stretch; /* Karty będą miały tę samą wysokość */
}

/* Karta jako kontener Flex */
.specialist-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.portrait-wrapper {
  position: relative;
  margin-bottom: 35px;
}

.portrait-arch {
  position: relative;
  width: 100%;
  height: 480px; /* Wysokość dopasowana do laptopów i sekcji pakiety */
  background-color: var(--color-sand);
  border-radius: 350px 350px 0 0;
  overflow: hidden;
  z-index: 2;
}

/* Animacja Zoom */
.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 2s cubic-bezier(0.2, 0, 0.2, 1);
}

.specialist-card:hover .portrait-img {
  transform: scale(1.07);
}

/* Ramka dekoracyjna */
.portrait-deco-shape {
  position: absolute;
  top: 15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-olive);
  opacity: 0.15;
  border-radius: 350px 350px 0 0;
  z-index: 1;
}

/* Kontener tekstowy - wyrównuje elementy w pionie */
.portrait-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Wypełnia dostępną wysokość karty */
}

.portrait-content h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 15px;
}

/* Bio zajmuje całą wolną przestrzeń, spychając tagi do dołu */
.bio {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-taupe);
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Tagi zawsze w jednej linii na dole */
.scope-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto; /* Magiczne wypchnięcie do dołu */
}

.scope-tags span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-olive-dark);
  padding: 4px 14px;
  border: 1px solid rgba(122, 139, 110, 0.2);
  border-radius: 20px;
  white-space: nowrap;
}

.portrait-tag {
  position: absolute;
  bottom: 30px;
  right: -10px;
  background-color: var(--color-olive);
  color: white;
  padding: 8px 20px;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 3;
}

/* RWD */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .portrait-arch {
    height: 420px;
  }
  .portrait-content {
    align-items: center;
    text-align: center;
  }
}

/* --- FAQ AURA PREMIUM --- */
.faq-section {
  padding: 140px 0;
  background-color: #f9f7f4; /* Bardzo szlachetny, jasny odcień taupe/kremu */
  position: relative;
}

.faq-container {
  padding-inline: clamp(
    20px,
    8vw,
    60px
  ); /* Elastyczny margines bezpieczeństwa */
  max-width: 1000px;
  margin: 0 auto;
}

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

.faq-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 8vw, 3.8rem);
  font-weight: 300;
  color: var(--color-charcoal);
  letter-spacing: -0.01em;
}

/* Accordion - Minimalistyczna lista */
.faq-accordion {
  border-top: 1px solid rgba(181, 169, 154, 0.3);
}

.faq-item {
  border-bottom: 1px solid rgba(181, 169, 154, 0.3);
  margin: 0;
}

/* Delikatne podświetlenie całego rzędu po najechaniu */
.faq-item:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  /* Dodajemy padding horyzontalny (pudding) */
  padding: 40px clamp(15px, 4vw, 40px);
  background: none;
  border: none;
  cursor: pointer;
  gap: clamp(15px, 3vw, 30px);
  transition: background-color 0.4s ease;
}

.faq-number {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-olive);
  opacity: 0.6;
  margin-top: 4px;
}

.faq-q-text {
  flex-grow: 1;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 300;
  color: var(--color-charcoal);
  text-align: left;
  letter-spacing: 0.02em;
}

/* Ikona PLUS -> X (Cienka i precyzyjna) */
.faq-icon-wrap {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-line-h,
.faq-line-v {
  position: absolute;
  background-color: var(--color-olive);
  transition:
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s;
}

.faq-line-h {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
}
.faq-line-v {
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-item.active .faq-icon-wrap {
  transform: rotate(45deg); /* Plus staje się X */
}

/* ULTRA-SMOOTH BODY REVEAL */
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  /* Wydłużamy i wygładzamy transition dla zamykania */
  transition: grid-template-rows 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: grid-template-rows;
}

.faq-item.active .faq-body {
  grid-template-rows: 1fr;
}

.faq-body-inner {
  overflow: hidden;
  opacity: 0;
  transform: translateY(-15px);
  /* Padding tekstu musi być spójny z triggerem, 
     dodatkowo zwiększamy lewy padding, by wyrównać tekst do pytania, a nie do numeru */
  padding-inline: clamp(15px, 4vw, 40px);
  padding-left: clamp(45px, 8vw, 85px);
  max-width: 850px;
  transition:
    opacity 0.5s ease,
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-body-inner {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  /* Przy otwieraniu tekst wchodzi z lekkim delayem dla efektu premium */
  transition:
    opacity 0.5s ease 0.2s,
    transform 0.5s ease 0.2s,
    visibility 0s 0s;
}

.faq-body-inner p {
  color: var(--color-taupe);
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 300;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .faq-section {
    padding: 80px 0;
  }
  .faq-trigger {
    padding: 30px 0;
    gap: 15px;
  }
  .faq-body-inner {
    padding-left: 25px;
  }
  .faq-number {
    display: none;
  } /* Chowanie numeracji na małych ekranach dla czystości */
}

/* --- CONCIERGE: BOUTIQUE REFINED (FINAL VERSION) --- */

.concierge-boutique {
  padding: 100px 0;
  background-color: var(--color-cream);
}

.concierge-container {
  max-width: 1080px;
  margin: 0 auto;
  padding-inline: 24px;
}

.concierge-content {
  background-color: var(--color-olive-dark);
  padding: 50px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 2px;
  gap: 50px;
  position: relative;
}

/* --- LEWA STRONA: TEKST --- */
.concierge-message {
  flex: 1.2;
}

.luxe-label-mini {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-sand);
  display: block;
  margin-bottom: 12px;
  opacity: 0.8;
}

.concierge-h {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.3rem);
  color: #fff;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 15px;
}

.concierge-p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 460px;
  font-weight: 300; /* Szlachetny, lekki tekst bez pogrubień */
}

/* --- PIONOWY DIVIDER --- */
.concierge-line {
  width: 1px;
  height: 60px; /* Wysokość bazowa */
  background-color: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  transition:
    height 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.6s ease;
}

/* Animacja linii tylko na urządzeniach z myszką */
@media (hover: hover) {
  .concierge-content:hover .concierge-line {
    height: 90px;
    background-color: var(--color-sand);
  }
}

/* --- PRAWA STRONA: KONTAKT --- */
.concierge-contact {
  flex: 0.8;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  -webkit-tap-highlight-color: transparent; /* Reset dla mobile */
  outline: none;
}

.contact-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-sand);
  margin-bottom: 8px;
}

.contact-num {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: #fff;
  white-space: nowrap;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  margin-bottom: 8px;
  transition: color 0.4s ease;
}

/* Subtelna zmiana koloru numeru na hover */
@media (hover: hover) {
  .concierge-contact:hover .contact-num {
    color: var(--color-sand);
  }
}

.contact-sub-single {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* --- RESPONSYWNOŚĆ (MOBILE) --- */
@media (max-width: 900px) {
  .concierge-content {
    flex-direction: column;
    text-align: center;
    padding: 45px 24px;
    gap: 30px;
  }

  .concierge-line {
    width: 40px;
    height: 1px !important; /* Blokujemy wysokość, by nie "puchła" na tel */
    background-color: rgba(255, 255, 255, 0.15);
    margin: 0 auto;
    transition: none !important; /* Wyłączamy animacje przy dotyku */
  }

  .concierge-contact {
    width: 100%;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
  }

  /* Feedback po kliknięciu na telefonie */
  .concierge-contact:active {
    background: rgba(255, 255, 255, 0.08);
  }

  .contact-num {
    font-size: 1.5rem;
    color: var(--color-sand);
    margin-bottom: 5px;
  }

  .contact-sub-single {
    white-space: normal;
    font-size: 0.65rem;
    max-width: 220px;
    line-height: 1.4;
  }
}

/* --- FOOTER: SOFT MOSS PREMIUM (STABLE & REFINED) --- */

.monolith-footer {
  background-color: #2a332e;
  color: #e8e2d9;
  padding: 100px 0 40px;
  font-family: var(--font-sans), sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  box-sizing: border-box;
}

.footer-container {
  max-width: 1160px;
  margin: 0 auto;
  padding-inline: 24px;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 70px;
  align-items: start;
}

/* BRANDING */
.f-logo {
  font-family: var(--font-serif), serif;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  margin: 0 0 10px 0;
  color: #fff;
}

.f-logo span {
  font-style: italic;
  color: var(--color-sand);
  font-weight: 300;
}

.f-logo-line {
  width: 35px;
  height: 1px;
  background-color: var(--color-sand);
  margin-bottom: 25px;
  opacity: 0.6;
}

.f-description {
  font-size: 0.85rem;
  line-height: 1.7;
  opacity: 0.5;
  margin-bottom: 25px;
  max-width: 260px;
}

/* NAGŁÓWKI SEKCJI */
.f-label {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-sand);
  margin-bottom: 30px;
  font-weight: 600;
}

/* LISTY I HARMONOGRAM */
.f-schedule,
.f-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.f-schedule li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  opacity: 0.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding-bottom: 6px;
  margin-bottom: 12px;
}

.f-closed {
  font-style: italic;
  opacity: 0.4;
}

/* NAWIGACJA */
.f-nav a {
  text-decoration: none;
  color: inherit;
  font-size: 0.9rem;
  opacity: 0.6;
  display: block;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.f-nav a:hover {
  opacity: 1;
  color: var(--color-sand);
  padding-left: 5px;
}

/* KONTAKT */
.f-address {
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.6;
  margin-bottom: 20px;
}

.f-phone {
  display: block;
  font-size: 1.15rem;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s ease;
}

.f-phone:hover {
  color: var(--color-sand);
}

.f-mail {
  font-size: 0.8rem;
  text-decoration: none;
  color: inherit;
  opacity: 0.4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 10px;
  display: inline-block;
}

/* SOCIAL MEDIA */
.f-socials-row {
  display: flex;
  gap: 12px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.s-link-premium {
  text-decoration: none;
  color: inherit;
  opacity: 0.5;
  transition: all 0.4s ease;
}

.s-link-premium:hover {
  opacity: 1;
  color: var(--color-sand);
  transform: translateY(-2px);
}

.f-sep {
  opacity: 0.2;
}

/* DOLNA BELKA - LEGAL HOVER */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(232, 226, 217, 0.3);
}

.f-legal {
  display: flex;
  gap: 20px;
  align-items: center;
}
.f-policy {
  display: flex;
  gap: 15px;
}

.legal-hover {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.legal-hover:hover {
  color: #ffffff; /* Premium white glow */
  opacity: 1;
}

.f-back-to-top {
  background: none;
  border: none;
  color: inherit;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  cursor: pointer;
}

.f-back-to-top:hover {
  color: var(--color-sand);
}

/* --- RESPONSYWNOŚĆ (WYRÓWNANIE MOBILE) --- */

@media (max-width: 1024px) {
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 650px) {
  .monolith-footer {
    padding: 60px 0 30px;
  }

  .footer-main-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 45px;
  }

  .f-logo-line {
    margin: 0 auto 20px;
  }

  /* Naprawa centrowania opisu */
  .f-description {
    margin: 0 auto 25px auto;
    max-width: 100%;
  }

  .f-socials-row {
    justify-content: center;
  }

  .f-schedule li {
    justify-content: center;
    gap: 20px;
    border-bottom: none;
  }

  .f-nav a {
    padding-left: 0;
  }
  .f-nav a:hover {
    padding-left: 0;
    transform: scale(1.05);
  }

  .f-contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .f-mail {
    align-self: center;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    gap: 20px;
    text-align: center;
  }

  .f-policy {
    justify-content: center;
  }
}

/* --- SCROLL INDICATOR --- */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: opacity 0.5s ease;
}

.scroll-text {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--color-olive-dark);
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(122, 139, 110, 0.2);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--color-olive),
    transparent
  );
  animation: scroll-flow 3s infinite;
}

@keyframes scroll-flow {
  0% {
    top: -40%;
  }
  100% {
    top: 100%;
  }
}

@media (max-width: 768px) {
  .nav-links {
    margin: 0; /* Reset niepotrzebnych marginesów */
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem; /* Odstęp między linkami */
  }

  .nav-wrapper.scrolled {
    padding: 0; /* Mniejszy padding zamiast translateY */
  }

  .nav-wrapper.scrolled .nav-links.active {
    margin: 0;
    padding: 0;
  }

  .nav-links a {
    font-size: 0.6rem;
    letter-spacing: 1px;
  }

  .nav-links a.active-link {
    color: var(--color-olive); /* Kolor aktywny */
    opacity: 1;
    font-weight: 500;
    transform: scale(1.1); /* Opcjonalne delikatne powiększenie */
  }

  header {
    width: 100%;
    padding: 10px 20px;
    border-radius: 0;
  }

  .logo {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .header-cta {
    display: none; /* Chonimy przycisk na bardzo małych ekranach, by nie ściskać menu */
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 20px;
  }
}

::selection {
  background: var(--color-olive);
  color: white;
}

/* --- NOWE SEKCE --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.container-small {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Values */
.values-section {
  padding: 100px 0;
  background: var(--color-warm-white);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.value-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--color-sand);
  display: block;
  margin-bottom: 20px;
}
.value-item h3 {
  margin-bottom: 15px;
  font-family: var(--font-serif);
}

/* About Split */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  align-items: center;
}
.about-image-side {
  padding: 40px;
  position: relative;
}
.image-wrapper {
  background: var(--color-sand);
  border-radius: 300px 300px 0 0;
  position: relative;
}
.experience-badge {
  position: absolute;
  bottom: 40px;
  right: 0;
  background: var(--color-olive);
  color: white;
  padding: 20px;
  border-radius: 50%;
  font-size: 0.8rem;
  text-align: center;
}
.about-text-side {
  padding: 100px;
}
.check-list {
  list-style: none;
  margin-top: 30px;
}
.check-list li::before {
  content: "✓";
  color: var(--color-olive);
  margin-right: 15px;
}

/* FAQ */
.faq-section {
  padding: 120px 0;
}
.faq-item {
  border-bottom: 1px solid var(--color-sand);
  cursor: pointer;
  padding: 25px 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-serif);
  font-size: 1.3rem;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
  color: var(--color-taupe);
  margin-top: 0;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 20px;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Contact */
.contact-section {
  background: var(--color-sand);
  padding: 100px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-info {
  padding: 60px;
}
.contact-details {
  margin-top: 40px;
  display: grid;
  gap: 30px;
}
.map-placeholder {
  background: var(--color-taupe);
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* Footer */
.footer {
  padding: 60px;
  text-align: center;
  border-top: 1px solid var(--color-sand);
}
/* --- MOBILE MENU (PREMIUM DESIGN) --- */
.mobile-toggle {
  display: none; /* Ukryte na komputerach */
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 2000;
}

.mobile-toggle .line {
  width: 30px;
  height: 2px;
  background-color: var(--color-olive-dark);
  transition: all 0.4s ease;
}

/* Stylizacja menu tylko dla mobilnych */
@media (max-width: 1024px) {
  .mobile-toggle {
    display: flex; /* Pokaż przycisk na mobile */
  }

  /* Ukryj przycisk rezerwacji na mobile, jeśli chcesz czystszy wygląd */
  .header-cta {
    display: none;
  }

  /* Przekształcenie listy linków w pełnoekranowe menu */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 1500;

    /* Efekt animacji */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  }

  /* Klasa dodawana przez JS po otwarciu */
  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Stylowanie linków w wersji mobilnej */
  .nav-links a {
    font-family: var(--font-serif); /* Twoja czcionka premium */
    font-size: 2rem; /* Duży, czytelny tekst */
    color: var(--color-olive-dark);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: none; /* Bardziej elegancki wygląd bez caps locka */
    border-bottom: 1px solid transparent;
  }

  .nav-links a::after {
    display: none; /* Usunięcie domyślnego podkreślenia z desktopu */
  }

  .nav-links a:hover {
    color: var(--color-olive);
    transform: scale(1.05);
  }
}

/* Animacja ikony hamburgera */
.mobile-toggle.active .line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mobile-toggle.active .line:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active .line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Blokada przewijania tła gdy menu jest otwarte */
body.menu-open {
  overflow: hidden;
}

/* Podświetlenie aktywnego linku w menu */
.nav-links a.active-link {
  color: var(--color-olive);
  font-weight: 500;
  position: relative;
}

/* Opcjonalnie: Delikatna kropka pod aktywnym linkiem */
.nav-links a.active-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background-color: var(--color-olive);
  border-radius: 50%;
  display: block;
}
