/* =========================================================
   CENNIK
   ========================================================= */

:root {
  --price-list-hero-min-h: 60vh;
  --price-list-hero-overlay: linear-gradient(
          to bottom,
          rgba(20, 18, 16, 0.18) 0%,
          rgba(20, 18, 16, 0.34) 45%,
          rgba(20, 18, 16, 0.5) 100%
  );
  --price-list-hero-bottom: clamp(1.5rem, 4vh, 3rem);
  --price-list-hero-eyebrow-fs: clamp(0.95rem, 1.15vw, 1.2rem);
  --price-list-hero-title-fs: clamp(3rem, 5.7vw, 5.9rem);
  --price-list-hero-title-lh: 0.98;
  --price-list-hero-text-maxw: min(58rem, 100%);
  --price-list-hero-text-offset: clamp(5rem, 18vw, 20rem);
  --price-list-hero-text-fs: clamp(1rem, 1.3vw, 1.35rem);
  --price-list-hero-text-lh: 1.55;

  --price-list-accent: #3c3a34;
  --price-list-text: var(--primary-blue);
  --price-list-text-soft: rgba(60, 58, 52, 0.76);
  --price-list-line: rgba(60, 58, 52, 0.1);
  --price-list-line-strong: rgba(60, 58, 52, 0.16);
  --price-list-line-blue: var(--primary-blue);
  --price-list-bg: #fafaf8;
  --price-list-card: #ffffff;
  --price-list-card-soft: #fcfbf8;
  --price-list-info-bg: #f2efe9;
}

/* =========================================================
   CENNIK — HERO
   ========================================================= */

.price-list-page__wrapper {
  background: var(--price-list-bg);
}

.price-list-hero.section {
  position: relative;
  min-height: var(--price-list-hero-min-h);
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: #d8d8d3;
}

.price-list-hero__media,
.price-list-hero__overlay {
  position: absolute;
  inset: 0;
}

.price-list-hero__media {
  overflow: hidden;
}

.price-list-hero__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  will-change: transform;
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transform-origin: center center;
  transform-style: preserve-3d;
}

.price-list-hero__overlay {
  background-image: var(--price-list-hero-overlay);
}

.price-list-hero > .container {
  z-index: 2;
  min-height: var(--price-list-hero-min-h);
  display: flex;
  align-items: flex-end;
  padding-top: 0;
  padding-bottom: var(--price-list-hero-bottom);
}

.price-list-hero__content,
.price-list-hero__copy {
  width: 100%;
}

.price-list-hero__eyebrow {
  margin: 0 0 0.75rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--price-list-hero-eyebrow-fs);
  line-height: 1.4;
  visibility: hidden;
}

.price-list-hero__title {
  margin-bottom: 1rem;
  color: #fff;
  font-size: var(--price-list-hero-title-fs);
  line-height: var(--price-list-hero-title-lh);
  visibility: hidden;
}

.price-list-hero__text {
  max-width: var(--price-list-hero-text-maxw);
  margin: 0 0 0 var(--price-list-hero-text-offset);
  color: #fff;
  opacity: 0.98;
  font-size: var(--price-list-hero-text-fs);
  line-height: var(--price-list-hero-text-lh);
  visibility: hidden;
}

/* =========================================================
   CENNIK — CONTENT
   ========================================================= */

.section--price-list {
  background-color: var(--price-list-bg);
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.price-list__block + .price-list__block {
  margin-top: clamp(4rem, 8vw, 6rem);
  padding-top: clamp(3rem, 6vw, 4rem);
}

.price-list__section-intro {
  max-width: 100%;
  margin-bottom: 2rem;
}

.price-list__section-label {
  margin: 0 0 0.5rem;
  color: var(--price-list-text);
  font-size: 0.9rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.price-list__section-title {
  margin-bottom: clamp(16px, 1.5vw, 46px);
  color: var(--price-list-text);
  font-family: var(--font-heading, "Libre Caslon Display", serif);
  font-size: var(--h2-size);
  line-height: 1.04;
  font-weight: 400;
}

.price-list__section-text {
  margin: 0.85rem 0 0;
  color: var(--price-list-text-soft);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.75;
}

.title-wave {
  display: flex;
  justify-content: left;
  /*margin-top: 5px;*/
  margin-bottom: 20px;
  color: var(--primary-blue, #012b63);
  line-height: 0;
}

.title-wave__svg {
  width: 78px;
  height: auto;
  display: block;
}

/* =========================================================
   CENNIK — SEASON LEGEND
   ========================================================= */

.price-list__season-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.price-list__season-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--price-list-card);
  border: 2px solid var(--price-list-line-strong);
  color: var(--price-list-text);
  font-size: 0.95rem;
  line-height: 1.3;
}

.price-list__season-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
}

.price-list__season-dot--high {
  background: var(--primary-blue, #012b63);
}

.price-list__season-dot--low {
  background: rgba(1, 43, 99, 0.5);
}

/* =========================================================
   CENNIK — ROOM CARDS
   ========================================================= */

.price-list__room-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.price-list__room-plan {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  border-radius: 18px;
  background: var(--price-list-card);
  border: 2px solid var(--price-list-line-blue);
}

.price-list__room-plan-head {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--price-list-line);
}

.price-list__room-plan-kicker {
  margin: 0 0 0.45rem;
  color: rgba(60, 58, 52, 0.56);
  font-size: 0.85rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-list__room-plan-title {
  margin: 0;
  color: var(--price-list-text);
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.3rem, 1.7vw, 1.65rem);
  line-height: 1.15;
  font-weight: 500;
}

.price-list__room-plan-prices {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.15rem;
}

.price-list__room-rate {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem;
  border-radius: 14px;
  background: var(--price-list-card-soft);
  border: 1px solid rgba(60, 58, 52, 0.06);
}

.price-list__room-rate-label {
  color: rgba(60, 58, 52, 0.66);
  font-size: 0.9rem;
  line-height: 1.2;
}

.price-list__room-rate-price {
  color: #000000;
  font-size: clamp(1.55rem, 2.1vw, 2.1rem);
  line-height: 1.05;
  font-weight: 400;
}

.price-list__room-rate-price sup {
  font-size: 0.45em;
  line-height: 0;
  vertical-align: super;
}

.price-list__room-rate-meta {
  color: var(--price-list-accent);
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 500;
}

/* =========================================================
   CENNIK — BUTTON
   ========================================================= */

.price-list__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  flex-shrink: 0;
  min-width: 0;
  margin-top: auto;

  gap: 0;
  overflow: hidden;
  padding: 0.92em 1.8em;
  border-radius: 999px;
  border: 1px solid rgba(28, 29, 32, 0.18);

  background: var(--primary-blue, #012b63);
  color: var(--white, #ffffff);
  text-decoration: none;

  font-family: "Poppins", sans-serif;
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 400;
  line-height: 1.1;
}

.price-list__btn-ico {
  position: absolute;
  left: 1.15em;
  top: 50%;
  transform: translate(-0.55em, -50%);
  width: 1.05em;
  height: 1.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition:
          transform 0.3s cubic-bezier(0.7, 0, 0.3, 1),
          opacity 0.3s cubic-bezier(0.7, 0, 0.3, 1);
}

.price-list__btn-ico svg {
  width: 100%;
  height: 100%;
  display: block;
}

.price-list__btn-text {
  display: inline-block;
  transform: translateX(0);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  text-align: center;
  white-space: nowrap;
}

.price-list__button:hover .price-list__btn-ico {
  opacity: 1;
  transform: translate(0, -50%);
}

.price-list__button:hover .price-list__btn-text {
  transform: translateX(0.78em);
}

/* =========================================================
   CENNIK — EXTRAS
   ========================================================= */

.price-list__extras-grid--modern {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem 1.25rem;
}

.price-list__extra-card {
  overflow: hidden;
  border-radius: 18px;
  background: var(--price-list-card);
  border: 2px solid var(--primary-blue, #012b63);
}

.price-list__extra-card-head {
  padding: 1.2rem 1.25rem;
  border-bottom: 1px solid var(--price-list-line);
  background: transparent;
}

.price-list__extra-card-title {
  margin: 0;
  color: var(--price-list-text);
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  line-height: 1.15;
  font-weight: 500;
}

.price-list__extra-list {
  padding: 0.35rem 1.25rem 0.75rem;
}

.price-list__extra-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--price-list-line);
}

.price-list__extra-row:last-child {
  border-bottom: 0;
}

.price-list__extra-price {
  min-width: 6.5rem;
  color: #000000;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.1;
  font-weight: 400;
}

.price__list-wrapper {
  display: flex;
  flex-direction: column;
}

.price-list__extra-desc {
  color: var(--price-list-accent);
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 500;
  text-transform: uppercase;
}

.price-list__extra-star {
  color: var(--price-list-text-soft);
  font-size: 0.8rem;
}

.price-list__extra-card-title.is-hidden-keep-space,
.price-list__extra-price.is-hidden-keep-space,
.price-list__extra-desc.is-hidden-keep-space {
  visibility: hidden;
}

/* =========================================================
   CENNIK — INFO
   ========================================================= */

.price-list__info {
  margin-top: clamp(4rem, 7vw, 5.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  background: var(--price-list-info-bg);
}

.price-list__info-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.price-list__info-icon {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--price-list-accent);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
}

.price-list__info-title {
  margin: 0;
  color: #3c3a34;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 600;
}

.price-list__info-list {
  margin: 0;
  padding-left: 1.2rem;
}

.price-list__info-list li {
  margin: 0.45rem 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(60, 58, 52, 0.92);
}

.price-list__info-list strong {
  font-weight: 700;
  color: #2f2a25;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (min-width: 1440px) {
  :root {
    --price-list-hero-text-maxw: 54rem;
    --price-list-hero-text-offset: clamp(7rem, 20vw, 22rem);
  }
}

@media (max-width: 991px) {
  :root {
    --price-list-hero-min-h: 56vh;
    --price-list-hero-bottom: 6vh;
    --price-list-hero-title-fs: clamp(3.2rem, 8.4vw, 5.2rem);
    --price-list-hero-text-maxw: 34rem;
    --price-list-hero-text-offset: clamp(2rem, 10vw, 6rem);
    --price-list-hero-text-fs: clamp(1rem, 1.9vw, 1.2rem);
  }

  .price-list__room-cards {
    grid-template-columns: 1fr;
  }

  .price-list__extras-grid--modern {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  :root {
    --price-list-hero-min-h: 52vh;
    --price-list-hero-bottom: 7vh;
    --price-list-hero-title-fs: clamp(2.7rem, 12vw, 4.5rem);
    --price-list-hero-eyebrow-fs: clamp(0.95rem, 3.8vw, 1.1rem);
    --price-list-hero-text-maxw: 100%;
    --price-list-hero-text-offset: 0;
    --price-list-hero-text-fs: clamp(1rem, 4.2vw, 1.15rem);
  }

  .price-list__season-legend {
    flex-direction: column;
    align-items: flex-start;
  }

  .price-list__extra-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .price-list__extra-price {
    min-width: 0;
  }

  .price-list__button {
    width: auto;
    min-width: 0;
    align-self: center;
  }
}