
:root {
  --paper: #EFE9DF;
  --paper-warm: #E3D8C8;
  --ink: #242629;
  --muted: #6F6860;
  --forest: #4F5F46;
  --forest-dark: #35402F;
  --clay: #A38F85;
  --line: rgba(36, 38, 41, 0.14);
  --white-soft: rgba(255, 255, 255, 0.88);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--paper);
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

img {
  vertical-align: middle;
}

a {
  color: inherit;
}

.section-shell {
  margin: 0 auto;
  max-width: 1180px;
  padding-left: clamp(20px, 5vw, 56px);
  padding-right: clamp(20px, 5vw, 56px);
}

.eyebrow {
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.site-header {
  background-color: var(--paper);
  position: relative;
}

.topbar {
  align-items: center;
  background: rgba(239, 233, 223, 0.9);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr auto 1fr;
  left: 0;
  padding: 14px clamp(20px, 5vw, 56px);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
}

.brand,
.nav-links a,
.nav-cta,
.button {
  text-decoration: none;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 700;
  gap: 10px;
}

.brand-mark {
  align-items: center;
  background: var(--forest-dark);
  border-radius: 50%;
  color: var(--paper);
  display: inline-flex;
  font-size: 0.72rem;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.nav-links {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  border: 1px solid var(--forest);
  border-radius: 999px;
  color: var(--forest-dark);
  font-size: 0.92rem;
  padding: 8px 18px;
}

.topbar-actions {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  justify-self: end;
}

.language-link {
  color: var(--forest-dark);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(63, 81, 59, 0.28);
  border-radius: 999px;
  color: var(--forest-dark);
  display: none;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  height: 40px;
  justify-content: center;
  line-height: 1.2;
  padding: 0 16px;
  text-transform: uppercase;
}

.mobile-menu {
  backdrop-filter: blur(10px);
  background: rgba(239, 233, 223, 0.98);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid rgba(123, 112, 103, 0.14);
  display: grid;
  gap: 0;
  left: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 80px max(28px, env(safe-area-inset-left)) 26px max(28px, env(safe-area-inset-right));
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-12px);
  transition:
    max-height 360ms ease,
    opacity 260ms ease,
    transform 360ms ease,
    visibility 260ms ease;
  visibility: hidden;
  z-index: 4;
}

.mobile-menu a {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  padding: 13px 0;
  text-align: center;
  text-decoration: none;
}

.mobile-menu a + a {
  border-top: 1px solid rgba(123, 112, 103, 0.12);
}

.mobile-menu.is-open {
  max-height: 300px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

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

.mySlides {
  display: none;
}

.headerImageText {
  min-height: 650px;
  position: relative;
}

.headerImageText::after {
  background: linear-gradient(90deg, rgba(20, 22, 18, 0.72), rgba(20, 22, 18, 0.28) 46%, rgba(20, 22, 18, 0.05));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-image {
  height: min(760px, 88vh);
  min-height: 650px;
  object-fit: cover;
  width: 100%;
}

.hero-content {
  bottom: clamp(76px, 12vh, 128px);
  color: white;
  left: clamp(20px, 7vw, 96px);
  max-width: 720px;
  position: absolute;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(3.3rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 0.96;
  margin: 0 0 22px;
}

.hero-content p:not(.eyebrow) {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  margin: 0;
  max-width: 560px;
  min-height: 3.25em;
}

.hero-content .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 46px;
  padding: 11px 22px;
}

.button-primary {
  background: var(--paper);
  color: var(--forest-dark);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: white;
}

.slide-dots {
  bottom: 28px;
  display: flex;
  gap: 10px;
  left: clamp(20px, 7vw, 96px);
  position: absolute;
  z-index: 3;
}

.dot {
  background-color: rgba(255, 255, 255, 0.46);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  height: 11px;
  padding: 0;
  transition: background-color 0.4s ease, transform 0.4s ease;
  width: 11px;
}

.active,
.dot:hover {
  background-color: white;
  transform: scale(1.2);
}

.fade {
  animation: fade 1.4s ease-out;
}

.mySlides.fade {
  opacity: 1;
}

.site-reveal {
  filter: blur(2px);
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 780ms ease var(--site-reveal-delay, 0ms),
    transform 780ms ease var(--site-reveal-delay, 0ms),
    filter 780ms ease var(--site-reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

@keyframes fade {
  from {
    opacity: 0.88;
  }

  to {
    opacity: 1;
  }
}

.intro-section {
  background: var(--paper);
  padding: clamp(64px, 8vw, 104px) 0;
}

.intro-grid {
  align-items: center;
  display: grid;
  gap: clamp(28px, 7vw, 92px);
  grid-template-columns: 0.9fr 1.1fr;
}

.intro-section h2,
.gallery-heading h2,
.contact-text h2 {
  font-size: clamp(2.1rem, 5vw, 4.1rem);
  font-weight: 800;
  line-height: 1.04;
  margin: 0;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-copy p {
  margin: 0 0 18px;
}

.mood-section {
  background: var(--paper-warm);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: clamp(44px, 7vw, 82px) 0;
}

.mood-grid {
  align-items: center;
  display: grid;
  gap: clamp(26px, 6vw, 76px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.mood-grid p {
  margin: 0;
}

.mood-grid p:first-child {
  color: var(--forest-dark);
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  font-weight: 800;
  line-height: 1.12;
  text-wrap: balance;
}

.mood-grid p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.home-rooms-section {
  background: var(--paper);
  padding: clamp(58px, 8vw, 104px) 0;
}

.home-rooms-layout {
  align-items: center;
  display: grid;
  gap: clamp(28px, 7vw, 86px);
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
}

.home-rooms-copy h2 {
  color: var(--ink);
  font-size: clamp(2.15rem, 5vw, 4.6rem);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 20px;
}

.home-rooms-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
  margin: 0 0 28px;
  max-width: 680px;
}

.home-rooms-copy .button-primary {
  background: var(--forest-dark);
  color: var(--paper);
}

.home-rooms-copy .button-primary:hover {
  background: var(--forest);
  color: var(--paper);
}

.home-rooms-preview {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
}

.home-rooms-preview a {
  color: inherit;
  display: grid;
  gap: 8px;
  padding: 24px 0;
  text-decoration: none;
  transition: color 160ms ease, padding-left 160ms ease;
}

.home-rooms-preview a:hover {
  color: var(--forest);
  padding-left: 10px;
}

.home-rooms-preview a + a {
  border-top: 1px solid rgba(123, 112, 103, 0.2);
}

.home-rooms-preview span {
  color: var(--forest-dark);
  display: block;
  font-size: clamp(1.22rem, 2.3vw, 1.95rem);
  font-weight: 800;
  line-height: 1;
}

.home-rooms-preview strong {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.gallery-area {
  background-color: var(--clay);
  padding: clamp(58px, 8vw, 96px) 0;
}

.gallery-heading {
  color: rgba(239, 233, 223, 0.92);
  margin-bottom: 28px;
}

.gallery-heading .eyebrow {
  color: rgba(239, 233, 223, 0.76);
}

.gallery-section {
  margin: auto;
  max-width: 1180px;
  padding: 0 clamp(20px, 5vw, 56px);
  width: 100%;
}

.gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery {
  min-width: 0;
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.myImg {
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery .myImg {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.gallery-large .myImg {
  aspect-ratio: 1 / 1;
}

.myImg:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.modal {
  align-items: center;
  background: rgba(20, 24, 20, 0.88);
  display: none;
  height: 100%;
  justify-content: center;
  left: 0;
  overflow: hidden;
  padding: clamp(18px, 4vw, 56px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.modal-content {
  display: block;
  margin: auto;
  max-height: 78vh;
  max-width: min(1120px, 88vw);
  object-fit: contain;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

#caption {
  display: none;
}

.modal-content,
#caption {
  animation-duration: 0.45s;
  animation-name: zoom;
}

@keyframes zoom {
  from {
    transform: scale(0.94);
  }

  to {
    transform: scale(1);
  }
}

.close {
  align-items: center;
  background: rgba(239, 233, 223, 0.92);
  border: 1px solid rgba(239, 233, 223, 0.5);
  border-radius: 999px;
  color: var(--forest-dark);
  display: flex;
  font-size: 2rem;
  font-weight: bold;
  height: 48px;
  justify-content: center;
  position: absolute;
  right: clamp(18px, 4vw, 44px);
  top: clamp(18px, 4vw, 36px);
  transition: background 0.2s ease, transform 0.2s ease;
  width: 48px;
}

.close:hover,
.close:focus {
  background: var(--paper);
  cursor: pointer;
}

.prev,
.next {
  align-items: center;
  background: rgba(239, 233, 223, 0.92);
  border: 1px solid rgba(239, 233, 223, 0.5);
  border-radius: 999px;
  color: var(--forest-dark);
  cursor: pointer;
  display: flex;
  font-size: 2rem;
  font-weight: bold;
  height: 54px;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
  user-select: none;
  width: 54px;
}

.prev {
  left: clamp(14px, 3vw, 42px);
}

.next {
  right: clamp(14px, 3vw, 42px);
}

.prev:hover,
.next:hover {
  background: var(--paper);
}

.contact-section {
  background: var(--paper);
  padding: clamp(64px, 8vw, 104px) 0;
}

.contact-layout {
  align-items: start;
  display: grid;
  gap: clamp(32px, 7vw, 86px);
  grid-template-columns: 1fr 1fr;
}

.contact-text p:not(.eyebrow) {
  color: var(--muted);
  margin: 22px 0 0;
  max-width: 520px;
}

.contact-actions {
  border-top: 1px solid var(--line);
}

.contact-row {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 12px;
  grid-template-columns: 130px 1fr auto;
  padding: 22px 0;
  text-decoration: none;
}

.contact-row::after {
  color: var(--forest);
  content: "→";
  font-size: 1.15rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.contact-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-row strong {
  color: var(--ink);
  font-size: 1.1rem;
}

.contact-row:hover strong {
  color: var(--forest);
}

.contact-row:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.contact-row-map strong {
  color: var(--forest-dark);
}

.no-wrap {
  white-space: nowrap;
}

.booking-page {
  background: var(--paper);
}

.booking-header {
  background:
    linear-gradient(90deg, rgba(20, 22, 18, 0.74), rgba(20, 22, 18, 0.28)),
    url("https://wilczajama.com.pl/img/SlaiderImages/section-bg-483136044.jpg?v=section-bg-20260513") center / cover;
  color: #F4EFE6;
  display: flex;
  align-items: flex-end;
  min-height: 720px;
  position: relative;
}

.booking-topbar {
  background: rgba(239, 233, 223, 0.92);
  color: var(--ink);
}

.booking-hero {
  margin-left: auto;
  margin-right: auto;
  padding-top: clamp(220px, 26vw, 300px);
  padding-bottom: clamp(34px, 6vw, 58px);
  width: min(100%, 1280px);
}

.booking-hero .eyebrow {
  color: rgba(244, 239, 230, 0.78);
  font-size: 0.84rem;
}

.booking-hero h1 {
  color: #F4EFE6;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 0.98;
  margin: 0 0 24px;
  max-width: 860px;
}

.booking-hero p:not(.eyebrow) {
  color: rgba(244, 239, 230, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  margin: 0;
  max-width: 620px;
}

.booking-section {
  padding: clamp(50px, 7vw, 84px) 0;
}

.booking-section-intro {
  margin-bottom: clamp(20px, 3.5vw, 34px);
}

.booking-section-intro h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 800;
  line-height: 1.04;
  margin: 0;
  max-width: 680px;
}

.availability-section {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: clamp(34px, 5vw, 56px) 0 clamp(30px, 4vw, 48px);
}

.availability-layout {
  align-items: center;
  display: grid;
  gap: clamp(24px, 4vw, 52px);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.availability-layout h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
}

.availability-layout p:not(.eyebrow) {
  color: var(--muted);
  margin: 16px 0 0;
  max-width: 500px;
}

.availability-widget {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 240px;
  padding: clamp(22px, 4vw, 34px);
}

.availability-widget:has(.availability-result:only-child) {
  display: grid;
  align-items: center;
}

.availability-checker {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.availability-checker .form-row:nth-child(3),
.availability-button,
.availability-result {
  grid-column: 1 / -1;
}

.availability-button {
  background: var(--forest-dark);
  border: 0;
  color: var(--paper);
  justify-self: center;
  margin-top: 4px;
}

.availability-result {
  align-items: center;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  justify-self: center;
  margin-top: 18px;
  max-width: 560px;
  min-height: 0;
  padding: 15px clamp(18px, 3vw, 26px) 20px;
  width: 100%;
}

.availability-result:only-child {
  margin-top: 0;
}

.availability-result p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.46;
  margin: 0;
}

.availability-result-success {
  background: rgba(79, 95, 70, 0.12);
  border-color: rgba(79, 95, 70, 0.28);
}

.availability-result-success p {
  color: var(--forest-dark);
  font-weight: 700;
}

.availability-result-warning {
  background: rgba(163, 143, 133, 0.18);
}

.availability-status {
  color: var(--muted);
  margin: 0;
}

.availability-room {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.availability-room:first-child {
  padding-top: 0;
}

.availability-room:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.availability-room h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 8px;
}

.availability-room p {
  color: var(--muted);
  margin: 0;
}

.availability-empty {
  color: var(--forest-dark);
  font-weight: 700;
}

.booking-layout {
  align-items: start;
  display: grid;
  gap: clamp(28px, 6vw, 72px);
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

.booking-form {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-trap {
  display: none !important;
  height: 0 !important;
  left: -9999px !important;
  opacity: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  visibility: hidden !important;
  width: 0 !important;
}

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

.form-wide,
.button-form,
.form-note {
  grid-column: 1 / -1;
}

.form-row label {
  color: var(--forest-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  height: 52px;
  min-height: 52px;
  padding: 12px 14px;
  width: 100%;
}

.form-row select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--forest-dark) 50%),
    linear-gradient(135deg, var(--forest-dark) 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 50%,
    calc(100% - 13px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  line-height: 1.2;
  padding-right: 42px;
}

.form-row textarea {
  height: auto;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.94rem;
  margin: -4px 0 2px;
}

.form-note-error {
  color: #8A3B2F;
  font-weight: 700;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--forest);
  outline: 2px solid rgba(79, 95, 70, 0.16);
}

.custom-date-input {
  cursor: pointer;
}

.date-popover {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(38, 43, 45, 0.18);
  color: var(--ink);
  padding: 14px;
  position: absolute;
  z-index: 30;
}

.date-popover[hidden] {
  display: none;
}

.date-popover-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.date-popover-header strong {
  color: var(--forest-dark);
  font-size: 0.98rem;
}

.date-nav {
  align-items: center;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest-dark);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 1.2rem;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  line-height: 1;
  width: 34px;
}

.date-nav:disabled,
.date-day:disabled {
  cursor: not-allowed;
  opacity: 0.34;
}

.date-nav:disabled:hover,
.date-day:disabled:hover {
  background: transparent;
  border-color: transparent;
}

.date-weekdays,
.date-grid {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(7, 1fr);
}

.date-weekdays {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-align: center;
  text-transform: uppercase;
}

.date-day {
  align-items: center;
  aspect-ratio: 1;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 0.9rem;
  justify-content: center;
}

.date-day:hover,
.date-day:focus {
  background: rgba(79, 95, 70, 0.1);
  border-color: rgba(79, 95, 70, 0.2);
  outline: none;
}

.date-day-today {
  border-color: rgba(79, 95, 70, 0.45);
}

.date-day-selected {
  background: var(--forest-dark);
  color: var(--forest-dark);
}

.date-day-selected:hover,
.date-day-selected:focus {
  background: var(--forest-dark);
  color: var(--forest-dark);
}

.date-day-disabled,
.date-day-disabled:hover,
.date-day-disabled:focus {
  background: transparent;
  border-color: transparent;
  color: var(--muted);
}

.date-day-empty {
  cursor: default;
}

.button-form {
  background: var(--forest-dark);
  border: 0;
  color: var(--paper);
  justify-self: center;
  margin-top: 8px;
}

.details-page {
  background: var(--paper);
}

.details-header {
  background:
    linear-gradient(rgba(239, 233, 223, 0.72), rgba(239, 233, 223, 0.92)),
    url("https://wilczajama.com.pl/img/SlaiderImages/house1.jpg") center / cover;
  min-height: 620px;
  padding-top: 92px;
}

.details-hero {
  align-items: center;
  display: grid;
  gap: clamp(28px, 6vw, 78px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  padding-bottom: clamp(70px, 9vw, 128px);
  padding-top: clamp(70px, 10vw, 136px);
}

.details-hero h1 {
  font-size: clamp(3.2rem, 8vw, 7rem);
  letter-spacing: 0;
  line-height: 0.95;
  margin: 0 0 24px;
  max-width: 760px;
}

.details-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.06rem, 1.8vw, 1.34rem);
  max-width: 640px;
}

.details-hero img {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(36, 38, 41, 0.18);
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  width: 100%;
}

.details-overview {
  background: var(--paper);
  padding: clamp(70px, 9vw, 132px) 0;
}

.details-overview-grid {
  display: grid;
  gap: clamp(28px, 6vw, 88px);
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.details-overview h2,
.details-panel h2,
.details-practical h2,
.details-cta h2 {
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.details-overview p,
.details-panel p,
.details-cta p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.details-band {
  background: var(--paper-warm);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: clamp(54px, 8vw, 108px) 0;
}

.details-photo-strip {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
  padding-bottom: clamp(56px, 8vw, 104px);
}

.details-photo-strip figure,
.details-inline-photo {
  margin: 0;
}

.details-photo-strip img,
.details-inline-photo img {
  border-radius: 8px;
  display: block;
  object-fit: cover;
  width: 100%;
}

.details-photo-large img {
  aspect-ratio: 16 / 10;
}

.details-photo-stack {
  display: grid;
  gap: 18px;
}

.details-photo-stack img {
  aspect-ratio: 4 / 3;
}

.details-photo-strip figcaption,
.details-inline-photo figcaption {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 10px;
}

.details-card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-card {
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 340px;
  padding: clamp(24px, 3vw, 38px);
}

.detail-card span {
  color: var(--forest);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 28px;
}

.detail-card h3,
.details-list-panel h3,
.practical-items h3 {
  color: var(--forest-dark);
  font-size: 1.25rem;
  line-height: 1.25;
  margin: 0 0 16px;
}

.detail-card p,
.details-list,
.practical-items p {
  color: var(--muted);
  margin: 0;
}

.details-split {
  display: grid;
  gap: clamp(28px, 6vw, 74px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
  padding-bottom: clamp(72px, 9vw, 132px);
  padding-top: clamp(72px, 9vw, 132px);
}

.details-panel {
  align-self: center;
}

.details-inline-photo {
  margin-top: 34px;
  max-width: 460px;
}

.details-inline-photo img {
  aspect-ratio: 4 / 3;
}

.details-list-panel {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 44px);
}

.details-list {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
}

.details-list li {
  border-bottom: 1px solid rgba(36, 38, 41, 0.1);
  padding-bottom: 12px;
}

.details-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.details-practical {
  background: var(--forest-dark);
  color: var(--forest-dark);
  padding: clamp(66px, 9vw, 120px) 0;
}

.practical-grid {
  display: grid;
  gap: clamp(30px, 6vw, 84px);
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

.details-practical .eyebrow,
.details-practical h2,
.practical-items h3 {
  color: var(--forest-dark);
}

.practical-items {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.practical-items article {
  border: 1px solid rgba(239, 233, 223, 0.18);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
}

.practical-items p {
  color: rgba(239, 233, 223, 0.76);
}

.details-cta {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding-bottom: clamp(62px, 8vw, 112px);
  padding-top: clamp(62px, 8vw, 112px);
}

.rooms-page {
  background: var(--paper);
}

.rooms-header {
  background:
    linear-gradient(rgba(239, 233, 223, 0.62), rgba(239, 233, 223, 0.92)),
    url("https://wilczajama.com.pl/img/SlaiderImages/section-bg-483136044.jpg?v=section-bg-20260513") center / cover;
  min-height: 650px;
  padding-top: 92px;
}

.room-single-header {
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

.rooms-hero {
  padding-bottom: clamp(74px, 10vw, 146px);
  padding-top: clamp(92px, 12vw, 160px);
}

.room-single-header::after {
  animation: roomHeroWash 980ms ease both;
}

.room-single-header .rooms-hero .eyebrow {
  animation: roomHeroTextIn 680ms 120ms ease both;
}

.room-single-header .rooms-hero h1 {
  animation: roomHeroTextIn 860ms 220ms ease both;
}

.room-single-header .rooms-hero p:not(.eyebrow) {
  animation: roomHeroTextIn 820ms 360ms ease both;
}

.rooms-hero h1 {
  font-size: clamp(3.6rem, 9vw, 8rem);
  letter-spacing: 0;
  line-height: 0.92;
  margin: 0 0 24px;
  max-width: 900px;
}

.rooms-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.06rem, 1.8vw, 1.34rem);
  max-width: 680px;
}

.rooms-home-link {
  margin-bottom: 24px;
}

.rooms-picker {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(-92px, -7vw, -56px);
  padding-bottom: clamp(74px, 9vw, 128px);
  position: relative;
  z-index: 2;
}

.room-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  display: grid;
  gap: 14px;
  min-height: 460px;
  overflow: hidden;
  padding: 18px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.room-card:hover {
  border-color: rgba(79, 95, 70, 0.35);
  box-shadow: 0 18px 46px rgba(36, 38, 41, 0.14);
  color: inherit;
  transform: translateY(-4px);
}

.room-card img {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
  width: 100%;
}

.room-card span {
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.room-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.room-card p {
  color: var(--muted);
  margin: 0;
}

.room-single-detail {
  padding-top: clamp(72px, 9vw, 124px);
}

.room-detail {
  align-items: start;
  display: grid;
  gap: clamp(28px, 3.8vw, 56px);
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
  padding-bottom: clamp(82px, 10vw, 146px);
  scroll-margin-top: 84px;
}

.room-detail-alt {
  background: var(--paper-warm);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: block;
  padding: clamp(76px, 10vw, 132px) 0;
}

.room-detail-inner {
  align-items: center;
  display: grid;
  gap: clamp(28px, 6vw, 78px);
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
}

.room-detail-copy h2 {
  animation: roomTitleIn 760ms ease both;
  font-size: clamp(2.35rem, 4.2vw, 4.15rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0 0 22px;
  max-width: 680px;
}

.room-detail-copy p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.75;
  max-width: 720px;
}

.room-detail-copy .button-primary {
  background: var(--forest-dark);
  color: var(--paper);
  margin-top: 10px;
}

.room-detail-copy .button-primary:hover {
  background: var(--forest);
  color: var(--paper);
}

.room-facts {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 28px 0 30px;
  padding: 22px 0 0;
}

.room-facts li {
  color: var(--forest-dark);
  font-weight: 700;
}

.room-summary {
  align-items: stretch;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(380px, 520px);
  justify-content: start;
  margin: 42px 0 26px;
  max-width: 720px;
}

.room-price {
  background: var(--forest-dark);
  border-radius: 8px;
  color: var(--paper);
  margin: 0;
  padding: 28px 34px;
}

.room-price span {
  color: rgba(239, 233, 223, 0.72);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.room-price strong {
  display: block;
  font-size: clamp(1.85rem, 2.35vw, 2.55rem);
  font-weight: 800;
  line-height: 1;
}

.room-price p {
  color: rgba(239, 233, 223, 0.72);
  font-size: 0.92rem;
  line-height: 1.45;
  margin: 10px 0 0;
}

.room-highlights {
  align-self: start;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.room-highlights span {
  align-items: center;
  background: rgba(239, 233, 223, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest-dark);
  display: flex;
  font-size: 0.94rem;
  font-weight: 800;
  min-height: auto;
  padding: 9px 14px;
}

.room-highlights span + span {
  border-top: 1px solid var(--line);
}

.room-shared {
  border-left: 3px solid var(--forest);
  margin: 6px 0 32px;
  max-width: 720px;
  padding: 6px 0 6px 18px;
}

.room-shared p {
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
}

.room-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 680ms ease var(--reveal-delay, 0ms),
    transform 680ms ease var(--reveal-delay, 0ms);
}

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

@keyframes roomTitleIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

@keyframes roomHeroTextIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes roomHeroWash {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .room-detail-copy h2,
  .room-single-header::after,
  .room-single-header .rooms-hero .eyebrow,
  .room-single-header .rooms-hero h1,
  .room-single-header .rooms-hero p:not(.eyebrow),
  .site-reveal,
  .room-reveal {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.text-link {
  color: var(--forest);
  display: inline-block;
  font-weight: 800;
  margin-bottom: 28px;
  text-decoration: none;
}

.text-link:hover {
  color: var(--forest-dark);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.room-gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.room-gallery img {
  aspect-ratio: 1;
  border-radius: 8px;
  cursor: zoom-in;
  object-fit: cover;
  transition: filter 0.25s ease, transform 0.25s ease;
  width: 100%;
}

.room-gallery img:hover,
.room-gallery img:focus-visible {
  filter: brightness(0.94);
  transform: translateY(-2px);
}

.room-gallery-main {
  aspect-ratio: 16 / 10 !important;
  grid-column: 1 / -1;
}

.lightbox-open {
  overflow: hidden;
}

.room-lightbox {
  align-items: center;
  background: rgba(20, 24, 20, 0.88);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: clamp(18px, 4vw, 56px);
  pointer-events: none;
  position: fixed;
  transition: opacity 0.25s ease;
  z-index: 999;
}

.room-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.room-lightbox-frame {
  margin: 0;
  max-height: 88vh;
  max-width: min(1120px, 88vw);
}

.room-lightbox-frame img {
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  display: block;
  max-height: 78vh;
  max-width: 100%;
  object-fit: contain;
}

.room-lightbox-close,
.room-lightbox-nav {
  align-items: center;
  background: rgba(239, 233, 223, 0.92);
  border: 1px solid rgba(239, 233, 223, 0.5);
  border-radius: 999px;
  color: var(--forest-dark);
  display: flex;
  font-weight: 800;
  justify-content: center;
  position: absolute;
  transition: background 0.2s ease, transform 0.2s ease;
}

.room-lightbox-close {
  font-size: 2rem;
  height: 48px;
  right: clamp(18px, 4vw, 44px);
  top: clamp(18px, 4vw, 36px);
  width: 48px;
}

.room-lightbox-nav {
  font-size: 2rem;
  height: 54px;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
}

.room-lightbox-prev {
  left: clamp(14px, 3vw, 42px);
}

.room-lightbox-next {
  right: clamp(14px, 3vw, 42px);
}

.room-lightbox-close:hover,
.room-lightbox-nav:hover {
  background: var(--paper);
}

.room-lightbox-close:focus-visible,
.room-lightbox-nav:focus-visible {
  outline: 3px solid rgba(239, 233, 223, 0.55);
  outline-offset: 4px;
}

.rooms-note {
  background: var(--forest-dark);
  border-radius: 8px;
  color: var(--paper);
  margin-bottom: clamp(72px, 9vw, 128px);
  padding-bottom: clamp(46px, 6vw, 74px);
  padding-top: clamp(46px, 6vw, 74px);
}

.rooms-note .eyebrow,
.rooms-note h2 {
  color: var(--paper);
}

.rooms-note h2 {
  font-size: clamp(2.1rem, 4.6vw, 4.5rem);
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 22px;
}

.rooms-note p:not(.eyebrow) {
  color: rgba(239, 233, 223, 0.78);
  max-width: 850px;
}

.booking-card {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(26px, 4vw, 40px);
}

@media only screen and (min-width: 1081px) {
  .booking-card {
    margin-top: -34px;
  }

  .gallery-grid .gallery:nth-last-child(-n + 2) {
    grid-column: span 2;
  }

  .gallery-grid .gallery:nth-last-child(-n + 2) .myImg {
    aspect-ratio: 2 / 1;
  }
}

.booking-card h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.04;
  margin: 0;
}

.booking-card p:not(.eyebrow) {
  color: var(--muted);
  margin: 18px 0 26px;
}

.booking-links {
  border-top: 1px solid var(--line);
}

.rightsInfo {
  background-color: rgba(222, 211, 195, 0.88);
  color: var(--forest-dark);
  padding: 22px 0;
}

.rights-inner {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 clamp(20px, 5vw, 56px);
}

.rights-inner p {
  margin: 0;
}

.rights-inner a {
  color: var(--forest-dark);
  text-underline-offset: 4px;
}

.rights-inner a:hover {
  color: var(--forest-dark);
}

.rights-inner strong {
  color: var(--forest-dark);
}

.privacy-page {
  background: var(--paper);
}

.privacy-main {
  padding: clamp(120px, 15vw, 170px) 0 clamp(70px, 10vw, 120px);
}

.privacy-hero {
  margin-bottom: clamp(38px, 6vw, 74px);
  max-width: 820px;
}

.privacy-hero h1 {
  color: var(--forest-dark);
  font-size: clamp(2.8rem, 7vw, 5.7rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0 0 22px;
}

.privacy-hero p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  margin: 0;
}

.privacy-content {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
  max-width: 920px;
}

.privacy-block {
  border-top: 1px solid var(--line);
  padding-top: clamp(22px, 4vw, 34px);
}

.privacy-block h2 {
  color: var(--forest-dark);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
  margin: 0 0 14px;
}

.privacy-block p,
.privacy-block li {
  color: var(--muted);
}

.privacy-block p {
  margin: 0 0 14px;
}

.privacy-block ul {
  margin: 0;
  padding-left: 20px;
}

#myBtn {
  background-color: var(--forest);
  border: none;
  border-radius: 999px;
  bottom: 20px;
  color: var(--forest-dark);
  cursor: pointer;
  display: none;
  font-size: 18px;
  height: 48px;
  outline: none;
  position: fixed;
  right: 24px;
  width: 48px;
  z-index: 99;
}

#myBtn:hover {
  background-color: rgba(222, 211, 195, 0.88);
}

@media only screen and (max-width: 860px) {
  .topbar {
    grid-template-columns: 1fr auto;
    padding-left: max(18px, env(safe-area-inset-left));
    padding-right: max(18px, env(safe-area-inset-right));
    padding-top: max(12px, env(safe-area-inset-top));
    position: absolute;
  }

  .brand {
    gap: 0;
  }

  .brand-mark {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-cta {
    padding: 8px 14px;
  }

  .headerImageText {
    min-height: 620px;
  }

  .hero-image {
    height: 620px;
    min-height: 620px;
  }

  .hero-content {
    bottom: 76px;
    left: 22px;
    right: 22px;
  }

  .hero-content h1 {
    font-size: clamp(3.2rem, 17vw, 5rem);
  }

  .intro-grid,
  .contact-layout,
  .booking-layout,
  .availability-layout,
  .details-hero,
  .details-overview-grid,
  .details-card-grid,
  .details-photo-strip,
  .details-split,
  .practical-grid,
  .practical-items,
  .details-cta,
  .home-rooms-layout,
  .room-summary,
  .rooms-picker,
  .room-detail,
  .room-detail-inner {
    grid-template-columns: 1fr;
  }

  .details-header {
    min-height: auto;
  }

  .details-hero {
    padding-top: 150px;
  }

  .details-hero img {
    aspect-ratio: 16 / 10;
    max-height: none;
  }

  .detail-card {
    min-height: auto;
  }

  .details-cta .button {
    justify-self: start;
  }

  .rooms-header {
    min-height: auto;
  }

  .rooms-hero {
    padding-top: 150px;
  }

  .rooms-hero h1 {
    font-size: clamp(2.55rem, 11.5vw, 4.6rem);
    max-width: 100%;
  }

  .rooms-picker {
    margin-top: 0;
  }

  .room-summary {
    gap: 14px;
    max-width: none;
  }

  .room-highlights {
    margin-top: 0;
  }

  .room-card,
  .room-detail {
    min-height: auto;
  }

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

  .booking-form {
    grid-template-columns: 1fr;
  }

  .availability-checker {
    grid-template-columns: 1fr;
  }

  .booking-header {
    min-height: 700px;
  }

  .booking-hero {
    padding-top: 210px;
    padding-bottom: 36px;
  }

  .mood-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-large {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery .myImg,
  .gallery-large .myImg {
    aspect-ratio: 4 / 3;
  }

  .contact-row {
    grid-template-columns: 1fr auto;
  }

  .contact-row span,
  .contact-row strong {
    grid-column: 1;
  }

  .contact-row::after {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .rights-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .modal {
    padding-top: 72px;
  }

  .modal-content {
    width: 100%;
  }
}

@media only screen and (min-width: 861px) and (max-width: 1080px) {
  .availability-layout {
    grid-template-columns: 1fr;
  }

  .availability-widget {
    margin: 0 auto;
    max-width: 760px;
    width: 100%;
  }

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

  .gallery-large {
    grid-column: span 2;
  }

  .details-hero,
  .details-overview-grid,
  .details-split,
  .practical-grid {
    grid-template-columns: 1fr;
  }

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

  .details-photo-strip {
    grid-template-columns: 1fr;
  }

  .rooms-picker,
  .room-detail,
  .room-detail-inner {
    grid-template-columns: 1fr;
  }
}




.language-switcher {
  align-items: center;
  display: inline-flex;
  position: relative;
}

.language-select-wrap {
  display: inline-flex;
}

.language-select {
  appearance: none;
  -webkit-appearance: none;
  background-color: rgba(222, 211, 195, 0.88);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%233f513b' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-position: calc(100% - 12px) 50%;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  border: 1px solid rgba(63, 81, 59, 0.22);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(31, 34, 28, 0.08);
  color: var(--forest-dark);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  height: 40px;
  letter-spacing: 0.06em;
  line-height: 1.2;
  min-width: 128px;
  padding: 8px 31px 9px 15px;
}

.language-select:hover {
  background-color: rgba(239, 233, 223, 0.96);
  border-color: rgba(63, 81, 59, 0.42);
}

.language-select:focus-visible {
  outline: 2px solid rgba(63, 81, 59, 0.34);
  outline-offset: 3px;
}

.language-select option {
  background: var(--paper);
  color: var(--ink);
  font-weight: 500;
}

@media only screen and (max-width: 860px) {
  .language-select {
    font-size: 0.78rem;
    height: 38px;
    min-width: 106px;
    padding-left: 12px;
    padding-right: 28px;
  }
}


