:root {
    --color-primary: #7d4938; /* Ciemniejszy brąz dla lepszego kontrastu */
    --color-secondary: #D4B2A7; /* Róż */
    --color-dark: #1f2937; /* Ciemniejszy tekst dla lepszej czytelności */
    --color-light: #FDFBF8;
    --color-white: #FFFFFF;
    --color-border: #EAE0DC;
    --font-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --shadow-soft: 0 8px 24px rgba(141, 91, 76, 0.1);
    --container-width: 1140px;
    --header-height: 70px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-system); background-color: var(--color-light); color: var(--color-dark); line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { line-height: 1.3; }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }
.header { position: fixed; top: 0; left: 0; width: 100%; height: var(--header-height); background-color: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--color-border); z-index: 100; transition: box-shadow 0.3s ease; }
.header--scrolled { box-shadow: var(--shadow-soft); }
.header__container { display: flex; justify-content: space-between; align-items: center; height: 100%; }
.header__brand { font-size: 1.5rem; font-weight: bold; text-decoration: none; color: var(--color-primary); }
.nav { position: static; }
.nav__list { display: none; list-style: none; }
.nav__link { text-decoration: none; color: var(--color-dark); font-weight: 500; padding: 10px; transition: color 0.2s; }
.nav__link:hover, .nav__link--active { color: var(--color-primary); }
.header__cta { display: none; }
.nav-toggle { display: block; cursor: pointer; background: none; border: none; font-size: 1.8rem; color: var(--color-dark); z-index: 101; }
.section { padding: 80px 0; }
.section__title { font-size: 2.5rem; text-align: center; margin-bottom: 50px; color: var(--color-primary); }
.section__title::after { content: ''; display: block; width: 50px; height: 3px; background-color: var(--color-secondary); margin: 10px auto 0; }
.btn { display: inline-block; padding: 12px 28px; border-radius: 50px; text-decoration: none; font-weight: bold; transition: transform 0.2s, box-shadow 0.2s; border: 2px solid transparent; cursor: pointer; }
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.btn--primary { background-color: var(--color-primary); color: var(--color-white); }
.btn--ghost { border-color: var(--color-primary); color: var(--color-primary); background-color: transparent; }
.google-rating { display: inline-flex; align-items: center; background: var(--color-white); padding: 8px 16px; border-radius: 50px; box-shadow: var(--shadow-soft); font-weight: 500; color: var(--color-dark); }
.google-rating__stars { color: #FFC107; margin-right: 8px; }
.hero { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--color-white); background-size: cover; background-position: center; position: relative; }
.hero::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.6); } /* Poprawka kontrastu */
.hero__content { position: relative; z-index: 2; padding: 20px; }
.hero__title { font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 20px; }
.hero__subtitle { font-size: 1.2rem; margin-bottom: 30px; max-width: 600px; }
.hero__actions { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.hero__rating-bar { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; }
.pricing__table-wrapper { overflow-x: auto; box-shadow: var(--shadow-soft); border-radius: 12px; }
.pricing__table { width: 100%; border-collapse: collapse; text-align: left; }
.pricing__table th, .pricing__table td { padding: 15px 20px; border-bottom: 1px solid var(--color-border); }
.pricing__table thead { background-color: var(--color-light); }
.pricing__table tbody tr:hover { background-color: #fefcfb; }
.pricing__actions { text-align: center; margin-top: 40px; }
.portfolio__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.portfolio__item img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 12px; box-shadow: var(--shadow-soft); }
.portfolio__actions { text-align: center; margin-top: 40px; }
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card { background: var(--color-white); padding: 30px; border-radius: 12px; box-shadow: var(--shadow-soft); }
.review-card__author { font-weight: bold; margin-top: 15px; text-align: right; color: var(--color-primary); }
.review-card__stars { color: #FFC107; margin-bottom: 15px; }
.review-card__text { font-style: italic; }
.about__content { display: grid; gap: 40px; align-items: center; }
.team__grid { display: flex; gap: 20px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.team-member { text-align: center; }
.team-member__photo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin-bottom: 10px; box-shadow: var(--shadow-soft); }
.booking__content { display: grid; gap: 40px; align-items: center; }
.booking__iframe { width: 100%; min-height: 700px; border: 0; border-radius: 12px; box-shadow: var(--shadow-soft); }
.promo__box { background: var(--color-white); padding: 40px; border-radius: 12px; text-align: center; box-shadow: var(--shadow-soft); }
.faq__item { background: var(--color-white); border-radius: 12px; margin-bottom: 10px; box-shadow: var(--shadow-soft); }
.faq__question { width: 100%; text-align: left; background: none; border: none; padding: 20px; font-size: 1.1rem; font-weight: bold; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq__question::after { content: '+'; font-size: 1.5rem; transition: transform 0.3s; }
.faq__question[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq__answer p { padding: 0 20px 20px; }
.contact__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; text-align: center; }
.footer { background-color: var(--color-dark); color: var(--color-light); padding: 40px 0; text-align: center; }
.footer__socials a { color: var(--color-light); margin: 0 10px; font-size: 1.5rem; text-decoration: none; }
.footer__links { margin-top: 15px; }
.footer__links a { color: var(--color-light); margin: 0 10px; text-decoration: none; }
.footer__copyright { margin-top: 15px; font-size: 0.9rem; opacity: 0.7; }
.mobile-cta { display: none; }
.cookie-banner { position: fixed; bottom: -120%; left: 0; width: 100%; background: var(--color-dark); color: var(--color-light); padding: 15px; z-index: 200; display: flex; justify-content: center; align-items: center; gap: 20px; transition: bottom 0.5s ease; flex-wrap: wrap; text-align: center; }
.cookie-banner--visible { bottom: 0; }

/* Poprawka CLS: Rezerwacja miejsca dla mapy (placeholder) */
#map {
    height: 450px; /* Utrzymuje oryginalną wysokość */
    width: 100%;
    border-radius: 1rem;
    margin-top: 1rem;
    cursor: default;
    background-color: #f0f0f0; /* Jasnoszare tło jako placeholder */
}

/* Poprawka CLS: Minimalna wysokość dla paska cookie */
.cookie-banner {
    min-height: 56px;
}

/* NOWE STYLE DLA SEKCJI USP */
.usp__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}
.usp-item {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}
.usp-item__icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}
.usp-item__text {
    font-size: 1rem;
    font-weight: 500;
}

@media (max-width: 767px) {
    .nav.nav--open .nav__list { display: flex; flex-direction: column; position: absolute; top: var(--header-height); left: 0; width: 100%; background-color: var(--color-white); box-shadow: 0 10px 20px rgba(0,0,0,0.1); padding: 10px 0; }
    .nav.nav--open .nav__link { padding: 15px 20px; width: 100%; text-align: center; border-bottom: 1px solid var(--color-border); }
    .nav.nav--open .nav__item:last-child .nav__link { border-bottom: none; }
    .mobile-cta { display: flex; position: fixed; bottom: 0; left: 0; width: 100%; background: var(--color-white); padding: 10px; box-shadow: 0 -5px 15px rgba(0,0,0,0.1); z-index: 99; justify-content: space-around; }
    body { padding-bottom: 70px; }
}
@media (min-width: 768px) {
    .nav-toggle { display: none; }
    .nav__list { display: flex; gap: 10px; }
    .header__cta { display: block; }
    .about__content, .booking__content { grid-template-columns: 1fr 1fr; }
}

/* --- Fix układu Cennika (pricing) --- */
.section--pricing { padding: 40px 0; }

.pricing-card {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--color-border, #eae0dc);
  border-radius: 16px;
  box-shadow: var(--shadow-soft, 0 8px 24px rgba(0,0,0,.06));
  overflow: hidden;
}

.pricing-card table { width: 100%; border-collapse: collapse; }
.pricing-card th, .pricing-card td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--color-border, #eae0dc);
  text-align: left;
}
.pricing-card tr:last-child td { border-bottom: 0; }

/* Wyrównania i szerokości kolumn: Cena / Czas */
.pricing-card th:nth-child(2), .pricing-card td:nth-child(2) { text-align: center; width: 180px; }
.pricing-card th:nth-child(3), .pricing-card td:nth-child(3) { text-align: center; width: 120px; }


/* --- POPRAWKI KONTRASTU --- */
.badge, .pill, .tag {
  background: #e6f4ea;
  color: #1b5e20;
}

/* --- POPRAWKA UKŁADU "O NAS" --- */
#onas .about__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

