  :root {
    --dark:       #1E2A1E;
    --forest:     #2D4A2D;
    --forest-mid: #4A6741;
    --sage:       #7A9E6E;
    --sage-light: #A8C49A;
    --mauve:      #3A5C3A;
    --mauve-light:#5C8A5C;
    --mauve-pale: #A8C49A;
    --cream:      #EDE8DC;
    --cream-light:#F5F1E8;
    --cream-warm: #FAF7F0;
    --text-dark:  #1A2A1A;
    --text-mid:   #3D4F3A;
  }

  * { margin:0; padding:0; box-sizing:border-box; }
  html { scroll-behavior:smooth; overflow-x: hidden; background: var(--dark); }
  body {
    font-family: 'Lato', sans-serif;
    background: var(--cream-warm);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav:not(.bottom-nav) {
    position: fixed;
    top: 0.8rem; left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(20,32,20,0.45);
    backdrop-filter: saturate(180%) blur(24px);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
    width: calc(100% - 2rem);
    max-width: 1340px;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  }
  nav.nav-scrolled {
    top: 0.5rem;
  }

  .nav-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
  }

  .nav-logo-img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(245,240,232,0.2);
    transition: border-color 0.3s;
  }
  .nav-brand:hover .nav-logo-img {
    border-color: rgba(245,240,232,0.5);
  }

  .nav-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }

  .nav-brand-name {
    font-family: 'Playfair Display', serif;
    color: var(--cream);
    font-size: 1.2rem;
    letter-spacing: 0.04em;
  }

  .nav-brand-sub {
    font-size: 0.65rem;
    color: rgba(245,240,232,0.45);
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    gap: 0.3rem;
    list-style: none;
    margin: 0 auto;
  }

  .nav-links a {
    color: rgba(245,240,232,0.65);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s;
    font-weight: 700;
    position: relative;
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
  }
  .nav-links a::after {
    display: none;
  }
  .nav-links a:hover {
    color: rgba(245,240,232,1);
    background: rgba(255,255,255,0.1);
  }

  .nav-blog-link {
    border: 1px solid rgba(255,255,255,0.18) !important;
    border-radius: 50px !important;
    padding: 0.4rem 1rem !important;
    color: rgba(245,240,232,0.85) !important;
    background: rgba(255,255,255,0.06);
    transition: all 0.3s ease !important;
  }
  .nav-blog-link:hover {
    background: rgba(255,255,255,0.14) !important;
    color: #fff !important;
    border-color: rgba(255,255,255,0.35) !important;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .nav-phone {
    position: relative;
    overflow: hidden;
    color: rgba(245,240,232,0.92);
    font-weight: 700;
    font-size: 0.78rem;
    text-decoration: none;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
  }

  .nav-phone::after {
    content: '';
    position: absolute;
    top: -60%;
    left: -80%;
    width: 50%;
    height: 220%;
    background: rgba(255,255,255,0.1);
    transform: skewX(-18deg);
    transition: left 0.5s ease;
    pointer-events: none;
  }

  .nav-phone:hover::after { left: 130%; }

  .nav-phone:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.35);
    color: #fff;
  }

  @keyframes phone-ring {
    0%,100% { transform: rotate(0deg); }
    10%      { transform: rotate(-18deg); }
    20%      { transform: rotate(16deg); }
    30%      { transform: rotate(-14deg); }
    40%      { transform: rotate(10deg); }
    50%      { transform: rotate(-6deg); }
    60%      { transform: rotate(3deg); }
    70%      { transform: rotate(0deg); }
  }

  .nav-phone.ringing svg { animation: phone-ring 0.7s ease-in-out; }

  /* ── HERO ── */
  .hero {
    height: 100vh;
    min-height: 620px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, rgba(30,42,30,0.25) 0%, rgba(30,42,30,0.55) 55%, rgba(30,42,30,0.88) 100%),
      url('/zdj/gallery/hero-bg.webp') center/cover no-repeat;
    animation: slowZoom 22s ease-in-out infinite alternate;
  }

  .hero-video {
    display: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-video-overlay {
    display: none;
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(30,42,30,0.25) 0%, rgba(30,42,30,0.55) 55%, rgba(30,42,30,0.88) 100%);
    z-index: 1;
  }

  @keyframes slowZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.06); }
  }

  .mountain-wave {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    width: 100%;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--cream);
    padding: 2rem;
    max-width: 820px;
    animation: fadeUp 1.2s ease both;
  }

  @keyframes fadeUp {
    from { opacity:0; transform:translateY(40px); }
    to   { opacity:1; transform:translateY(0); }
  }

  .hero-logo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--mauve-light);
    margin-bottom: 1.2rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  }

  .hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--mauve-pale);
    margin-bottom: 1rem;
    font-weight: 700;
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 7vw, 4.8rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  }

  .hero h1 em { font-style:italic; color: var(--mauve-pale); }
  .tw-line { display: block; }

  .hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    margin-bottom: 2.5rem;
    opacity: 0.92;
    line-height: 1.75;
  }

  .hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    position: relative;
    overflow: hidden;
    background: #6b8f5e;
    color: var(--cream-warm);
    padding: 0.9rem 2.2rem;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    display: inline-block;
  }

  .btn-primary::after {
    content: '';
    position: absolute;
    top: -60%;
    left: -80%;
    width: 55%;
    height: 220%;
    background: rgba(255,255,255,0.18);
    transform: skewX(-18deg);
    transition: left 0.55s ease;
    pointer-events: none;
  }

  .btn-primary:hover::after {
    left: 130%;
  }

  .btn-primary:hover {
    background: #7aaa6a;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(107,143,94,0.45);
    color: #fff;
  }

  .btn-outline {
    position: relative;
    overflow: hidden;
    background: transparent;
    color: var(--cream);
    padding: 0.9rem 2.2rem;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.45);
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    display: inline-block;
  }

  .btn-outline::after {
    content: '';
    position: absolute;
    top: -60%;
    left: -80%;
    width: 50%;
    height: 220%;
    background: rgba(255,255,255,0.15);
    transform: skewX(-18deg);
    transition: left 0.5s ease;
    pointer-events: none;
  }

  .btn-outline:hover::after { left: 130%; }

  .btn-outline:hover {
    border-color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.12);
    color: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.2);
  }

  /* ── TYPEWRITER ── */
  .tw-cursor {
    display: inline-block;
    color: var(--mauve-pale);
    font-style: normal;
    font-weight: 300;
    animation: blink 0.75s step-end infinite;
    margin-left: 1px;
  }
  @keyframes blink {
    0%,100% { opacity: 1; }
    50%      { opacity: 0; }
  }

  /* ── BADGES ── */
  .badges {
    background: var(--forest);
    padding: 1.4rem 1rem;
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
  }

  .badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    position: relative;
    user-select: none;
    cursor: default;
    transition: opacity 0.3s;
  }

  .badge-item:not(:last-of-type)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(237,232,220,0.2);
  }

  .badge-item:hover {
    opacity: 0.8;
  }

  .badge-dots { display: none; }

  .badge-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage-light);
  }

  .badge-icon img {
    width: 30px;
    height: 30px;
    display: block;
    filter: brightness(0) invert(0.8) sepia(0.3) hue-rotate(70deg);
  }

  /* ── SECTIONS ── */
  section { padding: 5rem 2rem; }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--dark);
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 400;
  }

  .section-title em { font-style:italic; color: var(--mauve); }

  .section-divider {
    width: 60px;
    height: 3px;
    background: var(--mauve);
    margin: 1rem 0 2rem;
  }

  .container { max-width:1100px; margin:0 auto; }

  /* ── O NAS ── */
  #o-nas { background: var(--cream-warm); }

  .about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: stretch;
    min-height: 520px;
  }

  .about-text p {
    line-height: 1.9;
    color: var(--text-mid);
    margin-bottom: 1.2rem;
    font-size: 1rem;
  }

  .about-text strong { color: var(--dark); }

  .about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  
  .about-slideshow-link {
    display: block;
    text-decoration: none;
    color: inherit;
  }

  .about-slideshow-frame {
    position: relative;
    width: 100%;
    height: clamp(420px, 88vw, 700px);
    overflow: hidden;
    border-radius: 16px;
    background: #edf1ea;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #about-slideshow.about-slideshow-img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    display: block;
    border-radius: 16px;
    transition: opacity 0.9s ease;
    will-change: opacity;
    transform: translateZ(0);
  }

  /* ── LOKALIZACJA ── */
  #lokalizacja {
    background: var(--dark);
    color: var(--cream);
  }

  #lokalizacja .section-title { color: var(--cream); }
  #lokalizacja .section-title em { color: var(--mauve-pale); }
  #lokalizacja .section-divider { background: var(--mauve-light); }

  .location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
  }
  
  .location-grid > div:first-child {
    display: flex;
    flex-direction: column;
  }

  .distances {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
  }

  .dist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.7rem 0.8rem;
    border-radius: 12px;
    transition: background 0.3s;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.04);
  }

  .dist-item:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.1); }
  .dist-icon { font-size:1.2rem; min-width:1.6rem; text-align:center; margin-top:0.15rem; }

  .dist-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
  }

  .dist-info strong {
    display: block;
    color: var(--cream);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.3;
  }

  .dist-info span { font-size: 0.8rem; color: var(--cream); opacity: 0.55; line-height: 1.5; }
  .dist-info span::before { content: none; }

  .map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .map-container iframe {
    width: 100%;
    height: calc(100% + 70px);
    min-height: 570px;
    margin-top: -70px;
    display: block;
    border: none;
    flex: 1;
  }

  /* ── POKOJE ── */
  #pokoje { background: var(--cream-light); }

  .rooms-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2rem;
  }

  .room-card {
    background: white;
    box-shadow: 0 4px 24px rgba(30,42,30,0.08);
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(30,42,30,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(30,42,30,0.15);
  }

  .room-img { width:100%; height:230px; object-fit:cover; }

  .room-body { padding:1.6rem 1.5rem 1.8rem; }

  .room-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 0.4rem;
  }

  .room-price {
    display: inline-block;
    font-size: 0.72rem;
    color: var(--forest-mid);
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 1.1rem;
    text-transform: uppercase;
    background: rgba(30,42,30,0.06);
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
  }

  .room-features { list-style:none; display:flex; flex-direction:column; gap:0.5rem; }

  .room-features li {
    font-size: 0.88rem;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  .room-features li::before {
    content: '✓';
    color: white;
    font-weight: 700;
    font-size: 0.6rem;
    background: var(--forest-mid);
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .rooms-summary {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: white;
    border: 1px solid rgba(30,42,30,0.08);
    border-radius: 50px;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    box-shadow: 0 2px 12px rgba(30,42,30,0.05);
  }
  .rooms-summary-item {
    font-size: 0.82rem;
    color: var(--text-mid);
    letter-spacing: 0.02em;
  }
  .rooms-summary-item strong {
    color: var(--forest-mid);
    font-size: 0.95rem;
  }
  .rooms-summary-dot {
    color: rgba(30,42,30,0.15);
    font-size: 0.82rem;
  }

  /* ── UDOGODNIENIA ── */
  #udogodnienia { background: var(--forest); color: var(--cream); }
  #udogodnienia .section-title { color:var(--cream); }
  #udogodnienia .section-title em { color:var(--mauve-pale); }
  #udogodnienia .section-divider { background:linear-gradient(90deg, rgba(245,240,232,0.4), rgba(245,240,232,0.08)); }

  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .amenity {
    text-align: center;
    padding: 1.8rem 1rem;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    user-select: none;
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
  }

  .amenity:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }

  .amenity-icon {
    width: 2.8rem;
    height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    color: rgba(245,240,232,0.75);
  }

  .amenity-label { font-size:0.78rem; font-weight:700; text-transform:uppercase; letter-spacing:0.1em; color:rgba(245,240,232,0.85); }

  /* ── GALERIA ── */
  #galeria { background:var(--cream-light); padding-bottom:3rem; }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-auto-rows: 200px;
    gap: 0.7rem;
  }

  .gallery-grid img {
    width:100%; height:100%; object-fit:cover;
    border-radius: 12px;
    transition: opacity 0.3s, transform 0.4s;
    cursor: pointer;
  }

  .gallery-grid img:hover { opacity:0.88; transform:scale(1.03); }
  .gallery-grid .big { grid-column:span 2; grid-row:span 2; }

  .gallery-wrap { position:relative; }
  .gallery-open-btn {
    background:rgba(30,42,30,0.06); color:var(--forest-mid);
    border:1px solid rgba(30,42,30,0.1);
    border-radius:12px;
    font-size:2.6rem; font-weight:300; line-height:1;
    cursor:pointer; width:100%; height:100%;
    display:flex; align-items:center; justify-content:center;
    transition:all 0.3s ease;
  }
  .gallery-open-btn:hover { background:rgba(30,42,30,0.1); border-color:rgba(30,42,30,0.2); }
  .gallery-open-btn span {
    display:inline-block;
    transition:transform 0.3s;
  }
  .gallery-open-btn:hover span { transform:scale(1.3) rotate(90deg); }

  /* ── KONTAKT ── */
  #kontakt { background: var(--forest); color: var(--cream); }
  #kontakt .section-title { color:var(--cream); }
  #kontakt .section-title em { color:var(--mauve-pale); }
  #kontakt .section-divider { background:linear-gradient(90deg, rgba(245,240,232,0.4), rgba(245,240,232,0.08)); }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .contact-info p { line-height:1.8; opacity:0.85; margin-bottom:1rem; }

  .contact-blocks {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .contact-block {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    transition: all 0.3s ease;
  }

  .contact-block:hover {
    background: rgba(255,255,255,0.11);
    border-color: rgba(255,255,255,0.25);
    transform: translateX(4px);
  }

  .contact-block-icon {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2.4rem;
    height: 2.4rem;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    color: rgba(245,240,232,0.8);
  }

  .contact-block-text strong {
    display: block;
    color: rgba(245,240,232,0.5);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.15rem;
  }

  .contact-block-text a {
    color: var(--cream);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    display: block;
    transition: color 0.3s;
  }

  .contact-block-text a:hover { color: #fff; }

  .contact-form {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2.2rem;
    border-radius: 18px;
  }

  .form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.8rem;
    color: rgba(245,240,232,0.9);
    letter-spacing: 0.01em;
  }

  .form-group { margin-bottom:1.1rem; }

  .form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.45rem;
    color: rgba(245,240,232,0.55);
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--cream);
    padding: 0.8rem 2.5rem 0.8rem 1rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(245,240,232,0.6)' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder { opacity:0.4; color:var(--cream); }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.06);
  }

  .form-group select option { background:var(--forest); color:var(--cream); }
  .form-group textarea { height:120px; resize:vertical; }
  .form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }

  .btn-form {
    width: 100%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: rgba(245,240,232,0.95);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 1rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
  }

  .btn-form:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.4);
    color: #fff;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.08), 0 4px 20px rgba(0,0,0,0.3);
  }

  .form-note {
    font-size: 0.75rem;
    opacity: 0.5;
    text-align: center;
    margin-top: 1rem;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    color: var(--cream);
    padding: 3rem 2rem 2.5rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.6rem;
  }

  .footer-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(245,240,232,0.2);
  }

  .footer-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--cream);
    letter-spacing: 0.02em;
  }

  .footer-address { font-size:0.85rem; color:rgba(245,240,232,0.5); margin-bottom:1.8rem; line-height:1.7; }

  .footer-social {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
  }

  .social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    background: rgba(255,255,255,0.05);
    color: rgba(245,240,232,0.7);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
  }
  .social-btn svg { flex-shrink: 0; opacity: 0.7; }

  .social-btn:hover {
    border-color: rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.1);
    color: #fff;
  }
  .social-btn:hover svg { opacity: 1; }

  .footer-copy {
    font-size: 0.7rem;
    color: rgba(245,240,232,0.3);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1.5rem;
  }

  /* ── FLOAT REZERWUJ ── */
  .float-phone {
    position: fixed;
    bottom: 2rem;
    right: max(1rem, calc((100vw - 1340px) / 2));
    z-index: 999;
    background: #6b8f5e;
    color: var(--cream-warm);
    padding: 0.85rem 1.6rem;
    border-radius: 50px;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(107,143,94,0.4);
    transition: all 0.3s ease;
    animation: pulse 2.5s infinite;
    white-space: nowrap;
    overflow: hidden;
  }

  @keyframes pulse {
    0%,100% { box-shadow: 0 4px 20px rgba(107,143,94,0.35); }
    50%      { box-shadow: 0 4px 32px rgba(107,143,94,0.55); }
  }

  .float-phone::after {
    content: '';
    position: absolute;
    top: -60%;
    left: -80%;
    width: 55%;
    height: 220%;
    background: rgba(255,255,255,0.18);
    transform: skewX(-18deg);
    transition: left 0.55s ease;
    pointer-events: none;
  }
  .float-phone:hover::after { left: 130%; }
  .float-phone:hover {
    background: #7aaa6a;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(107,143,94,0.45);
    color: #fff;
  }
  .float-phone--hidden { opacity:0 !important; pointer-events:none !important; transform:scale(0.7) !important; }

  @keyframes btn-glow {
    0%   { box-shadow: 0 0 0 0 rgba(232,184,109,0); }
    20%  { box-shadow: 0 0 18px 8px rgba(232,184,109,0.7); }
    50%  { box-shadow: 0 0 30px 14px rgba(232,184,109,0.45); }
    80%  { box-shadow: 0 0 18px 8px rgba(232,184,109,0.7); }
    100% { box-shadow: 0 0 0 0 rgba(232,184,109,0); }
  }
  .btn-rez {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease !important;
  }
  .btn-rez::after {
    content: '';
    position: absolute;
    top: -60%;
    left: -80%;
    width: 50%;
    height: 220%;
    background: rgba(255,255,255,0.15);
    transform: skewX(-18deg);
    transition: left 0.5s ease;
    pointer-events: none;
  }
  .btn-rez:hover::after { left: 130%; }
  .btn-rez:hover {
    background: #7aaa6a !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 28px rgba(107,143,94,0.45) !important;
    color: #fff !important;
  }
  .btn-pokoje {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--forest);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid var(--forest);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  }
  .btn-pokoje::after {
    content: '';
    position: absolute;
    top: -60%;
    left: -80%;
    width: 50%;
    height: 220%;
    background: rgba(255,255,255,0.2);
    transform: skewX(-18deg);
    transition: left 0.5s ease;
    pointer-events: none;
  }
  .btn-pokoje:hover::after { left: 130%; }
  .btn-pokoje:hover {
    background: var(--mauve-light);
    color: var(--cream);
    border-color: var(--mauve-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(92,138,92,0.35);
  }
  .btn-rez.glow { animation: btn-glow 1.8s ease-out; }

  @keyframes float-attention {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.12); border-color: rgba(255,255,255,0.35); }
    100% { transform: scale(1); }
  }
  .float-phone.attract { animation: pulse 2.5s infinite, float-attention 1.8s ease-in-out; }

  /* ── RESPONSIVE ── */
  .mobile-topbar { display:none; }
  @media (max-width:768px) {
    .mobile-topbar {
      display:flex;
      justify-content:center;
      align-items:center;
      position:fixed;
      top:0.5rem;
      left:50%;
      transform:translateX(-50%);
      z-index:997;
      padding:0.45rem 1.1rem;
      background:rgba(30,30,30,0.55);
      backdrop-filter:saturate(180%) blur(28px);
      -webkit-backdrop-filter:saturate(180%) blur(28px);
      border-radius:40px;
      border:1px solid rgba(255,255,255,0.12);
    }
    .mobile-topbar-brand {
      display:flex;
      align-items:center;
      gap:0.45rem;
      text-decoration:none;
    }
    .mobile-topbar-logo {
      width:26px;
      height:26px;
      border-radius:50%;
      object-fit:cover;
    }
    .mobile-topbar-url {
      font-family:'Lato',sans-serif;
      font-size:0.68rem;
      font-weight:700;
      color:rgba(245,240,232,0.9);
      letter-spacing:0.08em;
      text-transform:uppercase;
    }
    nav:not(.bottom-nav) { display:none !important; }
    .nav-links { display:none; }
    .nav-right { display:none !important; }
    .mobile-menu {
      position:fixed !important;
      inset:0 !important;
      width:100% !important;
      height:100% !important;
      transform:none !important;
      background:rgba(30,30,30,0.70) !important;
      backdrop-filter:saturate(180%) blur(24px);
      -webkit-backdrop-filter:saturate(180%) blur(24px);
      flex-direction:column !important;
      align-items:center;
      justify-content:flex-start;
      padding:0 1.5rem 5rem !important;
      gap:0;
      z-index:9997 !important;
      border:none !important;
      box-shadow:none !important;
      border-radius:0 !important;
      overflow-y:auto;
      opacity:0;
      visibility:hidden;
      transition:opacity 0.35s ease, visibility 0.35s ease;
    }
    .mobile-menu.open {
      display:flex !important;
      opacity:1 !important;
      visibility:visible !important;
      transform:none !important;
    }
    .mobile-menu a {
      display:block !important;
      width:100%;
      max-width:320px;
      text-align:center !important;
      padding:0.85rem 1.5rem !important;
      border:1px solid rgba(255,255,255,0.15) !important;
      border-radius:50px !important;
      font-size:0.88rem !important;
      letter-spacing:0.06em;
      transition:background 0.2s, border-color 0.2s, transform 0.3s ease, opacity 0.3s ease;
    }
    .mobile-menu a:hover {
      background:rgba(255,255,255,0.1) !important;
      border-color:rgba(255,255,255,0.35) !important;
    }
    .mobile-menu-brand {
      display:flex !important;
      flex-direction:row;
      align-items:center;
      gap:0.55rem;
      margin-top:3rem;
      margin-bottom:2.5rem;
      padding:0.45rem 1.1rem;
      background:rgba(15,15,15,0.6);
      backdrop-filter:saturate(180%) blur(22px);
      -webkit-backdrop-filter:saturate(180%) blur(22px);
      border-radius:40px;
      border:1px solid rgba(255,255,255,0.08);
      text-decoration:none;
    }
    .mobile-menu-links {
      display:flex;
      flex-direction:column;
      align-items:center;
      width:100%;
      gap:0.55rem;
    }
    .mobile-menu-logo {
      width:26px;
      height:26px;
      border-radius:50%;
      object-fit:cover;
    }
    .mobile-menu-brand-text {
      display:flex;
      flex-direction:column;
    }
    .mobile-menu-brand-name {
      font-family:'Lato',sans-serif;
      font-size:0.72rem;
      font-weight:700;
      color:rgba(245,240,232,0.9);
      letter-spacing:0.08em;
      text-transform:uppercase;
    }
    .mobile-menu-brand-sub {
      display:none;
    }
    section[id] { scroll-margin-top: 3.5rem; }
    #booking-form { scroll-margin-top: 3.5rem; }
    #formularz { scroll-margin-top: 2rem; }
    .about-grid, .location-grid, .contact-grid { grid-template-columns:1fr; gap:2rem; }
    #kontakt { padding-left: 1rem; padding-right: 1rem; overflow-x: clip; }
    #kontakt .container { max-width: 100%; }
    .contact-grid > * { min-width: 0; }
    .contact-form {
      width: 100%;
      max-width: 100%;
      padding: 1.1rem;
      border-radius: 14px;
    }
    #booking-form [data-netlify-recaptcha="true"] {
      width: 100%;
      overflow: hidden;
    }
    .rooms-grid { grid-template-columns:1fr; }
    .rooms-summary { flex-direction:column; gap:0.4rem; border-radius:16px; padding:1rem 1.2rem; align-items:center; }
    .rooms-summary-dot { display:none; }
    .amenities-grid { grid-template-columns:repeat(2,1fr); }
    .gallery-grid { grid-template-columns:1fr 1fr; }
    .gallery-grid .big { grid-column:span 1; grid-row:span 1; }
    .form-row { grid-template-columns:1fr; }
    .badges { gap:0; padding: 1.2rem 1rem; }
    footer { padding-bottom: 6rem; }
    .float-phone {
      font-size: 0.72rem;
      padding: 0.75rem 1.2rem;
      bottom: 1.2rem;
      right: 1.2rem;
    }
    .hero-bg { display: none; }
    .hero-video { display: block; }
    .hero-video-overlay { display: block; }
    .hero h1 { font-size: 2rem; line-height: 1.2; margin-bottom: 0.8rem; }
    .hero h1 .tw-cursor { display: inline; }
    .tw-line { min-height: 1.3em; }
    .hero-eyebrow { font-size: 0.62rem; white-space: nowrap; }
    .hero-sub { font-size: 0.82rem; margin-bottom: 1.2rem; line-height: 1.6; }
    .hero-sub br { display: none; }
    .hero-ctas { flex-direction: column; align-items: center; gap: 0.7rem; }
    .hero-ctas a { width: 85%; text-align: center; white-space: nowrap; }
  }

  @media (max-width: 400px) {
    .hero h1 { font-size: 2rem; }
    .hero-ctas a { width: 90%; }
  }

  @media (max-width: 420px) {
    #booking-form [data-netlify-recaptcha="true"] {
      transform: scale(0.93);
      transform-origin: left top;
      width: 304px;
      margin-bottom: -0.45rem !important;
    }
  }

  @media (max-width: 360px) {
    #booking-form [data-netlify-recaptcha="true"] {
      transform: scale(0.86);
      margin-bottom: -0.9rem !important;
    }
  }
  @media (max-width: 640px) {
    #badges-carousel {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      min-height: 70px;
      padding: 0.8rem 1rem;
      gap: 0.5rem;
    }
    #badges-carousel .badge-item {
      display: none;
      justify-content: center;
      width: fit-content;
      min-width: 200px;
    }
    #badges-carousel .badge-item::after {
      display: none;
    }
    #badges-carousel .badge-item.active {
      display: flex;
    }
    .badge-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
    }
    .badge-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(237,232,220,0.25);
      transition: background 0.3s;
      cursor: pointer;
    }
    .badge-dot.active {
      background: var(--sage-light);
    }
  }

  /* BOTTOM NAV BAR – mobile only */
  .bottom-nav {
    display: none;
  }
  @media (max-width: 768px) {
    .bottom-nav {
      display: flex;
      position: fixed;
      top: auto;
      bottom: calc(0.5rem + env(safe-area-inset-bottom, 0px));
      left: 0.6rem;
      right: 0.6rem;
      z-index: 9999;
      background: rgba(30,30,30,0.55);
      backdrop-filter: saturate(180%) blur(28px);
      -webkit-backdrop-filter: saturate(180%) blur(28px);
      padding: 0.25rem;
      justify-content: space-around;
      align-items: stretch;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 40px;
    }
    .bottom-nav a, .bottom-nav button {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.15rem;
      color: rgba(245,240,232,0.45);
      text-decoration: none;
      font-family: 'Lato', sans-serif;
      font-size: 0.55rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem 0;
      transition: color 0.2s, background 0.2s;
      -webkit-tap-highlight-color: transparent;
      border-radius: 30px;
      position: relative;
      flex: 1;
    }
    .bottom-nav a:hover, .bottom-nav button:hover,
    .bottom-nav a:active, .bottom-nav button:active {
      color: rgba(245,240,232,0.9);
      background: rgba(255,255,255,0.12);
    }
    .bottom-nav a.bnav-active {
      color: #f5f0e8;
      background: rgba(255,255,255,0.15);
    }
    .bottom-nav .bnav-icon {
      width: 20px;
      height: 20px;
      fill: none;
      stroke: currentColor;
    }
    .bottom-nav .bnav-rez {
      color: #e8b86d;
    }
    .bottom-nav .bnav-rez:hover, .bottom-nav .bnav-rez:active {
      color: #f0c878;
      background: rgba(232,184,109,0.15);
    }
    .float-phone {
      display: none !important;
    }
    footer { padding-bottom: 6rem !important; }
    section:last-of-type { padding-bottom: 5rem !important; }
    #cookie-banner {
      bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px)) !important;
      border-radius: 16px !important;
      margin: 0 0.6rem !important;
      left: 0 !important;
      right: 0 !important;
    }
  }

  /* LIGHTBOX */
  .lb-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,0.95);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    user-select: none;
    -webkit-user-select: none;
    padding: 1rem 0 0.5rem;
  }
  .lb-overlay.active { display: flex; }
  .lb-img-wrap {
    position: relative;
    max-width: 90vw;
    max-height: 82vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .lb-img {
    max-width: 90vw;
    max-height: 55vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 60px rgba(0,0,0,0.6);
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
  }
  .lb-img.lb-img-fade {
    opacity: 0;
    transform: scale(0.97);
  }
  @media (min-width: 769px) {
    .lb-img { max-height: 70vh; }
  }
  .lb-tap-prev, .lb-tap-next {
    position: absolute;
    top: 0; bottom: 0;
    width: 50%;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
  }
  .lb-tap-prev { left: 0; justify-content: flex-start; }
  .lb-tap-next { right: 0; justify-content: flex-end; }
  .lb-arrow {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(0,0,0,0.4);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    margin: 0 10px;
    pointer-events: none;
    user-select: none;
  }
  .lb-tap-prev:hover .lb-arrow,
  .lb-tap-next:hover .lb-arrow { opacity: 1; }
  .lb-close {
    position: fixed;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 2.2rem;
    cursor: pointer;
    z-index: 100000;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
  }
  .lb-close:hover { opacity: 1; }
  .lb-counter {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-top: 1rem;
    letter-spacing: 0.1em;
  }
  .lb-dots {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.8rem;
    max-width: 90vw;
    overflow-x: auto;
    padding: 0.3rem 0;
    justify-content: flex-start;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .lb-dots::-webkit-scrollbar { display: none; }
  @media (max-width: 768px) {
    .lb-counter { display: none; }
    .lb-dots { margin-top: 0.4rem; }
  }
  .lb-thumb {
    width: 52px;
    height: 38px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.45;
    transition: opacity 0.2s, border-color 0.2s;
    border: 2px solid transparent;
    flex-shrink: 0;
  }
  .lb-thumb:hover { opacity: 0.75; }
  .lb-thumb.active {
    opacity: 1;
    border-color: white;
  }
  .room-img { cursor: pointer; }
  .gallery-grid img { cursor: pointer; }
  .room-img-wrap {
    position: relative;
    overflow: hidden;
    display: block;
    cursor: pointer;
  }
  .room-img-overlay {
    position: absolute;
    bottom: 0.85rem;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: rgba(10,18,10,0.52);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50px;
    padding: 0.42rem 1.1rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
  }
  .room-img-wrap:hover .room-img-overlay {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  /* ── DISTANCES SHOW MORE ── */
  .dist-hidden { display: none; }
  .dist-hidden.visible { display: flex; }

  .dist-more-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.2);
    color: var(--cream);
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s;
  }

  .dist-more-btn:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }
  .dist-more-btn svg { transition: transform 0.3s; }
  .dist-more-btn.open svg { transform: rotate(180deg); }

  .dist-nearby-wrap {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.2rem 1rem 0.8rem;
    margin-top: 1.5rem;
  }
  .dist-nearby-wrap .dist-item {
    padding: 0.35rem 0.5rem;
  }

  .dist-nearby-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--mauve-pale);
    opacity: 0.75;
    padding: 1rem 1.2rem 0.2rem;
  }


  /* PRICE BLINK */
  .price-blink {
    animation: pricePulse 2s ease-in-out infinite;
    display: inline-block;
  }
  @keyframes pricePulse {
    0%, 100% { opacity: 1; color: var(--dark); }
    50% { opacity: 0.4; color: var(--forest); }
  }


  /* ── HAMBURGER MENU ── */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }
  .desktop-burger {
    display: none !important;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: all 0.15s;
  }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .mobile-menu {
    display: flex;
    position: fixed;
    top: 4.5rem;
    right: 1rem;
    bottom: auto;
    left: auto;
    width: 220px;
    background: rgba(20,32,20,0.5);
    backdrop-filter: saturate(180%) blur(24px);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
    z-index: 999;
    flex-direction: column;
    padding: 0.8rem 0.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    border-radius: 20px;
    border: none;
    transform: translateY(-12px) scale(0.95);
    transform-origin: top right;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease, visibility 0.25s ease;
  }
  .mobile-menu.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
  }
  .mobile-menu::before {
    content: none;
  }
  .mobile-menu a {
    padding: 0.5rem 1rem;
    margin: 0.08rem 0;
    color: rgba(245,240,232,0.7);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.2s;
  }
  .mobile-menu a:hover {
    background: rgba(255,255,255,0.1);
    color: rgba(245,240,232,1);
  }
  .mobile-menu-brand {
    display: none;
  }
  .mobile-menu-links {
    display: flex;
    flex-direction: column;
  }
  .mobile-menu .mobile-only {
    display: none;
  }

  @media (max-width: 960px) {
    .nav-links { display: none !important; }
    .hamburger { display: flex !important; }
    .nav-phone span { display: none; }
    .mobile-menu .mobile-only { display: block; }
  }


  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .review-card {
    background: white;
    border-radius: 16px;
    padding: 1.8rem 2rem;
    box-shadow: 0 2px 12px rgba(30,42,30,0.05);
    border: 1px solid rgba(30,42,30,0.07);
    transition: box-shadow 0.3s, transform 0.3s;
  }
  .review-card:hover {
    box-shadow: 0 6px 20px rgba(30,42,30,0.1);
    transform: translateY(-2px);
  }
  .tiktok-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
  }
  .tiktok-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.2rem;
    border: 1px solid rgba(30,42,30,0.15);
    border-radius: 50px;
    background: rgba(30,42,30,0.04);
    color: var(--forest);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .tiktok-link-btn:hover {
    border-color: var(--forest);
    background: rgba(30,42,30,0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30,42,30,0.1);
  }
  @media (max-width: 768px) {
    .reviews-grid { grid-template-columns: 1fr; }
    .tiktok-grid { grid-template-columns: 1fr; }
    section { padding: 3rem 1.2rem; }
    #opinie, #aktualnosci, #faq { padding-left: 1.2rem !important; padding-right: 1.2rem !important; padding-top: 3rem !important; padding-bottom: 3rem !important; }
    .section-title { font-size: 1.5rem; }
    .review-card { padding: 1.2rem; }
    .amenity { min-height: 100px; padding: 1.2rem 0.8rem; }
    .review-badges { display: grid !important; grid-template-columns: 1fr 1fr; gap: 0.6rem !important; }
    .review-badges a { margin-top: 0 !important; }
  }

  .faq-item {
    background: white;
    border: 1px solid rgba(30,42,30,0.07);
    border-radius: 14px;
    margin-bottom: 0.6rem;
    box-shadow: 0 2px 8px rgba(30,42,30,0.04);
    transition: box-shadow 0.3s;
    overflow: hidden;
  }
  .faq-item:hover { box-shadow: 0 4px 16px rgba(30,42,30,0.08); }
  .faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: none;
    border: none;
    padding: 1.1rem 1.4rem;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
  }
  .faq-q:hover { color: var(--forest); }
  .faq-arrow {
    transition: transform 0.3s;
    flex-shrink: 0;
    color: var(--forest-mid);
    width: 1.6rem;
    height: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30,42,30,0.06);
    border-radius: 50%;
    padding: 0.25rem;
  }
  .faq-q.open .faq-arrow { transform: rotate(180deg); background: rgba(30,42,30,0.1); }
  .faq-a { display:none; padding:0 1.4rem 1.2rem; }
  .faq-a p { color:#555; font-size:0.9rem; line-height:1.8; margin:0; }
  .faq-a.open { display:block; }

  /* ══════════════════════════════════════════════════════════════
     REVEAL ANIMATIONS — custom Intersection Observer system
     ══════════════════════════════════════════════════════════════ */

  /* Base state: hidden before reveal */
  [data-reveal] {
    opacity: 0;
    will-change: opacity, transform;
    transition-property: opacity, transform;
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  /* Revealed state */
  [data-reveal].revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  /* ── Animation: single cohesive style ── */
  [data-reveal="fade-up"]          { transform: translate3d(0, 36px, 0); transition-duration: 0.8s; }

  /* ── Stagger delays via data-delay ── */
  [data-reveal][data-delay="80"]   { transition-delay: 0.08s; }
  [data-reveal][data-delay="100"]  { transition-delay: 0.1s; }
  [data-reveal][data-delay="150"]  { transition-delay: 0.15s; }
  [data-reveal][data-delay="160"]  { transition-delay: 0.16s; }
  [data-reveal][data-delay="200"]  { transition-delay: 0.2s; }
  [data-reveal][data-delay="240"]  { transition-delay: 0.24s; }
  [data-reveal][data-delay="300"]  { transition-delay: 0.3s; }
  [data-reveal][data-delay="320"]  { transition-delay: 0.32s; }
  [data-reveal][data-delay="400"]  { transition-delay: 0.4s; }
  [data-reveal][data-delay="480"]  { transition-delay: 0.48s; }
  [data-reveal][data-delay="500"]  { transition-delay: 0.5s; }
  [data-reveal][data-delay="560"]  { transition-delay: 0.56s; }
  [data-reveal][data-delay="600"]  { transition-delay: 0.6s; }
  [data-reveal][data-delay="800"]  { transition-delay: 0.8s; }

  /* ── Hero section: sequential stagger via CSS ── */
  .hero-content .hero-logo         { animation-delay: 0s; }
  .hero-content .hero-eyebrow      { opacity: 0; animation: heroReveal 1s cubic-bezier(0.25,0.46,0.45,0.94) 0.3s both; }
  .hero-content h1                 { opacity: 0; animation: heroReveal 1s cubic-bezier(0.25,0.46,0.45,0.94) 0.5s both; }
  .hero-content .hero-sub          { opacity: 0; animation: heroReveal 1s cubic-bezier(0.25,0.46,0.45,0.94) 0.7s both; }
  .hero-content .hero-ctas         { opacity: 0; animation: heroReveal 1s cubic-bezier(0.25,0.46,0.45,0.94) 0.9s both; }

  @keyframes heroReveal {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── Hero parallax subtle effect ── */
  .hero-bg, .hero-video {
    transition: transform 0.1s linear;
  }

  /* ── Section divider animation ── */
  .section-divider {
    transform-origin: left;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
  }

  /* ── Enhanced hover effects — premium feel ── */

  /* Room cards: subtle lift + shadow */
  .room-card {
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s ease;
  }
  .room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(30,42,30,0.16);
  }

  /* Gallery: zoom + overlay */
  .gallery-grid img {
    transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .gallery-grid img:hover {
    opacity: 0.92;
    transform: scale(1.04);
  }

  /* Review cards: gentle lift */
  .review-card {
    transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .review-card:hover {
    box-shadow: 0 10px 32px rgba(30,42,30,0.12);
    transform: translateY(-4px);
  }

  /* Amenity tiles: smooth scale + glow */
  .amenity {
    transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .amenity:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  }

  /* Contact form button: subtle pulse */
  .btn-form {
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  }
  .btn-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30,42,30,0.2);
  }

  /* ── Accessibility: respect reduced motion ── */
  @media (prefers-reduced-motion: reduce) {
    [data-reveal] {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
    }
    .hero-content,
    .hero-content .hero-eyebrow,
    .hero-content h1,
    .hero-content .hero-sub,
    .hero-content .hero-ctas {
      opacity: 1 !important;
      animation: none !important;
    }
    .room-card, .amenity, .review-card, .gallery-grid img, .btn-form {
      transition-duration: 0.01ms !important;
    }
  }