      :root {
        --c-dark: #1a1714;
        --c-dark-warm: #2a2520;
        --c-forest: #2d3a2e;
        --c-forest-deep: #1e2a1f;
        --c-cream: #f5f0e8;
        --c-cream-warm: #ece5d8;
        --c-amber: #c8873e;
        --c-amber-light: #daa35c;
        --c-amber-glow: rgba(200, 135, 62, 0.15);
        --c-stone: #8a8076;
        --c-text: #3a342e;
        --c-text-light: rgba(58, 52, 46, 0.6);
        --c-border: rgba(26, 23, 20, 0.08);
        --f-display: "Cormorant Garamond", Georgia, serif;
        --f-body: "Outfit", system-ui, sans-serif;
        --space-xs: clamp(0.5rem, 1vw, 0.75rem);
        --space-sm: clamp(1rem, 2vw, 1.5rem);
        --space-md: clamp(2rem, 4vw, 3rem);
        --space-lg: clamp(3rem, 6vw, 5rem);
        --space-xl: clamp(5rem, 10vw, 8rem);
        --space-2xl: clamp(6rem, 14vw, 12rem);
        --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
        --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
        --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
      }
      *,
      *::before,
      *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
        font-size: 16px;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
      }
      body {
        font-family: var(--f-body);
        font-weight: 300;
        color: var(--c-text);
        background: var(--c-cream);
        overflow-x: hidden;
        line-height: 1.6;
      }
      img {
        max-width: 100%;
        display: block;
      }
      a {
        color: inherit;
        text-decoration: none;
      }
      button {
        font: inherit;
        cursor: pointer;
        border: none;
        background: none;
      }
      ::selection {
        background: var(--c-amber);
        color: var(--c-cream);
      }

      /* Cursor */
      @media (hover: hover) {
        body {
          cursor: none;
        }
        .cursor {
          position: fixed;
          top: 0;
          left: 0;
          width: 20px;
          height: 20px;
          border: 1.5px solid var(--c-amber);
          border-radius: 50%;
          pointer-events: none;
          z-index: 9999;
          transition:
            width 0.3s var(--ease-out-expo),
            height 0.3s var(--ease-out-expo),
            background 0.3s var(--ease-out-expo);
          transform: translate(-50%, -50%);
          mix-blend-mode: difference;
        }
        .cursor.hovering {
          width: 50px;
          height: 50px;
          background: rgba(200, 135, 62, 0.15);
        }
        .cursor-dot {
          position: fixed;
          top: 0;
          left: 0;
          width: 4px;
          height: 4px;
          background: var(--c-amber);
          border-radius: 50%;
          pointer-events: none;
          z-index: 10000;
          transform: translate(-50%, -50%);
        }
      }

      /* Nav */
      .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        padding: 1.5rem 3rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.6s var(--ease-out-expo);
      }
      .nav.scrolled {
        background: rgba(245, 240, 232, 0.92);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 1rem 3rem;
        box-shadow: 0 1px 0 var(--c-border);
      }
      .nav-logo {
        font-family: var(--f-display);
        font-size: 1.6rem;
        font-weight: 500;
        letter-spacing: -0.02em;
        color: var(--c-cream);
        transition: color 0.4s;
      }
      .nav.scrolled .nav-logo {
        color: var(--c-dark);
      }
      .nav-links {
        display: flex;
        gap: 3rem;
        list-style: none;
      }
      .nav-links a {
        font-size: 0.95rem;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(245, 240, 232, 0.9);
        transition: color 0.3s;
        position: relative;
      }
      .nav.scrolled .nav-links a {
        color: var(--c-text-light);
      }
      .nav-links a:hover {
        color: var(--c-amber);
      }
      .nav-links a::after {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--c-amber);
        transition: width 0.4s var(--ease-out-expo);
      }
      .nav-links a:hover::after {
        width: 100%;
      }
      .nav-cta {
        font-size: 0.8rem;
        font-weight: 500;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--c-dark) !important;
        background: var(--c-amber);
        padding: 0.65rem 1.5rem;
        transition: all 0.3s var(--ease-out-expo);
      }
      .nav-cta:hover {
        background: var(--c-amber-light);
        transform: translateY(-1px);
      }
      .nav-cta::after {
        display: none !important;
      }
      .nav-hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        width: 28px;
        z-index: 101;
      }
      .nav-hamburger span {
        display: block;
        height: 1.5px;
        background: var(--c-cream);
        transition: all 0.3s var(--ease-out-expo);
      }
      .nav.scrolled .nav-hamburger span {
        background: var(--c-dark);
      }
      .mobile-menu {
        display: none;
        position: fixed;
        inset: 0;
        background: var(--c-dark);
        z-index: 99;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
      }
      .mobile-menu.open {
        display: flex;
      }
      .mobile-menu a {
        font-family: var(--f-display);
        font-size: 2.5rem;
        font-weight: 400;
        color: var(--c-cream);
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.5s var(--ease-out-expo);
      }
      .mobile-menu.open a {
        opacity: 1;
        transform: translateY(0);
      }

      /* Hero */
      .hero {
        position: relative;
        height: 100vh;
        min-height: 700px;
        display: flex;
        align-items: flex-end;
        padding: 0 3rem var(--space-lg);
        overflow: hidden;
      }
      .hero-slider {
        position: absolute;
        inset: 0;
        background: var(--c-dark);
        overflow: hidden;
      }
      .hero-slide {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition:
          opacity 2.5s var(--ease-in-out-expo),
          transform 10s linear;
        transform: scale(1.05);
      }
      .hero-slide.active {
        opacity: 1;
        transform: scale(1);
      }
      .hero-slide::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          180deg,
          rgba(30, 42, 31, 0.3) 0%,
          rgba(30, 42, 31, 0.1) 40%,
          rgba(26, 23, 20, 0.7) 100%
        );
      }
      .hero-slider-overlay {
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 1;
      }
      .hero-slider-overlay::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60%;
        background:
          radial-gradient(
            ellipse 120% 50% at 50% 100%,
            rgba(26, 23, 20, 0.9) 0%,
            transparent 70%
          ),
          radial-gradient(
            ellipse 80% 30% at 30% 80%,
            rgba(45, 58, 46, 0.5) 0%,
            transparent 60%
          );
      }
      .hero-slider-overlay::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: -5%;
        right: -5%;
        height: 45%;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 400'%3E%3Cpath d='M0,400 L0,280 Q100,200 200,240 Q350,150 480,200 Q550,170 620,210 Q720,120 800,180 Q880,140 960,190 Q1050,100 1150,170 Q1250,130 1350,200 Q1400,180 1440,220 L1440,400 Z' fill='%231a1714' opacity='0.3'/%3E%3Cpath d='M0,400 L0,300 Q120,240 240,270 Q380,200 500,250 Q600,210 700,260 Q820,180 940,240 Q1060,190 1180,250 Q1300,210 1440,270 L1440,400 Z' fill='%231a1714' opacity='0.5'/%3E%3Cpath d='M0,400 L0,330 Q150,280 300,310 Q450,270 600,300 Q750,260 900,300 Q1050,270 1200,310 Q1350,290 1440,320 L1440,400 Z' fill='%23f5f0e8'/%3E%3C/svg%3E")
          no-repeat bottom center;
        background-size: 100% auto;
      }
      .hero-fog {
        position: absolute;
        top: 30%;
        left: 0;
        right: 0;
        height: 40%;
        background:
          radial-gradient(
            ellipse 100% 60% at 20% 50%,
            rgba(245, 240, 232, 0.08) 0%,
            transparent 50%
          ),
          radial-gradient(
            ellipse 80% 40% at 80% 40%,
            rgba(245, 240, 232, 0.05) 0%,
            transparent 50%
          );
        animation: fogDrift 20s ease-in-out infinite alternate;
        z-index: 2;
      }
      @keyframes fogDrift {
        0% {
          transform: translateX(-3%);
          opacity: 0.6;
        }
        100% {
          transform: translateX(3%);
          opacity: 1;
        }
      }
      .hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
      }
      .hero-tag {
        font-size: 0.75rem;
        font-weight: 500;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--c-amber);
        margin-bottom: var(--space-sm);
        opacity: 0;
        transform: translateY(20px);
        animation: revealUp 0.8s var(--ease-out-expo) 0.6s forwards;
      }
      .hero-title {
        font-family: var(--f-display);
        font-size: clamp(3.5rem, 8vw, 7rem);
        font-weight: 300;
        line-height: 0.92;
        letter-spacing: -0.03em;
        color: var(--c-cream);
        margin-bottom: var(--space-sm);
      }
      .hero-title span {
        display: block;
        opacity: 0;
        transform: translateY(60px);
        animation: revealUp 1s var(--ease-out-expo) forwards;
      }
      .hero-title span:nth-child(1) {
        animation-delay: 0.3s;
      }
      .hero-title span:nth-child(2) {
        animation-delay: 0.45s;
      }
      .hero-title span:nth-child(3) {
        animation-delay: 0.6s;
        font-style: italic;
        font-weight: 300;
        color: var(--c-amber-light);
      }
      .hero-subtitle {
        font-size: clamp(1rem, 1.4vw, 1.15rem);
        font-weight: 300;
        line-height: 1.6;
        color: rgba(245, 240, 232, 0.7);
        max-width: 480px;
        margin-bottom: var(--space-md);
        opacity: 0;
        transform: translateY(20px);
        animation: revealUp 0.8s var(--ease-out-expo) 0.9s forwards;
      }
      .hero-actions {
        display: flex;
        gap: 1.5rem;
        align-items: center;
        opacity: 0;
        transform: translateY(20px);
        animation: revealUp 0.8s var(--ease-out-expo) 1.1s forwards;
      }
      @keyframes revealUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      .scroll-indicator {
        position: absolute;
        bottom: 2rem;
        right: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        color: rgba(245, 240, 232, 0.4);
        font-size: 0.65rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        writing-mode: vertical-rl;
        animation: revealUp 0.8s var(--ease-out-expo) 1.5s forwards;
        opacity: 0;
      }
      .scroll-indicator::after {
        content: "";
        width: 1px;
        height: 40px;
        background: var(--c-amber);
        animation: scrollLine 2s var(--ease-in-out-expo) infinite;
      }
      @keyframes scrollLine {
        0% {
          transform: scaleY(0);
          transform-origin: top;
        }
        50% {
          transform: scaleY(1);
          transform-origin: top;
        }
        51% {
          transform-origin: bottom;
        }
        100% {
          transform: scaleY(0);
          transform-origin: bottom;
        }
      }

      /* Buttons */
      .btn {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.82rem;
        font-weight: 500;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        padding: 1rem 2rem;
        transition: all 0.4s var(--ease-out-expo);
        position: relative;
        overflow: hidden;
      }
      .btn-primary {
        background: var(--c-amber);
        color: var(--c-dark);
      }
      .btn-primary:hover {
        background: var(--c-amber-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(200, 135, 62, 0.3);
      }
      .btn-ghost {
        color: var(--c-cream);
        border: 1px solid rgba(245, 240, 232, 0.25);
      }
      .btn-ghost:hover {
        border-color: var(--c-amber);
        color: var(--c-amber);
      }
      .btn-dark {
        background: var(--c-dark);
        color: var(--c-cream);
      }
      .btn-dark:hover {
        background: var(--c-dark-warm);
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(26, 23, 20, 0.2);
      }
      .btn-arrow {
        display: inline-block;
        width: 20px;
        height: 1px;
        background: currentColor;
        position: relative;
        transition: width 0.3s var(--ease-out-expo);
      }
      .btn-arrow::after {
        content: "";
        position: absolute;
        right: 0;
        top: -3px;
        width: 7px;
        height: 7px;
        border-top: 1px solid currentColor;
        border-right: 1px solid currentColor;
        transform: rotate(45deg);
      }
      .btn:hover .btn-arrow {
        width: 30px;
      }

      /* Sections */

      /* Special Offer (Parallax Concierge) */
      .special-offer-section {
        position: relative;
        padding: 8rem 2rem;
        text-align: center;
        color: var(--c-cream);
        background-image: url("assets/pensjonat-zima-3.jpg");
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: hidden;
      }
      .special-offer-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to bottom,
          rgba(15, 13, 11, 0.4) 0%,
          rgba(15, 13, 11, 0.8) 100%
        );
        z-index: 1;
      }
      .special-offer-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        margin: 0 auto;
      }
      .special-offer-tag {
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.25em;
        color: var(--c-amber);
        margin-bottom: 1.5rem;
        font-weight: 600;
        display: inline-block;
        padding: 0.4rem 1.2rem;
        border: 1px solid rgba(200, 135, 62, 0.4);
        border-radius: 30px;
        background: rgba(200, 135, 62, 0.1);
        backdrop-filter: blur(4px);
      }
      .special-offer-title {
        font-family: var(--f-display);
        font-size: clamp(3rem, 6vw, 4.5rem);
        font-weight: 300;
        line-height: 1.1;
        margin-bottom: 2rem;
        color: #ffffff;
      }
      .special-offer-desc {
        font-size: 1.15rem;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.7;
        margin-bottom: 3rem;
        font-weight: 300;
      }
      @media (max-width: 768px) {
        .special-offer-section {
          padding: 6rem 1.5rem;
          background-attachment: scroll; /* fixes mobile bg-attachment issues */
        }
      }

      /* Regional Events / Zero Maintenance */
      .regional-events-section {
        background: var(--c-cream);
        text-align: center;
      }
      .regional-events-content {
        max-width: 800px;
        margin: 0 auto;
      }
      .regional-events-desc {
        font-size: 1.15rem;
        color: rgba(26, 23, 20, 0.75);
        line-height: 1.7;
        margin-bottom: 2.5rem;
      }
      .btn-events {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
      }
      .btn-events svg {
        width: 20px;
        height: 20px;
      }

      /* How It Works / Plan Section */
      .section {
        padding: var(--space-xl) 3rem;
      }
      .section-tag {
        font-size: 0.7rem;
        font-weight: 500;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--c-amber);
        margin-bottom: var(--space-xs);
      }
      .section-title {
        font-family: var(--f-display);
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        font-weight: 300;
        line-height: 1.05;
        letter-spacing: -0.02em;
        color: var(--c-dark);
        margin-bottom: var(--space-md);
      }
      .section-title em {
        font-style: italic;
        color: var(--c-amber);
      }
      .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition:
          opacity 0.8s var(--ease-out-expo),
          transform 0.8s var(--ease-out-expo);
      }
      .reveal.visible {
        opacity: 1;
        transform: translateY(0);
      }
      .reveal-delay-1 {
        transition-delay: 0.1s;
      }
      .reveal-delay-2 {
        transition-delay: 0.2s;
      }
      .reveal-delay-3 {
        transition-delay: 0.3s;
      }
      .reveal-delay-4 {
        transition-delay: 0.4s;
      }

      /* Intro */
      .intro {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
      }
      .intro-text p {
        font-size: clamp(1rem, 1.2vw, 1.1rem);
        line-height: 1.8;
        color: var(--c-text);
        margin-bottom: 1.5rem;
      }
      .intro-visual {
        position: relative;
        aspect-ratio: 4/5;
        overflow: hidden;
      }
      .intro-visual-placeholder {
        width: 100%;
        height: 100%;
        background: linear-gradient(
          135deg,
          var(--c-forest) 0%,
          var(--c-forest-deep) 100%
        );
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .intro-visual-overlay {
        position: absolute;
        bottom: 2rem;
        left: -2rem;
        background: var(--c-cream);
        padding: 2rem;
        max-width: 280px;
        box-shadow: 0 20px 60px rgba(26, 23, 20, 0.15);
      }
      .intro-visual-overlay .stat-number {
        font-family: var(--f-display);
        font-size: 3rem;
        font-weight: 300;
        color: var(--c-amber);
        line-height: 1;
      }
      .intro-visual-overlay .stat-label {
        font-size: 0.8rem;
        color: var(--c-text-light);
        margin-top: 0.5rem;
      }

      /* Social Proof Strip */
      .social-proof-strip {
        display: flex;
        gap: 2rem;
        align-items: center;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid var(--c-border);
      }
      .proof-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        text-decoration: none;
        transition: transform 0.3s var(--ease-out-expo);
      }
      .proof-item:hover {
        transform: translateY(-2px);
      }
      .proof-logo {
        height: 35px;
        width: auto;
        opacity: 0.9;
      }
      .monochrome-svg {
        fill: var(--c-text-light);
        transition: fill 0.3s ease;
      }
      .proof-item:hover .monochrome-svg {
        fill: var(--c-dark);
      }
      .proof-score {
        display: flex;
        flex-direction: column;
        justify-content: center;
      }
      .proof-score strong {
        font-size: 1.1rem;
        color: var(--c-dark);
        line-height: 1;
        transition: color 0.3s ease;
      }
      .proof-item:hover .proof-score strong {
        color: var(--c-amber);
      }
      .proof-score span {
        font-size: 0.7rem;
        color: var(--c-text-light);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-top: 2px;
      }

      /* Experience strip */
      .experience-strip {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1px;
        background: var(--c-dark);
        margin: 0 -3rem;
      }
      .experience-item {
        background: var(--c-dark-warm);
        padding: var(--space-md) var(--space-sm);
        text-align: center;
      }
      .experience-item .number {
        font-family: var(--f-display);
        font-size: clamp(2.5rem, 4vw, 4rem);
        font-weight: 300;
        color: var(--c-amber);
        line-height: 1;
        margin-bottom: 0.5rem;
      }
      .experience-item .label {
        font-size: 0.75rem;
        font-weight: 400;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(245, 240, 232, 0.5);
      }

      /* Rooms */
      .rooms-section {
        background: var(--c-cream-warm);
      }
      .rooms-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 1400px;
        margin: 0 auto;
      }
      .room-card {
        position: relative;
        overflow: hidden;
        background: var(--c-cream);
        transition:
          transform 0.5s var(--ease-out-expo),
          box-shadow 0.5s var(--ease-out-expo);
      }
      .room-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 60px rgba(26, 23, 20, 0.12);
      }
      .room-card-image {
        aspect-ratio: 4/3;
        background: linear-gradient(
          135deg,
          var(--c-forest) 0%,
          var(--c-forest-deep) 100%
        );
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .room-card-icon {
        font-size: 2.5rem;
        opacity: 0.3;
      }
      .room-card-body {
        padding: 1.5rem;
      }
      .room-card-name {
        font-family: var(--f-display);
        font-size: 1.5rem;
        font-weight: 400;
        margin-bottom: 0.5rem;
      }
      .room-card-desc {
        font-size: 0.9rem;
        color: var(--c-text-light);
        line-height: 1.6;
        margin-bottom: 1rem;
      }
      .room-card-details {
        display: flex;
        gap: 1.5rem;
        font-size: 0.75rem;
        color: var(--c-stone);
        letter-spacing: 0.05em;
      }
      .room-card-price {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--c-border);
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .room-card-price .price {
        font-family: var(--f-display);
        font-size: 1.4rem;
        color: var(--c-amber);
      }
      .room-card-price .per {
        font-size: 0.75rem;
        color: var(--c-text-light);
      }

      /* SPA */
      .spa-section {
        background: var(--c-dark);
        color: var(--c-cream);
        position: relative;
        overflow: hidden;
      }
      .spa-section .section-title {
        color: var(--c-cream);
      }
      .spa-intro {
        text-align: center;
        max-width: 700px;
        margin: 0 auto var(--space-lg);
      }
      .spa-bento {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 320px);
        gap: 1.5rem;
        max-width: 1400px;
        margin: 0 auto;
      }
      .spa-bento-card {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        display: flex;
        align-items: flex-end;
        padding: 2.5rem 2rem;
        background: var(--c-dark-warm);
        text-decoration: none;
        color: var(--c-cream);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        transition: transform 0.4s var(--ease-out-expo);
      }
      .spa-bento-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to top,
          rgba(26, 23, 20, 0.95) 0%,
          rgba(26, 23, 20, 0.2) 60%,
          transparent 100%
        );
        z-index: 1;
        transition: opacity 0.5s var(--ease-out-expo);
      }
      .spa-bento-card:hover {
        transform: translateY(-5px);
      }
      .spa-bento-card:hover::before {
        opacity: 0.85;
      }
      .spa-bento-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        transition: transform 0.8s var(--ease-out-expo);
      }
      .spa-bento-card:hover .spa-bento-img {
        transform: scale(1.05);
      }
      .spa-bento-content {
        position: relative;
        z-index: 2;
        width: 100%;
        transform: translateY(10px);
        transition: transform 0.5s var(--ease-out-expo);
      }
      .spa-bento-card:hover .spa-bento-content {
        transform: translateY(0);
      }
      .spa-bento-title {
        font-family: var(--f-display);
        font-size: 2.2rem;
        font-weight: 400;
        margin-bottom: 0.75rem;
        color: var(--c-cream);
      }
      .spa-bento-desc {
        font-size: 0.95rem;
        color: rgba(245, 240, 232, 0.8);
        line-height: 1.6;
      }
      .bento-large {
        grid-column: span 2;
        grid-row: span 2;
      }
      .bento-wide {
        grid-column: span 2;
        grid-row: span 1;
      }
      .bento-tall {
        grid-column: span 1;
        grid-row: span 2;
      }
      .bento-square {
        grid-column: span 1;
        grid-row: span 1;
      }

      @media (max-width: 1024px) {
        .spa-bento {
          grid-template-columns: repeat(2, 1fr);
          grid-template-rows: auto;
        }
        .bento-large,
        .bento-wide,
        .bento-tall,
        .bento-square {
          grid-column: span 2;
          aspect-ratio: 16/9;
          grid-row: auto;
        }
      }
      @media (max-width: 768px) {
        .spa-bento {
          grid-template-columns: 1fr;
          gap: 1rem;
        }
        .bento-large,
        .bento-wide,
        .bento-tall,
        .bento-square {
          grid-column: span 1;
          aspect-ratio: 4/3;
        }
        .spa-bento-card {
          padding: 1.5rem;
        }
      }
      .spa-section::before {
        content: "";
        position: absolute;
        top: 20%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(
          circle,
          rgba(200, 135, 62, 0.06) 0%,
          transparent 70%
        );
        pointer-events: none;
      }

      /* Amenities */
      .amenities-section {
        background: var(--c-cream);
        color: var(--c-dark);
      }
      .amenities-intro {
        text-align: center;
        max-width: 700px;
        margin: 0 auto var(--space-lg);
      }
      .amenities-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        max-width: 1400px;
        margin: 0 auto;
      }
      .amenity-card {
        background: #ffffff;
        border-radius: 12px;
        padding: 2.5rem 2rem;
        border: 1px solid rgba(26, 23, 20, 0.04);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
        transition: all 0.4s var(--ease-out-expo);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
      }
      .amenity-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
        border-color: rgba(200, 135, 62, 0.2);
      }
      .amenity-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 1.5rem;
        color: var(--c-forest);
        transition: color 0.4s ease;
      }
      .amenity-icon svg {
        width: 100%;
        height: 100%;
        stroke-width: 1.5;
      }
      .amenity-card:hover .amenity-icon {
        color: var(--c-amber);
      }
      .amenity-title {
        font-family: var(--f-display);
        font-size: 1.4rem;
        font-weight: 400;
        margin-bottom: 0.75rem;
        color: var(--c-dark);
      }
      .amenity-desc {
        font-size: 0.95rem;
        color: var(--c-text-light);
        line-height: 1.6;
      }

      /* Experiences Z-Pattern */
      .experiences-section {
        background: var(--c-light);
        padding: 0;
      }
      .experience-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 70vh;
      }
      .experience-row.reverse .experience-content {
        order: -1;
      }
      .experience-img-col {
        position: relative;
        overflow: hidden;
      }
      .experience-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.5s var(--ease-out-expo);
      }
      .experience-img-col:hover .experience-img {
        transform: scale(1.05);
      }
      .experience-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 4rem 10%;
        background: var(--c-light);
      }
      .experience-title {
        font-family: var(--f-display);
        font-size: clamp(2.5rem, 4vw, 3.5rem);
        font-weight: 400;
        color: var(--c-dark);
        margin-bottom: 1.5rem;
        line-height: 1.1;
      }
      .experience-desc {
        font-size: 1.05rem;
        color: var(--c-text-light);
        line-height: 1.7;
        max-width: 500px;
      }

      /* Plan Section (Timeline Journey) */
      .plan-section {
        text-align: center;
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        padding-bottom: 2rem;
      }
      .plan-steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        margin-top: calc(var(--space-md) + 2rem);
        position: relative;
      }
      /* Horizontal connection line for desktop */
      .plan-steps::before {
        content: "";
        position: absolute;
        top: 3.5rem; /* Center behind the icon */
        left: 10%;
        right: 10%;
        height: 1px;
        background: rgba(200, 135, 62, 0.3);
        z-index: 0;
      }
      .plan-step {
        position: relative;
        padding: 3rem 2rem;
        background: #ffffff;
        border: 1px solid rgba(26, 23, 20, 0.05);
        border-radius: 16px;
        z-index: 1;
        transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      .plan-step:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
        border-color: rgba(200, 135, 62, 0.2);
      }
      .plan-step-icon {
        width: 100px;
        height: 100px;
        background: var(--c-cream);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -6rem; /* Pull icon up out of the card */
        margin-bottom: 2rem;
        border: 1px solid rgba(200, 135, 62, 0.2);
        color: var(--c-amber);
        transition: all 0.5s ease;
      }
      .plan-step-icon svg {
        width: 40px;
        height: 40px;
        stroke-width: 1.2;
      }
      .plan-step:hover .plan-step-icon {
        background: var(--c-amber);
        color: #ffffff;
        transform: scale(1.05);
      }
      .plan-step-number {
        position: absolute;
        top: 2rem;
        right: 2rem;
        font-family: var(--f-display);
        font-size: 6rem;
        font-weight: 300;
        color: var(--c-amber);
        opacity: 0.05;
        line-height: 1;
        pointer-events: none;
        transition: opacity 0.5s ease;
      }
      .plan-step:hover .plan-step-number {
        opacity: 0.1;
      }
      .plan-step-title {
        font-family: var(--f-display);
        font-size: 1.6rem;
        font-weight: 400;
        margin-bottom: 1rem;
        color: var(--c-forest-deep);
      }
      .plan-step-desc {
        font-size: 1rem;
        color: rgba(26, 23, 20, 0.7);
        line-height: 1.7;
      }
      /* Testimonials Carousel */
      .testimonials-section {
        background: var(--c-forest-deep);
        color: var(--c-cream);
        overflow: hidden;
      }
      .testimonials-section .section-title {
        color: var(--c-cream);
        margin-bottom: 3rem;
      }
      .carousel-container {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
        padding-bottom: 3.5rem; /* space for dots */
      }
      .carousel-track {
        display: flex;
        transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        align-items: center;
      }
      .testimonial-card {
        min-width: 100%;
        padding: 3.5rem 4rem;
        background: rgba(245, 240, 232, 0.03);
        border: 1px solid rgba(245, 240, 232, 0.06);
        border-radius: 20px;
        position: relative;
        box-sizing: border-box;
        opacity: 0.4;
        transform: scale(0.95);
        transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        backdrop-filter: blur(10px);
      }
      .testimonial-card.active {
        opacity: 1;
        transform: scale(1);
        background: rgba(245, 240, 232, 0.06);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        border-color: rgba(245, 240, 232, 0.12);
      }
      .testimonial-quote-icon {
        color: var(--c-amber);
        opacity: 0.3;
        margin-bottom: 1.5rem;
      }
      .testimonial-quote-icon svg {
        width: 48px;
        height: 48px;
      }
      .testimonial-stars {
        display: flex;
        gap: 0.2rem;
        margin-bottom: 1.5rem;
        color: var(--c-amber);
      }
      .testimonial-stars svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
      }
      .testimonial-text {
        font-family: var(--f-display);
        font-size: 1.35rem;
        font-weight: 300;
        font-style: italic;
        line-height: 1.6;
        color: rgba(245, 240, 232, 0.95);
        margin-bottom: 2.5rem;
      }
      .testimonial-author-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        border-top: 1px solid rgba(245, 240, 232, 0.1);
        padding-top: 1.5rem;
      }
      .testimonial-author {
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 0.05em;
        color: var(--c-amber);
      }
      .testimonial-source {
        font-size: 0.8rem;
        color: rgba(245, 240, 232, 0.5);
        margin-top: 0.3rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }
      .testimonial-source svg {
        width: 16px;
        height: 16px;
        fill: currentColor;
      }
      .carousel-dots {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        gap: 0.8rem;
      }
      .carousel-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(245, 240, 232, 0.2);
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
      }
      .carousel-dot.active {
        background: var(--c-amber);
        transform: scale(1.3);
      }
      .carousel-dot:hover {
        background: rgba(245, 240, 232, 0.6);
      }
      /* Location */
      .location-section {
        background: var(--c-cream-warm);
      }
      .location-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
        max-width: 1400px;
        margin: 0 auto;
        align-items: center;
      }
      .location-map {
        background: var(--c-forest);
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        height: 300px; /* Stała wysokość by zmieścić dwie mapy na 1 ekranie */
      }
      .location-map iframe {
        width: 100%;
        height: 100%;
        border: 0;
        filter: saturate(0.9) contrast(1.1);
      }
      .location-maps-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }
      .location-info h3 {
        font-family: var(--f-display);
        font-size: 1.3rem;
        font-weight: 400;
        margin-bottom: 1rem;
        margin-top: 1.5rem;
      }
      .location-info h3:first-child {
        margin-top: 0;
      }
      .location-list {
        list-style: none;
      }
      .location-list li {
        font-size: 0.9rem;
        color: var(--c-text-light);
        padding: 0.4rem 0;
        display: flex;
        align-items: center;
        padding-left: 1.5rem;
        position: relative;
      }
      .location-list li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 8px;
        height: 1px;
        background: var(--c-amber);
      }

      /* CTA */
      .cta-section {
        text-align: center;
        padding: var(--space-2xl) 3rem;
        position: relative;
        overflow: hidden;
      }
      .cta-section::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 600px;
        height: 600px;
        background: radial-gradient(
          circle,
          var(--c-amber-glow) 0%,
          transparent 70%
        );
        pointer-events: none;
      }
      .cta-title {
        font-family: var(--f-display);
        font-size: clamp(3rem, 6vw, 5.5rem);
        font-weight: 300;
        line-height: 1;
        letter-spacing: -0.03em;
        margin-bottom: var(--space-sm);
        position: relative;
      }
      .cta-title em {
        font-style: italic;
        color: var(--c-amber);
      }
      .cta-subtitle {
        font-size: 1.1rem;
        font-weight: 300;
        color: var(--c-text-light);
        max-width: 500px;
        margin: 0 auto var(--space-md);
      }
      .cta-contact {
        display: flex;
        justify-content: center;
        gap: 3rem;
        margin-top: var(--space-md);
        flex-wrap: wrap;
      }
      .cta-contact-item {
        text-align: center;
      }
      .cta-contact-item .label {
        font-size: 0.7rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--c-text-light);
        margin-bottom: 0.25rem;
      }
      .cta-contact-item .value {
        font-family: var(--f-display);
        font-size: 1.2rem;
        color: var(--c-dark);
      }
      .cta-contact-item .value a:hover {
        color: var(--c-amber);
      }

      /* Footer */
      .footer {
        background: var(--c-dark);
        color: rgba(245, 240, 232, 0.4);
        padding: var(--space-md) 3rem;
      }
      .footer-inner {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
      }
      .footer-logo {
        font-family: var(--f-display);
        font-size: 1.3rem;
        font-weight: 400;
        color: var(--c-cream);
      }
      .footer-links {
        display: flex;
        gap: 2rem;
        list-style: none;
        font-size: 0.8rem;
      }
      .footer-links a:hover {
        color: var(--c-amber);
      }
      .footer-copy {
        font-size: 0.75rem;
        width: 100%;
        text-align: center;
        margin-top: var(--space-sm);
        padding-top: var(--space-sm);
        border-top: 1px solid rgba(245, 240, 232, 0.06);
      }

      /* Booking banner */
      .booking-banner {
        background: var(--c-amber);
        color: var(--c-dark);
        text-align: center;
        padding: 0.75rem;
        font-size: 0.82rem;
        font-weight: 500;
        letter-spacing: 0.03em;
      }
      .booking-banner strong {
        font-weight: 600;
      }

      /* Photo placeholder */
      .photo-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(245, 240, 232, 0.3);
        text-align: center;
        padding: 1rem;
      }

      /* Responsive */
      @media (max-width: 1024px) {
        .section {
          padding: var(--space-lg) 2rem;
        }
        .hero {
          padding: 0 2rem var(--space-md);
        }
        .nav {
          padding: 1.25rem 2rem;
        }
        .rooms-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .amenities-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .experience-row {
          min-height: 50vh;
        }
        .experience-content {
          padding: 3rem 5%;
        }
        .experience-strip {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      @media (max-width: 768px) {
        .section {
          padding: var(--space-md) 1.25rem;
        }
        .hero {
          padding: 0 1.25rem var(--space-md);
        }
        .nav {
          padding: 1rem 1.25rem;
        }
        .nav-links {
          display: none;
        }
        .nav-hamburger {
          display: flex;
        }
        .intro {
          grid-template-columns: 1fr;
        }
        .intro-visual {
          max-height: 400px;
        }
        .intro-visual-overlay {
          left: 1rem;
          bottom: 1rem;
        }
        .rooms-grid {
          grid-template-columns: 1fr;
        }
        .amenities-grid {
          grid-template-columns: 1fr;
        }
        .experience-row {
          grid-template-columns: 1fr;
          min-height: auto;
        }
        .experience-row.reverse .experience-content {
          order: 0;
        }
        .experience-img-col {
          height: 400px;
        }
        .experience-content {
          padding: 3rem 1.5rem;
        }
        .plan-steps {
          grid-template-columns: 1fr;
          gap: 4rem; /* More space for overlapping icons */
        }
        .plan-steps::before {
          /* Vertical line on mobile */
          top: 0;
          bottom: 0;
          left: 50%;
          right: auto;
          width: 1px;
          height: auto;
          transform: translateX(-50%);
        }
        .testimonial-card {
          padding: 2.5rem 1.5rem;
        }
        .testimonial-text {
          font-size: 1.15rem;
        }
        .carousel-container {
          padding-bottom: 3rem;
        }
        .testimonial-author-wrapper {
          flex-direction: column;
          align-items: flex-start;
          gap: 1rem;
        }
        .location-grid {
          grid-template-columns: 1fr;
        }
        .location-grid {
          grid-template-columns: 1fr;
        }
        .experience-strip {
          margin: 0 -1.25rem;
        }
        .cta-section {
          padding: var(--space-lg) 1.25rem;
        }
        .scroll-indicator {
          display: none;
        }
        .footer {
          padding: var(--space-sm) 1.25rem;
        }
      }
      /* Booking Widget */
      .floating-booking-btn {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        z-index: 1000;
        background: var(--c-amber);
        color: var(--c-dark);
        font-family: var(--f-body);
        font-size: 0.9rem;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: 1rem 2.5rem;
        border-radius: 50px;
        box-shadow: 0 10px 30px rgba(200, 135, 62, 0.4);
        display: flex;
        align-items: center;
        gap: 0.75rem;
        transition: all 0.4s var(--ease-out-expo);
        cursor: pointer;
      }
      .floating-booking-btn:hover {
        transform: translateY(-5px);
        background: var(--c-amber-light);
        box-shadow: 0 15px 40px rgba(200, 135, 62, 0.5);
      }
      @media (max-width: 768px) {
        .floating-booking-btn {
          bottom: 1.5rem;
          right: 50%;
          transform: translateX(50%);
          width: 90%;
          justify-content: center;
          box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        }
        .floating-booking-btn:hover {
          transform: translateX(50%) translateY(-2px);
        }
      }
      .booking-modal {
        position: fixed;
        inset: 0;
        background: rgba(26, 23, 20, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 2000;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.5s var(--ease-out-expo);
      }
      .booking-modal.open {
        opacity: 1;
        pointer-events: all;
      }
      .booking-modal-content {
        background: var(--c-cream);
        width: 95%;
        max-width: 1000px;
        height: 90vh;
        max-height: 800px;
        border-radius: 12px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        transform: scale(0.95) translateY(20px);
        opacity: 0;
        transition: all 0.5s var(--ease-out-expo);
        transition-delay: 0.1s;
      }
      .booking-modal.open .booking-modal-content {
        transform: scale(1) translateY(0);
        opacity: 1;
      }
      .booking-modal-close {
        position: absolute;
        top: 0.5rem;
        right: 1.5rem;
        font-size: 3rem;
        font-weight: 300;
        color: var(--c-dark);
        z-index: 10;
        cursor: pointer;
        background: none;
        border: none;
        line-height: 1;
        padding: 0.5rem;
        transition: color 0.3s;
      }
      .booking-modal-close:hover {
        color: var(--c-amber);
      }
      .booking-modal-iframe {
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 12px;
      }
